
    :root {
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --blue-soft: #eff6ff;
      --navy: #0f172a;
      --text: #334155;
      --muted: #64748b;
      --border: #dbe5f0;
      --bg: #f6f9fd;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
      --radius: 24px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

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

    .container {
      width: min(1180px, 90%);
      margin: 0 auto;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(219, 229, 240, 0.9);
    }

    .nav-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .brand-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), #60a5fa);
      box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
    }

    .brand-icon--logo {
      background: #fff !important;
      padding: 3px !important;
      overflow: hidden;
    }
    .brand-icon--logo .brand-icon-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: inherit;
      display: block;
    }

    .menu-toggle {
      display: none;
    }

    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--navy);
      background: var(--white);
      cursor: pointer;
    }

    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: 0.25s ease;
    }

    .hamburger span::before {
      transform: translateY(-7px);
    }

    .hamburger span::after {
      transform: translateY(5px);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav a,
    .footer-links a {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      transition: 0.25s ease;
    }

    .nav a:hover,
    .footer-links a:hover {
      color: var(--blue);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
      transition: 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      min-height: 46px;
      padding: 0 26px;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), #3b82f6);
      box-shadow: 0 18px 34px rgba(37, 99, 235, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 46px rgba(37, 99, 235, 0.32);
    }

    .btn-light {
      min-height: 46px;
      padding: 0 26px;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
    }

    .btn-light:hover {
      color: var(--navy);
      background: var(--white);
      transform: translateY(-3px);
    }

    .hero {
      position: relative;
      min-height: 760px;
      display: flex;
      align-items: center;
      padding: 130px 0 70px;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.63) 48%, rgba(2, 6, 23, 0.35)),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1900&q=85");
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 150px;
      background: linear-gradient(to bottom, transparent, var(--white));
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr 0.7fr;
      align-items: center;
      gap: 60px;
    }

    .hero-badge,
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #bfdbfe;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      margin-bottom: 24px;
    }

    .hero-badge span,
    .section-kicker span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #60a5fa;
      box-shadow: 0 0 0 7px rgba(96, 165, 250, 0.17);
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(54px, 7.5vw, 104px);
      line-height: 0.95;
      font-weight: 800;
      letter-spacing: -0.075em;
      color: var(--white);
    }

    .hero h1 strong {
      display: inline-block;
      color: #60a5fa;
      text-shadow: 0 16px 50px rgba(37, 99, 235, 0.45);
    }

    .hero p {
      max-width: 630px;
      margin-top: 28px;
      color: #dbeafe;
      font-size: 18px;
      line-height: 1.75;
    }

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

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 34px;
      margin-top: 44px;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
    }

    .hero-stat + .hero-stat {
      padding-left: 34px;
    }

    .hero-stat + .hero-stat::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 6px;
      width: 1px;
      background: rgba(191, 219, 254, 0.35);
    }

    .hero-stat strong {
      font-size: clamp(26px, 3vw, 34px);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .hero-stat span {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #bfdbfe;
    }

    @media (max-width: 560px) {
      .hero-stats { gap: 18px; }
      .hero-stat + .hero-stat { padding-left: 18px; }
    }

    .hero-card {
      justify-self: end;
      width: min(390px, 100%);
      padding: 26px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(18px);
      box-shadow: 0 28px 90px rgba(0,0,0,0.28);
    }

    .hero-card h3 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .quick-list {
      display: grid;
      gap: 12px;
    }

    .quick-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 15px;
      border-radius: 18px;
      background: rgba(255,255,255,0.14);
      color: #eef6ff;
    }

    .quick-item i {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: var(--white);
      background: var(--blue);
      flex: 0 0 auto;
    }

    .quick-item b {
      display: block;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .quick-item small {
      color: #cbd5e1;
      font-size: 12px;
    }

    .stats {
      position: relative;
      z-index: 5;
      margin-top: -38px;
      padding-bottom: 78px;
    }

    .stats-box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--border);
      box-shadow: var(--shadow);
    }

    .stat {
      padding: 38px 24px;
      text-align: center;
      background: var(--white);
    }

    .stat h2 {
      color: var(--blue);
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.04em;
    }

    .stat p {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.17em;
    }

    section {
      scroll-margin-top: 90px;
    }

    .services {
      padding: 105px 0;
      background: var(--bg);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
      margin-bottom: 54px;
    }

    .section-kicker {
      color: var(--blue);
      margin-bottom: 18px;
    }

    .section-title {
      max-width: 650px;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -0.055em;
      color: var(--navy);
    }

    .section-desc {
      max-width: 465px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

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

    .service-card {
      position: relative;
      padding: 34px;
      min-height: 278px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      transition: 0.28s ease;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.13), transparent 35%);
      opacity: 0;
      transition: 0.28s ease;
    }

    .service-card:hover,
    .service-card.featured {
      transform: translateY(-8px);
      border-color: rgba(37,99,235,0.55);
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.10);
    }

    .service-card:hover::before,
    .service-card.featured::before {
      opacity: 1;
    }

    .service-card > * {
      position: relative;
      z-index: 2;
    }

    .icon-box {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: var(--blue);
      background: var(--blue-soft);
      margin-bottom: 36px;
      font-size: 20px;
    }

    .featured .icon-box {
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), #60a5fa);
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
    }

    .popular-tag {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 3;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--blue);
      background: var(--blue-soft);
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .service-card h3 {
      font-size: 22px;
      margin-bottom: 13px;
      letter-spacing: -0.025em;
    }

    .service-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .learn-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .about {
      padding: 112px 0;
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 90px;
      align-items: start;
    }

    .about-copy p {
      max-width: 505px;
      margin-top: 28px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }



    .about-list {
      margin-top: 24px;
      max-width: 520px;
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .about-list li {
      position: relative;
      padding: 13px 16px 13px 44px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0.95));
      color: var(--dark);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    }

    .about-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--blue);
      color: var(--white);
      font-size: 10px;
    }



    .about-stats {
      margin-top: 26px;
      max-width: 560px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .about-stat-card {
      position: relative;
      overflow: hidden;
      min-height: 118px;
      padding: 22px 20px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    }

    .about-stat-card::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 92px;
      height: 92px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.08);
    }

    .about-stat-card.highlight {
      border-color: rgba(37, 99, 235, 0.35);
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #ffffff;
      box-shadow: 0 22px 54px rgba(37, 99, 235, 0.25);
    }

    .about-stat-card.highlight::after {
      background: rgba(255, 255, 255, 0.16);
    }

    .about-stat-value {
      position: relative;
      z-index: 1;
      display: block;
      font-size: 32px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .about-stat-card.highlight .about-stat-value {
      color: #ffffff;
    }

    .about-stat-label {
      position: relative;
      z-index: 1;
      display: block;
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
      line-height: 1.45;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .about-stat-card.highlight .about-stat-label {
      color: rgba(255, 255, 255, 0.82);
    }


    .about-image-card {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 16px;
      align-items: center;
      max-width: 430px;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--bg);
    }

    .about-image-card i {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: var(--white);
      background: var(--blue);
      font-size: 22px;
    }

    .about-image-card b {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .about-image-card span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .features {
      display: grid;
      gap: 18px;
    }

    .feature {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 20px;
      align-items: start;
      padding: 24px;
      border: 1px solid transparent;
      border-radius: 22px;
      transition: 0.25s ease;
    }

    .feature:hover {
      background: var(--bg);
      border-color: var(--border);
    }

    .feature-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: var(--blue-soft);
      font-size: 13px;
      font-weight: 900;
    }

    .feature h3 {
      font-size: 20px;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .feature p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .cta-section {
      padding: 110px 0;
      background: var(--bg);
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at 82% 25%, rgba(96, 165, 250, 0.30), transparent 34%),
        linear-gradient(135deg, #ffffff, #f8fbff);
      box-shadow: 0 24px 75px rgba(15, 23, 42, 0.08);
      padding: 70px;
    }

    .cta-card::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -90px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.12);
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 690px;
    }

    .cta-content h2 {
      font-size: clamp(40px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.06em;
    }

    .cta-content > p {
      max-width: 520px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .contact-row {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      margin: 36px 0;
    }

    .contact-box {
      min-width: 235px;
      padding: 18px 20px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: rgba(255,255,255,0.72);
    }

    .contact-box small {
      display: block;
      color: var(--muted);
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 8px;
    }

    .contact-box a {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--navy);
      font-size: 17px;
      font-weight: 800;
    }

    .contact-box i {
      color: var(--blue);
    }

    .footer {
      padding: 70px 0 42px;
      background: #f8fafc;
      border-top: 1px solid var(--border);
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }

    .footer-sub {
      margin-top: 10px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-top: 32px;
    }

    .copyright {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .socials {
      display: flex;
      gap: 12px;
    }

    .socials a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--muted);
      background: var(--white);
      transition: 0.25s ease;
    }

    .socials a:hover {
      color: var(--white);
      border-color: var(--blue);
      background: var(--blue);
      transform: translateY(-3px);
    }

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

      .hero-card {
        justify-self: start;
        max-width: 520px;
      }

      .section-head {
        display: block;
      }

      .section-desc {
        margin-top: 22px;
      }

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

      .about-grid {
        gap: 56px;
      }
    }

    @media (max-width: 860px) {
      .container {
        width: min(92%, 680px);
      }

      .header {
        background: rgba(255, 255, 255, 0.96);
      }

      .nav-wrap {
        min-height: 72px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 12px;
        position: relative;
      }

      .hamburger {
        display: grid;
        order: 3;
      }

      .book-btn-mobile {
        order: 2;
        min-height: 42px;
        padding: 0 18px;
        font-size: 11px;
      }

      .nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        order: 4;
        display: grid;
        gap: 6px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: var(--white);
        box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
      }

      .nav a {
        display: block;
        padding: 14px 16px;
        border-radius: 14px;
        background: var(--bg);
      }

      .menu-toggle:checked ~ .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      .menu-toggle:checked + .hamburger span {
        background: transparent;
      }

      .menu-toggle:checked + .hamburger span::before {
        background: var(--navy);
        transform: rotate(45deg);
      }

      .menu-toggle:checked + .hamburger span::after {
        background: var(--navy);
        transform: translateY(-2px) rotate(-45deg);
      }

      .hero {
        min-height: auto;
        padding: 128px 0 72px;
        background-position: center right 35%;
      }

      .hero-grid {
        gap: 34px;
      }

      .hero h1 {
        font-size: clamp(42px, 12vw, 68px);
        line-height: 1;
        letter-spacing: -0.055em;
      }

      .hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.65;
      }

      .hero-card {
        width: 100%;
        padding: 20px;
        border-radius: 22px;
      }

      .stats {
        margin-top: 0;
        padding: 44px 0 64px;
      }

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

      .services,
      .about,
      .cta-section {
        padding: 76px 0;
      }

      .section-title,
      .cta-content h2 {
        font-size: clamp(34px, 9vw, 48px);
        letter-spacing: -0.045em;
      }

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

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

      .feature {
        padding: 20px;
      }

      .cta-card {
        padding: 42px 28px;
        border-radius: 26px;
      }

      .contact-row {
        gap: 14px;
      }

      .contact-box {
        flex: 1 1 100%;
        min-width: 0;
      }

      .footer-top,
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: 91%;
      }

      .brand {
        font-size: 13px;
      }

      .brand-icon {
        width: 32px;
        height: 32px;
        border-radius: 11px;
      }

      .book-btn-mobile {
        display: none;
      }

      .nav-wrap {
        grid-template-columns: 1fr auto;
      }

      .hero {
        padding: 112px 0 62px;
        text-align: left;
      }

      .hero-badge,
      .section-kicker {
        font-size: 10px;
        letter-spacing: 0.15em;
        margin-bottom: 18px;
      }

      .hero h1 {
        font-size: clamp(38px, 14vw, 50px);
      }

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

      .btn {
        width: 100%;
      }

      .hero-card {
        display: none;
      }

      .stats-box {
        grid-template-columns: 1fr;
        border-radius: 20px;
      }

      .stat {
        padding: 28px 18px;
      }

      .section-head {
        margin-bottom: 34px;
      }

      .section-desc,
      .about-copy p,
      .cta-content > p {
        font-size: 15px;
        line-height: 1.7;
      }

      .service-card {
        padding: 26px;
        border-radius: 20px;
      }

      .popular-tag {
        top: 18px;
        right: 18px;
      }

      .icon-box {
        width: 48px;
        height: 48px;
        margin-bottom: 28px;
      }

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

      .feature {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
      }

      .cta-card {
        padding: 32px 20px;
        border-radius: 22px;
      }

      .contact-box a {
        font-size: 15px;
        word-break: break-word;
      }

      .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 14px;
      }

      .footer-links a {
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--white);
      }

      .copyright {
        line-height: 1.7;
      }
    }

    @media (max-width: 360px) {
      .hero h1 {
        font-size: 36px;
      }

      .brand {
        font-size: 12px;
      }

      .section-title,
      .cta-content h2 {
        font-size: 32px;
      }
    }

    /* ── Page (Privacy Policy / Terms) ── */
    .page-main {
      padding: 120px 0 90px;
      min-height: 80vh;
      background: var(--bg);
    }

    .page-content-card {
      max-width: 780px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 56px 64px;
    }

    .page-content-header {
      margin-bottom: 40px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }

    .page-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .page-back:hover { opacity: 0.75; }

    .page-content-header h1 {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      letter-spacing: -0.045em;
      color: var(--navy);
      line-height: 1.1;
    }

    .page-subtitle {
      margin-top: 12px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }

    .page-prose { color: var(--text); font-size: 15px; line-height: 1.85; }
    .page-prose h2 {
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      margin: 36px 0 12px;
    }
    .page-prose h2:first-child { margin-top: 0; }
    .page-prose p { margin-bottom: 16px; }
    .page-prose ul, .page-prose ol {
      padding-left: 22px;
      margin-bottom: 16px;
    }
    .page-prose li { margin-bottom: 8px; }
    .page-prose a { color: var(--blue); text-decoration: underline; }

    @media (max-width: 860px) {
      .page-content-card { padding: 36px 32px; }
    }

    @media (max-width: 560px) {
      .page-main { padding: 100px 0 60px; }
      .page-content-card { padding: 28px 20px; border-radius: 20px; }
    }
