/* ============================================
   AERIS — Sky Pharmacy
   Retro-futuristic: 1960s space-age optimism
   meets modern pharmaceutical elegance
   Green botanical accents added throughout
   ============================================ */

:root {
    --sky-deep: #0a1a3d;
    --sky-mid: #1e3a6e;
    --sky-light: #4a7fc1;
    --sky-pale: #a8c8e8;
    --gold: #d4a849;
    --gold-light: #e8c887;
    --gold-pale: #f0d9a8;
    --pink: #e8b8a0;
    --cream: #f5ead6;
    --white: #faf8f3;
    --navy: #06122e;
    --text-dark: #0a1a3d;
    --text-mid: #3a4a6a;
    --text-light: #6a7a9a;
    --border: rgba(10, 26, 61, 0.12);

/* Green botanical palette */
    --green-deep: #1a4d2e;
    --green-mid: #2d7a4e;
    --green-light: #4eaa7c;
    --green-pale: #8fd8ad;
    --green-mint: #c8f0d8;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --max-width: 1280px;
    --section-pad: 120px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 860px;
}

/* ===== NAV ===== */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sky-deep);
}

.logo-mark {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--green-mid), var(--gold));
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px rgba(45, 122, 78, 0.5);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-mid);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    background: var(--sky-deep);
    color: var(--white);
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: translateY(-2px);
}

#nav.scrolled {
    background: rgba(250, 248, 243, 0.95);
    box-shadow: 0 4px 30px rgba(10, 26, 61, 0.08);
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(45, 122, 78, 0.12), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(74, 127, 193, 0.2), transparent 50%),
        linear-gradient(180deg, var(--sky-pale) 0%, var(--white) 50%, var(--cream) 100%);
    z-index: 0;
}

/* Animated clouds */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.hero-bg::before {
    width: 300px;
    height: 300px;
    background: var(--green-mint);
    top: 15%;
    right: 5%;
    animation: floatCloud 20s ease-in-out infinite;
}

.hero-bg::after {
    width: 250px;
    height: 250px;
    background: var(--sky-pale);
    bottom: 10%;
    left: 5%;
    animation: floatCloud 25s ease-in-out infinite reverse;
}

@keyframes floatCloud {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--sky-deep);
    margin-bottom: 28px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    background: var(--sky-deep);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 122, 78, 0.3);
}

.btn-ghost {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 100px;
    border: 2px solid var(--sky-deep);
    color: var(--sky-deep);
    transition: all 0.3s;
    background: transparent;
}

.btn-ghost:hover {
    background: var(--sky-deep);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid var(--sky-deep);
    color: var(--sky-deep);
    background: transparent;
    transition: all 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: var(--sky-deep);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sky-deep);
    line-height: 1;
}

.stat-num small {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-capsule {
    width: 100%;
    max-width: 480px;
    animation: floatCapsule 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(10, 26, 61, 0.15));
}

@keyframes floatCapsule {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-30px) rotate(-4deg); }
}

/* ===== SECTION HEADERS ===== */
.section-head {
    text-align: center;
    margin-bottom: 64px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sky-deep);
}

/* ===== SCIENCE / STEPS ===== */
#science {
    padding: var(--section-pad) 0;
    background: var(--white);
    position: relative;
}

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

.step {
    text-align: center;
    padding: 40px 28px;
    background: var(--cream);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--sky-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 26, 61, 0.1);
}

.step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--sky-deep);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 26, 61, 0.08);
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sky-deep);
    margin-bottom: 16px;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ===== CAPSULES ===== */
#capsules {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

.capsule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.capsule-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.capsule-card--featured {
    border: 2px solid var(--green-mid);
    box-shadow: 0 20px 60px rgba(45, 122, 78, 0.15);
    transform: scale(1.02);
}

.capsule-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green-mid);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    z-index: 3;
}

.capsule-ingredient {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(45, 122, 78, 0.12);
    color: var(--green-deep);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 3;
    border: 1px solid rgba(45, 122, 78, 0.2);
}

.capsule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 26, 61, 0.12);
}

.capsule-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.capsule-img-wrap {
    padding: 40px;
    background: linear-gradient(135deg, var(--green-mint), var(--gold-pale));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 240px;
}

.capsule-img-wrap img {
    width: 160px;
    height: auto;
    transition: transform 0.4s;
    filter: drop-shadow(0 10px 30px rgba(10, 26, 61, 0.15));
}

