/* ============================================
   SkyWrite — Premium Skywriting Website
   Apple-inspired clean design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --off-white: #f5f5f7;
    --light-gray: #e8e8ed;
    --mid-gray: #86868b;
    --dark-gray: #1d1d1f;
    --black: #000000;
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --blue-light: #e1f0ff;
    --sky-start: #0c1445;
    --sky-mid: #1a3a7a;
    --sky-end: #4a9eeb;
    --gold: #f5a623;
    --gold-light: #fef3e0;
    --success: #30d158;
    --warning: #ff9f0a;
    --danger: #ff453a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 64px;
    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--blue-hover); }

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

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.nav.scrolled .nav-logo { color: var(--dark-gray); }

.logo-icon {
    font-size: 16px;
    color: var(--gold);
}

.nav-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    border-radius: 4px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

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

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

.nav.scrolled .nav-links a { color: var(--mid-gray); }
.nav.scrolled .nav-links a:hover { color: var(--dark-gray); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav.scrolled .nav-toggle span { background: var(--dark-gray); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 980px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-hover);
    color: var(--white);
    transform: scale(1.02);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
    width: 100%;
}

.btn-apple-pay {
    background: #000;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.02em;
}

.btn-apple-pay:hover {
    background: #1a1a1a;
    color: #fff;
}

#googlePayContainer {
    min-height: 48px;
}

#googlePayContainer:empty {
    display: none;
}

.btn-google-pay {
    background: #fff;
    color: #3c4043;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #dadce0;
}

.btn-google-pay:hover {
    background: #f8f9fa;
    border-color: #c6c9cc;
}

.btn-google-pay img {
    height: 20px;
}

.btn-klarna {
    background: #FFB3C7;
    color: #1d1d1f;
    font-size: 14px;
}

.btn-klarna:hover {
    background: #FF9DB5;
    color: #1d1d1f;
}

.payment-methods {
    margin-top: 8px;
}

.payment-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

/* Card Input Fields */
.card-input-group {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.card-input-row {
    display: flex;
    gap: 12px;
}

.card-input-row + .card-input-row {
    margin-top: 12px;
}

.card-field {
    flex: 1;
}

.card-field-full {
    flex: 1;
}

.card-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--mid-gray);
    display: block;
    margin-bottom: 4px;
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input,
.card-field > input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font);
    background: var(--white);
    transition: border-color var(--transition);
}

.card-input-wrapper input:focus,
.card-field > input:focus {
    outline: none;
    border-color: var(--blue);
}

.card-icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.card-brand-icon {
    width: 32px;
    height: 20px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-divider {
    text-align: center;
    font-size: 12px;
    color: var(--mid-gray);
    margin: 4px 0;
}

.klarna-note {
    font-size: 12px;
    color: var(--mid-gray);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

/* Stripe Elements */
.stripe-element {
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
    transition: border-color var(--transition);
}

.stripe-element.StripeElement--focus {
    border-color: var(--blue);
}

#applePayContainer {
    min-height: 0;
}

/* Card section collapse/expand */
.card-section-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.card-section-expanded {
    max-height: 400px;
    overflow: visible;
    opacity: 1;
    margin-top: 12px;
    transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, margin 0.3s ease;
}

.payment-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 14px;
}

.payment-secure svg {
    color: var(--success);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #1a6dd4 0%, #4a9eeb 40%, #7ec8f8 75%, #b8dff9 100%);
}

/* Animated sky with clouds */
.hero-sky {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255,255,255,0.35);
    border-radius: 100px;
    filter: blur(6px);
    animation: cloudDrift linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 280px; height: 60px; top: 12%; left: -300px;
    animation-duration: 45s;
}
.cloud-1::before { width: 100px; height: 80px; top: -40px; left: 50px; }
.cloud-1::after { width: 70px; height: 55px; top: -25px; left: 140px; }

.cloud-2 {
    width: 200px; height: 45px; top: 28%; left: -220px;
    animation-duration: 55s; animation-delay: -20s;
    opacity: 0.5;
}
.cloud-2::before { width: 80px; height: 60px; top: -30px; left: 30px; }
.cloud-2::after { width: 55px; height: 40px; top: -18px; left: 100px; }

.cloud-3 {
    width: 350px; height: 70px; top: 55%; left: -370px;
    animation-duration: 60s; animation-delay: -10s;
    opacity: 0.3;
}
.cloud-3::before { width: 120px; height: 90px; top: -45px; left: 70px; }
.cloud-3::after { width: 90px; height: 65px; top: -30px; left: 180px; }

