/* ==================== CSS VARIABLES (Exact React colors) ==================== */
:root {
    --background: hsl(36, 25%, 97%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(222, 47%, 11%);
    --primary: hsl(222, 47%, 14%);
    --primary-foreground: hsl(45, 100%, 96%);
    --secondary: hsl(36, 20%, 95%);
    --secondary-foreground: hsl(222, 47%, 11%);
    --muted: hsl(36, 20%, 95%);
    --muted-foreground: hsl(220, 9%, 46%);
    --accent: hsl(38, 72%, 44%);
    --accent-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);
    --ring: hsl(38, 72%, 44%);
    --radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

a {
    text-decoration: none;
}

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



/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8f6f1;
    overflow: hidden;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.06) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.08;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .italic {
    font-style: italic;
    color: var(--accent);
}

.hero-divider {
    width: 4rem;
    height: 0.25rem;
    background: var(--accent);
    margin: 2rem 0;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--primary);
    opacity: 0.55;
    max-width: 32rem;
    line-height: 1.75;
}

.hero-description strong {
    opacity: 0.75;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 20px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
    transition: all 0.3s;
}

.btn-hero:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    opacity: 0.6;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-play:hover {
    opacity: 1;
}

.btn-play-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--accent);
}

.trust-badge-text {
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.5;
    font-weight: 500;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.3) 0%, transparent 100%);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--border);
}

.floating-card-lounge {
    bottom: -1.5rem;
    left: -2rem;
    max-width: 12.5rem;
}