.capsule-card:hover .capsule-img-wrap img {
    transform: scale(1.1) rotate(-5deg);
}

.capsule-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.capsule-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 8px;
}

.capsule-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sky-deep);
    margin-bottom: 12px;
}

.capsule-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 24px;
    flex: 1;
}

.capsule-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.capsule-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.capsule-meta span {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

.capsule-meta strong {
    font-size: 0.9rem;
    color: var(--sky-deep);
    font-weight: 600;
}

.capsule-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sky-deep);
    margin-bottom: 20px;
}

.capsule-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: var(--section-pad) 0;
    background: var(--sky-deep);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(45, 122, 78, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(74, 127, 193, 0.15), transparent 50%);
}

#testimonials .section-head h2,
#testimonials .eyebrow {
    color: var(--white);
    position: relative;
}

#testimonials .eyebrow {
    color: var(--green-pale);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 122, 78, 0.4);
    transform: translateY(-6px);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--cream);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--green-pale);
}

.testimonial span {
    font-size: 0.82rem;
    color: var(--sky-pale);
}

/* ===== SAFETY ===== */
#safety {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.safety-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.safety-item:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(10, 26, 61, 0.08);
    transform: translateY(-6px);
}

.safety-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--green-mid);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(10, 26, 61, 0.06);
}

.safety-icon svg {
    width: 30px;
    height: 30px;
}

.safety-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sky-deep);
    margin-bottom: 12px;
}

.safety-item p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-mid);
}

/* ===== FAQ ===== */
#faq {
    padding: var(--section-pad) 0;
    background: var(--cream);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    border-color: var(--green-light);
    box-shadow: 0 10px 30px rgba(10, 26, 61, 0.06);
}

.faq-item summary {
    padding: 24px 28px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sky-deep);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green-mid);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ===== RESERVE / CTA ===== */
#reserve {
    padding: var(--section-pad) 0;
    background: var(--sky-deep);
    position: relative;
    overflow: hidden;
}

.reserve-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(45, 122, 78, 0.2), transparent 60%),
        radial-gradient(ellipse at 30% 100%, rgba(74, 127, 193, 0.2), transparent 60%);
}

.reserve-card {
    position: relative;
    text-align: center;
    padding: 64px 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.reserve-card .eyebrow {
    color: var(--green-pale);
}

.reserve-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.reserve-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--sky-pale);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reserve-form {
    max-width: 640px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
}

.reserve-form input,
.reserve-form select {
    padding: 16px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.reserve-form input::placeholder {
    color: rgba(168, 200, 232, 0.6);
}

.reserve-form input:focus,
.reserve-form select:focus {
    border-color: var(--green-light);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(78, 170, 124, 0.2);
}

.reserve-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fd8ad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.reserve-form select option {
    background: var(--sky-deep);
    color: var(--white);
}

.reserve-form button {
    padding: 16px 32px;
    white-space: nowrap;
}

.reserve-form .btn-primary {
    background: var(--green-mid);
    color: var(--white);
}

.reserve-form .btn-primary:hover {
    background: var(--green-light);
    box-shadow: 0 10px 30px rgba(45, 122, 78, 0.4);
}

.reserve-fineprint {
    font-size: 0.75rem;
    color: var(--sky-pale);
    opacity: 0.6;
    margin-top: 24px;
    line-height: 1.6;
}

.reserve-success {
    display: none;
    padding: 40px 20px;
    text-align: center;
}

.reserve-success.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--green-pale);
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.reserve-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.reserve-success p {
    font-size: 1rem;
    color: var(--sky-pale);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    padding: 80px 0 40px;
    color: var(--sky-pale);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--sky-pale);
    opacity: 0.7;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--sky-pale);
    opacity: 0.7;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--sky-pale);
    opacity: 0.5;
    line-height: 1.6;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas,
    .hero-stats {
        justify-content: center;
    }

    .hero-capsule {
        max-width: 320px;
    }

    .steps,
    .capsule-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .nav-inner {
        padding: 16px 24px;
    }

    #hero {
        padding: 100px 24px 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .reserve-card {
        padding: 40px 24px;
    }

    .capsule-card--featured {
        transform: none;
    }

    .capsule-card--featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost {
        text-align: center;
    }
}