.cloud-4 {
    width: 160px; height: 35px; top: 70%; left: -180px;
    animation-duration: 40s; animation-delay: -30s;
    opacity: 0.25;
}
.cloud-4::before { width: 60px; height: 45px; top: -22px; left: 25px; }
.cloud-4::after { width: 45px; height: 32px; top: -14px; left: 80px; }

.cloud-5 {
    width: 240px; height: 50px; top: 40%; left: -260px;
    animation-duration: 50s; animation-delay: -35s;
    opacity: 0.4;
}
.cloud-5::before { width: 90px; height: 70px; top: -35px; left: 40px; }
.cloud-5::after { width: 65px; height: 48px; top: -22px; left: 120px; }

@keyframes cloudDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 400px)); }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-animation {
    position: relative;
    height: 140px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drone */
.drone {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 10;
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.drone-svg {
    width: 100%;
    height: 100%;
    color: rgba(255,255,255,0.9);
}

.propeller {
    transform-origin: center;
    animation: spin 0.15s linear infinite;
    opacity: 0.6;
}

.prop-2 { animation-direction: reverse; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.smoke-trail {
    position: absolute;
    top: 50%;
    right: 100%;
    height: 4px;
    width: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.6), transparent);
    border-radius: 10px;
    filter: blur(2px);
}

/* Sky text */
.sky-text {
    display: flex;
    gap: 2px;
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    text-shadow:
        0 0 40px rgba(255,255,255,0.4),
        0 0 80px rgba(255,255,255,0.2),
        0 0 120px rgba(255,255,255,0.1);
}

.sky-letter {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.3) translateY(10px);
    display: inline-block;
}

.sky-letter.revealed {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-tagline {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.5s;
}

/* hero-built removed */

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.7s;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-ctas.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.9s;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    animation: hint-fade 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    margin: 8px auto 0;
}

@keyframes hint-fade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* --- Sections --- */
.section {
    padding: 60px 0;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-align: center;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--mid-gray);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* --- About / Stats --- */
.section-about {
    background: var(--off-white);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--blue);
    line-height: 1;
}

.stat-number span {
    font-size: 28px;
    font-weight: 600;
    color: var(--mid-gray);
    margin-left: 4px;
}

.stat-label {
    font-size: 15px;
    color: var(--mid-gray);
    margin-top: 8px;
    font-weight: 500;
}

/* --- Demo CTA --- */
.demo-cta {
    text-align: center;
    margin-top: 48px;
}

.demo-btn {
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 20px rgba(0,113,227,0.3);
}

.demo-btn:hover {
    box-shadow: 0 6px 30px rgba(0,113,227,0.4);
}

/* Photo Lightbox */
.photo-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
    cursor: pointer;
}

.photo-lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-caption {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    text-align: center;
}

/* --- Showcase Section --- */
.section-showcase {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.showcase-wrapper {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-image-container {
    position: absolute;
    inset: -30px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: showcaseKenBurns 30s ease-in-out infinite alternate;
}

@keyframes showcaseKenBurns {
    0% { transform: scale(1.05) translate(1%, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

.showcase-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
    max-width: 700px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.showcase-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.showcase-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Demo Image in Modal --- */
.demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.demo-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    z-index: 2;
}

.demo-image-caption p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin: 0;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--light-gray);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* Gender Reveal Picker */
.gender-picker {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.gender-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid-gray);
    display: block;
    margin-bottom: 10px;
}

.gender-options {
    display: flex;
    gap: 8px;
}

.gender-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 980px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    background: var(--off-white);
    color: var(--dark-gray);
}

.gender-btn.gender-blue:hover,
.gender-btn.gender-blue.active {
    background: #e8f4fd;
    border-color: #4a9eeb;
    color: #2563eb;
}

.gender-btn.gender-pink:hover,
.gender-btn.gender-pink.active {
    background: #fde8f0;
    border-color: #ec4899;
    color: #db2777;
}

.gender-swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.gender-swatch.blue { background: #4a9eeb; }
.gender-swatch.pink { background: #ec4899; }

.gender-note {
    font-size: 11px;
    color: var(--mid-gray);
    margin-top: 8px;
    text-align: center;
}

.service-card-gender {
    border: 1px solid rgba(236, 72, 153, 0.15);
    background: linear-gradient(135deg, rgba(74,158,235,0.03) 0%, rgba(236,72,153,0.03) 100%);
}

.service-card-gender:hover {
    border-color: rgba(236, 72, 153, 0.25);
}

/* cleaned up — gender cards consolidated */

/* --- How It Works --- */
.section-how {
    background: var(--off-white);
}

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--mid-gray);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--light-gray);
    margin-top: 30px;
    flex-shrink: 0;
}

