/* ============================================
   qSpiaggia Landing Page
   Italian Riviera meets Modern SaaS
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Mediterranean palette */
    --sea-deep: #0c4a6e;
    --sea-mid: #0369a1;
    --sea-bright: #0ea5e9;
    --sea-light: #7dd3fc;
    --sea-foam: #e0f2fe;
    --sea-pale: #f0f9ff;

    /* Sand & warm tones */
    --sand-deep: #92400e;
    --sand-mid: #d97706;
    --sand-bright: #f59e0b;
    --sand-light: #fde68a;
    --sand-pale: #fef3c7;
    --sand-white: #fffbeb;

    /* Sunset accent */
    --sunset: #f97316;
    --sunset-light: #fed7aa;
    --coral: #fb7185;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(14,165,233,0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sea-bright);
    background: var(--sea-foam);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(3,105,161,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3,105,161,0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-800);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.logo-accent {
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(3,105,161,0.25);
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(3,105,161,0.35);
    color: var(--white) !important;
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg,
        var(--sea-pale) 0%,
        var(--white) 50%,
        var(--sand-white) 100%
    );
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Animated waves */
.wave {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 120px;
    opacity: 0.4;
}

.wave-1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230ea5e9' fill-opacity='0.15' d='M0,40 C360,100 720,0 1080,60 C1260,90 1380,50 1440,40 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 120px;
    animation: wave-move 12s linear infinite;
}

.wave-2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230369a1' fill-opacity='0.08' d='M0,60 C240,20 480,100 720,40 C960,0 1200,80 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 120px;
    animation: wave-move 16s linear infinite reverse;
    bottom: -10px;
}

.wave-3 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%237dd3fc' fill-opacity='0.1' d='M0,80 C180,40 360,100 540,60 C720,20 900,80 1080,40 C1260,0 1380,60 1440,80 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 120px;
    animation: wave-move 20s linear infinite;
    bottom: -20px;
}

@keyframes wave-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1440px); }
}

.hero-sand {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--sand-pale) 0%, transparent 100%);
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sea-mid);
    background: var(--sea-foam);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(14,165,233,0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sea-bright);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--sea-mid) 0%, var(--sea-bright) 50%, var(--sunset) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sea-bright);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual - Beach Map Preview */
.hero-visual {
    display: flex;
    justify-content: center;
}

.beach-map-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--gray-100);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.map-dots {
    display: flex;
    gap: 6px;
}

.map-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.map-dots span:nth-child(1) { background: #ef4444; }
.map-dots span:nth-child(2) { background: #f59e0b; }
.map-dots span:nth-child(3) { background: #10b981; }

.map-title {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.map-content {
    padding: 20px;
    position: relative;
}

.map-sea {
    background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%);
    height: 40px;
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
}

.map-wave-line {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(14,165,233,0.3) 8px, rgba(14,165,233,0.3) 16px);
    animation: wave-move 8s linear infinite;
}

.map-wave-line:nth-child(2) {
    bottom: 16px;
    opacity: 0.5;
    animation-duration: 12s;
    animation-direction: reverse;
}

.map-shore {
    height: 8px;
    background: linear-gradient(180deg, #fde68a, #fef3c7);
}

.map-zone {
    padding: 12px;
    border: 1px solid var(--gray-100);
    margin-top: 8px;
    border-radius: 8px;
    background: var(--gray-50);
}

.zone-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.umbrella-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    justify-content: center;
}

.umbrella {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-spring);
    cursor: default;
    position: relative;
}

.umbrella.free {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #6ee7b7;
}

.umbrella.occupied {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    border: 1px solid #f87171;
}

.umbrella.subscription {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border: 1px solid #a78bfa;
}

.umbrella:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-legend {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--gray-500);
}

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

.legend-dot.free { background: #6ee7b7; }
.legend-dot.occupied { background: #f87171; }
.legend-dot.subscription { background: #a78bfa; }

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.proof-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    font-weight: 500;
}

.proof-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

.proof-item svg {
    width: 18px;
    height: 18px;
    color: var(--sea-bright);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    border-color: var(--sea-foam);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--sea-pale) 0%, var(--white) 100%);
    border-color: rgba(14,165,233,0.1);
}