.floating-card-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: rgba(217, 119, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.floating-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.floating-card-desc {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.floating-card-fast {
    top: -1rem;
    right: -1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    max-width: 11.25rem;
}

.floating-card-fast .floating-card-title {
    color: var(--accent);
}

.floating-card-fast .floating-card-desc {
    color: var(--primary-foreground);
    opacity: 0.5;
}

.time-saved {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
}

/* ==================== SERVICES ==================== */
.services {
    background: white;
    padding: 7rem 1.5rem;
}

.services-header {
    max-width: 80rem;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.services-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .services-title {
        font-size: 3rem;
    }
}

.services-rows {
    max-width: 80rem;
    margin: 0 auto;
}

.service-row {
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f8f6f1;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.5s;
}

.service-row:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .service-row {
        flex-direction: row;
    }

    .service-row.reverse {
        flex-direction: row-reverse;
    }
}

.service-row-image {
    width: 100%;
    height: 14rem;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .service-row-image {
        width: 40%;
        height: auto;
    }
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-row:hover .service-row-image img {
    transform: scale(1.05);
}

.service-row-content {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(217, 119, 6, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.service-row-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-row-desc {
    color: var(--muted-foreground);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-row-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    transition: gap 0.2s;
}

.service-row-link:hover {
    gap: 0.75rem;
}

.service-row-link svg {
    width: 1rem;
    height: 1rem;
}

.extras-grid {
    max-width: 80rem;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .extras-grid {
        width: 60%;
        grid-template-columns: repeat(2, 1fr);
    }
}

.extra-card {
    background: #f8f6f1;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.extra-card:hover {
    border-color: rgba(217, 119, 6, 0.3);
}

.extra-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(217, 119, 6, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.extra-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.extra-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.extra-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    padding: 6rem 1.5rem;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.social-proof-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.08;
}

.social-proof-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.9;
}

.social-proof .section-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-proof-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-proof-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .social-proof-title {
        font-size: 2.5rem;
    }
}

.social-proof-title .italic {
    color: var(--accent);
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: rgba(248, 250, 252, 0.05);
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: background 0.3s;
}

.stat-card:hover {
    background: rgba(248, 250, 252, 0.08);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(217, 119, 6, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.stat-label {
    color: var(--primary-foreground);
    opacity: 0.7;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.stat-desc {
    color: var(--primary-foreground);
    opacity: 0.35;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* ==================== WHY SKYPASS ==================== */
.why-skypass {
    padding: 7rem 1.5rem;
    background: #f8f6f1;
}

.why-header {
    max-width: 80rem;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .why-title {
        font-size: 3rem;
    }
}

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    opacity: 0.6;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.why-link:hover {
    opacity: 1;
    gap: 0.75rem;
}

.pillars-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pillar-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s;
}

.pillar-card:hover {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
}

.pillar-card:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.pillar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.pillar-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.pillar-icon-wrapper {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pillar-icon-wrapper svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.pillar-content {
    padding: 1.75rem;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pillar-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==================== PRICING ==================== */
.pricing {
    padding: 7rem 1.5rem;
    background: var(--secondary);

}

.pricing .section-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3rem;
    }
}

.pricing-subtitle {
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.pricing-card.popular {
    background: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
    transform: scale(0.98);
    border: 2px solid var(--primary);
    margin-top: 7px;
}

.pricing-card:not(.popular) {
    background: white;
    border: 1px solid var(--border);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-badge svg {
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
}

.pricing-content {
    padding: 2rem 2.5rem;
    min-height: 36.25rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .pricing-content {
        padding: 2.5rem;
    }
}

.pricing-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pricing-card.popular .pricing-name {
    color: white;
}

.pricing-card:not(.popular) .pricing-name {
    color: var(--primary);
}

.pricing-desc {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-card.popular .pricing-desc {
    color: rgba(248, 250, 252, 0.6);
}

.pricing-card:not(.popular) .pricing-desc {
    color: var(--muted-foreground);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-currency {
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card.popular .pricing-currency {
    color: rgba(248, 250, 252, 0.6);
}

.pricing-card:not(.popular) .pricing-currency {
    color: var(--muted-foreground);
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

.pricing-card.popular .pricing-amount {
    color: white;
}

.pricing-card:not(.popular) .pricing-amount {
    color: var(--primary);
}

.pricing-period {
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.pricing-card.popular .pricing-period {
    color: rgba(248, 250, 252, 0.5);
}

.pricing-card:not(.popular) .pricing-period {
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-features li svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-features li span {
    font-size: 0.875rem;
}

.pricing-card.popular .pricing-features li span {
    color: rgba(248, 250, 252, 0.8);
}

.pricing-card:not(.popular) .pricing-features li span {
    color: var(--foreground);
    opacity: 0.7;
}

.pricing-btn {
    width: 100%;
    padding: 15px 25px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.pricing-card.popular .pricing-btn {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.25);
}

.pricing-card.popular .pricing-btn:hover {
    opacity: 0.9;
}

.pricing-card:not(.popular) .pricing-btn {
    background: var(--primary);
    color: var(--primary-foreground);
    margin-top: 88px;
}

.pricing-card:not(.popular) .pricing-btn:hover {
    opacity: 0.9;
}

.pricing-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    position: relative;
    overflow: hidden;
    background: #f8f6f1;
    padding: 7rem 1.5rem;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.final-cta .section-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .final-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 3.75rem;
    }
}

.final-cta-desc {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--primary);
    opacity: 0.55;
    font-weight: 300;
    line-height: 1.75;
    max-width: 32rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

.final-cta-btn {
    padding: 12px 25px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.final-cta-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.25);
}

.final-cta-btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.final-cta-btn-secondary {
    background: transparent;
    color: var(--primary);
    opacity: 0.6;
    border: 1px solid var(--primary);
    opacity: 0.2;
}

.final-cta-btn-secondary:hover {
    opacity: 1;
    border-color: var(--primary);
}

.final-cta-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: background 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.8);
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.highlight-desc {
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.45;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }
}

@media (max-width: 768px) {

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

    .mobile-toggle {
        display: block;
    }

    .services,
    .why-skypass,
    .pricing,
    .final-cta {
        padding: 4rem 1.5rem;
    }

    .pricing-card:not(.popular) .pricing-btn {
        margin-top: 10px;
    }

    .pricing .section-container {
        max-width: 64rem;
        margin: 0 auto;
        padding: 0;
    }

    .btn-hero {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 12px 2.25rem;
        background: var(--primary);
        color: var(--primary-foreground);
        border-radius: 9999px;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
        transition: all 0.3s;
    }

    .pricing-btn {
        width: 100%;
        padding: 14px 24px;
    }

    .final-cta-btn {
        padding: 15px 35px;
    }
}