﻿    /* =========================
       Design Tokens
    ========================= */
    :root {
      --forest: #061b49;
      --forest-2: #041438;
      --forest-soft: #eef2f8;
      --navy: #061b49;
      --navy-2: #061b49;
      --navy-soft: #eef2f8;
      --wood: #d19a2e;
      --wood-dark: #9a6a18;
      --wood-soft: #fff6df;
      --gold: #d19a2e;
      --gold-soft: #fff7e3;
      --teal: #061b49;
      --teal-soft: #eef2f8;
      --white: #ffffff;
      --surface: #faf8f3;
      --surface-2: #ffffff;
      --text: #0b1f4d;
      --muted: #637083;
      --border: rgba(18, 52, 84, 0.12);
      --shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      --shadow-strong: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      --radius: 8px;
      --header-height: 84px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: var(--surface);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .material-symbols-rounded {
      font-family: "Material Symbols Rounded";
      font-weight: normal;
      font-style: normal;
      font-size: 24px;
      line-height: 1;
      letter-spacing: normal;
      text-transform: none;
      display: inline-block;
      white-space: nowrap;
      word-wrap: normal;
      direction: ltr;
      -webkit-font-feature-settings: "liga";
      -webkit-font-smoothing: antialiased;
    }

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

    /* =========================
       Shared Components
    ========================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
      white-space: nowrap;
    }

    .btn .material-symbols-rounded {
      font-size: 20px;
    }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--wood), var(--wood-dark));
      box-shadow: 0 14px 30px rgba(209, 154, 46, 0.26);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(209, 154, 46, 0.34);
    }

    .btn-secondary {
      color: var(--forest);
      background: var(--white);
      border-color: var(--border);
      box-shadow: 0 10px 24px rgba(7, 29, 43, 0.08);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(6, 27, 73, 0.28);
      box-shadow: 0 18px 36px rgba(7, 29, 43, 0.11);
    }

    .section {
      position: relative;
      padding: 88px 0;
      overflow: hidden;
    }

    .section-head {
      position: relative;
      z-index: 2;
      max-width: 760px;
      margin: 0 auto 46px;
      text-align: center;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      margin-bottom: 14px;
      border-radius: var(--radius);
      color: var(--wood);
      background: rgba(209, 154, 46, 0.09);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.4px;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: currentColor;
    }

    .section-head h2 {
      margin-bottom: 15px;
      color: var(--navy);
      font-size: clamp(32px, 4vw, 50px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

    .card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(6, 27, 73, 0.22);
      box-shadow: var(--shadow-strong);
    }

    .icon-box {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: var(--radius);
      color: var(--forest);
      background: var(--forest-soft);
      box-shadow: inset 0 -8px 18px rgba(7, 29, 43, 0.04);
      transition: transform 0.25s ease;
    }

    .card:hover .icon-box {
      transform: translateY(-2px);
    }

    .icon-box .material-symbols-rounded {
      font-size: 28px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(64px);
      will-change: opacity, transform;
    }

    .reveal.visible {
      animation: riseFromBottom 0.95s cubic-bezier(0.18, 0.88, 0.28, 1) both;
      animation-delay: var(--reveal-delay, 0ms);
    }

    @keyframes riseFromBottom {
      0% {
        opacity: 0;
        transform: translateY(72px);
      }

      68% {
        opacity: 1;
        transform: translateY(-8px);
      }

      84% {
        transform: translateY(3px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        will-change: auto;
      }

      .reveal.visible {
        animation: none;
      }
    }

    /* =========================
       Header / Navbar
    ========================= */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247, 250, 247, 0.86);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(18px);
      transition: background 0.25s ease, box-shadow 0.25s ease;
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 14px 34px rgba(7, 29, 43, 0.08);
    }

    .nav {
      height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand-logo {
      display: block;
      width: 276px;
      height: auto;
      max-height: 58px;
      object-fit: contain;
    }

    .brand-wordmark {
      display: inline-flex;
      align-items: baseline;
      color: var(--navy);
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-wordmark .dotcom {
      color: var(--wood);
    }

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

    .nav-links a {
      position: relative;
      color: var(--forest);
      font-size: 14px;
      font-weight: 800;
      opacity: 0.82;
      transition: color 0.25s ease, opacity 0.25s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      height: 2px;
      background: var(--wood);
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--wood);
      opacity: 1;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: scaleX(1);
    }

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

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

    .mobile-panel {
      display: none;
    }

    /* =========================
       Hero
    ========================= */
    .hero {
      position: relative;
      padding: 82px 0 76px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234,245,239,0.62));
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(6, 27, 73, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(6, 27, 73, 0.05) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: linear-gradient(90deg, transparent, #000 26%, #000 82%, transparent);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 56px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      margin-bottom: 22px;
      border: 1px solid rgba(6, 27, 73, 0.13);
      border-radius: var(--radius);
      color: var(--forest);
      background: rgba(234, 245, 239, 0.86);
      font-size: 13px;
      font-weight: 900;
    }

    .hero-badge span {
      width: 9px;
      height: 9px;
      border-radius: 2px;
      background: var(--wood);
      box-shadow: 0 0 0 5px rgba(209, 154, 46, 0.12);
    }

    .hero h1 {
      max-width: 720px;
      margin-bottom: 24px;
      color: var(--navy);
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1;
      letter-spacing: 0;
      font-weight: 900;
    }

    .hero h1 strong {
      color: var(--wood);
      font-weight: 900;
    }

    .hero-text {
      max-width: 650px;
      margin-bottom: 32px;
      color: var(--muted);
      font-size: 18px;
    }

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

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 620px;
    }

    .hero-point {
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.74);
      box-shadow: 0 12px 26px rgba(7, 29, 43, 0.06);
    }

    .hero-point strong {
      display: block;
      color: var(--navy);
      font-size: 15px;
      line-height: 1.2;
    }

    .hero-point span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .dashboard-shell {
      position: relative;
    }

    .dashboard-card {
      padding: 22px;
      border: 1px solid rgba(6, 27, 73, 0.12);
      border-radius: var(--radius);
      background: linear-gradient(145deg, #ffffff, #f8faf8);
      box-shadow: var(--shadow-strong);
      transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .dashboard-card:hover {
      transform: perspective(900px) rotateY(0) rotateX(0) translateY(-4px);
      box-shadow: 0 32px 78px rgba(7, 29, 43, 0.18);
    }

    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .dashboard-title strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
    }

    .dashboard-title span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .live-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 11px;
      border-radius: var(--radius);
      color: var(--forest);
      background: var(--forest-soft);
      font-size: 12px;
      font-weight: 900;
    }

    .dashboard-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 14px;
    }

    .dash-stat {
      min-height: 118px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 12px 24px rgba(7, 29, 43, 0.06);
    }

    .dash-stat .material-symbols-rounded {
      color: var(--forest);
      font-size: 24px;
      margin-bottom: 12px;
    }

    .dash-stat:nth-child(2) .material-symbols-rounded {
      color: var(--navy-2);
    }

    .dash-stat:nth-child(3) .material-symbols-rounded {
      color: var(--wood);
    }

    .dash-stat:nth-child(4) .material-symbols-rounded {
      color: #9b741f;
    }

    .dash-stat strong {
      display: block;
      color: var(--navy);
      font-size: 26px;
      line-height: 1.1;
    }

    .dash-stat span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .dashboard-strip {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
    }

    .room-chip {
      padding: 12px;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--navy);
    }

    .room-chip:nth-child(2) {
      background: var(--forest);
    }

    .room-chip:nth-child(3) {
      background: var(--wood);
    }

    .room-chip strong {
      display: block;
      font-size: 18px;
      line-height: 1.1;
    }

    .room-chip span {
      font-size: 11px;
      font-weight: 700;
      opacity: 0.82;
    }

    .floating-note {
      position: absolute;
      left: -24px;
      bottom: 48px;
      width: 238px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 15px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow);
      animation: floatCard 4s ease-in-out infinite;
    }

    .floating-note .icon-box {
      width: 42px;
      height: 42px;
      color: var(--wood);
      background: var(--wood-soft);
    }

    .floating-note strong {
      display: block;
      color: var(--navy);
      font-size: 14px;
      line-height: 1.25;
    }

    .floating-note span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
    }

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

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

    /* =========================
       Trust / Stats
    ========================= */
    .trust {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .trust-card {
      min-height: 142px;
      padding: 20px;
      background: linear-gradient(180deg, #ffffff, #f7faf7);
      text-align: center;
    }

    .trust-card:nth-child(2n),
    .trust-card:nth-child(3n) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
    }

    .trust-card h3 {
      margin-top: 14px;
      color: var(--navy);
      font-size: 15px;
      line-height: 1.25;
    }

    .trust-card .icon-box {
      margin: 0 auto;
    }

    /* =========================
       About
    ========================= */
    .about {
      background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
      border-bottom: 1px solid var(--border);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 34px;
      align-items: center;
    }

    .about-copy .section-kicker {
      margin-bottom: 16px;
    }

    .about-copy h2 {
      max-width: 620px;
      color: var(--navy);
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: 0;
    }

    .about-copy p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

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

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--navy);
      font-weight: 800;
    }

    .about-list .material-symbols-rounded {
      color: var(--wood);
      font-size: 22px;
    }

    .about-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .about-card {
      min-height: 184px;
      padding: 26px;
      border: 1px solid rgba(18, 52, 84, 0.11);
      border-radius: 8px;
      background: linear-gradient(180deg, #ffffff, #fbfcff);
      box-shadow: 0 18px 44px rgba(18, 52, 84, 0.09);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .about-card:hover {
      transform: translateY(-5px);
      border-color: rgba(209, 154, 46, 0.24);
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .about-card .icon-box {
      margin-bottom: 18px;
      color: var(--wood);
      background: rgba(209, 154, 46, 0.09);
      border-color: rgba(209, 154, 46, 0.14);
      box-shadow: none;
    }

    .about-card h3 {
      color: var(--navy);
      font-size: 19px;
      line-height: 1.25;
    }

    .about-card p {
      margin-top: 9px;
      color: var(--muted);
      font-size: 14px;
    }

    /* =========================
       Features
    ========================= */
    .features {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.29), rgba(247, 249, 252, 0.36)),
        url("../images/features-bg.png") center / cover;
      background-attachment: fixed;
    }

    .features::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.21) 48%, rgba(255, 255, 255, 0.35)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.24));
      pointer-events: none;
    }

    .features .container {
      position: relative;
      z-index: 2;
    }

    .features .section-kicker {
      color: var(--navy-2);
      background: rgba(18, 52, 84, 0.08);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      grid-auto-flow: dense;
    }

    .feature-card {
      min-height: 238px;
      padding: 30px 24px 28px;
      text-align: center;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .feature-card:hover {
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .feature-card::before,
    .service-card::before,
    .package-card::before,
    .why-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: var(--forest);
    }

    .feature-card:nth-child(4n + 1) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
      border-color: rgba(18, 52, 84, 0.18);
    }

    .feature-card:nth-child(4n + 1)::before {
      content: none;
    }

    .feature-card:nth-child(4n + 2) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
      border-color: rgba(6, 27, 73, 0.18);
    }

    .feature-card:nth-child(4n + 2)::before {
      content: none;
    }

    .feature-card:nth-child(4n + 3) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
      border-color: rgba(209, 154, 46, 0.18);
    }

    .feature-card:nth-child(4n + 3)::before {
      content: none;
    }

    .feature-card:nth-child(4n) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
      border-color: rgba(214, 168, 79, 0.26);
    }

    .feature-card:nth-child(4n)::before {
      content: none;
    }

    .feature-card h3,
    .service-card h3,
    .why-card h3 {
      margin: 18px 0 9px;
      color: var(--navy);
      font-size: 19px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .feature-card p,
    .service-card p,
    .why-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .feature-card .icon-box,
    .service-card .icon-box,
    .why-card .icon-box {
      position: relative;
      z-index: 2;
      margin: 0 auto;
    }

    .feature-card h3,
    .feature-card p,
    .service-card h3,
    .service-card p,
    .why-card h3,
    .why-card p {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    /* =========================
       Services
    ========================= */
    .services {
      background:
        linear-gradient(135deg, #eef6ff 0%, #ffffff 46%, #effbf8 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services .section-kicker {
      color: var(--teal);
      background: rgba(15, 118, 110, 0.08);
    }

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

    .service-card {
      min-height: 238px;
      padding: 104px 26px 26px;
      text-align: center;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(4) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
    }

    .service-card:nth-child(2),
    .service-card:nth-child(5) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
    }

    .service-card:nth-child(3),
    .service-card:nth-child(6) {
      background: linear-gradient(180deg, #ffffff, #f8fbf8);
    }

    /* =========================
       Packages
    ========================= */
    .packages {
      background:
        linear-gradient(180deg, #fffdf8 0%, #ffffff 46%, #f7fbff 100%);
    }

    .packages .section-kicker {
      color: #9b741f;
      background: rgba(214, 168, 79, 0.14);
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: center;
    }

    .package-card {
      padding: 30px;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
    }

    .package-card.featured {
      padding: 38px 30px;
      border: 2px solid rgba(209, 154, 46, 0.34);
      background: linear-gradient(180deg, #ffffff, #fbf8f6);
    }

    .package-card:nth-child(1)::before {
      background: var(--teal);
    }

    .package-card:nth-child(2)::before {
      background: var(--wood);
    }

    .package-card:nth-child(3)::before {
      background: var(--navy-2);
    }

    .package-badge {
      position: absolute;
      top: 22px;
      right: 22px;
      padding: 8px 10px;
      border-radius: var(--radius);
      color: var(--wood);
      background: rgba(209, 154, 46, 0.10);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    .package-card h3 {
      color: var(--navy);
      font-size: 25px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .package-fit {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      min-height: 44px;
      margin-bottom: 22px;
    }

    .price {
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 32px;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: 0;
    }

    .package-note {
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 13px;
    }

    .package-list {
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
      list-style: none;
    }

    .package-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text);
      font-size: 14px;
      font-weight: 650;
    }

    .check {
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: var(--radius);
      color: var(--forest);
      background: var(--forest-soft);
    }

    .check .material-symbols-rounded {
      font-size: 16px;
    }

    .package-card .btn {
      width: 100%;
    }

    /* =========================
       Why Choose
    ========================= */
    .why {
      background:
        linear-gradient(135deg, rgba(7, 29, 43, 0.98), rgba(6, 27, 73, 0.98) 62%, rgba(77, 32, 27, 0.94));
      color: var(--white);
    }

    .why::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 52px 52px;
      pointer-events: none;
    }

    .why .container {
      position: relative;
      z-index: 2;
    }

    .why .section-kicker {
      color: var(--gold);
      background: rgba(214, 168, 79, 0.14);
    }

    .why .section-head h2,
    .why .section-head p {
      color: var(--white);
    }

    .why .section-head p {
      opacity: 0.78;
    }

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

    .why-card {
      padding: 25px;
      border-color: rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.09);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    }

    .why-card:hover {
      border-color: rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.13);
    }

    .why-card::before {
      background: rgba(214, 168, 79, 0.86);
    }

    .why-card .icon-box {
      color: var(--gold);
      background: rgba(214, 168, 79, 0.14);
    }

    .why-card h3,
    .why-card p {
      color: var(--white);
    }

    .why-card p {
      opacity: 0.76;
    }

    /* =========================
       Demo CTA
    ========================= */
    .demo {
      padding: 88px 0;
      background:
        linear-gradient(90deg, #fff7f0 0%, #f4fbf7 52%, #eef6ff 100%);
    }

    .demo-box {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 26px;
      align-items: center;
      padding: 48px;
      border-radius: var(--radius);
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(6, 27, 73, 0.98), rgba(18, 52, 84, 0.96) 58%, rgba(154, 106, 24, 0.92));
      box-shadow: var(--shadow-strong);
    }

    .demo-box::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(120deg, transparent 0 54%, rgba(214, 168, 79, 0.18) 54% 70%, transparent 70%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
      background-size: auto, 44px 44px;
      pointer-events: none;
    }

    .demo-copy,
    .demo-actions {
      position: relative;
      z-index: 2;
    }

    .demo h2 {
      max-width: 720px;
      margin-bottom: 14px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .demo p {
      max-width: 690px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
    }

    .demo-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .demo .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: none;
    }

    /* =========================
       Contact
    ========================= */
    .contact {
      background:
        linear-gradient(135deg, #f6fbf8 0%, #ffffff 44%, #fff6f1 100%);
      border-top: 1px solid var(--border);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 28px;
      align-items: start;
    }

    .contact-info,
    .contact-form {
      padding: 32px;
    }

    .contact-info {
      background: linear-gradient(180deg, #ffffff, #f2f9f6);
    }

    .contact-form {
      background: linear-gradient(180deg, #ffffff, #fff9f4);
    }

    .contact-info h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 28px;
      line-height: 1.2;
    }

    .contact-info > p {
      margin-bottom: 22px;
      color: var(--muted);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 16px 0;
      border-top: 1px solid var(--border);
    }

    .contact-item .icon-box {
      width: 46px;
      height: 46px;
    }

    .contact-item strong {
      display: block;
      color: var(--navy);
    }

    .contact-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

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

    .form-group.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--navy);
      font-size: 13px;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      outline: none;
      color: var(--text);
      background: rgba(255, 255, 255, 0.86);
      padding: 14px 15px;
      transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(209, 154, 46, 0.45);
      box-shadow: 0 0 0 4px rgba(209, 154, 46, 0.08);
      background: var(--white);
    }

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

    .form-status {
      display: none;
      padding: 12px 14px;
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 800;
    }

    .form-status.show {
      display: block;
    }

    .form-status.error {
      color: var(--navy-2);
      background: rgba(209, 154, 46, 0.1);
      border: 1px solid rgba(209, 154, 46, 0.18);
    }

    .form-status.success {
      color: var(--forest);
      background: var(--forest-soft);
      border: 1px solid rgba(6, 27, 73, 0.18);
    }

    /* Refined visual pass: premium, calm, and business-focused. */
    .trust,
    .features,
    .services,
    .packages,
    .contact {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92)),
        var(--surface);
    }

    .features::before,
    .why::before,
    .demo-box::after {
      opacity: 0.35;
    }

    .trust-card,
    .feature-card,
    .service-card,
    .package-card,
    .contact-info,
    .contact-form {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(6, 27, 73, 0.11);
    }

    .trust-card:nth-child(2n),
    .trust-card:nth-child(3n),
    .feature-card:nth-child(4n + 1),
    .feature-card:nth-child(4n + 2),
    .feature-card:nth-child(4n + 3),
    .feature-card:nth-child(4n),
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5),
    .service-card:nth-child(6),
    .package-card,
    .contact-info,
    .contact-form {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 248, 0.96));
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(7),
    .feature-card:nth-child(12) {
      grid-column: auto;
    }

    .feature-card::before,
    .service-card::before,
    .package-card::before,
    .why-card::before {
      height: 3px;
      background: linear-gradient(90deg, var(--forest-2), rgba(6, 27, 73, 0.22));
    }

    .feature-card:nth-child(3n + 2)::before,
    .service-card:nth-child(3n + 2)::before,
    .package-card:nth-child(2)::before {
      background: linear-gradient(90deg, var(--wood), rgba(209, 154, 46, 0.22));
    }

    .feature-card:nth-child(3n)::before,
    .service-card:nth-child(3n)::before,
    .package-card:nth-child(3)::before {
      background: linear-gradient(90deg, var(--navy-2), rgba(18, 52, 84, 0.22));
    }

    .feature-card .icon-box,
    .service-card .icon-box,
    .trust-card .icon-box,
    .contact-info .icon-box {
      color: var(--forest);
      background: rgba(6, 27, 73, 0.09);
    }

    .feature-card:nth-child(3n + 2) .icon-box,
    .service-card:nth-child(3n + 2) .icon-box,
    .trust-card:nth-child(3n + 2) .icon-box {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.09);
    }

    .feature-card:nth-child(3n) .icon-box,
    .service-card:nth-child(3n) .icon-box,
    .trust-card:nth-child(3n) .icon-box {
      color: var(--navy-2);
      background: rgba(18, 52, 84, 0.09);
    }

    .services {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .service-card:nth-child(2),
    .package-card.featured {
      transform: none;
    }

    .package-card.featured {
      background:
        linear-gradient(180deg, #ffffff, #fbf8f6);
      border-color: rgba(209, 154, 46, 0.24);
      box-shadow: 0 22px 52px rgba(154, 106, 24, 0.14);
    }

    .package-badge {
      color: var(--white);
      background: var(--wood);
    }

    .why {
      background:
        linear-gradient(135deg, rgba(7, 29, 43, 0.98), rgba(6, 27, 73, 0.98));
    }

    .why-card {
      background: rgba(255, 255, 255, 0.075);
      border-color: rgba(255, 255, 255, 0.13);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    }

    .why-card:hover {
      background: rgba(255, 255, 255, 0.11);
    }

    .demo {
      background: var(--surface);
    }

    .demo-box {
      background:
        linear-gradient(135deg, rgba(6, 27, 73, 0.98), rgba(7, 29, 43, 0.98));
    }

    /* Logo-based premium theme: gold primary, navy secondary, light background */
    body {
      background:
        radial-gradient(circle at 12% 8%, rgba(209, 154, 46, 0.08), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(18, 52, 84, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #ffffff 100%);
      color: #16202a;
    }

    .site-header {
      background: rgba(255, 255, 255, 0.88);
      border-bottom-color: rgba(18, 52, 84, 0.10);
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 14px 36px rgba(18, 52, 84, 0.09);
    }

    .nav-links a,
    .mobile-toggle {
      color: #061b49;
    }

    .nav-links a::after {
      background: linear-gradient(90deg, var(--wood), var(--navy-2));
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--wood);
    }

    .mobile-toggle {
      background: #ffffff;
      border-color: rgba(18, 52, 84, 0.12);
    }

    .mobile-panel a {
      color: #061b49;
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(18, 52, 84, 0.12);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--wood), var(--wood-dark));
      box-shadow: 0 16px 34px rgba(209, 154, 46, 0.32);
    }

    .btn-secondary {
      color: #061b49;
      background: #ffffff;
      border-color: rgba(18, 52, 84, 0.13);
      box-shadow: 0 12px 28px rgba(18, 52, 84, 0.08);
    }

    .btn-secondary:hover {
      border-color: rgba(209, 154, 46, 0.28);
      box-shadow: 0 18px 38px rgba(18, 52, 84, 0.12);
    }

    .hero {
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.88)),
        linear-gradient(90deg, rgba(209, 154, 46, 0.08), transparent 52%, rgba(18, 52, 84, 0.08));
    }

    .hero::before,
    .features::before,
    .why::before {
      background-image:
        linear-gradient(90deg, rgba(18, 52, 84, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(18, 52, 84, 0.035) 1px, transparent 1px);
    }

    .hero-badge,
    .section-kicker,
    .features .section-kicker,
    .services .section-kicker,
    .packages .section-kicker,
    .why .section-kicker {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      border: 1px solid rgba(209, 154, 46, 0.12);
    }

    .hero-badge span,
    .section-kicker::before {
      background: var(--wood);
      box-shadow: 0 0 0 5px rgba(209, 154, 46, 0.12);
    }

    .hero h1,
    .section-head h2,
    .dashboard-title strong,
    .hero-point strong,
    .dash-stat strong,
    .trust-card h3,
    .feature-card h3,
    .service-card h3,
    .package-card h3,
    .price,
    .contact-info h3,
    .contact-item strong,
    label {
      color: #061b49;
    }

    .hero h1 strong {
      color: var(--wood);
    }

    .hero-text,
    .section-head p,
    .dashboard-title span,
    .hero-point span,
    .dash-stat span,
    .feature-card p,
    .service-card p,
    .package-fit,
    .package-note,
    .package-list li,
    .contact-info > p,
    .contact-item span {
      color: #637083;
    }

    .hero-point,
    .dashboard-card,
    .dash-stat,
    .floating-note,
    .trust-card,
    .feature-card,
    .service-card,
    .package-card,
    .contact-info,
    .contact-form {
      background:
        linear-gradient(180deg, #ffffff, #f9fbfd);
      border-color: rgba(18, 52, 84, 0.11);
      box-shadow: 0 18px 44px rgba(18, 52, 84, 0.09);
    }

    .card:hover,
    .dashboard-card:hover {
      border-color: rgba(209, 154, 46, 0.24);
    }

    .trust,
    .features,
    .services,
    .packages,
    .contact,
    .demo {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.98));
    }

    /* Final contact layout polish */
    .contact-grid {
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      align-items: stretch;
      gap: 28px;
    }

    .contact-info,
    .contact-form {
      min-height: 598px;
      height: 100%;
      padding: 34px;
      border: 1px solid rgba(18, 52, 84, 0.12);
      border-radius: 8px;
      background:
        linear-gradient(180deg, #ffffff, #fbfcff);
      box-shadow: 0 20px 52px rgba(18, 52, 84, 0.10);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .contact-info h3 {
      max-width: 420px;
      margin-bottom: 14px;
      font-size: 30px;
      line-height: 1.14;
    }

    .contact-info > p {
      max-width: 440px;
      margin-bottom: 26px;
      line-height: 1.7;
    }

    .contact-info .contact-item:first-of-type {
      border-top-color: rgba(18, 52, 84, 0.12);
    }

    .contact-item {
      align-items: center;
      min-height: 84px;
      padding: 18px 0;
      border-top-color: rgba(18, 52, 84, 0.12);
    }

    .contact-item .icon-box {
      width: 48px;
      height: 48px;
      border-radius: 8px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-form .form-grid {
      align-content: center;
      gap: 17px;
    }

    .contact-form textarea {
      min-height: 128px;
    }

    .service-card::after {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.94)),
        linear-gradient(90deg, rgba(209, 154, 46, 0.14), rgba(18, 52, 84, 0.12)),
        url("../images/feature-visual.png") center / cover;
      opacity: 0.86;
    }

    .icon-box,
    .feature-card .icon-box,
    .service-card .icon-box,
    .trust-card .icon-box,
    .contact-info .icon-box,
    .why-card .icon-box,
    .check {
      color: var(--navy-2);
      background: rgba(18, 52, 84, 0.08);
      border: 1px solid rgba(18, 52, 84, 0.10);
      box-shadow: none;
    }

    .feature-card:nth-child(3n + 2) .icon-box,
    .service-card:nth-child(3n + 2) .icon-box,
    .trust-card:nth-child(3n + 2) .icon-box {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      border-color: rgba(209, 154, 46, 0.12);
    }

    .service-card::before,
    .package-card::before,
    .why-card::before {
      height: 3px;
      background: linear-gradient(90deg, var(--wood), var(--navy-2));
    }

    .services {
      background:
        linear-gradient(90deg, rgba(8, 20, 35, 0.86), rgba(8, 20, 35, 0.54) 46%, rgba(8, 20, 35, 0.78)),
        url("../images/services-bg.png") center / cover;
      background-attachment: fixed;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .services::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 18, 31, 0.18), rgba(6, 18, 31, 0.32)),
        linear-gradient(90deg, rgba(209, 154, 46, 0.18), transparent 42%);
      pointer-events: none;
    }

    .services .container {
      position: relative;
      z-index: 2;
    }

    .services .section-head h2 {
      color: #ffffff;
      text-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
    }

    .services .section-head p {
      color: rgba(255, 255, 255, 0.82);
    }

    .services .section-kicker {
      color: #ffffff;
      background: rgba(209, 154, 46, 0.82);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    }

    .services .service-card {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96));
      border-color: rgba(255, 255, 255, 0.28);
      box-shadow: 0 22px 58px rgba(0, 0, 0, 0.30);
    }

    .feature-card::before,
    .feature-card::after {
      content: none;
    }

    .feature-card .icon-box,
    .feature-card:nth-child(3n + 2) .icon-box,
    .feature-card:nth-child(3n) .icon-box {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      border-color: rgba(209, 154, 46, 0.12);
    }

    .feature-card,
    .feature-card:nth-child(4n + 1),
    .feature-card:nth-child(4n + 2),
    .feature-card:nth-child(4n + 3),
    .feature-card:nth-child(4n) {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 253, 0.98));
      border-color: rgba(255, 255, 255, 0.30);
      box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
    }

    .features {
      background:
        linear-gradient(180deg, rgba(8, 20, 35, 0.22), rgba(13, 38, 63, 0.30)),
        url("../images/features-bg.png") center / cover;
      background-attachment: fixed;
    }

    .features::before {
      background:
        linear-gradient(90deg, rgba(5, 14, 25, 0.20), rgba(5, 14, 25, 0.08) 48%, rgba(5, 14, 25, 0.20)),
        linear-gradient(180deg, rgba(6, 18, 31, 0.12), rgba(6, 18, 31, 0.18));
      opacity: 1;
    }

    .features .section-head h2 {
      color: #ffffff;
      text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    }

    .features .section-head p {
      color: rgba(255, 255, 255, 0.82);
    }

    .features .section-kicker {
      color: #ffffff;
      background: rgba(209, 154, 46, 0.82);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    }

    .feature-showcase {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
      gap: 24px;
      align-items: stretch;
      margin: 0 0 30px;
    }

    .feature-showcase-copy,
    .feature-ui-preview {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    }

    .feature-showcase-copy {
      padding: 30px;
    }

    .feature-showcase-copy::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 5px;
      background: linear-gradient(180deg, var(--wood), var(--gold));
    }

    .feature-showcase-copy .icon-box {
      width: 62px;
      height: 62px;
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      border: 1px solid rgba(209, 154, 46, 0.12);
      box-shadow: none;
    }

    .feature-showcase-copy h3 {
      margin: 18px 0 10px;
      color: var(--navy-2);
      font-size: 28px;
      line-height: 1.15;
      letter-spacing: 0;
    }

    .feature-showcase-copy p {
      color: var(--muted);
      line-height: 1.7;
    }

    .feature-preview-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .feature-preview-tags span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 12px;
      border-radius: 999px;
      color: var(--navy-2);
      background: #f5f7fb;
      border: 1px solid rgba(18, 52, 84, 0.10);
      font-size: 12px;
      font-weight: 900;
    }

    .feature-ui-preview {
      padding: 16px;
      background:
        linear-gradient(135deg, rgba(18, 52, 84, 0.10), rgba(209, 154, 46, 0.08)),
        rgba(255, 255, 255, 0.97);
    }

    .feature-preview-window {
      min-height: 320px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(18, 52, 84, 0.11);
      background: #ffffff;
    }

    .feature-preview-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 16px;
      background: #061b49;
      color: #ffffff;
    }

    .feature-preview-bar strong {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 14px;
    }

    .feature-preview-bar span {
      color: rgba(255, 255, 255, 0.70);
      font-size: 12px;
      font-weight: 800;
    }

    .feature-preview-body {
      display: grid;
      grid-template-columns: 132px 1fr;
      min-height: 276px;
    }

    .feature-preview-side {
      padding: 14px;
      background: #f4f6f9;
      border-right: 1px solid rgba(18, 52, 84, 0.09);
    }

    .feature-preview-side span {
      display: block;
      height: 9px;
      margin-bottom: 12px;
      border-radius: 999px;
      background: rgba(18, 52, 84, 0.12);
    }

    .feature-preview-side span:nth-child(1),
    .feature-preview-side span:nth-child(4) {
      width: 84%;
      background: rgba(209, 154, 46, 0.24);
    }

    .feature-preview-side span:nth-child(2),
    .feature-preview-side span:nth-child(5) {
      width: 62%;
    }

    .feature-preview-main {
      padding: 18px;
    }

    .feature-preview-kpis {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 16px;
    }

    .preview-kpi {
      min-height: 74px;
      padding: 13px;
      border-radius: 8px;
      border: 1px solid rgba(18, 52, 84, 0.10);
      background: #fbfcfe;
    }

    .preview-kpi strong {
      display: block;
      color: var(--navy-2);
      font-size: 23px;
      line-height: 1;
    }

    .preview-kpi span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
    }

    .feature-preview-list {
      display: grid;
      gap: 10px;
    }

    .preview-row {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 11px;
      border-radius: 8px;
      background: #f7f9fc;
      border: 1px solid rgba(18, 52, 84, 0.08);
    }

    .preview-row-icon {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
    }

    .preview-row strong {
      display: block;
      color: var(--navy-2);
      font-size: 13px;
    }

    .preview-row span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }

    .preview-status {
      padding: 7px 9px;
      border-radius: 999px;
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .feature-card {
      cursor: pointer;
    }

    .feature-card.is-active {
      border-color: rgba(209, 154, 46, 0.28);
      transform: translateY(-3px);
    }

    .features .feature-card:hover,
    .features .feature-card.is-active {
      border-color: rgba(255, 255, 255, 0.68);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    }

    .feature-card.is-active .icon-box {
      color: #ffffff;
      background: var(--wood);
      border-color: var(--wood);
    }

    .feature-pin {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 3;
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 50%;
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .feature-pin span {
      font-size: 18px;
    }

    .feature-card:hover .feature-pin,
    .feature-card.is-active .feature-pin {
      color: #ffffff;
      background: var(--wood);
      transform: rotate(-18deg) scale(1.06);
    }

    /* Trust cards: compact feature badges above the main feature grid */
    .trust {
      background:
        radial-gradient(circle at 10% 15%, rgba(209, 154, 46, 0.12), transparent 26%),
        radial-gradient(circle at 85% 22%, rgba(167, 120, 43, 0.16), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #edf2f8 100%);
    }

    .trust-grid {
      gap: 20px;
    }

    .trust-card,
    .trust-card:nth-child(2n),
    .trust-card:nth-child(3n) {
      min-height: 180px;
      padding: 34px 29px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(145deg, #ffffff 0%, #fff7e3 100%);
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      overflow: hidden;
      isolation: isolate;
      clip-path: none;
    }

    .trust-card:hover {
      transform: translateY(-6px);
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .trust-card .icon-box,
    .trust-card:nth-child(3n + 2) .icon-box,
    .trust-card:nth-child(3n) .icon-box {
      width: 53px;
      height: 53px;
      margin: 0 auto 12px;
      color: #ffffff;
      background: var(--wood);
      border-color: rgba(255, 255, 255, 0.42);
      box-shadow: none;
    }

    .trust-card .icon-box {
      display: grid;
    }

    .trust-card:nth-child(2) .icon-box {
      background: var(--wood);
    }

    .trust-card:nth-child(3) .icon-box {
      background: var(--wood);
    }

    .trust-card:nth-child(4) .icon-box {
      background: var(--wood);
    }

    .trust-card:nth-child(5) .icon-box {
      background: var(--wood);
    }

    .trust-card:nth-child(6) .icon-box {
      background: var(--wood);
    }

    .trust-card h3 {
      position: relative;
      z-index: 2;
      min-height: auto;
      display: grid;
      place-items: center;
      margin: 0;
      color: var(--navy-2);
      font-size: 18px;
      font-weight: 900;
      line-height: 1.35;
      text-align: center;
    }


    .room-chip,
    .room-chip:nth-child(2),
    .room-chip:nth-child(3) {
      background: linear-gradient(135deg, var(--navy-2), #041438);
      border: 1px solid rgba(18, 52, 84, 0.18);
      color: #ffffff;
    }

    .live-pill,
    .floating-note .icon-box {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.08);
      border: 1px solid rgba(209, 154, 46, 0.12);
    }

    .floating-note strong {
      color: #061b49;
    }

    .package-card.featured {
      background:
        linear-gradient(180deg, #ffffff, #fff7f8);
      border-color: rgba(209, 154, 46, 0.26);
      box-shadow: 0 26px 64px rgba(209, 154, 46, 0.10);
    }

    .package-badge {
      color: #ffffff;
      background: var(--wood);
    }

    .why {
      background:
        linear-gradient(135deg, var(--navy-2), #041438 58%, var(--wood-dark));
    }

    .why-card {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.16);
    }

    /* Final Why Choose section polish */
    .why {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 238, 0.94) 42%, rgba(245, 236, 218, 0.92)),
        linear-gradient(135deg, rgba(6, 27, 73, 0.055), transparent 36%, rgba(209, 154, 46, 0.12) 100%);
      color: var(--navy-2);
    }

    .why::before {
      background-image:
        linear-gradient(90deg, rgba(167, 120, 43, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(6, 27, 73, 0.035) 1px, transparent 1px);
      background-size: 46px 46px;
      opacity: 0.52;
    }

    .why::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.74), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.62)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 44%, rgba(6, 27, 73, 0.035));
      pointer-events: none;
    }

    .why .section-head {
      max-width: 810px;
      margin-bottom: 46px;
    }

    .why .section-kicker {
      color: #9b6a11;
      background: linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(246, 232, 205, 0.74));
      border: 1px solid rgba(209, 154, 46, 0.24);
      box-shadow: 0 10px 28px rgba(167, 120, 43, 0.10);
    }

    .why .section-head h2 {
      color: var(--navy-2);
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .why .section-head p {
      color: #607087;
      opacity: 1;
    }

    .why-grid {
      gap: 22px;
    }

    .why-card {
      min-height: 228px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 28px 28px 30px;
      text-align: center;
      border: 1px solid rgba(209, 154, 46, 0.22);
      border-radius: 8px 70px 8px 70px;
      background:
        linear-gradient(180deg, rgba(255, 251, 242, 0.98), rgba(250, 242, 225, 0.92));
      box-shadow: 0 18px 44px rgba(167, 120, 43, 0.12), 0 2px 8px rgba(6, 27, 73, 0.04);
      backdrop-filter: none;
      overflow: hidden;
    }

    .why-card::before {
      content: "";
      position: absolute;
      inset: auto 26px 0;
      width: auto;
      height: 4px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(90deg, rgba(209, 154, 46, 0.78), rgba(246, 213, 142, 0.96));
      opacity: 1;
    }

    .why-card:hover {
      transform: translateY(-7px);
      border-color: rgba(209, 154, 46, 0.34);
      background: linear-gradient(180deg, #ffffff, #fff8ec);
      box-shadow: 0 28px 58px rgba(6, 27, 73, 0.16), 0 8px 18px rgba(167, 120, 43, 0.10);
    }

    .why-card .icon-box {
      width: 54px;
      height: 54px;
      margin: 0 0 22px;
      color: var(--wood);
      background: linear-gradient(180deg, #fff8ec, #f7ecd9);
      border: 1px solid rgba(209, 154, 46, 0.24);
      box-shadow: inset 0 -10px 18px rgba(209, 154, 46, 0.08);
    }

    .why-card:nth-child(2n)::before {
      background: linear-gradient(90deg, rgba(6, 27, 73, 0.72), rgba(209, 154, 46, 0.82));
    }

    .why-card:nth-child(3n) {
      border-color: rgba(209, 154, 46, 0.20);
    }

    .trust-card .icon-box,
    .trust-card:nth-child(2) .icon-box,
    .trust-card:nth-child(3) .icon-box,
    .trust-card:nth-child(4) .icon-box,
    .trust-card:nth-child(5) .icon-box,
    .trust-card:nth-child(6) .icon-box,
    .trust-card:nth-child(3n + 2) .icon-box,
    .trust-card:nth-child(3n) .icon-box,
    .feature-card .icon-box,
    .feature-card:nth-child(3n + 2) .icon-box,
    .feature-card:nth-child(3n) .icon-box,
    .service-card .icon-box,
    .service-card:nth-child(3n + 2) .icon-box,
    .service-card:nth-child(3n) .icon-box,
    .why-card .icon-box,
    .contact-info .icon-box,
    .contact-item .icon-box,
    .feature-showcase-copy .icon-box,
    .preview-row-icon,
    .check {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.09);
      border-color: rgba(209, 154, 46, 0.14);
      box-shadow: none;
    }

    .trust-card .icon-box {
      color: var(--wood);
      background: rgba(209, 154, 46, 0.09);
      border-color: rgba(209, 154, 46, 0.14);
    }

    .feature-card.is-active .icon-box,
    .feature-card:hover .icon-box {
      color: #ffffff;
      background: var(--wood);
      border-color: var(--wood);
    }

    .feature-card.reveal {
      opacity: 0;
      transform: translateY(54px);
      transform-origin: center bottom;
    }

    .feature-card.reveal.visible {
      animation: featureCardSequence 0.78s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: var(--feature-delay, 0ms);
    }

    @keyframes featureCardSequence {
      0% {
        opacity: 0;
        transform: translateY(54px);
      }

      70% {
        opacity: 1;
        transform: translateY(-5px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .why-card .icon-box {
      color: var(--wood);
      background: linear-gradient(180deg, #fff8ec, #f7ecd9);
      border-color: rgba(209, 154, 46, 0.24);
      box-shadow: inset 0 -10px 18px rgba(209, 154, 46, 0.08);
    }

    .why-card:hover .icon-box {
      color: #ffffff;
      background: linear-gradient(180deg, var(--wood), var(--wood-dark));
      border-color: rgba(255, 255, 255, 0.46);
    }

    .why-card.reveal {
      opacity: 0;
      transform: translateY(46px) scale(0.96);
      transform-origin: center bottom;
    }

    .why-card.reveal.visible {
      animation: whyCardSequence 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: var(--why-delay, 0ms);
    }

    @keyframes whyCardSequence {
      0% {
        opacity: 0;
        transform: translateY(46px) scale(0.96);
        box-shadow: 0 10px 24px rgba(167, 120, 43, 0.06);
      }

      62% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .feature-card.reveal,
      .feature-card.reveal.visible,
      .why-card.reveal,
      .why-card.reveal.visible {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }

    .why-card h3 {
      margin: 0 0 10px;
      color: var(--navy-2);
      font-size: 20px;
      line-height: 1.24;
      font-weight: 900;
    }

    .why-card p {
      color: #5f6f86;
      opacity: 1;
      font-size: 15px;
      line-height: 1.68;
    }

    .demo-box {
      background:
        linear-gradient(135deg, var(--navy-2), #041438 55%, var(--wood-dark));
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    input,
    select,
    textarea {
      color: #061b49;
      background: #ffffff;
      border-color: rgba(18, 52, 84, 0.14);
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(18, 35, 58, 0.42);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(209, 154, 46, 0.38);
      box-shadow: 0 0 0 4px rgba(209, 154, 46, 0.08);
      background: #ffffff;
    }

    .form-status.success {
      color: var(--navy-2);
      background: rgba(18, 52, 84, 0.08);
      border-color: rgba(18, 52, 84, 0.14);
    }

    .footer {
      background: var(--navy-2);
      border-top: 1px solid rgba(18, 52, 84, 0.18);
    }

    /* =========================
       Footer
    ========================= */
    .footer {
      padding: 44px 0 24px;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy-2), #041438);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(250px, 1fr) minmax(340px, 1.1fr);
      align-items: start;
      justify-content: space-between;
      gap: 36px;
    }

    .footer-brand {
      display: grid;
      gap: 14px;
    }

    .footer .brand-logo {
      width: 236px;
      max-height: 72px;
      filter: brightness(0) invert(1);
    }

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

    .footer-links div {
      display: grid;
      gap: 9px;
    }

    .footer h2 {
      color: var(--white);
      font-size: 13px;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      font-weight: 800;
      transition: color 0.22s ease;
    }

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

    .footer-brand p,
    .footer-bottom p {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.86);
      font-weight: 850;
    }

    /* =========================
       Responsive
    ========================= */
    @media (max-width: 1100px) {
      .brand-logo {
        width: 238px;
      }

      .nav-links {
        gap: 18px;
      }

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

      .feature-showcase {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 980px) {
      :root {
        --header-height: 76px;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: grid;
      }

      .mobile-panel {
        display: grid;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }

      .site-header.menu-open .mobile-panel {
        max-height: 520px;
        padding: 0 0 18px;
      }

      .mobile-panel a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
        padding: 0 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        color: var(--forest);
        background: rgba(255, 255, 255, 0.9);
        font-weight: 850;
      }

      .hero-grid,
      .about-grid,
      .contact-grid,
      .demo-box {
        grid-template-columns: 1fr;
      }

      .contact-info,
      .contact-form {
        min-height: auto;
      }

      .contact-form {
        justify-content: flex-start;
      }

      .dashboard-shell {
        max-width: 680px;
        margin: 0 auto;
      }

      .features-grid,
      .about-cards,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-preview-window {
        min-height: auto;
      }

      .feature-card:nth-child(1),
      .feature-card:nth-child(7),
      .feature-card:nth-child(12) {
        grid-column: auto;
      }

      .services-grid,
      .packages-grid {
        grid-template-columns: 1fr;
      }

      .service-card:nth-child(2),
      .package-card.featured {
        transform: none;
      }

      .demo-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .section {
        padding: 64px 0;
      }

      .brand-logo {
        width: 204px;
        max-height: 52px;
      }

      .hero {
        padding: 56px 0 52px;
      }

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

      .hero-points,
      .dashboard-stats,
      .dashboard-strip,
      .trust-grid,
      .about-cards,
      .features-grid,
      .why-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .dashboard-card {
        transform: none;
        padding: 16px;
      }

      .feature-showcase-copy {
        padding: 24px;
      }

      .feature-showcase-copy h3 {
        font-size: 24px;
      }

      .feature-preview-body {
        grid-template-columns: 1fr;
      }

      .feature-preview-side {
        display: none;
      }

      .feature-preview-kpis {
        grid-template-columns: 1fr;
      }

      .preview-row {
        grid-template-columns: 36px 1fr;
      }

      .preview-status {
        grid-column: 2;
        justify-self: start;
      }

      .floating-note {
        position: static;
        width: 100%;
        margin-top: 14px;
        animation: none;
      }

      .demo-box {
        padding: 32px 22px;
      }

      .contact-info,
      .contact-form {
        padding: 24px;
      }

      .footer-grid {
        align-items: center;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
      }

      .footer-brand,
      .footer-links div {
        justify-items: center;
      }

      .footer-links {
        grid-template-columns: 1fr;
      }

      .footer .brand-logo {
        width: 214px;
      }

      .footer-bottom {
        align-items: center;
        flex-direction: column;
        text-align: center;
      }
    }

    /* Final mobile theme guard */
    @media (max-width: 980px) {
      .mobile-panel a {
        color: #061b49;
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(18, 52, 84, 0.12);
      }

      .mobile-panel a .material-symbols-rounded {
        color: var(--wood);
      }

    }

    /* Final hero booking visual and transparent navigation polish */
    .site-header {
      background: rgba(255, 255, 255, 0.48);
      border-bottom-color: rgba(18, 52, 84, 0.10);
      backdrop-filter: blur(20px) saturate(155%);
      -webkit-backdrop-filter: blur(20px) saturate(155%);
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.72);
      border-bottom-color: rgba(18, 52, 84, 0.12);
      box-shadow: 0 14px 38px rgba(18, 52, 84, 0.10);
    }

    .hero {
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.78) 58%, rgba(241, 246, 252, 0.86) 100%),
        url("../images/feature-visual.png") center / cover no-repeat;
    }

    .hero::before {
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(6, 27, 73, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(6, 27, 73, 0.038) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: none;
      opacity: 0.72;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: -7% -5%;
      z-index: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.56) 48%, rgba(231, 238, 247, 0.80)),
        url("../images/feature-visual.png") center / cover no-repeat;
      transform: scale(1.04);
      opacity: 0.42;
      animation: heroBookingDrift 18s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes heroBookingDrift {
      0% {
        transform: scale(1.04) translate3d(-10px, -4px, 0);
      }

      100% {
        transform: scale(1.08) translate3d(14px, 8px, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero::after {
        animation: none;
      }
    }

    @media (max-width: 980px) {
      .site-header,
      .site-header.scrolled {
        background: rgba(255, 255, 255, 0.86);
      }

      .hero {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.90)),
          url("../images/feature-visual.png") center / cover no-repeat;
      }
    }

    .trust {
      background:
        radial-gradient(circle at 10% 15%, rgb(209 154 46 / 88%), transparent 26%),
        radial-gradient(circle at 85% 22%, rgb(167 120 43), #f7a10499 30%),
        linear-gradient(180deg, #f7f9fd 0%, #edf2f8 100%);
    }
