/* ===============================
   FONTS
=============================== */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/outfit-v15-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/outfit-v15-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/outfit-v15-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/outfit-v15-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/outfit-v15-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/assets/fonts/outfit-v15-latin-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/sora-v17-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/sora-v17-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/sora-v17-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/sora-v17-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/sora-v17-latin-800.woff2') format('woff2');
}

/* ===============================
   VARIABLES
=============================== */
:root {
    --red:          #E63946;
    --red-light:    #ff5a6b;
    --red-pale:     #ff8a93;
    --bg:           #ffffff;
    --bg-alt:       #f8f9fa;
    --border:       #e8e8e8;
    --border-light: #f0f0f0;
    --text-dark:    #1a1a1a;
    --text-muted:   #555555;
    --header-h:     70px;
    --max-w:        1280px;
    --radius:       16px;
    --radius-sm:    12px;
    --shadow-red:   0 12px 40px rgba(230, 57, 70, 0.3);
}

/* ===============================
   RESET & BASE
=============================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Inline link inside running text: stands out with brand color + underline */
.text-link {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.text-link:hover { color: var(--red-light); }

.pricing-faq-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* ===============================
   HEADER
=============================== */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.logo-indo { color: var(--text-dark); }

.chip-red {
    background: var(--red);
    color: #fff;
    border-radius: 6px;
}

.logo .chip-red {
    padding: 2px 8px;
    margin-left: 4px;
}

/* Nav group: nav links + BOOK NOW together */
.nav-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Nav links */
.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

/* Language switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.lang-switcher a {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-switcher a:hover { color: var(--red); }

.lang-switcher a.active {
    background: var(--red);
    color: #fff;
}

/* Header CTA */
.btn-header {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.btn-header:hover { opacity: 0.85; }

/* Mobile toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile open state */
header.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 2px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

header.nav-open .nav-links li { border-bottom: 1px solid var(--border-light); }

header.nav-open .nav-links a {
    display: block;
    padding: 1.1rem 2rem;
}

/* Lang row inside mobile nav */
.nav-lang-mobile { display: none; }

header.nav-open .nav-lang-mobile {
    display: flex;
    align-items: center;
    padding: 0.85rem 2rem;
}

header.nav-open .nav-lang-mobile .lang-switcher { display: flex; }

header.nav-open .nav-lang-mobile .lang-switcher a {
    display: inline-flex;
    padding: 4px 9px;
}

@media (min-width: 768px) {
    .nav-links { display: flex !important; }
    .nav-toggle { display: none; }
    .nav-lang-mobile { display: none !important; }
}

@media (max-width: 767px) {
    .lang-switcher { display: none; }
}

/* ===============================
   BUTTONS
=============================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: var(--shadow-red);
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 52px;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(230, 57, 70, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: 2px solid var(--red);
    border-radius: var(--radius-sm);
    color: var(--red);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    background: none;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--red);
    color: #fff;
}

/* ===============================
   HERO
=============================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.4)  50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 880px;
    margin-top: var(--header-h);
    animation: fadeUp 0.9s ease-out;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    -webkit-text-stroke: 0.16em rgba(0, 0, 0, 0.6);
    paint-order: stroke fill;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 1px;
    color: #fff;
    -webkit-text-stroke: 0.075em #000;
    paint-order: stroke fill;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    -webkit-text-stroke: 0.13em rgba(0, 0, 0, 0.5);
    paint-order: stroke fill;
    margin-bottom: 2.5rem;
}

/* ===============================
   SECTIONS
=============================== */
.section { padding: 5rem 2rem; }

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
    color: var(--text-dark);
    -webkit-text-stroke: 0.11em rgba(0, 0, 0, 0.08);
    paint-order: stroke fill;
    margin-bottom: 3rem;
}

/* ===============================
   TRUST BAR
=============================== */
.trust-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 2rem;
}

.trust-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 2.5rem;
}

.trust-item svg {
    width: 28px;
    height: 28px;
    color: var(--red);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.trust-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .trust-divider { display: none; }
    .trust-item { padding: 0.5rem; }
}

/* ===============================
   FEATURES
=============================== */
.features { background: var(--bg); }

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

.feature-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.12);
}

.feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===============================
   COMPARE
=============================== */
.compare {
    position: relative;
    overflow: hidden;
}

.compare-bg {
    position: absolute;
    inset: -120px 0;
    background-image: url('/assets/img/paragliding-paramotor-nusa-penida-bali.webp');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
}

.compare-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.compare .section-inner {
    position: relative;
    z-index: 2;
}

.compare .section-label {
    color: var(--red-pale);
    -webkit-text-stroke: 0.08em rgba(0, 0, 0, 0.8);
    paint-order: stroke fill;
}

.compare .section-title {
    color: #fff;
    margin-bottom: 2rem;
    -webkit-text-stroke: 0.022em rgba(0, 0, 0, 0.8);
    paint-order: stroke fill;
}

