/* ═══════════════════════════════════════════════════
   nautiQ Landing Page — Premium Stylesheet
   IntuiFy Ventures S.L. — 2026
   ═══════════════════════════════════════════════════ */

:root {
    /* Ocean palette */
    --bg-primary: #050a14;
    --bg-secondary: #0a1628;
    --bg-card: rgba(15, 30, 55, 0.6);
    --bg-card-hover: rgba(20, 40, 70, 0.8);
    --surface: #0d1f3c;

    /* Text */
    --text-primary: #e8edf5;
    --text-secondary: #94a3c0;
    --text-muted: #5a6d8a;

    /* Accents */
    --accent-teal: #00d4aa;
    --accent-teal-dim: rgba(0, 212, 170, 0.15);
    --accent-blue: #0088cc;
    --accent-ocean: #0066aa;
    --accent-orange: #ff8c42;
    --accent-orange-dim: rgba(255, 140, 66, 0.15);
    --accent-yellow: #ffc857;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #00d4aa 0%, #0088cc 50%, #0066aa 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 136, 204, 0.05));
    --gradient-dark: linear-gradient(180deg, #050a14 0%, #0a1628 100%);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 212, 170, 0.2);

    /* Spacing */
    --section-padding: clamp(5rem, 10vh, 8rem);
    --container-width: 1200px;

    /* Font */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.overflow-x-hidden { overflow-x: hidden; max-width: 100vw; }

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

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

/* ─── Navigation ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled {
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}


.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-hero);
    color: #fff;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu.active { display: flex; }

.mobile-link {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.mobile-link.cta {
    background: var(--gradient-hero);
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
}

/* ─── Hero ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, transparent 30%, var(--bg-primary) 70%),
        linear-gradient(to bottom, transparent 50%, var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Official Logo */
.hero-logo-main {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Official Store Badges */
.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.store-badge-apple img {
    height: 44px; /* Matches Google badge visually */
    width: auto;
}

.store-badge-google img {
    height: 66px; /* Google badge contains wide padding margins, so 66px equals a 44px active height */
    width: auto;
}

.hero-explore {
    margin-top: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-teal);
    transform: translateY(-3px);
}

/* GPS Visual for Spots Section */
.gps-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    min-height: 320px;
}

.gps-pin {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.gps-pin:hover {
    background: rgba(0, 212, 170, 0.08);
    border-color: var(--border-glow);
    transform: translateX(6px);
}

.gps-pin span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.gps-coordinates {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: var(--radius-md);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    color: var(--accent-teal);
    text-align: center;
    letter-spacing: 0.05em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-teal), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Marquee ─── */
.marquee-section {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-teal);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-title.light { color: var(--text-primary); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle.light { color: var(--text-secondary); }

/* ─── Bento Grid ─── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 1.2rem;
}

.bento-card {
    background: rgba(20, 40, 75, 0.95);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover {
    background: rgba(25, 50, 90, 0.95);
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 170, 0.15);
}

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

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

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 212, 170, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--accent-teal);
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.bento-card p {
    font-size: 0.9rem;
    color: #b0c0d8;
    line-height: 1.6;
}

/* ─── Split Sections ─── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse .split-visual { order: -1; }

.split-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-list {
    margin-top: 2rem;
    display: grid;
    gap: 0.8rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ─── Species Grid ─── */
.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.species-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

.species-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.species-card:hover img { transform: scale(1.1); }

.species-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.species-count {
    text-align: center;
    margin-top: 1rem;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ─── Weather Grid ─── */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

.weather-card {
    background: rgba(20, 40, 75, 0.95);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.weather-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 170, 0.15);
}

.weather-card-accent {
    background: rgba(255, 140, 66, 0.12);
    border-color: rgba(255, 140, 66, 0.3);
}

.weather-icon-wrap {
    margin-bottom: 1rem;
}

.weather-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.weather-card p {
    font-size: 0.8rem;
    color: #b0c0d8;
    line-height: 1.5;
}

/* ─── Moon / Solunar ─── */
.moon-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.moon-circle {
    position: relative;
    width: 160px;
    height: 160px;
}

.moon-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 200, 0.1) 0%, transparent 70%);
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.moon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 200, 0.3));
}

.moon-info { text-align: center; }
.moon-phase-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.moon-illumination { color: var(--accent-yellow); font-size: 0.95rem; margin-top: 0.3rem; }

.solunar-timeline {
    width: 100%;
    max-width: 400px;
}

.timeline-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    margin-bottom: 0.5rem;
}

.timeline-major {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--accent-teal);
    border-radius: 4px;
}

.timeline-minor {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--accent-orange);
    border-radius: 4px;
    opacity: 0.7;
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.timeline-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.8rem;
    font-size: 0.8rem;
}