/* --- Packages --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-features {
    flex: 1;
}

.package-card .btn {
    margin-top: auto;
    width: 100%;
}

.package-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.package-featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), var(--shadow);
    transform: scale(1.03);
}

.package-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 980px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.package-type {
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 24px;
}

.package-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--mid-gray);
    margin-top: 4px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--off-white);
    font-size: 14px;
    color: var(--dark-gray);
    padding-left: 28px;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Enterprise package card */
.package-enterprise {
    border-color: var(--gold);
    background: linear-gradient(180deg, #fffdf7 0%, var(--white) 100%);
}

.package-enterprise:hover {
    box-shadow: 0 8px 40px rgba(245, 166, 35, 0.18);
}

.badge-enterprise {
    background: linear-gradient(135deg, var(--gold) 0%, #e8950a 100%);
}

.btn-learn-more {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 700;
}

.btn-learn-more:hover {
    background: var(--gold);
    color: var(--white);
}

/* --- SkyWrite Pro Sales Section --- */
.section-pro {
    background: linear-gradient(180deg, #0a0e27 0%, #111b3d 50%, #0a0e27 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-pro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 113, 227, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(245, 166, 35, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pro-section-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pro-label {
    color: var(--gold);
    letter-spacing: 3px;
}

.pro-headline {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #c0d0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-subheadline {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-bottom: 60px;
}

.pro-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pro-scenario {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: left;
    transition: all var(--transition);
}

.pro-scenario:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.pro-scenario-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.pro-scenario h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.pro-scenario p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.pro-scenario p strong {
    color: var(--gold);
}

.pro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pro-stat {
    text-align: center;
}

.pro-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.pro-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.pro-auto-deploy {
    max-width: 680px;
    margin: 0 auto 60px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.pro-auto-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.pro-auto-deploy h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gold);
}

.pro-auto-deploy p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.pro-cta {
    text-align: center;
}

.pro-cta-btn {
    max-width: 400px;
    margin: 0 auto;
    font-size: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, #e8950a 100%);
    border: none;
    color: var(--white);
}

.pro-cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
    background: linear-gradient(135deg, #f5b833 0%, var(--gold) 100%);
}

.pro-cta-note {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-top: 14px;
}

/* --- Booking / Calendar --- */
.section-booking {
    background: var(--off-white);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.calendar-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-month {
    font-size: 20px;
    font-weight: 700;
}

.cal-nav {
    background: none;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark-gray);
    transition: all var(--transition);
}

.cal-nav:hover {
    background: var(--off-white);
}

.cal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--mid-gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.available { background: var(--success); }
.legend-dot.limited { background: var(--warning); }
.legend-dot.booked { background: var(--light-gray); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.cal-day.empty {
    cursor: default;
}

.cal-day.past {
    color: var(--light-gray);
    cursor: not-allowed;
}

.cal-day.available {
    background: rgba(48, 209, 88, 0.1);
    color: var(--dark-gray);
}

.cal-day.available:hover {
    background: rgba(48, 209, 88, 0.2);
    border-color: var(--success);
}

.cal-day.limited {
    background: rgba(255, 159, 10, 0.1);
    color: var(--dark-gray);
}

.cal-day.limited:hover {
    background: rgba(255, 159, 10, 0.2);
    border-color: var(--warning);
}

.cal-day.booked {
    background: var(--off-white);
    color: var(--mid-gray);
}

.cal-day.booked:hover {
    background: var(--light-gray);
}

.cal-day.selected {
    border-color: var(--blue);
    background: var(--blue-light);
    color: var(--blue);
}

.cal-day .day-status {
    position: absolute;
    bottom: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.cal-day.available .day-status { background: var(--success); }
.cal-day.limited .day-status { background: var(--warning); }

/* Timeslots Panel */
.timeslots-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.timeslots-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    text-align: center;
    padding: 40px;
}

.timeslots-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.timeslots-date {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-gray);
}

.timeslot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all var(--transition);
    border: 1px solid var(--light-gray);
}

.timeslot:hover {
    border-color: var(--blue);
}

.timeslot-info {
    display: flex;
    flex-direction: column;
}

.timeslot-name {
    font-weight: 600;
    font-size: 15px;
}

.timeslot-time {
    font-size: 13px;
    color: var(--mid-gray);
    margin-top: 2px;
}

.timeslot-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 980px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeslot-status.open {
    background: rgba(48, 209, 88, 0.1);
    color: #1a8d3a;
}

.timeslot-status.booked-slot {
    background: var(--off-white);
    color: var(--mid-gray);
}

.timeslot.is-available {
    cursor: pointer;
}

.timeslot.is-available:hover {
    background: var(--blue-light);
    border-color: var(--blue);
}

.timeslot.is-booked {
    opacity: 0.7;
}

.timeslot.selected-slot {
    border-color: var(--blue);
    background: var(--blue-light);
    box-shadow: 0 0 0 2px var(--blue);
}

.timeslot-request {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 980px;
    transition: all var(--transition);
}

.timeslot-request:hover {
    background: var(--blue-light);
}

/* Request Banner */
.request-banner {
    margin-top: 24px;
}

.request-banner-inner {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    border: 1px solid rgba(0, 113, 227, 0.15);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.request-banner-text strong {
    font-size: 17px;
    display: block;
    margin-bottom: 6px;
}

.request-banner-text p {
    font-size: 14px;
    color: var(--mid-gray);
    margin: 0;
}

/* Booking Form */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 40px;
    border: 2px solid var(--blue);
}

.booking-form-header {
    margin-bottom: 32px;
}

.booking-form-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.booking-summary {
    background: var(--off-white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--mid-gray);
}

.booking-summary strong {
    color: var(--dark-gray);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--dark-gray);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Message Options (package-based) */
.message-options {
    margin-top: 8px;
}

.field-hint {
    font-size: 13px;
    color: var(--mid-gray);
    margin-top: 4px;
    margin-bottom: 8px;
}

.preset-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.preset-btn {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 14px;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
}

.preset-btn:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.preset-btn.selected {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.or-divider {
    text-align: center;
    font-size: 12px;
    color: var(--mid-gray);
    margin: 12px 0;
}

.msg-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    transition: border-color var(--transition);
}

.msg-input:focus {
    outline: none;
    border-color: var(--blue);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 4px;
}

.pro-hint {
    font-size: 13px;
    color: var(--mid-gray);
    margin-bottom: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #c7c7cc;
}

.form-total {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.total-final {
    border-top: 2px solid var(--dark-gray);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 18px;
}

.total-note {
    font-size: 13px;
    color: var(--mid-gray);
    margin-top: 12px;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.modal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--mid-gray);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--off-white);
    color: var(--dark-gray);
}

