:root {
    --background: #fcfcfb;
    --foreground: #171a1c;
    --card: #ffffff;
    --primary: #00843d;
    --primary-dark: #16704a;
    --primary-foreground: #ffffff;
    --secondary: #f3f6f2;
    --muted: #eef2ee;
    --muted-foreground: #67707a;
    --accent: #e7f4ec;
    --border: #e2e8e1;
    --shadow-sm: 0 8px 20px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 16px 40px rgba(17, 24, 39, 0.08);
    --shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.14);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --container: 1200px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

main .container {
    display: grid;
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: rgba(243, 246, 242, 0.7);
}

.section-dark {
    position: relative;
    color: #fff;
    background: #111827;
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 700;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-header h2,
.hero-copy h1,
.urgency-copy h2 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-copy h1 span {
    color: var(--primary);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.section-header p,
.lead,
.muted {
    color: var(--muted-foreground);
}

.lead {
    font-size: 18px;
    margin: 16px 0 0;
}

.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    box-shadow: none;
    padding: 0 8px;
    min-height: auto;
}

.btn-ghost:hover {
    background: none;
}

.btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: inline-block;
}

.card {
    background: var(--card);
    border: 1px solid rgba(226, 232, 225, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(252, 252, 251, 0.92);
    border-bottom: 1px solid rgba(226, 232, 225, 0.7);
}

.header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-desktop a,
.footer-links a {
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

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

.mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: inline-grid;
    place-items: center;
    background: #fff;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100%;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.mobile-menu-panel nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.mobile-menu-panel a {
    font-size: 18px;
    font-weight: 600;
}

.hero {
    background: linear-gradient(180deg, var(--background) 0%, rgba(243, 246, 242, 0.8) 100%);
    padding: 64px 0 96px;
    overflow: hidden;
}

.hero-grid,
.benefits-top,
.urgency-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(42px, 6vw, 68px);
    max-width: 680px;
}

.hero-copy p {
    margin: 24px 0 0;
    font-size: clamp(18px, 2.3vw, 22px);
    max-width: 580px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #1d4f36;
    font-size: 14px;
    font-weight: 600;
}

.disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 20px;
}

.hero-visual {
    position: relative;
    min-height: 460px;
}

.hero-main-image,
.floating-image,
.step-image,
.gallery-item,
.urgency-image-primary,
.urgency-image-secondary,
.benefits-image {
    overflow: hidden;
}

.hero-main-image {
    min-height: 420px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-main-image img,
.step-image img,
.gallery-item img,
.urgency-visual img,
.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-image::after,
.step-image::after,
.gallery-item::after,
.benefits-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(23, 26, 28, 0.35));
}

.floating-stat,
.floating-image,
.testimonial-card,
.gallery-label,
.urgency-badge,
.metric-box {
    position: absolute;
    z-index: 2;
}

.floating-stat {
    left: -18px;
    bottom: -24px;
    padding: 18px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    min-width: 210px;
}

.floating-stat strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
}

.floating-stat small,
.metric-box small,
.trust-note,
.footer-copy,
.footer-bottom p,
.quiz-note,
.quiz-summary,
.accordion-panel,
.footer-contact p,
.footer-links li,
.location-tag,
.trust-badge span:last-child {
    color: var(--muted-foreground);
}

