:root {
        --bg: #edf2f7;
        --panel: #ffffff;
        --accent: #2f8f4f;
        --accent-2: #173f66;
        --muted: #506073;
        --text: #0b1f2a;
        --border: rgba(11, 31, 42, 0.1);
        --glow: 0 12px 28px rgba(23, 63, 102, 0.22);
        --radius: 18px;
        --shadow: 0 14px 32px rgba(11, 31, 42, 0.1);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: 'Space Grotesk', 'Barlow', system-ui, sans-serif;
        background: var(--bg);
        background-image: radial-gradient(
            circle at 8% 8%,
            rgba(23, 63, 102, 0.08),
            transparent 44%
          ),
          radial-gradient(
            circle at 92% 86%,
            rgba(47, 143, 79, 0.08),
            transparent 44%
          );
        color: var(--text);
        line-height: 1.6;
        min-height: 100vh;
      }

      .page {
        position: relative;
        overflow: hidden;
      }

      .page::before,
      .page::after {
        content: '';
        position: fixed;
        width: 420px;
        height: 420px;
        filter: blur(90px);
        opacity: 0.35;
        z-index: -1;
      }

      .page::before {
        top: -120px;
        left: -80px;
        background: radial-gradient(
          circle at 30% 30%,
          rgba(30, 79, 122, 0.28),
          transparent 60%
        );
      }

      .page::after {
        bottom: -140px;
        right: -120px;
        background: radial-gradient(
          circle at 70% 70%,
          rgba(95, 163, 48, 0.3),
          transparent 60%
        );
      }

      header {
        position: sticky;
        top: 0;
        z-index: 10;
        backdrop-filter: blur(14px);
        background: rgba(246, 250, 252, 0.86);
        border-bottom: 1px solid var(--border);
      }

      .nav {
        max-width: 1180px;
        margin: 0 auto;
        padding: 18px 20px;
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 14px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text);
        font-weight: 800;
        letter-spacing: 0.5px;
        font-size: 18px;
      }

      .brand-mark {
        width: 190px;
        height: 60px;
        border-radius: 12px;
        background-color: transparent;
        background-image: url('assets/logo.png');
        background-size: 120% auto;
        background-repeat: no-repeat;
        background-position: center;
        display: grid;
        place-items: center;
        color: transparent;
        font-weight: 800;
        box-shadow: none;
      }

      .nav-quick-actions {
        display: flex;
        justify-self: center;
        align-items: center;
        gap: 10px;
      }

      .nav-quick-btn {
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 12px;
        font-weight: 700;
        border: 1px solid transparent;
        transition: all 0.2s ease;
        white-space: nowrap;
      }

      .nav-call-btn {
        background: rgba(30, 79, 122, 0.1);
        color: var(--accent-2);
        border-color: rgba(30, 79, 122, 0.24);
      }

      .nav-wa-btn {
        background: linear-gradient(120deg, var(--accent), var(--accent-2));
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(12, 46, 66, 0.2);
      }

      .nav-quick-btn:hover {
        transform: translateY(-1px);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 18px;
        justify-self: end;
      }

      .nav-group {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(30, 79, 122, 0.08);
        border: 1px solid var(--border);
      }

      .nav-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 700;
        color: var(--accent-2);
      }

      .nav-group a {
        padding: 6px 10px;
      }

      .nav-links a {
        color: var(--text);
        text-decoration: none;
        font-weight: 700;
        padding: 10px 12px;
        border-radius: 12px;
        transition: all 0.2s ease;
      }

      .nav-links a:hover {
        background: rgba(95, 163, 48, 0.1);
        color: var(--accent);
      }

      .cta-btn {
        background: linear-gradient(120deg, var(--accent), var(--accent-2));
        color: #ffffff;
        font-weight: 800;
        border: none;
        padding: 12px 18px;
        border-radius: 14px;
        cursor: pointer;
        box-shadow: var(--glow);
        transition: transform 0.18s ease, box-shadow 0.2s ease;
      }

      .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(23, 63, 102, 0.28);
      }

      .hero {
        max-width: 1180px;
        margin: 40px auto 10px;
        padding: 30px 20px 80px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
        align-items: center;
      }

      .hero-full {
        max-width: none;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(95, 163, 48, 0.12);
        color: var(--accent);
        font-weight: 700;
        border: 1px solid rgba(95, 163, 48, 0.3);
      }

      .title {
        font-size: clamp(36px, 5vw, 54px);
        margin: 18px 0 12px;
        line-height: 1.1;
        letter-spacing: -0.5px;
      }

      .title span {
        color: var(--accent);
      }

      .subtitle {
        max-width: 620px;
        color: var(--muted);
        font-size: 18px;
      }

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

      .hero-cta .cta-btn {
        border: 1px solid rgba(255, 255, 255, 0.5);
      }

      .hero-cta .ghost-btn {
        background: rgba(255, 255, 255, 0.95);
        color: #0b1f2a;
        border-color: rgba(255, 255, 255, 0.7);
        box-shadow: 0 10px 26px rgba(11, 31, 42, 0.28);
      }

      .hero-cta .ghost-btn:hover {
        background: #ffffff;
        color: var(--accent-2);
        border-color: #ffffff;
      }

      .hero-proof {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .hero-offer {
        margin: 0;
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 10px;
        background: rgba(95, 163, 48, 0.22);
        border: 1px solid rgba(211, 246, 179, 0.6);
        color: #efffde;
        font-weight: 700;
        font-size: 13px;
      }

      .hero-price-mobile {
        display: none;
        color: #ffffff;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        padding: 8px 10px;
      }

      .hero-proof span {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: #ffffff;
        font-weight: 600;
        font-size: 12px;
      }

      .ghost-btn {
        border: 1px solid var(--border);
        background: rgba(30, 79, 122, 0.08);
        color: var(--text);
        padding: 12px 16px;
        border-radius: 14px;
        cursor: pointer;
        font-weight: 700;
        transition: all 0.2s ease;
      }

      .ghost-btn:hover {
        color: var(--accent);
        border-color: rgba(95, 163, 48, 0.45);
      }

      .stats {
        margin-top: 26px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 18px;
      }

      .stat-card {
        padding: 16px;
        border-radius: 16px;
        background: var(--panel);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .stat-card strong {
        display: block;
        font-size: 26px;
        margin-bottom: 6px;
        color: var(--accent);
      }

      .stat-card small {
        color: var(--muted);
        font-weight: 600;
      }

      .hero-visual {
        position: relative;
        min-height: 360px;
        background: linear-gradient(
          160deg,
          rgba(30, 79, 122, 0.14),
          rgba(95, 163, 48, 0.1)
        );
        border-radius: 24px;
        border: 1px solid var(--border);
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .hero-slider {
        display: grid;
        place-items: center;
      }

      .slider-track {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.8s ease;
      }

      .slider-track img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex: 0 0 100%;
        transition: transform 0.6s ease, filter 0.6s ease;
      }

      .hero-full .hero-visual {
        height: 620px;
        min-height: 620px;
        border-radius: 0;
        border: none;
        box-shadow: none;
      }

      .hero-full .hero-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          120deg,
          rgba(11, 31, 42, 0.72),
          rgba(11, 31, 42, 0.18)
        );
        z-index: 1;
      }

      .hero-full .hero-visual:hover::after {
        background: linear-gradient(
          120deg,
          rgba(11, 31, 42, 0.62),
          rgba(11, 31, 42, 0.08)
        );
      }

      .hero-slider:hover .slider-track img {
        transform: scale(1.035);
        filter: saturate(1.08) contrast(1.05);
      }

      .hero-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 10px;
        padding: clamp(40px, 8vw, 120px);
        color: #ffffff;
        z-index: 2;
        max-width: 720px;
        text-wrap: balance;
      }

      .hero-btn {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hero-caption {
        display: inline-flex;
        align-items: center;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.45);
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 3px;
        font-weight: 700;
      }

      .hero-content .title {
        color: #ffffff;
      }

      .hero-content .title span {
        color: #d3f6b3;
      }

      .hero-content .subtitle {
        color: rgba(255, 255, 255, 0.88);
      }

      @media (min-width: 901px) {
        .hero-full .hero-visual {
          height: 640px;
          min-height: 640px;
        }

        .hero-content {
          justify-content: center;
          padding: clamp(24px, 3.5vw, 52px);
          max-width: 760px;
        }

        .hero-content .title {
          margin: 10px 0 8px;
          font-size: clamp(34px, 4.2vw, 52px);
        }

        .hero-content .subtitle {
          font-size: 17px;
          max-width: 680px;
        }
      }


      section {
        max-width: 1180px;
        margin: 0 auto;
        padding: 60px 20px;
      }

      .quick-benefits {
        max-width: 1180px;
        margin: 0 auto;
        padding: 22px 20px 24px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
      }

      .benefit-item {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 16px;
        box-shadow: var(--shadow);
        display: grid;
        gap: 4px;
      }

      .benefit-item strong {
        font-size: 16px;
        color: var(--accent-2);
      }

      .benefit-item span {
        color: var(--muted);
        font-weight: 600;
      }

      .price-summary {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        margin: 0 0 22px;
        overflow: hidden;
      }

      .price-summary-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        font-weight: 600;
      }

      .price-summary-row:last-child {
        border-bottom: none;
      }

      .price-summary-row strong {
        color: var(--accent);
      }

      .section-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 26px;
        width: 100%;
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px 20px;
        box-shadow: var(--shadow);
      }

      .section-head h1,
      .section-head h2 {
        margin: 0;
        font-size: 30px;
        letter-spacing: -0.3px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }

      .section-head h1::before,
      .section-head h2::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: linear-gradient(120deg, var(--accent), var(--accent-2));
        box-shadow: var(--glow);
        flex: 0 0 10px;
      }

      .section-head p {
        margin: 0;
        color: var(--muted);
        max-width: 640px;
        font-weight: 500;
      }

      #about .section-head p {
        max-width: 920px;
      }


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

      .service-list {
        display: grid;
        gap: 22px;
      }

      .service-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 24px;
        align-items: center;
        padding: 18px;
        border-radius: 20px;
        background: var(--panel);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .service-row.reverse {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      }

      .service-row.reverse .service-media {
        order: 2;
      }

      .service-row.reverse .service-content {
        order: 1;
      }

      .service-media {
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid var(--border);
        min-height: 260px;
        max-height: 340px;
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 9;
        background: #dfe7ed;
      }

      .service-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        display: block;
        background: #f4f7fa;
      }

      .service-content {
        display: grid;
        gap: 10px;
        align-self: center;
      }

      .service-content p {
        margin: 0;
        color: var(--muted);
      }

      .service-content .pill-list {
        margin-top: 6px;
      }

      .service-content .cta-btn {
        align-self: flex-start;
        margin-top: 4px;
      }

      .coaching-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
        margin-bottom: 22px;
      }

      .coaching-card {
        display: grid;
        gap: 12px;
      }

      .coaching-list {
        display: grid;
        gap: 22px;
        margin-bottom: 22px;
      }

      .timing {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(30, 79, 122, 0.08);
        border: 1px solid var(--border);
        color: var(--text);
        font-weight: 600;
      }

      .timing strong {
        display: block;
        margin-bottom: 4px;
        color: var(--accent-2);
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
        margin: 20px 0 26px;
        align-items: stretch;
      }

      .pricing-card {
        background: var(--panel);
        border-radius: 18px;
        padding: 20px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: grid;
        gap: 12px;
        height: 100%;
      }

      .pricing-card.highlight {
        border: 1px solid rgba(95, 163, 48, 0.5);
        box-shadow: 0 20px 40px rgba(95, 163, 48, 0.22);
        background: linear-gradient(150deg, #f7fbf6, #eff7f0);
      }

      .plan-name {
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-2);
        font-size: 13px;
      }

      .service-content h3,
      .coaching-list h3 {
        margin: 0;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-2);
        font-size: 13px;
      }

      .service-content h3 {
        font-size: 14px;
      }

      .plan-price {
        font-size: 32px;
        font-weight: 800;
        color: var(--accent);
      }

      .plan-duration {
        color: var(--muted);
        font-weight: 600;
      }

      .plan-points {
        margin: 0;
        padding-left: 18px;
        color: var(--text);
        font-weight: 600;
        display: grid;
        gap: 8px;
      }

      .plan-points li {
        line-height: 1.45;
      }

      .growth-panel {
        background: linear-gradient(
          140deg,
          rgba(30, 79, 122, 0.15),
          rgba(95, 163, 48, 0.18)
        );
        border-radius: 20px;
        padding: 22px;
        border: 1px solid rgba(95, 163, 48, 0.4);
        box-shadow: var(--shadow);
      }

      .growth-panel h3 {
        margin: 0 0 10px;
        font-size: 24px;
      }

      .growth-panel p {
        margin: 0 0 14px;
        color: var(--text);
        font-weight: 600;
      }

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

      .why-card {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px;
        box-shadow: var(--shadow);
        display: grid;
        gap: 8px;
      }

      .why-card h3 {
        margin: 0;
        font-size: 17px;
        color: var(--accent-2);
      }

      .why-card p {
        margin: 0;
        color: var(--muted);
        font-weight: 600;
        line-height: 1.55;
      }

      .card {
        background: var(--panel);
        border-radius: var(--radius);
        padding: 18px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
      }

      .card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .card-link:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 40px rgba(12, 46, 66, 0.16);
      }

      .card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at 20% 20%,
          rgba(95, 163, 48, 0.08),
          transparent 50%
        );
        pointer-events: none;
      }

      .icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(95, 163, 48, 0.12);
        color: var(--accent);
        font-weight: 800;
        margin-bottom: 12px;
        border: 1px solid rgba(95, 163, 48, 0.3);
      }

      .card h3 {
        margin: 0 0 8px;
        letter-spacing: -0.2px;
      }

      .card p {
        margin: 0;
        color: var(--muted);
        font-weight: 500;
      }

      .pill-list {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 12px;
      }

      .pill-list span {
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(30, 79, 122, 0.08);
        color: var(--text);
        font-weight: 600;
        border: 1px solid var(--border);
        font-size: 13px;
      }


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

      .project {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
        background: linear-gradient(150deg, #f7faf8, #e9f1ec);
        border: 1px solid var(--border);
        min-height: 220px;
        padding: 16px;
        box-shadow: var(--shadow);
      }

      .project-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.75;
        filter: saturate(1.05);
        pointer-events: none;
      }

      .project h4 {
        margin: 0;
        font-size: 18px;
      }

      .project small {
        color: var(--muted);
        font-weight: 600;
      }

      .project .tag {
        position: absolute;
        top: 14px;
        right: 14px;
        background: rgba(95, 163, 48, 0.15);
        color: var(--accent);
        padding: 8px 10px;
        border-radius: 10px;
        border: 1px solid rgba(95, 163, 48, 0.4);
        font-weight: 700;
      }

      .project .shape {
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at 60% 40%,
            rgba(30, 79, 122, 0.2),
            transparent 50%
          ),
          radial-gradient(
            circle at 20% 80%,
            rgba(95, 163, 48, 0.18),
            transparent 50%
          );
        opacity: 0.9;
      }

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

      .quote {
        background: var(--panel);
        border-radius: var(--radius);
        padding: 18px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
      }

      .quote::before {
        content: '“';
        position: absolute;
        top: 8px;
        left: 14px;
        font-size: 42px;
        color: rgba(30, 79, 122, 0.22);
        font-weight: 700;
      }

      .quote p {
        margin: 18px 0 10px;
        color: var(--text);
        font-weight: 600;
      }

      .quote span {
        color: var(--muted);
        font-weight: 600;
      }

      .cta-panel {
        background: linear-gradient(
          135deg,
          rgba(30, 79, 122, 0.2),
          rgba(95, 163, 48, 0.2)
        );
        border-radius: 22px;
        padding: 26px;
        border: 1px solid rgba(95, 163, 48, 0.35);
        box-shadow: var(--shadow);
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 16px;
        align-items: center;
      }

      .cta-panel h3 {
        margin: 0 0 10px;
        font-size: 26px;
      }

      .cta-panel p {
        margin: 0 0 12px;
        color: var(--text);
        font-weight: 600;
      }

      .cta-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .cta-panel .cta-btn {
        box-shadow: none;
      }

      .booking-form {
        background: var(--panel);
        border-radius: 20px;
        padding: 22px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: grid;
        gap: 16px;
      }

      .booking-success {
        display: none;
      }

      .booking-success.active {
        display: block;
      }

      .wa-modal {
        position: fixed;
        inset: 0;
        background: rgba(10, 18, 22, 0.55);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        z-index: 20;
      }

      .wa-modal.active {
        display: flex;
      }

      .wa-modal-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 22px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        max-width: 520px;
        width: 100%;
        display: grid;
        gap: 12px;
      }

      .wa-modal-card h3 {
        margin: 0;
        font-size: 22px;
      }

      .wa-modal-card p {
        margin: 0;
        color: var(--muted);
        font-weight: 600;
      }

      .wa-modal-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .success-card {
        background: linear-gradient(
          135deg,
          rgba(95, 163, 48, 0.18),
          rgba(30, 79, 122, 0.12)
        );
        border-radius: 20px;
        padding: 26px;
        border: 1px solid rgba(95, 163, 48, 0.35);
        box-shadow: var(--shadow);
        display: grid;
        gap: 12px;
      }

      .success-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(95, 163, 48, 0.18);
        color: var(--accent);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
      }

      .success-card h3 {
        margin: 0;
        font-size: 24px;
      }

      .success-card p {
        margin: 0;
        color: var(--muted);
        font-weight: 600;
      }

      .success-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .booking-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        gap: 22px;
        align-items: start;
      }

      .booking-aside {
        display: grid;
        gap: 14px;
      }

      .price-card {
        background: linear-gradient(
          130deg,
          rgba(30, 79, 122, 0.16),
          rgba(95, 163, 48, 0.18)
        );
        border-radius: 18px;
        padding: 18px;
        border: 1px solid rgba(95, 163, 48, 0.35);
        box-shadow: var(--shadow);
        display: grid;
        gap: 6px;
      }

      .price-label {
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 1.2px;
        color: var(--muted);
        font-weight: 700;
      }

      .price-value {
        font-size: 30px;
        font-weight: 800;
        color: var(--text);
      }

      .price-unit {
        font-weight: 700;
        color: var(--accent-2);
      }

      .price-note {
        margin: 8px 0 0;
        color: var(--muted);
        font-weight: 600;
      }

      .price-list {
        background: var(--panel);
        border-radius: 18px;
        padding: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: grid;
        gap: 10px;
      }

      .price-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-weight: 700;
      }

      .price-item span {
        color: var(--text);
      }

      .price-item strong {
        color: var(--accent);
        font-weight: 800;
      }

      .price-help {
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(30, 79, 122, 0.08);
        border: 1px solid var(--border);
        color: var(--muted);
        font-weight: 600;
      }

      .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 14px 16px;
      }

      .booking-form label {
        display: grid;
        gap: 8px;
        font-weight: 600;
        color: var(--text);
      }

      .hp-field {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      .booking-form input,
      .booking-form select {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 16px;
        font-family: inherit;
        background: #ffffff;
      }

      .booking-form input:focus,
      .booking-form select:focus {
        outline: 2px solid rgba(95, 163, 48, 0.35);
        border-color: rgba(95, 163, 48, 0.6);
      }

      .form-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .form-note {
        font-weight: 600;
        color: var(--muted);
      }

      .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 25;
        background: rgba(242, 244, 243, 0.97);
        border-top: 1px solid var(--border);
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        display: none;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .mobile-sticky-cta a {
        text-decoration: none;
        text-align: center;
        justify-content: center;
      }

      @media (max-width: 960px) {
        .booking-wrap {
          grid-template-columns: 1fr;
        }
      }

      .table-card {
        background: var(--panel);
        border-radius: 20px;
        padding: 18px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        overflow-x: auto;
      }

      .bookings-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px;
      }

      .bookings-table th,
      .bookings-table td {
        text-align: left;
        padding: 12px 10px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
      }

      .bookings-table th {
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-size: 11px;
        color: var(--muted);
      }

      .bookings-table tbody tr:hover {
        background: rgba(95, 163, 48, 0.06);
      }

      .admin-controls {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        flex-wrap: wrap;
      }

      .contact-panel {
        background: var(--panel);
        border-radius: 18px;
        padding: 18px 20px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: grid;
        gap: 8px;
        max-width: 720px;
      }

      .contact-panel a,
      .contact-panel span {
        color: var(--text);
        text-decoration: none;
        font-weight: 600;
      }

      .contact-panel a:hover {
        color: var(--accent);
      }

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

      .contact-icon {
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-2);
        flex: 0 0 20px;
      }

      .contact-icon svg {
        width: 20px;
        height: 20px;
      }

      .contact-row {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 24px;
        align-items: stretch;
      }

      .contact-map {
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        min-height: 300px;
      }

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

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

      .faq-item {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px 16px;
        box-shadow: var(--shadow);
      }

      .faq-item summary {
        cursor: pointer;
        font-weight: 700;
        color: var(--text);
      }

      .faq-item p {
        margin: 10px 0 0;
        color: var(--muted);
        font-weight: 600;
        line-height: 1.55;
      }

      footer {
        padding: 30px 20px 50px;
        background: #e6ece8;
        border-top: 1px solid var(--border);
        color: var(--muted);
      }

      .footer-grid {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
        align-items: center;
      }

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

      .footer-brand strong {
        color: var(--text);
        letter-spacing: 0.4px;
      }

      .contact {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .social-links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
      }

    .social-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--text);
        text-decoration: none;
        font-weight: 600;
        padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(30, 79, 122, 0.06);
    }

    .social-links a:hover {
      color: var(--accent);
      border-color: rgba(95, 163, 48, 0.4);
    }

      .social-icon {
        width: 16px;
        height: 16px;
        display: inline-block;
      }

      .contact a {
        color: var(--text);
        text-decoration: none;
        font-weight: 600;
      }

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

      .menu-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: rgba(30, 79, 122, 0.06);
        color: var(--text);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
      }

      @media (max-width: 900px) {
        .nav {
          grid-template-columns: auto auto;
          justify-content: space-between;
        }

        .nav-quick-actions {
          display: none;
        }

        .nav-links {
          position: absolute;
          top: 70px;
          left: 20px;
          right: 20px;
          background: #f7faf8;
          border: 1px solid var(--border);
          border-radius: 16px;
          padding: 14px;
          flex-direction: column;
          gap: 10px;
          display: none;
        }

        .nav-links.show {
          display: flex;
        }

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

        .cta-panel {
          grid-template-columns: 1fr;
        }

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

        .service-row.reverse .service-media,
        .service-row.reverse .service-content {
          order: unset;
        }

        .quick-benefits {
          grid-template-columns: 1fr;
          padding-top: 18px;
        }

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

        .contact-panel {
          max-width: none;
        }

        .hero-full .hero-visual {
          height: 580px;
          min-height: 580px;
        }
      }

      @media (max-width: 600px) {
        body {
          padding-bottom: 88px;
        }

        .brand-mark {
          width: 160px;
          height: 52px;
        }

        .title {
          font-size: clamp(28px, 7vw, 38px);
        }

        .hero-content {
          padding: 32px 22px;
        }

        .hero-cta {
          width: 100%;
        }

        .hero-cta .hero-btn {
          width: 100%;
        }

        .hero-proof {
          display: none;
        }

        .hero-price-mobile {
          display: inline-flex;
        }

        .price-summary-row {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
        }

        .mobile-sticky-cta {
          display: grid;
        }

        .hero-full .hero-visual {
          height: 560px;
          min-height: 560px;
        }

        .service-row,
        .pricing-card,
        .booking-form,
        .price-card,
        .price-list,
        .contact-panel,
        .table-card {
          box-shadow: none;
        }

        .service-row,
        .pricing-card,
        .booking-form,
        .price-card,
        .price-list,
        .contact-panel {
          border-radius: 16px;
        }
      }