.feature-large::before {
    display: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.icon-map { background: var(--sea-foam); color: var(--sea-mid); }
.icon-sales { background: #dcfce7; color: #16a34a; }
.icon-subscription { background: #fef3c7; color: #d97706; }
.icon-customers { background: #ede9fe; color: #7c3aed; }
.icon-print { background: #fce7f3; color: #db2777; }
.icon-pricing { background: #fed7aa; color: #ea580c; }
.icon-stats { background: #d1fae5; color: #059669; }
.icon-workstation { background: var(--sea-foam); color: var(--sea-deep); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.feature-list li svg {
    width: 16px;
    height: 16px;
    color: var(--sea-bright);
    flex-shrink: 0;
}

/* Feature mockup - map grid */
.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 24px;
    border: 1px solid var(--gray-100);
    width: 100%;
}

.mockup-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.m-spot {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s var(--ease-spring);
    animation: spot-pulse 3s ease-in-out infinite;
}

.m-spot:nth-child(odd) { animation-delay: 0.5s; }
.m-spot:nth-child(even) { animation-delay: 1s; }

@keyframes spot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.s-free { background: linear-gradient(135deg, #bbf7d0, #86efac); border: 1px solid #4ade80; }
.s-occ { background: linear-gradient(135deg, #fecaca, #fca5a5); border: 1px solid #f87171; }
.s-sub { background: linear-gradient(135deg, #e9d5ff, #c4b5fd); border: 1px solid #a78bfa; }

.m-spot:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--sea-bright), var(--sunset));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-info > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.booking-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.highlight svg {
    width: 18px;
    height: 18px;
    color: var(--sea-bright);
    flex-shrink: 0;
}

/* Phone Mockup */
.booking-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    margin-top: -14px;
}

.phone-header-bar {
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    padding: 24px 16px 12px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.phone-wizard {
    padding: 20px 16px;
}

.phone-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.pp-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gray-100);
    color: var(--gray-400);
    transition: all 0.3s;
}

.pp-dot.active {
    background: var(--sea-bright);
    color: var(--white);
}

.pp-line {
    width: 24px;
    height: 2px;
    background: var(--gray-200);
}

.pp-line.active {
    background: var(--sea-bright);
}

.phone-step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.phone-zones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.phone-zone {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 10px;
    padding: 12px;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.phone-zone.selected {
    border-color: var(--sea-bright);
    background: var(--sea-foam);
}

.pz-icon {
    grid-row: span 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sea-foam);
    border-radius: 8px;
}

.phone-zone.selected .pz-icon {
    background: rgba(14,165,233,0.2);
}

.pz-icon svg {
    width: 18px;
    height: 18px;
    color: var(--sea-mid);
}

.pz-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
}

.pz-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sea-mid);
    text-align: right;
}

.pz-avail {
    grid-column: 2;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.phone-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
}

/* ============================================
   MANAGEMENT / DASHBOARD
   ============================================ */
.management {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.dashboard-preview {
    perspective: 1200px;
}

.dash-window {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transform: rotateX(2deg);
    transition: transform 0.6s var(--ease-out);
}

.dash-window:hover {
    transform: rotateX(0deg);
}

.dash-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #10b981; }

.dash-url {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-family: monospace;
    background: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-100);
}

.dash-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 400px;
}

.dash-sidebar {
    background: var(--gray-900);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dash-nav-item svg {
    width: 18px;
    height: 18px;
}

.dash-nav-item.active {
    background: rgba(14,165,233,0.15);
    color: var(--sea-bright);
}

.dash-main {
    padding: 24px;
    background: var(--gray-50);
}

.dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dash-topbar h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
}

.dash-date {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.dsc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsc-icon svg {
    width: 20px;
    height: 20px;
}

.dsc-icon.blue { background: var(--sea-foam); color: var(--sea-mid); }
.dsc-icon.green { background: #d1fae5; color: #059669; }
.dsc-icon.orange { background: #fed7aa; color: #ea580c; }
.dsc-icon.purple { background: #ede9fe; color: #7c3aed; }

.dsc-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    line-height: 1;
}

.dsc-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: block;
    margin-top: 2px;
}

.dash-chart {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.dash-chart h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 120px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--sea-bright), var(--sea-mid));
    opacity: 0.7;
    transition: all 0.3s;
    min-height: 8px;
}

.chart-bar.highlight {
    opacity: 1;
    box-shadow: 0 0 12px rgba(14,165,233,0.3);
}

.chart-bar-group:hover .chart-bar {
    opacity: 1;
}

.chart-bar-group span {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ============================================
   CHECKLIST SECTION
   ============================================ */
.checklist-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.checklist-category {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s var(--ease-out);
}

.checklist-category:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sea-foam);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--sea-foam);
    color: var(--sea-mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon svg {
    width: 20px;
    height: 20px;
}

.cat-header h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
}

.checklist-category ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-category li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.checklist-category li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================
   APP SCREENSHOTS GALLERY
   ============================================ */
.screenshots-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

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

.screenshot-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--sea-foam);
}

.screenshot-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform 0.4s var(--ease-out);
}

.screenshot-card:hover .app-screenshot {
    transform: scale(1.02);
}

.screenshot-caption {
    padding: 20px;
    text-align: center;
}

.screenshot-caption h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.screenshot-caption p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Browser window frame for screenshots */
.browser-window {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.browser-window .map-header,
.browser-window .dash-titlebar {
    /* Header styles already defined */
}

.screenshot-container {
    background: var(--gray-50);
    overflow: hidden;
}

.screenshot-container .app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.tech-section {
    padding: 80px 0;
    background: var(--gray-900);
    color: var(--white);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.tech-info .section-tag {
    background: rgba(14,165,233,0.15);
    color: var(--sea-bright);
}

.tech-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 12px;
}

.tech-info p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

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

.tech-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.tech-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(14,165,233,0.3);
    transform: translateY(-2px);
}

.tech-logo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sea-bright);
    margin-bottom: 4px;
}

