    :root {
      --bg: #050711;
      --bg-elevated: #0b0f1d;
      --bg-soft: #101527;
      --border-subtle: rgba(255,255,255,0.06);
      --accent: #4fd1c5;
      --accent-soft: rgba(79, 209, 197, 0.12);
      --accent-strong: #38b2ac;
      --accent-alt: #f6ad55;
      --text-main: #f7fafc;
      --text-muted: #a0aec0;
      --text-faint: #718096;
      --danger: #fc8181;
      --radius-lg: 18px;
      --radius-pill: 999px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
      --shadow-chip: 0 0 0 1px rgba(255,255,255,0.06);
      --max-width: 1040px;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--bg);
      color: var(--text-main);
      scroll-behavior: smooth;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 16px clamp(16px, 4vw, 32px) 40px;
    }

    /* -----------------------
       HEADER / NAV
    ------------------------ */
    .site-header-wrap {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(5,7,17,0.96), rgba(5,7,17,0.82), transparent);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .site-header {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 10px clamp(16px, 4vw, 32px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      background: radial-gradient(circle at 20% 20%, #f6e05e, #4fd1c5 40%, #2c5282 85%);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 0 25px rgba(72,187,255,0.45);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand-name {
      font-family: "Playfair Display", serif;
      font-size: 1.08rem;
      letter-spacing: 0.03em;
    }

    .brand-tagline {
      font-size: 0.74rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 18px;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: var(--text-muted);
    }

    .nav-links a:hover {
      color: var(--text-main);
    }

    .btn-primary,
    .btn-ghost {
      border-radius: var(--radius-pill);
      padding: 8px 18px;
      font-size: 0.9rem;
      font-weight: 500;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      background: transparent;
      color: var(--text-main);
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-strong));
      border-color: rgba(255,255,255,0.12);
      box-shadow: 0 12px 30px rgba(56, 178, 172, 0.45);
      color: #041316;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 36px rgba(56,178,172,0.65);
    }

    .btn-ghost {
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.02);
    }

    .btn-ghost:hover {
      background: rgba(255,255,255,0.06);
    }

    .nav-cta-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-mobile-label {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* -----------------------
       HERO
    ------------------------ */
    .hero {
      padding-top: 24px;
      padding-bottom: 38px;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr);
      gap: 26px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px 4px 4px;
      border-radius: var(--radius-pill);
      background: radial-gradient(circle at 0 0, rgba(72,187,255,0.3), transparent 55%);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .eyebrow-dot {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #bee3f8, #2b6cb0 75%);
      box-shadow: 0 0 18px rgba(56, 178, 172, 0.6);
    }

    .eyebrow span {
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .hero-title {
      margin: 14px 0 8px;
      font-family: "Playfair Display", serif;
      font-size: clamp(2.2rem, 4.2vw, 2.9rem);
      line-height: 1.1;
    }

    .hero-title span {
      background: linear-gradient(135deg, #bee3f8, #fbd38d);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 32rem;
      line-height: 1.6;
    }

    .hero-subtitle strong {
      color: #e2e8f0;
      font-weight: 500;
    }

    .hero-cta-row {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .hero-meta {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
      color: var(--text-faint);
    }

    .hero-pill {
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(15,23,42,0.7);
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.8rem;
      margin-top: 10px;
      color: var(--text-muted);
    }

    .hero-metric strong {
      color: #e2e8f0;
      font-weight: 600;
    }

    .hero-card {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(49,151,149,0.2), transparent 55%), var(--bg-elevated);
      padding: 18px 16px 16px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .hero-card-label {
      font-size: 0.76rem;
      color: var(--accent-alt);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 6px;
    }

    .hero-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr);
      gap: 10px;
      font-size: 0.8rem;
    }

    .hero-grid-row {
      padding: 8px 9px;
      border-radius: 10px;
      background: rgba(15,23,42,0.85);
      border: 1px solid rgba(255,255,255,0.04);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .hero-grid-row span:first-child {
      color: var(--text-muted);
    }

    .hero-grid-row span:last-child {
      font-weight: 500;
      color: #edf2f7;
    }

    .hero-note {
      margin-top: 10px;
      font-size: 0.75rem;
      color: var(--text-faint);
    }

    /* -----------------------
       SECTION WRAPPERS
    ------------------------ */
    section {
      margin-bottom: 32px;
    }

    .section-label {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      margin-bottom: 6px;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .section-intro {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 34rem;
      margin-bottom: 18px;
    }

    /* -----------------------
       SERVICES
    ------------------------ */
    .services-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }

    .service-card {
      border-radius: var(--radius-lg);
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      padding: 14px 14px 13px;
      box-shadow: var(--shadow-soft);
    }

    .service-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      margin-bottom: 4px;
    }

    .service-name {
      font-size: 0.98rem;
      font-weight: 600;
    }

    .service-tag {
      font-size: 0.7rem;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      background: var(--accent-soft);
      color: var(--accent-strong);
      border: 1px solid rgba(79, 209, 197, 0.35);
      white-space: nowrap;
    }

    .service-copy {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .service-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 0.76rem;
      color: var(--text-faint);
    }

    .service-meta span {
      padding: 3px 7px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-subtle);
      background: rgba(15,23,42,0.8);
    }

    /* -----------------------
       EXAMPLES
    ------------------------ */
    .examples-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 12px;
    }

    .example-card {
      border-radius: var(--radius-lg);
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      padding: 12px 12px 11px;
      position: relative;
      overflow: hidden;
    }

    .example-type-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      margin-bottom: 4px;
    }

    .example-type {
      font-size: 0.9rem;
      font-weight: 500;
    }

    .example-chip {
      font-size: 0.7rem;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(250,250,250,0.2);
      color: var(--text-faint);
    }

    .example-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .example-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.76rem;
      color: var(--text-faint);
    }

    .example-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--accent);
      font-weight: 500;
    }

    .example-link span {
      border-bottom: 1px dashed rgba(79, 209, 197, 0.4);
    }

    /* -----------------------
       PRICING
    ------------------------ */
    .pricing-note {
      font-size: 0.8rem;
      color: var(--text-faint);
      margin-bottom: 10px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }

    .pricing-card {
      border-radius: var(--radius-lg);
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      padding: 14px 14px 13px;
      box-shadow: var(--shadow-soft);
      position: relative;
    }

    .pricing-badge {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      padding: 3px 9px;
      border-radius: var(--radius-pill);
      background: rgba(251, 211, 141, 0.12);
      color: var(--accent-alt);
      border: 1px solid rgba(251, 211, 141, 0.6);
    }

    .pricing-name {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .pricing-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .pricing-price {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .pricing-price span {
      font-size: 0.8rem;
      color: var(--text-faint);
      font-weight: 400;
    }

    .pricing-list {
      margin: 0 0 10px 0;
      padding-left: 1.1em;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .pricing-list li {
      margin-bottom: 3px;
    }

    .pricing-footnote {
      font-size: 0.75rem;
      color: var(--text-faint);
    }

    .pricing-cta {
      margin-top: 9px;
    }

    /* -----------------------
       PROCESS
    ------------------------ */
    .process-steps {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      font-size: 0.82rem;
    }

    .process-step {
      border-radius: var(--radius-lg);
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      padding: 10px 11px 9px;
    }

    .process-step-label {
      font-size: 0.75rem;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 2px;
    }

    .process-step-title {
      font-size: 0.92rem;
      font-weight: 500;
      margin-bottom: 3px;
    }

    .process-step-body {
      color: var(--text-muted);
    }

    /* -----------------------
       ABOUT
    ------------------------ */
    .about {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(56, 178, 172, 0.18), transparent 55%), var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      padding: 14px 14px 12px;
      font-size: 0.88rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
    }

    .about-main p {
      margin: 0 0 6px;
      color: var(--text-muted);
    }

    .about-main p:last-child {
      margin-bottom: 0;
    }

    .about-side {
      font-size: 0.8rem;
      color: var(--text-faint);
    }

    .about-side strong {
      color: #e2e8f0;
      font-weight: 500;
    }

    /* -----------------------
       FAQ
    ------------------------ */
    .faq-list {
      font-size: 0.82rem;
      display: grid;
      gap: 9px;
    }

    .faq-item {
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
      padding: 9px 11px 8px;
      background: var(--bg-elevated);
    }

    .faq-q {
      font-weight: 500;
      margin-bottom: 2px;
    }

    .faq-a {
      color: var(--text-muted);
    }

    /* -----------------------
       CONTACT
    ------------------------ */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }

    .contact-card {
      border-radius: var(--radius-lg);
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      padding: 14px 14px 13px;
    }

    .contact-card p {
      margin: 0 0 8px;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .contact-inline {
      font-size: 0.8rem;
      color: var(--text-faint);
    }

    .contact-inline a {
      color: var(--accent);
      border-bottom: 1px dashed rgba(79, 209, 197, 0.5);
    }

    form {
      display: grid;
      gap: 9px;
      font-size: 0.85rem;
    }

    label {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .field-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    input, textarea, select {
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(15,23,42,0.9);
      padding: 8px 10px;
      color: var(--text-main);
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(79,209,197,0.3);
    }

    textarea {
      min-height: 90px;
      resize: vertical;
    }

    .contact-note {
      font-size: 0.75rem;
      color: var(--text-faint);
      margin-top: 4px;
    }

    /* -----------------------
       FOOTER
    ------------------------ */
    footer {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 14px clamp(16px, 4vw, 32px) 24px;
      font-size: 0.8rem;
      color: var(--text-faint);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      justify-content: space-between;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-faint);
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    /* -----------------------
       RESPONSIVE
    ------------------------ */
    @media (min-width: 720px) {
      .nav-links {
        display: flex;
      }
      .nav-mobile-label {
        display: none;
      }
      .hero {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        align-items: center;
      }
      .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .examples-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .about-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      }
      .contact-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      }
    }

    /* --- DROP-IN ENHANCEMENTS (Mobile-First) --- */

/* Global UX & Readability */
:root {
  /* Slightly more rounded main radius */
  --radius-lg: 20px;
  /* Slightly lighter main text for better contrast on the dark background */
  --text-main: #edf2f7;
  /* Darken elevated background slightly for more depth */
  --bg-elevated: #0a0d18; 
}

/* Improve Link Focus States */
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent-alt);
  outline-offset: 2px;
  border-radius: var(--radius-lg);
}