.floating-image {
    right: -12px;
    top: -18px;
    width: 112px;
    height: 112px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.trust-strip {
    padding: 28px 0;
    border-top: 1px solid rgba(226, 232, 225, 0.7);
    border-bottom: 1px solid rgba(226, 232, 225, 0.7);
    background: #fff;
}

.trust-grid {
    display: grid;
    gap: 24px;
    align-items: center;
}

.trust-brand,
.trust-badges,
.trust-badge,
.feature-item,
.benefit-card .icon-box,
.step-card .icon-box,
.footer-contact-row,
.success-list li,
.quiz-promo li {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-brand {
    justify-content: center;
    text-align: center;
}

.trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.trust-badge {
    align-items: flex-start;
}

.divider {
    display: none;
    width: 1px;
    height: 52px;
    background: var(--border);
    justify-self: center;
}

.icon-box,
.icon-circle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(31, 143, 95, 0.12);
    color: var(--primary);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
}

.steps-grid,
.benefits-grid,
.locations-list,
.metrics-row,
.concerns-list,
.faq-list,
.footer-grid {
    display: grid;
    gap: 24px;
}

.benefits-grid .icon-box .icon,
.steps-grid .icon-box .icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.step-card,
.benefit-card,
.accordion-item,
.quiz-card,
.testimonial-card,
.metric-box,
.location-tag {
    background: #fff;
    border: 1px solid rgba(226, 232, 225, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.step-card,
.benefit-card {
    overflow: hidden;
    height: 100%;
}

.step-image {
    position: relative;
    height: 220px;
}

.step-number {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.step-body,
.benefit-body,
.accordion-button,
.quiz-card,
.footer-section {
    padding: 24px;
}

.step-body h3,
.benefit-body h3,
.accordion-button span,
.footer-section h4,
.quiz-heading,
.success-title {
    margin: 0;
}

.step-body p,
.benefit-body p,
.footer-copy,
.footer-section ul,
.footer-section p {
    margin: 12px 0 0;
}

.benefits-top {
    margin-bottom: 56px;
}

.benefits-image-wrap {
    position: relative;
    padding-bottom: 36px;
}

.benefits-image {
    position: relative;
    height: 400px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.testimonial-card {
    right: 16px;
    bottom: 0;
    max-width: 320px;
    padding: 18px;
}

.testimonial-card p {
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(31, 143, 95, 0.18);
}

.metrics-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-top: 28px;
}

.metric-box {
    position: static;
    padding: 16px 18px;
    border-radius: 18px;
}

.metric-box strong {
    display: block;
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-item {
    position: relative;
    min-height: 300px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.gallery-label {
    left: 18px;
    bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    backdrop-filter: blur(10px);
}

.locations-list {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.location-tag {
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: none;
    font-size: 14px;
}

.quiz-card {
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.quiz-progress {
    margin-bottom: 28px;
}

.quiz-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    margin-bottom: 10px;
}

.progress-track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: var(--muted);
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    background: var(--primary);
    transition: width 0.25s ease;
    border-radius: inherit;
}

.quiz-heading {
    font-size: 28px;
    line-height: 1.2;
}

.quiz-subtitle {
    margin: 10px 0 0;
    color: var(--muted-foreground);
}

.quiz-options {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.quiz-option {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.quiz-option:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
}

.quiz-option.is-selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.quiz-input-group {
    margin-top: 18px;
}

.quiz-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.quiz-input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--foreground);
}

.quiz-promo,
.success-box,
.quiz-success {
    border-radius: 18px;
    background: rgba(243, 246, 242, 0.9);
    padding: 18px;
    margin-top: 22px;
}

.success-list li,
.quiz-promo ul li {
    justify-content: flex-start;
}

.quiz-promo p,
.success-box p,
.quiz-success p {
    margin: 0 0 10px;
}

.quiz-promo ul,
.success-list,
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.quiz-nav-right {
    margin-left: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: rgba(31, 143, 95, 0.12);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
}

.success-title {
    font-size: 32px;
    text-align: center;
}

.success-copy {
    text-align: center;
    margin: 12px auto 0;
    max-width: 520px;
    color: var(--muted-foreground);
}

.success-box {
    max-width: 540px;
    margin: 24px auto 0;
    text-align: left;
}

.accordion-list {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    background: transparent;
    border: none;
    cursor: pointer;
}

.accordion-button .chevron {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
    color: var(--muted-foreground);
    flex: 0 0 auto;
}

.accordion-item.is-open .accordion-button .chevron {
    transform: rotate(180deg);
}

.accordion-panel {
    display: none;
    padding: 0 24px 24px;
    font-size: 15px;
}

.accordion-item.is-open .accordion-panel {
    display: block;
}

.urgency-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.82)), url('../img/palm-jumeirah.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.urgency-copy,
.urgency-visual {
    position: relative;
    z-index: 1;
}

.urgency-copy .eyebrow {
    background: rgba(31, 143, 95, 0.18);
    color: #76e2af;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 14px;
}

.urgency-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    margin-top: 16px;
    max-width: 580px;
}

.features-grid {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.feature-item {
    align-items: flex-start;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.feature-item span {
    color: #fff;
    font-size: 15px;
}

.urgency-copy .btn,
.sticky-cta .btn {
    box-shadow: none;
}

.urgency-note {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.52);
}

.urgency-visual {
    display: none;
    min-height: 420px;
}

.urgency-image-primary,
.urgency-image-secondary,
.urgency-accent {
    position: absolute;
    box-shadow: var(--shadow-lg);
}

.urgency-image-primary {
    top: 0;
    right: 0;
    width: 72%;
    height: 300px;
    border-radius: 32px;
}

.urgency-image-secondary {
    left: 0;
    bottom: 0;
    width: 52%;
    height: 220px;
    border-radius: 24px;
}

.urgency-accent {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    right: 72px;
    bottom: 86px;
    background: rgba(31, 143, 95, 0.28);
    backdrop-filter: blur(10px);
}

.footer {
    padding: 56px 0 24px;
    background: #fff;
    border-top: 1px solid rgba(226, 232, 225, 0.7);
}

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

.footer-section h4 {
    font-size: 18px;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 225, 0.7);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: rgba(252, 252, 251, 0.94);
    border-top: 1px solid rgba(226, 232, 225, 0.8);
    backdrop-filter: blur(12px);
    transform: translateY(110%);
    transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

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

.desktop-only {
    display: none;
}

.hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .section,
    .hero {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .nav-desktop {
        display: flex;
    }

    .mobile-menu-toggle,
    .sticky-cta {
        display: none;
    }

    .desktop-only {
        display: inline-flex;
    }

    .trust-grid {
        grid-template-columns: 1fr auto 1.4fr;
    }

    .divider {
        display: block;
    }

    .trust-brand {
        justify-content: flex-start;
        text-align: left;
    }

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

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

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

    .gallery-item.featured {
        grid-column: span 2;
        min-height: 460px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-grid,
    .benefits-top,
    .urgency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

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

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

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 100%;
    }

    .gallery-grid {
        grid-auto-rows: minmax(200px, auto);
    }

    .urgency-visual {
        display: block;
    }
}

@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-main-image {
        min-height: 340px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .floating-stat {
        left: 10px;
        right: 10px;
        bottom: -22px;
        min-width: auto;
    }

    .floating-image {
        width: 86px;
        height: 86px;
        right: 12px;
        top: -10px;
    }

    .testimonial-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -18px 12px 0;
    }

    .quiz-nav {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .quiz-nav-right,
    .quiz-nav .btn {
        width: 100%;
        margin-left: 0;
    }

    .accordion-button {
        font-size: 16px;
    }
}