.tech-card span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

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

.price-card.featured {
    border: 2px solid var(--sea-bright);
    box-shadow: var(--shadow-glow);
    padding-top: 48px;
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sea-mid), var(--sea-bright));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.price-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 28px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-600);
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.price-features li svg {
    width: 18px;
    height: 18px;
    color: var(--sea-bright);
    flex-shrink: 0;
}

.price-features li.disabled {
    color: var(--gray-400);
}

.price-features li.disabled svg {
    color: var(--gray-300);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-item.active {
    border-color: var(--sea-foam);
    box-shadow: var(--shadow-sm);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--sea-bright);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea-mid) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-info > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.cta-benefit svg {
    width: 20px;
    height: 20px;
    color: var(--sea-light);
    flex-shrink: 0;
}

.cta-form-wrapper {
    position: relative;
}

.cta-form {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.cta-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sea-bright);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--gray-900);
    color: var(--gray-400);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--sea-bright);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--sea-bright);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--sea-bright);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.features-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.features-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.features-grid [data-animate]:nth-child(4) { transition-delay: 0.15s; }
.features-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.features-grid [data-animate]:nth-child(6) { transition-delay: 0.1s; }
.features-grid [data-animate]:nth-child(7) { transition-delay: 0.2s; }
.features-grid [data-animate]:nth-child(8) { transition-delay: 0.15s; }
.features-grid [data-animate]:nth-child(9) { transition-delay: 0.25s; }

.checklist-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.checklist-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.checklist-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }
.checklist-grid [data-animate]:nth-child(5) { transition-delay: 0.1s; }
.checklist-grid [data-animate]:nth-child(6) { transition-delay: 0.2s; }
.checklist-grid [data-animate]:nth-child(7) { transition-delay: 0.3s; }
.checklist-grid [data-animate]:nth-child(8) { transition-delay: 0.4s; }

.screenshot-gallery [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.screenshot-gallery [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.screenshot-gallery [data-animate]:nth-child(4) { transition-delay: 0.15s; }
.screenshot-gallery [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.screenshot-gallery [data-animate]:nth-child(6) { transition-delay: 0.35s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .hero-visual {
        order: -1;
    }

    .beach-map-preview {
        max-width: 400px;
    }

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

    .feature-large {
        grid-column: span 2;
    }

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

    .booking-visual {
        order: -1;
    }

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

    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .dash-content {
        grid-template-columns: 160px 1fr;
    }

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

    .cta-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .beach-map-preview {
        max-width: 100%;
    }

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

    .feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .dash-content {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 12px;
    }

    .dash-nav-item span {
        display: none;
    }

    .dash-cards {
        grid-template-columns: 1fr 1fr;
    }

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

    .proof-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .phone-mockup {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .dash-cards {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
    }
}
