/* ============================================
   ICE FISHING DERBY 2 - DUOTONE DESIGN SYSTEM
   Deep Navy (#0a0f3a) + Ice Blue (#29b6f6)
   Accent Frost (#e1f5fe)
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
    /* Primary Palette */
    --navy-900: #0a0f3a;
    --navy-800: #101857;
    --navy-700: #151f6b;
    --navy: #1a237e;
    --navy-500: #283593;
    --navy-400: #3949ab;
    --navy-300: #5c6bc0;
    --navy-200: #9fa8da;
    --navy-100: #c5cae9;
    --navy-50: #e8eaf6;

    /* Secondary Palette - Ice Blue */
    --orange-900: #01579b;
    --orange-800: #0277bd;
    --orange-700: #0288d1;
    --orange: #29b6f6;
    --orange-500: #4fc3f7;
    --orange-400: #81d4fa;
    --orange-300: #b3e5fc;
    --orange-200: #e1f5fe;
    --orange-100: #e1f5fe;
    --orange-50: #e1f5fe;

    /* Accent */
    --cream: #e1f5fe;
    --white: #ffffff;

    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.35s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 15, 58, 0.15);
    --shadow-md: 0 4px 20px rgba(10, 15, 58, 0.2);
    --shadow-lg: 0 8px 40px rgba(10, 15, 58, 0.25);
    --shadow-xl: 0 16px 64px rgba(10, 15, 58, 0.35);
    --shadow-orange: 0 4px 24px rgba(41, 182, 246, 0.3);
    --shadow-orange-lg: 0 8px 40px rgba(41, 182, 246, 0.4);

    /* Layout */
    --container-max: 1280px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream);
    background-color: var(--navy-900);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--orange-300);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
}

::selection {
    background-color: var(--orange);
    color: var(--navy-900);
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
}

.text-accent {
    color: var(--orange);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--navy-200);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- DUOTONE IMAGE TREATMENT --- */
.duotone-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--navy-800);
}

.duotone-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    mix-blend-mode: luminosity;
    transition: filter var(--transition-slow), transform var(--transition-slow);
}

.duotone-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
    mix-blend-mode: color;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity var(--transition-slow);
}

.duotone-wrapper:hover img {
    filter: grayscale(40%) contrast(1.05);
    transform: scale(1.03);
}

.duotone-wrapper:hover::after {
    opacity: 0.6;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--navy-900);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background-color: var(--orange-500);
    color: var(--navy-900);
    box-shadow: var(--shadow-orange-lg);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* --- HEADER / NAVIGATION --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 15, 58, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(41, 182, 246, 0.1);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 15, 58, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(41, 182, 246, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    line-height: 1;
}

.logo-accent {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-100);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.875rem;
    right: 0.875rem;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: var(--orange);
    color: var(--navy-900) !important;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--orange-500);
    color: var(--navy-900) !important;
    box-shadow: var(--shadow-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(41, 182, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 35, 126, 0.5) 0%, transparent 60%);
    z-index: 0;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(41, 182, 246, 0.03) 60px,
            rgba(41, 182, 246, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(41, 182, 246, 0.03) 60px,
            rgba(41, 182, 246, 0.03) 61px
        );
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 182, 246, 0.06) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--navy-900), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(41, 182, 246, 0.1);
    border: 1px solid rgba(41, 182, 246, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

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

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--cream);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.1s both;
}

.title-line-2 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--cream);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.title-line-3 {
    font-size: clamp(4rem, 9vw, 8rem);
    color: var(--orange);
    text-shadow: 0 0 60px rgba(41, 182, 246, 0.3);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.3s both;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--navy-200);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.5s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    animation: fadeSlideUp 0.8s var(--ease-out) 0.6s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy-300);
    margin-top: var(--space-xs);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideUp 1s var(--ease-out) 0.3s both;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid rgba(41, 182, 246, 0.4);
    box-shadow: var(--shadow-xl);
}