.compare-text {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    -webkit-text-stroke: 0.06em rgba(0, 0, 0, 0.8);
    paint-order: stroke fill;
}

/* ===============================
   PRICING
=============================== */
.pricing { background: var(--bg); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    min-height: 420px;
}

.pricing-card:hover {
    border-color: var(--red);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(230, 57, 70, 0.16);
}

.pricing-card.featured {
    border-color: var(--red);
    box-shadow: 0 8px 40px rgba(230, 57, 70, 0.14);
}

.pricing-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.pricing-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.pricing-price {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.pricing-currency {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.pricing-list {
    text-align: left;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
    content: '✓';
    color: var(--red);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-card .btn-primary { width: 100%; margin-top: 1.75rem; }

/* ===============================
   SUNRISE & SUNSET CARD
=============================== */
.sunrise-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem auto 0;
    width: 60%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sunrise-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 40px rgba(230, 57, 70, 0.12);
}

.sunrise-svg-wrap { width: 100%; margin-top: 1em; }

.sunrise-svg { width: 100%; height: auto; display: block; }

.sunrise-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: 100%;
}

.sunrise-card > h3 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
}

.sunrise-content .pricing-list {
    flex-grow: 0;
    text-align: left;
    width: 100%;
    max-width: 80%;
    margin: 0 auto 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sunrise-content .pricing-list li {
    padding: 0.3rem 0;
}

.sunrise-content .pricing-list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.sunrise-content .btn-primary { width: 100%; }

/* ===============================
   HOW IT WORKS
=============================== */
.how-it-works { background: var(--bg-alt); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: steps;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: calc(33.33% - 1rem);
    right: calc(33.33% - 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--red), var(--border));
    z-index: 0;
}

.step-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--red);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.step-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.2s, letter-spacing 0.2s;
}

.step-cta:hover { letter-spacing: 0.5px; }

.steps-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
}

/* ===============================
   FAQ
=============================== */
.faq { background: var(--bg-alt); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.9rem;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.faq-item:hover { border-color: var(--red); }

.faq-item.open {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.faq-item.open .faq-question {
    background: var(--red);
    color: #fff;
}

.faq-icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
    padding: 1.25rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    background: var(--bg-alt);
}
.faq-answer-inner p { margin: 0; }
.faq-answer-inner p + p { margin-top: 0.75rem; }

.faq-copy-link,
.faq-copy-full {
    display: inline-block;
    margin-right: 0.2em;
    opacity: 0.55;
    cursor: pointer;
    color: inherit;
    background: none;
    border: none;
    font: inherit;
    padding: 0;
    text-decoration: none;
    transition: opacity 0.2s;
}
.faq-copy-link:hover,
.faq-copy-full:hover { opacity: 1; }
.faq-copy-link.copied,
.faq-copy-full.copied { opacity: 1; color: #2e7d32; }

.faq-more { text-align: center; margin-top: 2.5rem; }

/* ===============================
   FOOTER
=============================== */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid var(--red);
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-address {
    font-style: normal;
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-contact { flex: 1; }

.footer-brand img {
    display: block;
    border-radius: var(--radius-sm);
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(230, 57, 70, 0.45);
}

.social-links { display: flex; gap: 0.6rem; }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.social-link svg {
    width: 62.5%;
    height: 62.5%;
    fill: currentColor;
}

.footer-lang {
    justify-content: center;
    width: 100%;
    gap: 6px;
    padding: 1.5rem 0;
    margin-bottom: 0.5rem;
    flex-shrink: unset;
}

.footer-lang a {
    font-size: 1rem;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-lang a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-lang a.active {
    background: var(--red);
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===============================
   FAQ PAGE
=============================== */
.page-hero {
    background: var(--bg-alt);
    padding: calc(var(--header-h) + 3rem) 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.faq-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    transition: gap 0.2s;
}

.faq-back:hover { gap: 0.75rem; }

/* ===============================
   ERROR PAGES
=============================== */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 3rem) 2rem 3rem;
}

.error-content { text-align: center; max-width: 480px; }

.error-code {
    font-family: 'Sora', sans-serif;
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.error-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===============================
   ANIMATIONS
=============================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   WHATSAPP FLOAT
=============================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 900;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

/* ===============================
   SCROLL TO TOP
=============================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover { background: var(--red-light); }

.scroll-top svg { width: 20px; height: 20px; }

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .sunrise-card { width: 100%; max-width: 400px; }

    .sunrise-content .pricing-list { max-width: 100%; margin: 0 0 1.75rem; grid-template-columns: 1fr; }

    .sunrise-content .btn-primary { width: 100%; }
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .section { padding: 3.5rem 1.25rem; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 1.5rem; }
    .footer-actions { flex-direction: column; align-items: flex-start; }
    .nav-inner { padding: 0 1.25rem; }
    .faq-page-content { padding: 3rem 1.25rem; }
}
