:root {
  --bg: #020617;
  --surface: rgba(15, 23, 42, 0.82);
  --surface-strong: rgba(15, 23, 42, 0.96);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #38bdf8;
  --accent-strong: #8b5cf6;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.06), transparent 18%),
    linear-gradient(180deg, #060b16 0%, #08111f 45%, #0b1325 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero,
.section {
  padding: 3.7rem 0;
}

.hero {
  padding-top: 5.5rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 5%, rgba(56, 189, 248, 0.04), transparent 25%);
  pointer-events: none;
}


.eyebrow {
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.06;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(56, 189, 248, 0.12);
  color: #bae6fd;
  font-size: 0.92rem;
}

.lead {
  max-width: 760px;
  margin: 1rem 0 1.6rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.4fr) minmax(360px, 1fr);
  gap: 1.3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-stripe {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.8rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #bae6fd;
  font-size: 0.9rem;
}

.hero-copy {
  display: grid;
  gap: 0.95rem;
}

.hero-subtitle {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.75;
  letter-spacing: 0.012em;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::after,
.button-secondary::after {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.button::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent 70%);
}

.button-secondary::after {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55), transparent 70%);
}

.button:hover::after,
.button-secondary:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  box-shadow: 0 18px 35px rgba(56, 189, 248, 0.18);
}

.button-secondary {
  background: rgba(148, 163, 184, 0.12);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button,
.button-secondary {
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.proof-pill {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero-stats,
.why-grid,
.services-grid,
.projects-grid,
.showcase-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1.4rem;
  justify-items: stretch;
  margin-top: 1.2rem;
  width: 100%;
}

.stat-card,
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(16px);
}

.stat-card {
  padding: 0.95rem 0.85rem;
}

.stat-card {
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(18px);
  padding: 1.4rem 1.2rem;
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel ul {
  padding-left: 1rem;
  margin: 0.9rem 0 1rem;
}

.hero-panel li {
  margin-bottom: 0.45rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 520px;
}

.section-heading h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-top: 0.2rem;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  max-width: 500px;
  line-height: 1.7;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  padding: 1.5rem;
  position: relative;
}

.card::before {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.95), rgba(139, 92, 246, 0.7));
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.card p,
.card li,
.card span {
  color: var(--muted);
  line-height: 1.7;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.budget-pill {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #bae6fd;
  font-size: 0.8rem;
  white-space: nowrap;
}

.project-card ul {
  padding-left: 1rem;
  margin: 0.9rem 0 1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(56, 189, 248, 0.12);
  color: #bae6fd;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  font-size: 0.83rem;
}

.testimonial-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #f8fafc;
}

.testimonial-card span {
  color: #94a3b8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.15rem;
}

.contact-card ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 1rem;
  list-style: disc;
}

.contact-card li {
  margin-bottom: 0.4rem;
  color: var(--muted);
}

#price-tag li {
  font-size: 1.1rem;
  color: #f8fafc;
  font-weight: 600;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-copy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-copy a {
  color: var(--text);
  text-decoration: underline;
}

.text-link {
  color: #bae6fd;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.2);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.3);
}

.floating-cta::after {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent 70%);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.floating-cta:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
  border-radius: 20px;
  background: white;
}

footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--accent);
  transition: all 0.18s ease;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-icon:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  padding: 1.6rem 1.6rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10, 16, 32, 0.9);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.22);
}

.hero-panel-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-panel-visual {
  display: grid;
  place-items: center;
  justify-items: center;
}

.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.18s; }
.stat-card:nth-child(3) { animation-delay: 0.32s; }
.stat-card:nth-child(4) { animation-delay: 0.45s; }

@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-photo {
  width: 100%;
  height: auto;
  min-width: 220px;
  max-width: 320px;
  max-height: 300px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 55px rgba(2, 6, 23, 0.28);
}

@media (max-width: 980px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel-visual {
    justify-items: center;
  }

  .hero-photo {
    max-width: 100%;
    min-width: 0;
  }
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 72%);
  pointer-events: none;
}

.hero-panel h3 {
  margin-bottom: 1rem;
  color: #f8fafc;
}

.hero-panel h3 {
  margin-bottom: 1rem;
}

.hero-panel-footer {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-panel-footer span {
  background: rgba(255,255,255,0.05);
  color: #dbeafe;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.why-card,
.project-card,
.card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.why-card:hover,
.project-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.35);
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 90px rgba(2, 6, 23, 0.22);
  padding: 1.2rem 0;
}

.testimonial-marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2,8,20,0.95), transparent 18%, transparent 82%, rgba(2,8,20,0.95));
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  transition: transform 0.3s ease;
}

.testimonial-track .card {
  min-width: 320px;
  flex-shrink: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.control-button {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.control-button::after {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55), transparent 70%);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.control-button:hover:not(:disabled)::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.control-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(56, 189, 248, 0.12);
}

.control-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-links a {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255,255,255,0.04);
  color: #bae6fd;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .section {
    padding: 3.4rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    text-align: center;
  }
}
