﻿:root {
      --bg: #f0f0f1;
      --primary: #77206e;
      --primary-dark: #5e1857;
      --secondary: #ffffff;
      --text: #1c1c1f;
      --muted: #6e6e78;
      --border: rgba(119, 32, 110, 0.12);
      --shadow: 0 18px 55px rgba(31, 16, 30, 0.09);
      --radius: 28px;
      --section-gap: 80px;
      --section-pad: 56px;
      --section-pad-mobile: 24px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

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

    @keyframes floatSoft {
      0%, 100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      overflow-x: clip;
    }

    body {
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      background:
        radial-gradient(circle at top left, rgba(119, 32, 110, 0.12), transparent 32%),
        radial-gradient(circle at top right, rgba(119, 32, 110, 0.08), transparent 26%),
        var(--bg);
      color: var(--text);
    }

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

    img,
    svg,
    iframe {
      max-width: 100%;
    }

    img {
      display: block;
      height: auto;
    }

    .page {
      width: min(1320px, calc(100% - 32px));
      margin: 0 auto;
      padding: 24px 0 40px;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 18px;
      background: linear-gradient(135deg, rgba(119, 32, 110, 0.82), rgba(59, 23, 54, 0.76));
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 22px;
      box-shadow: 0 18px 36px rgba(17, 8, 17, 0.14);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      position: sticky;
      top: 16px;
      z-index: 20;
      font-family: "Poppins", sans-serif;
    }

    .topbar .brand {
      order: 1;
    }

    .topbar .nav {
      order: 2;
      flex: 1 1 auto;
      justify-content: center;
    }

    .topbar .lang-switch {
      order: 3;
      margin-left: auto;
    }

    .topbar .mobile-toggle {
      order: 4;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.12);
      flex: 0 0 auto;
      font-family: "Poppins", sans-serif;
    }

    .lang-switch button {
      border: 0;
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      font: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      padding: 8px 10px;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .sidebar-lang-switch {
      display: none;
      margin-top: 14px;
      justify-content: center;
      background: rgba(119, 32, 110, 0.05);
      border-color: rgba(119, 32, 110, 0.08);
    }

    .sidebar-lang-switch button {
      color: var(--muted);
    }

    .sidebar-lang-switch button.is-active {
      color: #fff;
      background: var(--primary);
    }

    .lang-switch button.is-active {
      background: #fff;
      color: var(--primary);
    }

    .mobile-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      box-shadow: 0 10px 22px rgba(31, 16, 30, 0.08);
      cursor: pointer;
      flex: 0 0 auto;
      font-family: "Poppins", sans-serif;
    }

    .mobile-toggle svg {
      width: 22px;
      height: 22px;
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(19, 10, 18, 0.42);
      backdrop-filter: blur(2px);
      z-index: 35;
    }

    .mobile-sidebar {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: min(88vw, 340px);
      height: 100dvh;
      padding: 18px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: -18px 0 42px rgba(31, 16, 30, 0.18);
      z-index: 40;
      transform: translateX(102%);
      transition: transform 0.25s ease;
      overscroll-behavior: contain;
    }

    .mobile-sidebar.is-open {
      transform: translateX(0);
    }

    .mobile-sidebar .sidebar-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .mobile-sidebar .sidebar-close {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(119, 32, 110, 0.12);
      background: #fff;
      color: var(--primary);
      font-size: 1.25rem;
      cursor: pointer;
    }

    .mobile-sidebar .sidebar-nav {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .mobile-sidebar .sidebar-nav a {
      display: block;
      padding: 14px 16px;
      border-radius: 16px;
      background: #f8f5f8;
      color: var(--text);
      font-weight: 600;
    }

    .mobile-sidebar .sidebar-nav a:hover {
      color: var(--primary);
      background: rgba(119, 32, 110, 0.08);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand img {
      width: clamp(150px, 22vw, 268px);
      height: auto;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1.1;
      color: #fff;
      letter-spacing: 0.02em;
    }

    .brand span {
      display: block;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.78);
      margin-top: 3px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      justify-content: flex-end;
      font-family: "Poppins", sans-serif;
    }

    .nav a {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 500;
    }

    .nav a:hover {
      color: #fff;
    }

    .hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(30px, 4vw, 54px);
      margin-top: -50px;
      padding:
        clamp(132px, 15vh, 190px)
        clamp(28px, 4vw, 56px)
        clamp(40px, 5vh, 72px);
      align-items: stretch;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 34px 34px;
      background: linear-gradient(135deg, #77206e 0%, #65205c 44%, #3b1736 100%);
      box-shadow: 0 24px 48px rgba(23, 11, 22, 0.16);
    }

    .hero-extras {
      margin-top: var(--section-gap);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -18px -18px auto auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
      filter: blur(4px);
      pointer-events: none;
    }

    .hero-card,
    .side-card,
    .feature,
    .metric {
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(119, 32, 110, 0.1);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .hero-card {
      padding: 0;
      overflow: hidden;
      position: relative;
      animation: fadeUp 0.7s ease both;
      border-radius: 0;
      z-index: 1;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      color: #fff;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: auto -90px -120px auto;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(119, 32, 110, 0.1);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    h1 {
      margin: 18px 0 16px;
      font-size: clamp(2.15rem, 5vw, 4.15rem);
      line-height: 1.02;
      letter-spacing: -0.06em;
      color: #151518;
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      width: 100%;
      max-width: none;
    }

    .hero-title {
      display: block;
      width: 100%;
      max-width: none;
      overflow-wrap: normal;
      text-wrap: balance;
      color: #fff;
    }

    h2 {
      font-size: clamp(1.45rem, 2.3vw, 2.1rem);
      line-height: 1.15;
      font-family: "Poppins", sans-serif;
      font-weight: 700;
    }

    h3 {
      font-size: 1.15rem;
      line-height: 1.25;
      font-family: "Poppins", sans-serif;
      font-weight: 700;
    }

    h1 span {
      color: #fff;
    }

    #heroHighlight {
      color: #ffd8f2;
    }

    .lead {
      margin: 0;
      max-width: 760px;
      font-size: clamp(1.02rem, 1.25vw, 1.18rem);
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.84);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 16px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(119, 32, 110, 0.16);
    }

    .btn-primary {
      background: #fff;
      color: var(--primary-dark);
      box-shadow: 0 14px 28px rgba(17, 8, 17, 0.16);
    }

    .btn-primary:hover {
      box-shadow: 0 16px 32px rgba(17, 8, 17, 0.18);
    }

    .hero-card .btn-secondary {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.28);
    }

    .hero-card .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.18);
      box-shadow: 0 12px 24px rgba(17, 8, 17, 0.12);
    }

    .btn-secondary {
      background: #fff;
      color: var(--primary);
      border-color: rgba(119, 32, 110, 0.18);
    }

    .form-actions .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 14px 28px rgba(119, 32, 110, 0.22);
    }

    .form-actions .btn-primary:hover {
      box-shadow: 0 16px 32px rgba(119, 32, 110, 0.26);
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .metric {
      padding: 20px;
    }

    .metric strong {
      display: block;
      font-size: 1.8rem;
      color: var(--primary);
      line-height: 1;
    }

    .metric span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .side-card {
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
      justify-content: flex-start;
      animation: fadeUp 0.8s ease both;
      animation-delay: 0.06s;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      position: relative;
      z-index: 1;
    }

    .visual {
      border-radius: 0;
      overflow: visible;
      min-height: auto;
      background: transparent;
      padding: 32px 0 40px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      color: var(--text);
      animation: floatSoft 6s ease-in-out infinite;
    }

    .visual-top {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 18px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 9px 14px;
      background: rgba(119, 32, 110, 0.08);
      color: var(--primary);
      font-size: 0.84rem;
    }

    .motion-box {
      margin-top: 18px;
      border-radius: 0;
      background: transparent;
      border: 0;
      padding: 24px 0 72px;
      box-shadow: none;
      display: grid;
      gap: 12px;
      min-height: auto;
      overflow: hidden;
      justify-items: center;
      text-align: center;
    }

    .motion-label {
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .motion-word {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(2.4rem, 5vw, 5rem);
      font-weight: 800;
      line-height: 0.95;
      min-height: 1.15em;
      letter-spacing: -0.06em;
      color: var(--text);
    }

    .motion-word.is-animating {
      animation: wordSlide 0.38s ease;
    }

    .motion-subtext {
      max-width: 760px;
      font-size: 1.06rem;
      line-height: 1.8;
      color: var(--muted);
      margin: 0 auto;
    }

    .motion-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .motion-dots span {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: rgba(119, 32, 110, 0.18);
      transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
    }

    .motion-dots span.is-active {
      background: var(--primary);
      transform: scale(1.25);
      opacity: 1;
    }

    .stats-section {
      margin-top: 14px;
      padding: 24px;
      background: #fff;
      border: 1px solid rgba(119, 32, 110, 0.1);
      border-radius: 26px;
      box-shadow: 0 18px 40px rgba(31, 16, 30, 0.08);
      animation: fadeUp 0.7s ease both;
      animation-delay: 0.12s;
      text-align: center;
      color: var(--text);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      justify-items: center;
    }

    .stat-card {
      padding: 18px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(119, 32, 110, 0.04), rgba(255, 255, 255, 1));
      border: 1px solid rgba(119, 32, 110, 0.08);
      text-align: center;
    }

    .stat-icon {
      width: 42px;
      height: 42px;
      margin: 0 auto 12px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(119, 32, 110, 0.1);
      color: var(--primary);
      font-size: 1rem;
    }

    .stat-icon i {
      font-size: 1rem;
      line-height: 1;
    }

    .stat-card strong {
      display: block;
      font-size: clamp(1.55rem, 3vw, 2.2rem);
      line-height: 1;
      color: var(--primary);
      letter-spacing: -0.04em;
    }

    .stat-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .stats-section .stat-card {
      background: linear-gradient(135deg, rgba(119, 32, 110, 0.04), rgba(255, 255, 255, 1));
      border: 1px solid rgba(119, 32, 110, 0.08);
      color: var(--text);
    }

    .stats-section .stat-card strong {
      color: var(--primary);
    }

    .stats-section .stat-card span {
      color: var(--muted);
    }

    @keyframes wordSlide {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

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

    .section {
      margin-top: var(--section-gap);
      position: relative;
      overflow: hidden;
      animation: fadeUp 0.7s ease both;
    }

    .section::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(119, 32, 110, 0.08), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .section-title {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(1.4rem, 2vw, 2rem);
      color: #1a1a1d;
      letter-spacing: -0.03em;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.7;
      font-size: 0.98rem;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .feature {
      padding: 28px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(31, 16, 30, 0.12);
    }

    .feature .icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(119, 32, 110, 0.1);
      color: var(--primary);
      font-size: 1rem;
      font-weight: 800;
    }

    .feature h3 {
      margin: 16px 0 10px;
      font-size: 1.1rem;
    }

    .feature p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.96rem;
    }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.94rem;
    }

    .feature-link:hover {
      color: var(--primary-dark);
    }

    .service-directory {
      margin-top: var(--section-gap);
      position: relative;
      z-index: 1;
    }

    .service-directory .section-title {
      margin-bottom: 18px;
    }

    .service-directory-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-page-card {
      min-height: 0;
      aspect-ratio: auto;
      height: auto;
      padding: 30px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(119, 32, 110, 0.1);
      box-shadow: 0 18px 40px rgba(31, 16, 30, 0.08);
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-page-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(31, 16, 30, 0.12);
    }

    .service-page-card .service-page-top {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      flex: 0 0 auto;
    }

    .service-page-card .service-page-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(119, 32, 110, 0.1);
      color: var(--primary);
      flex: 0 0 auto;
    }

    .service-page-card h3 {
      margin: 0 0 8px;
      font-size: clamp(1.02rem, 1.5vw, 1.18rem);
      line-height: 1.22;
    }

    .service-page-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.92rem;
    }

    .service-page-card .service-page-text {
      flex: 1 1 auto;
      margin-top: 8px;
    }

    .proof-section,
    .faq-section {
      margin-top: var(--section-gap);
      position: relative;
      z-index: 1;
      animation: fadeUp 0.7s ease both;
    }

    .proof-grid,
    .faq-list {
      display: grid;
      gap: 16px;
    }

    .proof-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .faq-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-card,
    .faq-item {
      padding: 22px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(119, 32, 110, 0.1);
      box-shadow: 0 16px 34px rgba(31, 16, 30, 0.08);
    }

    .proof-card strong {
      display: block;
      font-size: 1.02rem;
      line-height: 1.3;
      color: var(--text);
      margin-bottom: 10px;
    }

    .proof-card span {
      display: block;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.94rem;
    }

    .faq-item {
      padding: 0;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.35;
      position: relative;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 20px;
      top: 18px;
      font-size: 1.2rem;
      color: var(--primary);
    }

    .faq-item[open] summary::after {
      content: "–";
    }

    .faq-item p {
      margin: 0;
      padding: 0 22px 20px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.94rem;
    }

    .service-page-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-end;
      margin-top: auto;
      margin-left: auto;
      color: var(--primary);
      font-weight: 700;
    }

    .hero-extras .section-title {
      margin-bottom: 18px;
    }

    .story-section {
      margin-top: var(--section-gap);
      padding: 56px;
      border-radius: 36px;
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
        radial-gradient(circle at bottom right, rgba(119, 32, 110, 0.16), transparent 34%),
        #0b0b0d;
      color: #f4f0ea;
      position: relative;
      overflow: hidden;
      box-shadow: 0 28px 64px rgba(10, 8, 10, 0.3);
    }

    .story-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: 0.16;
      pointer-events: none;
    }

    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
      gap: 32px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .story-copy {
      max-width: 720px;
    }

    .story-title {
      margin: 0 0 24px;
      font-size: clamp(2rem, 4vw, 4.4rem);
      line-height: 0.95;
      letter-spacing: -0.07em;
      color: #f7f3ed;
    }

    .story-copy p {
      margin: 0 0 22px;
      color: rgba(244, 240, 234, 0.76);
      line-height: 1.8;
      font-size: 1.02rem;
      max-width: 720px;
    }

    .story-copy p strong {
      color: #fff;
      font-weight: 700;
    }

    .story-portrait {
      justify-self: center;
      width: min(100%, 460px);
      aspect-ratio: 1;
      position: relative;
      display: grid;
      place-items: center;
    }

    .story-portrait::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow:
        0 0 0 18px rgba(255, 255, 255, 0.02),
        0 0 64px rgba(255, 255, 255, 0.08);
    }

    .story-portrait::after {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .story-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      filter: grayscale(1) contrast(1.05) brightness(0.88);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    }

    .about-section {
      margin-top: var(--section-gap);
      position: relative;
      z-index: 1;
    }

    .about-section .section-title {
      margin-bottom: 18px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 18px;
    }

    .about-card {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(119, 32, 110, 0.1);
      box-shadow: 0 18px 40px rgba(31, 16, 30, 0.08);
    }

    .about-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.96rem;
    }

    .about-card h3 {
      margin: 0 0 10px;
      font-size: 1.08rem;
    }

    .about-card .about-kicker {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(119, 32, 110, 0.1);
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .about-card-wide {
      background: linear-gradient(135deg, rgba(119, 32, 110, 0.98), rgba(94, 24, 87, 0.98));
      color: #fff;
    }

    .about-card-wide p {
      color: rgba(255, 255, 255, 0.86);
      font-size: 1rem;
    }

    .about-card-wide .about-kicker {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
    }

    .about-card-emphasis {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
    }

    .experience-number {
      display: block;
      margin-bottom: 16px;
      font-size: clamp(2.4rem, 5vw, 4.8rem);
      line-height: 0.9;
      letter-spacing: -0.08em;
      font-weight: 800;
      color: var(--primary);
    }

    .about-card-wide .experience-number {
      color: #fff;
    }

    .about-section,
    .service-directory,
    .story-section,
    .process-section,
    .proof-section,
    .faq-section,
    .cta,
    .contact-section {
      padding: var(--section-pad);
    }

    .process-section {
      margin-top: var(--section-gap);
      border-radius: 36px;
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 35%),
        linear-gradient(135deg, #8a2d7c, #6e1f63 62%, #5e1857);
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: 0 28px 64px rgba(94, 24, 87, 0.34);
    }

    .process-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 22px 22px;
      opacity: 0.22;
      pointer-events: none;
    }

    .process-section .section-title {
      display: block;
      margin-bottom: 22px;
      text-align: center;
    }

    .process-section .section-title > div {
      width: 100%;
    }

    .process-section .section-title h2 {
      color: #fff;
      font-size: clamp(1.65rem, 3vw, 2.9rem);
      letter-spacing: -0.04em;
    }

    .process-section .section-title p {
      color: rgba(255, 255, 255, 0.72);
      max-width: 720px;
      margin: 12px auto 0;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .process-card {
      min-height: 320px;
      padding: 32px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(8px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .process-card-body {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
      z-index: 1;
      min-height: 100%;
    }

    .process-card-copy {
      width: min(100%, 54%);
    }

    .process-art {
      width: min(100%, 52%);
      max-width: 340px;
      margin-left: auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .process-art img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
    }

    .process-card-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      margin-bottom: 12px;
    }

    .process-card::after {
      content: "";
      position: absolute;
      inset: auto -40px -40px auto;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
      pointer-events: none;
    }

    .process-card h3 {
      margin: 0;
      font-size: clamp(1.35rem, 2.4vw, 2.15rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      color: #fff;
      max-width: none;
      width: 100%;
    }

    .process-card h3 .accent {
      display: block;
      color: #c7b8f4;
    }

    .process-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      line-height: 1.7;
      max-width: none;
      font-size: 0.96rem;
    }

    .process-card-index {
      flex: 0 0 auto;
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      color: rgba(255, 255, 255, 0.44);
    }

    .process-card-large {
      grid-column: span 6;
    }

    .process-card-medium {
      grid-column: span 6;
    }

    .process-card-small {
      grid-column: span 4;
    }

    .process-card-small .process-card-copy {
      width: min(100%, 58%);
    }

    .process-card-small .process-art {
      width: min(100%, 48%);
      max-width: 300px;
    }

    .process-card-dark {
      background: rgba(255, 255, 255, 0.1);
    }

    .process-card-outline {
      background: rgba(255, 255, 255, 0.06);
    }

    .cta {
      margin-top: var(--section-gap);
      background: linear-gradient(135deg, rgba(119, 32, 110, 0.96), rgba(94, 24, 87, 0.96));
      border-radius: 30px;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 20px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      animation: fadeUp 0.7s ease both;
    }

    .cta::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
      pointer-events: none;
    }

    .cta h2 {
      margin: 0 0 8px;
      font-size: clamp(1.45rem, 2.5vw, 2.2rem);
    }

    .cta p {
      margin: 0;
      opacity: 0.88;
      line-height: 1.7;
      max-width: 700px;
    }

    .cta .btn-secondary {
      border: none;
      color: var(--primary);
    }

    .contact-section {
      margin-top: var(--section-gap);
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
        radial-gradient(circle at bottom right, rgba(119, 32, 110, 0.12), transparent 34%),
        #151518;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 30px 30px 0 0;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      animation: fadeUp 0.7s ease both;
    }

    .contact-section .section-title {
      display: block;
      margin-bottom: 18px;
      text-align: center;
    }

    .contact-section .section-title > div {
      width: 100%;
    }

    .contact-section .section-title h2 {
      color: #fff;
      font-size: clamp(1.65rem, 3vw, 2.9rem);
      letter-spacing: -0.04em;
    }

    .contact-section .section-title p {
      color: rgba(255, 255, 255, 0.72);
      max-width: 720px;
      margin: 12px auto 0;
    }

    .contact-section .section-kicker {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      inset: auto auto -80px -80px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
      pointer-events: none;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
      gap: 22px;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      width: 100%;
    }

    .contact-column {
      display: grid;
      gap: 12px;
      align-content: start;
      min-width: 0;
    }

    .contact-form-embed {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
      min-height: 360px;
    }

    .contact-form-embed iframe {
      width: 100%;
      height: 360px;
      border: 0;
      display: block;
    }

    .contact-embed-note {
      margin-top: 0;
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-embed-note a {
      color: #fff;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .contact-map {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .contact-map-card {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
      min-height: 360px;
    }

    .contact-map-card iframe {
      width: 100%;
      height: 360px;
      border: 0;
      display: block;
    }

    .contact-address {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-address strong {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      font-size: 1rem;
    }

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

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field label {
      font-size: 0.88rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.86);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      padding: 14px 15px;
      font: inherit;
      color: #fff;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-field select {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .form-field select option {
      color: #fff;
      background: #151518;
    }

    .form-field select:invalid {
      color: rgba(255, 255, 255, 0.62);
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: rgba(255, 255, 255, 0.32);
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
    }

    .form-field textarea {
      min-height: 160px;
      resize: vertical;
    }

    .form-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 6px;
    }

    .form-note {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.65;
    }

    .contact-info {
      display: grid;
      gap: 14px;
    }

    .contact-info-card {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .contact-info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(31, 16, 30, 0.08);
    }

    .contact-info-card strong {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      font-size: 1rem;
    }

    .contact-status {
      margin-top: 14px;
      font-size: 0.92rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.82);
      min-height: 1.4em;
    }

    .floating-actions {
      position: fixed;
      right: 18px;
      bottom: 18px;
      display: grid;
      gap: 12px;
      z-index: 60;
    }

    .floating-actions a,
    .floating-actions button {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 30px rgba(31, 16, 30, 0.18);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    }

    .floating-actions a:hover,
    .floating-actions button:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(31, 16, 30, 0.22);
    }

    .floating-top {
      background: #fff;
      color: var(--primary);
      border: 1px solid rgba(119, 32, 110, 0.12);
    }

    .floating-whatsapp {
      background: #25d366;
      color: #fff;
    }

    .floating-actions svg {
      width: 22px;
      height: 22px;
    }

    html[dir="rtl"] body,
    html[dir="rtl"] .hero-card,
    html[dir="rtl"] .side-card,
    html[dir="rtl"] .section,
    html[dir="rtl"] .cta,
    html[dir="rtl"] .contact-section {
      direction: rtl;
      text-align: right;
      font-family: "Poppins", sans-serif;
    }

    html[dir="rtl"] h1,
    html[dir="rtl"] h2,
    html[dir="rtl"] h3 {
      font-family: "Poppins", sans-serif;
    }

    html[dir="rtl"] .topbar,
    html[dir="rtl"] .sidebar-head,
    html[dir="rtl"] .visual-top,
    html[dir="rtl"] .form-actions,
    html[dir="rtl"] .contact-layout,
    html[dir="rtl"] .hero-actions {
      direction: rtl;
    }

    html[dir="rtl"] .nav {
      justify-content: flex-start;
    }

    html[dir="rtl"] .lang-switch {
      flex-direction: row-reverse;
    }

    footer {
      margin-top: 0;
      padding: 22px 18px;
      background: #151518;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-top: 0;
      border-radius: 0 0 22px 22px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.92rem;
      box-shadow: var(--shadow);
    }

    .footer-social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .footer-social a {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .footer-social a:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.24);
    }

    .footer-social .footer-phone {
      width: auto;
      min-height: 42px;
      padding: 0 14px;
      gap: 8px;
      font-size: 0.82rem;
      white-space: nowrap;
    }

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

    @media (max-width: 980px) {
      .nav {
        gap: 14px;
      }

      .service-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .story-grid {
        grid-template-columns: 1fr;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .story-portrait {
        width: min(100%, 380px);
      }

      .process-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .process-card-large,
      .process-card-medium,
      .process-card-small {
        grid-column: span 6;
      }

      .contact-layout {
        grid-template-columns: 1fr;
      }

      .proof-grid,
      .faq-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      body {
        font-size: 15px;
      }

      .page {
        width: min(100% - 20px, 100%);
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 16px;
        padding-bottom: 20px;
      }

      .topbar {
        position: sticky;
        top: 10px;
        z-index: 85;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "brand toggle";
        gap: 10px 12px;
        padding: 12px;
        border-radius: 18px;
        align-items: center;
      }

      .topbar .brand {
        grid-area: brand;
        min-width: 0;
      }

      .brand img {
        width: clamp(120px, 34vw, 150px);
      }

      .mobile-toggle {
        grid-area: toggle;
        justify-self: end;
      }

      .nav {
        display: none;
      }

      .lang-switch {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .mobile-overlay,
      .mobile-sidebar {
        display: block;
      }

      .sidebar-lang-switch {
        display: inline-flex;
      }

      .hero-card,
      .side-card,
      .feature,
      .cta,
      .story-section,
      .process-section,
      .contact-section,
      .service-page-card,
      .stats-section {
        border-radius: 24px;
      }

      .hero-card,
      .side-card,
      .feature,
      .cta {
        padding: 18px;
      }

      .hero-card {
        min-height: auto;
      }

      .hero {
        gap: 18px;
        margin-top: -42px;
        padding: 82px 14px 22px;
        border-radius: 0 0 24px 24px;
      }

      h1 {
        font-size: clamp(1.8rem, 8.2vw, 2.65rem);
      }

      .lead {
        font-size: 0.96rem;
      }

      .hero-extras {
        margin-top: 32px;
      }

      .story-section {
        padding: 24px 18px;
      }

      .about-section {
        margin-top: 42px;
      }

      .section,
      .proof-section,
      .faq-section,
      .cta,
      .contact-section {
        margin-top: 42px;
      }

      .proof-card,
      .faq-item {
        padding: 18px;
      }

      .metrics,
      .features,
      .field-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .story-grid {
        gap: 24px;
      }

      .story-title {
        font-size: clamp(1.6rem, 7vw, 2.25rem);
      }

      .story-portrait {
        width: min(100%, 300px);
      }

      .contact-section {
        padding: 22px 18px;
      }

      .faq-item summary {
        padding: 18px 18px 16px;
      }

      .faq-item summary::after {
        right: 16px;
        top: 14px;
      }

      .faq-item p {
        padding: 0 18px 18px;
      }

      .process-section {
        padding: 24px 18px;
      }

      .process-card-large,
      .process-card-medium,
      .process-card-small,
      .process-card-half {
        grid-column: auto;
        flex: 0 0 100%;
        min-height: auto;
      }

      .process-card {
        padding: 20px;
        min-height: auto;
        width: 100%;
        scroll-snap-align: start;
      }

      .process-card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .process-card-copy {
        width: 100%;
      }

      .process-art {
        width: 100%;
        max-width: min(220px, 72vw);
        margin-left: 0;
        margin-top: 0;
      }

      .service-directory-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .service-page-card {
        aspect-ratio: auto;
        padding: 20px;
        gap: 14px;
      }

      .service-page-card .service-page-top {
        gap: 12px;
      }

      .service-page-card .service-page-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
      }

      .service-page-card h3 {
        font-size: 1rem;
      }

      .service-page-card p {
        font-size: 0.88rem;
      }

      .service-page-link {
        font-size: 0.92rem;
      }

      .floating-actions {
        right: 14px;
        bottom: 14px;
      }

      .floating-actions a,
      .floating-actions button {
        width: 46px;
        height: 46px;
        border-radius: 15px;
      }

      .stats-section {
        padding: 18px;
      }

      .stat-card {
        padding: 16px;
      }

      .stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
      }

      .motion-box {
        padding: 18px 0 44px;
      }

      .motion-word {
        font-size: clamp(2rem, 11vw, 3.25rem);
      }

      .motion-subtext {
        font-size: 0.95rem;
        line-height: 1.7;
      }

      .visual {
        padding: 18px 0 26px;
      }

      .section-title {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
      }

      .section-title p {
        font-size: 0.92rem;
      }

      .process-section .section-title h2 {
        font-size: clamp(1.45rem, 7vw, 2.1rem);
      }

      .contact-layout {
        gap: 16px;
      }

      .contact-form-embed {
        min-height: 620px;
      }

      .contact-form-embed iframe {
        min-height: 620px;
        height: 620px;
      }

      .contact-map-card {
        min-height: 240px;
      }

      .contact-map-card iframe {
        min-height: 240px;
        height: 240px;
      }

      .field-grid {
        gap: 12px;
      }

      .form-field input,
      .form-field select,
      .form-field textarea {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 0.95rem;
      }

      .form-actions {
        gap: 10px;
      }

      .form-actions .btn-primary,
      .hero-actions .btn {
        width: 100%;
      }

      .hero-actions {
        gap: 10px;
      }

      .btn {
        padding: 13px 18px;
        border-radius: 14px;
      }

      .footer-social {
        gap: 10px;
        margin-bottom: 12px;
      }

      .footer-social a {
        width: 40px;
        height: 40px;
      }

      footer {
        padding: 18px 14px;
        border-radius: 0 0 18px 18px;
        font-size: 0.88rem;
      }
    }

    @media (max-width: 520px) {
      .hero {
        padding: 72px 12px 18px;
      }

      .hero-actions {
        flex-direction: column;
      }

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

      .service-page-card .service-page-top {
        flex-direction: column;
      }

      .service-page-link {
        align-self: flex-start;
        margin-left: 0;
      }

      .process-card h3 {
        font-size: 1.25rem;
      }

      .process-card p {
        font-size: 0.92rem;
      }

      .story-copy p {
        font-size: 0.96rem;
      }

      .about-card {
        padding: 20px;
      }

      .about-section,
      .service-directory,
      .story-section,
      .process-section,
      .proof-section,
      .faq-section,
      .cta,
      .contact-section {
        padding: var(--section-pad-mobile);
      }

      .topbar {
        top: 8px;
        padding: 10px;
        gap: 8px 10px;
      }

      .brand img {
        width: clamp(104px, 38vw, 132px);
      }

      .mobile-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
      }

      .hero-card,
      .side-card,
      .feature,
      .cta,
      .story-section,
      .process-section,
      .proof-section,
      .faq-section,
      .contact-section,
      .service-page-card,
      .stats-section {
        border-radius: 20px;
      }

      .hero-card,
      .side-card,
      .feature,
      .cta,
      .story-section,
      .process-section,
      .proof-section,
      .faq-section,
      .contact-section,
      .stats-section {
        padding-left: 14px;
        padding-right: 14px;
      }

      .contact-form-embed {
        min-height: 580px;
      }

      .contact-form-embed iframe {
        min-height: 580px;
        height: 580px;
      }

      .contact-map-card {
        min-height: 220px;
      }

      .contact-map-card iframe {
        min-height: 220px;
        height: 220px;
      }

      .proof-grid,
      .faq-list {
        gap: 12px;
      }
    }

    @media (max-width: 400px) {
      .page {
        width: min(100% - 14px, 100%);
        padding-top: 12px;
        padding-bottom: 16px;
      }

      .topbar {
        top: 6px;
        padding: 10px 10px 9px;
      }

      .brand img {
        width: clamp(96px, 40vw, 118px);
      }

      .hero {
        margin-top: -36px;
        padding: 66px 10px 16px;
      }

      h1 {
        font-size: clamp(1.7rem, 8.8vw, 2.3rem);
      }

      .lead,
      .section-title p,
      .motion-subtext,
      .about-card p,
      .service-page-card p,
      .story-copy p {
        font-size: 0.92rem;
      }

      .hero-actions,
      .form-actions {
        gap: 8px;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .floating-actions {
        right: 10px;
        bottom: 10px;
      }

      .floating-actions a,
      .floating-actions button {
        width: 42px;
        height: 42px;
      }

      .contact-form-embed {
        min-height: 560px;
      }

      .contact-form-embed iframe {
        min-height: 560px;
        height: 560px;
      }

      .contact-map-card {
        min-height: 200px;
      }

      .contact-map-card iframe {
        min-height: 200px;
        height: 200px;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
  