.modal h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal > p {
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* --- FAQ --- */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--mid-gray);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--blue);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.7;
}

/* --- Contact --- */
.section-contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 15px;
    color: var(--mid-gray);
}

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form .btn {
    width: 100%;
}

/* --- Footer --- */
.footer {
    background: var(--white);
    color: var(--mid-gray);
    padding: 40px 0 30px;
    border-top: 1px solid var(--light-gray);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
}

.footer-sub {
    font-size: 13px;
    color: var(--mid-gray);
    font-weight: 400;
    margin-top: 4px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--mid-gray);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--dark-gray); }

.footer-copy {
    font-size: 13px;
    color: #b0b0b5;
}

/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Toast Notification --- */
.toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 360px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { border-left: 4px solid var(--success); }

/* --- Responsive --- */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .pro-scenarios,
    .pro-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .package-featured {
        transform: none;
    }

    .package-featured:hover {
        transform: translateY(-4px);
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .pro-scenarios,
    .pro-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pro-headline {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }

    .section {
        padding: 40px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        border-bottom: 1px solid var(--light-gray);
    }

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

    .nav-links a {
        color: var(--dark-gray) !important;
        padding: 14px 0;
        border-bottom: 1px solid var(--off-white);
        font-size: 16px;
    }

    .nav-toggle { display: flex; }

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

    .stat-number { font-size: 44px; }

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

    .request-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .sky-text {
        gap: 0;
    }

    .booking-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-animation {
        height: 100px;
    }

    .calendar-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
}