.hero-image-frame .duotone-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

.hero-image-frame .duotone-wrapper img {
    border-radius: var(--radius-xl);
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(41, 182, 246, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--navy-800);
    border: 1px solid rgba(41, 182, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.floating-badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 3s;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--navy-300);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeSlideUp 0.8s var(--ease-out) 1s both;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- SOCIAL PROOF TICKER --- */
.social-proof-ticker {
    background: var(--orange);
    color: var(--navy-900);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-inner {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0 var(--space-lg);
    flex-shrink: 0;
}

.ticker-separator {
    font-weight: 700;
    opacity: 0.4;
    flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41, 182, 246, 0.3), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.about-card {
    background: rgba(26, 35, 126, 0.3);
    border: 1px solid rgba(41, 182, 246, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.about-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card-main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.08) 0%, rgba(26, 35, 126, 0.4) 100%);
    border-color: rgba(41, 182, 246, 0.2);
}

.about-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(41, 182, 246, 0.15);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-md);
    color: var(--orange);
}

.about-card p {
    color: var(--navy-200);
    line-height: 1.7;
}

.about-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(41, 182, 246, 0.2);
    aspect-ratio: 16/9;
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(41, 182, 246, 0.15);
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}

.gallery-item .duotone-wrapper {
    width: 100%;
    height: 100%;
}

.gallery-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.gallery-item-wide {
    grid-column: 2 / 4;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(10, 15, 58, 0.9), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(41, 182, 246, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-2xl);
    right: var(--space-2xl);
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    background: rgba(41, 182, 246, 0.05);
    border-color: rgba(41, 182, 246, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.08);
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(41, 182, 246, 0.15);
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-md);
    color: var(--cream);
}

.feature-card p {
    color: var(--navy-200);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- LIVE COUNTER SECTION --- */
.live-counter-section {
    padding: var(--space-3xl) 0;
    background: var(--navy);
    border-top: 1px solid rgba(41, 182, 246, 0.15);
    border-bottom: 1px solid rgba(41, 182, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.live-counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(41, 182, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(41, 182, 246, 0.05) 0%, transparent 50%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.counter-card {
    text-align: center;
    padding: var(--space-xl);
}

.counter-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.counter-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--orange);
    line-height: 1;
}

.counter-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-200);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid rgba(41, 182, 246, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(41, 182, 246, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: rgba(26, 35, 126, 0.2);
    color: var(--cream);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-align: left;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(41, 182, 246, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(41, 182, 246, 0.08);
    color: var(--orange);
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--orange);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--navy-200);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- REGISTRATION SECTION --- */
.registration-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 182, 246, 0.06) 0%, transparent 70%);
}

.reg-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.reg-info {
    padding-top: var(--space-xl);
}

.reg-info p {
    color: var(--navy-200);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: var(--space-2xl);
}

.reg-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.reg-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--cream);
}

/* Form */
.reg-form-wrapper {
    position: relative;
}

.reg-form {
    background: rgba(26, 35, 126, 0.3);
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
}

.reg-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-300));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.reg-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-xl);
    color: var(--cream);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy-100);
    margin-bottom: var(--space-sm);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(10, 15, 58, 0.6);
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: var(--navy-300);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(41, 182, 246, 0.15);
    outline: none;
}

.form-group input.error {
    border-color: #ef5350;
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.15);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ef5350;
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

.form-checkbox {
    display: flex;
    flex-direction: column;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--navy-200);
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--orange);
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-message {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.form-error-msg {
    background: rgba(239, 83, 80, 0.1);
    border: 1px solid rgba(239, 83, 80, 0.3);
    color: #ef5350;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

/* --- TRUST SECTION --- */
.trust-section {
    padding: var(--space-5xl) 0;
    background: var(--navy-800);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41, 182, 246, 0.3), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(26, 35, 126, 0.3);
    border: 1px solid rgba(41, 182, 246, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: rgba(41, 182, 246, 0.08);
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 50%;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-md);
    color: var(--orange);
}

.trust-card p {
    color: var(--navy-200);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--navy-900);
    border-top: 1px solid rgba(41, 182, 246, 0.15);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(41, 182, 246, 0.1);
}