.legend-major { color: var(--accent-teal); }
.legend-minor { color: var(--accent-orange); }

/* ─── Navigation Data ─── */
.nav-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-data-card {
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    text-align: center;
}

.nav-data-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-teal);
    display: block;
}

.nav-data-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Route Animation ─── */
.route-animation {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
}

.route-svg { width: 100%; }

.route-path {
    stroke-dashoffset: 1000;
    animation: drawRoute 3s ease-in-out infinite;
}

@keyframes drawRoute {
    0% { stroke-dashoffset: 40; }
    100% { stroke-dashoffset: 0; }
}

.route-dot-start, .route-dot-end {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { r: 8; opacity: 1; }
    50% { r: 10; opacity: 0.7; }
}

/* ─── Stats ─── */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1rem;
    background: rgba(20, 40, 75, 0.95);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.4s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 170, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4aa, #2e90fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #b0c0d8;
}

.stats-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stats-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ─── Cloud ─── */
.cloud-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cloud-feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(20, 40, 75, 0.95);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: var(--radius-md);
    transition: all 0.4s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.cloud-feature:hover {
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
}

.cloud-icon {
    color: var(--accent-teal);
    margin-bottom: 1.2rem;
}

.cloud-feature h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.cloud-feature p {
    font-size: 0.9rem;
    color: #b0c0d8;
}

.cloud-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-teal);
}

/* ─── Voice Commands ─── */
.voice-commands {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.voice-command {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.8rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-teal);
    font-style: italic;
    transition: all 0.3s;
}

.voice-command:hover {
    border-color: var(--accent-teal);
    background: var(--accent-teal-dim);
}

.mic-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px;
}

.mic-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--accent-teal);
    animation: micPulse 2.5s ease-out infinite;
}

.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 0.5s; }
.ring-3 { width: 240px; height: 240px; animation-delay: 1s; }

@keyframes micPulse {
    0% { opacity: 0.6; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(1.3); }
}

.mic-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.4);
}

/* ─── Company ─── */
.company-content { text-align: center; }

.company-points {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.company-points span {
    font-size: 0.9rem;
    color: var(--accent-teal);
    font-weight: 500;
    padding: 0.4rem 1rem;
    background: var(--accent-teal-dim);
    border-radius: 100px;
}

.company-claim {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    font-style: italic;
}

/* ─── Testimonials ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.4s;
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── CTA Final ─── */
.section-cta {
    position: relative;
    padding: 8rem 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(5, 10, 20, 0.6), var(--bg-primary));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
}

.store-btn small {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
}

.store-btn strong {
    font-size: 1.1rem;
    display: block;
}

/* ─── Footer ─── */
#footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    height: auto;
    width: 240px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}


.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent-teal); }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .weather-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .split-section.reverse .split-visual { order: 0; }

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

    .weather-grid { grid-template-columns: repeat(2, 1fr); }
    .cloud-features { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-showcase { grid-template-columns: repeat(2, 1fr); }

    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }
    .stats-features { flex-direction: column; align-items: center; }
    .company-points { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .weather-grid { grid-template-columns: 1fr; }
    .species-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-data-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ─── Elegant Language Selector ─── */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin: 0 1rem;
}

.lang-current {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.lang-current svg {
    color: var(--accent-teal);
    transition: transform 0.3s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-teal);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.15);
}

.lang-current:hover svg {
    transform: rotate(20deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s;
    z-index: 1000;
}

.lang-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.lang-option {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.6rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.lang-option:hover {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-teal);
}

.lang-option.active {
    background: var(--gradient-hero);
    color: #fff;
    font-weight: 600;
}

/* Responsive language switcher adjustments */
@media (max-width: 768px) {
    .lang-switcher {
        margin: 0 0.5rem;
    }
    
    .lang-current {
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .lang-current span {
        display: none;
    }
    .lang-current {
        padding: 0.5rem;
        border-radius: 50%;
    }
}

/* ─── Premium Visual Enhancements (Hero Mockup & Visual Stack) ─── */
.hero-mockup {
    margin-top: 3.5rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup:hover {
    transform: translateY(-8px) scale(1.015);
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* layered card layout for Spots Section */
.visual-stack {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 1;
    background: var(--bg-secondary);
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-stack:hover .lifestyle-img {
    transform: scale(1.04);
}

.visual-stack .gps-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    z-index: 2;
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
}

/* Responsive adjustments for new visuals */
@media (max-width: 768px) {
    .visual-stack {
        height: 380px;
    }
    .visual-bg-card {
        width: 90%;
        height: 90%;
    }
    .visual-stack .gps-visual {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .visual-stack {
        height: 340px;
    }
    .visual-stack .gps-visual {
        width: 95%;
        padding: 1.5rem;
    }
}