/* Header & Navigation Clarity */
.site-header-wrap {
  /* Sharper backdrop blur */
  backdrop-filter: blur(14px);
  /* Use a subtle shadow instead of a full border for a 'floating' effect */
  border-bottom: none; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Improve Button Contrast & Effect */
.btn-primary {
  /* Increase shadow intensity for a more lifted look */
  box-shadow: 0 10px 25px rgba(56, 178, 172, 0.45);
}
.btn-primary:active {
  /* Subtle press effect */
  transform: translateY(0); 
  box-shadow: 0 6px 15px rgba(56, 178, 172, 0.35);
}
.btn-ghost {
  /* Subtle lift on hover for ghost buttons */
  transform: scale(1.02); 
}

/* Section Headings & Separation */
.section-title {
  /* Slightly more impactful size on mobile */
  font-size: clamp(1.6rem, 5vw, 2rem); 
  color: var(--text-main);
}
section {
  /* Increase vertical rhythm between sections */
  margin-bottom: clamp(50px, 8vw, 80px); 
}

/* Card Visuals (Services, Examples, Pricing) */
.service-card,
.example-card,
.pricing-card,
.process-step,
.about,
.faq-item,
.contact-card {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  /* Remove the soft shadow on most cards for a flatter, modern look */
  box-shadow: none; 
  border-color: var(--border-subtle);
}

.service-card:hover,
.example-card:hover {
  /* Subtle lift effect on hover */
  transform: translateY(-2px); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

/* Pricing Card Highlight */
.pricing-card.is-highlighted { /* Add a class 'is-highlighted' to the MOST COMMON card */
  border-color: var(--accent);
  background: radial-gradient(circle at 100% 0, rgba(79, 209, 197, 0.15), transparent 60%), var(--bg-elevated);
}

/* Input Fields */
input, textarea, select {
  /* Subtle inner shadow for depth */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4); 
}

/* -----------------------
   RESPONSIVE OVERRIDES
------------------------ */
@media (min-width: 720px) {
  /* Re-introduce subtle shadow for cards on desktop for better separation */
  .service-card,
  .example-card,
  .pricing-card,
  .about,
  .contact-card {
    box-shadow: var(--shadow-chip), var(--shadow-soft);
  }
}