.footer-brand p {
    color: var(--navy-300);
    line-height: 1.7;
    margin-top: var(--space-md);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--orange);
    margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-contact a {
    color: var(--navy-200);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.footer-support-note {
    color: var(--navy-300);
    font-size: 0.85rem;
    margin-top: var(--space-sm);
}

.footer-bottom {
    padding: var(--space-xl) 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

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

.footer-legal-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal-links a {
    color: var(--navy-300);
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--orange);
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--navy-800);
    border-top: 2px solid var(--orange);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-xl);
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: var(--space-sm);
}

.cookie-text p {
    color: var(--navy-200);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.cookie-text a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-cookie {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-cookie-accept {
    background: var(--orange);
    color: var(--navy-900);
}

.btn-cookie-accept:hover {
    background: var(--orange-500);
    box-shadow: var(--shadow-orange);
}

.btn-cookie-essential {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(41, 182, 246, 0.4);
}

.btn-cookie-essential:hover {
    border-color: var(--orange);
    background: rgba(41, 182, 246, 0.1);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--navy-200);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cookie-settings:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--cream);
}

.cookie-settings-panel {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(41, 182, 246, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--navy-200);
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
    cursor: pointer;
}

.cookie-settings-panel .btn-cookie {
    align-self: flex-start;
    margin-top: var(--space-sm);
}

/* --- LEGAL PAGES --- */
.legal-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%);
    position: relative;
    text-align: center;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.03em;
    color: var(--orange);
}

.legal-hero-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--navy-300);
    margin-top: var(--space-md);
    letter-spacing: 0.05em;
}

.legal-content {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.legal-container {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: var(--navy);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--orange);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-700);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    color: var(--navy-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: var(--navy-700);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.legal-content a {
    color: var(--orange-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--orange);
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(26, 35, 126, 0.15);
}

.legal-footer-note p {
    color: var(--navy-400);
    font-size: 0.85rem;
}

/* GDPR Rights List */
.gdpr-rights-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.gdpr-right {
    background: rgba(26, 35, 126, 0.04);
    border: 1px solid rgba(26, 35, 126, 0.1);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.gdpr-right h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.gdpr-right p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

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

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

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

    .hero-image {
        order: -1;
    }

    .hero-image-frame {
        max-width: 300px;
    }

    .floating-badge-1 {
        right: 5%;
    }

    .floating-badge-2 {
        left: 5%;
    }

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

    .about-card-main {
        grid-column: auto;
    }

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

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

    .gallery-item-large {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
    }

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

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

    .reg-wrapper {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--navy-900);
        border-left: 1px solid rgba(41, 182, 246, 0.2);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(41, 182, 246, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: var(--space-md);
        text-align: center;
        padding: 0.75rem 1.25rem;
    }

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

    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-3xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
    }

    .stat-item {
        align-items: center;
    }

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

    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-image-frame {
        max-width: 240px;
    }

    .floating-badge {
        display: none;
    }

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

    .title-line-1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .title-line-2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .title-line-3 {
        font-size: clamp(3.5rem, 16vw, 6rem);
    }

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

    .gallery-item-large {
        aspect-ratio: 16/10;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .reg-form {
        padding: var(--space-lg);
    }

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

/* --- PRINT STYLES --- */
@media print {
    .site-header,
    .cookie-banner,
    .hero-scroll-indicator,
    .social-proof-ticker {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        background: white;
    }

    a {
        color: var(--navy);
        text-decoration: underline;
    }
}

/* --- ACCESSIBILITY: REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .ticker-track {
        animation: none;
    }
}

/* --- NOISE / GRAIN OVERLAY --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}