/* ==========================================================================
   KodaKick Sales-Focused Premium Stylesheet (Navy & Green Palette)
   ========================================================================== */

/* --- Custom Variables & Core Tokens --- */
:root {
    --bg-dark: #000A1E;         /* Koda Navy: primary dark */
    --bg-card: rgba(0, 20, 40, 0.55); /* Deep Pitch Navy + alpha */
    --bg-card-hover: rgba(0, 20, 40, 0.8);
    --bg-nav: rgba(0, 10, 30, 0.8);
    --border-color: rgba(168, 176, 184, 0.15); /* Cool Grey + alpha */
    --border-hover: rgba(99, 194, 10, 0.4);   /* Neon Turf + alpha */
    --text-primary: #FFFFFF;    /* White Line */
    --text-secondary: #A8B0B8;  /* Cool Grey */
    --text-muted: rgba(168, 176, 184, 0.6);
    
    --primary: #5AAA0A;         /* Kick Green */
    --primary-glow: rgba(90, 170, 10, 0.3);
    --primary-gradient: linear-gradient(135deg, #5AAA0A 0%, #63C20A 100%);
    
    --secondary: #63C20A;       /* Neon Turf */
    --secondary-glow: rgba(99, 194, 10, 0.3);
    --secondary-gradient: linear-gradient(135deg, #63C20A 0%, #5AAA0A 100%);
    
    --accent: #63C20A;          /* Neon Turf */
    --accent-gradient: linear-gradient(135deg, #63C20A 0%, #5AAA0A 100%);
    
    --soft-white: #F7F9FA;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
    --shadow-green: 0 0 30px rgba(99, 194, 10, 0.25);
}

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

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

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #001428; /* Deep Pitch Navy */
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Helper Classes & Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #A8B0B8 50%, #63C20A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 194, 10, 0.1);
    border: 1px solid rgba(99, 194, 10, 0.25);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-blue {
    background: rgba(168, 176, 184, 0.1);
    border: 1px solid rgba(168, 176, 184, 0.25);
    color: var(--soft-white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h1 {
    font-size: 3.8rem;
    font-weight: 900;
}

h2 {
    font-size: 2.8rem;
}

p {
    color: var(--text-secondary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000A1E; /* Dark text on neon turf/green button for maximum contrast */
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 194, 10, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--text-secondary);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: #000A1E;
    box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 194, 10, 0.45);
}

/* --- Header / Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(0, 10, 30, 0.95);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99, 194, 10, 0.2));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.logo-text span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.2rem 0;
}

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

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.6rem;
    cursor: pointer;
}

/* --- Hero Centered Section --- */
/* Fullscreen Hero Section (Možnost 3) */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Aspect-Ratio Preserving Cover Image Container */
.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 77.44vw; /* (793 / 1024) * 100 */
    min-height: 100vh;
    min-width: 129.13vh; /* (1024 / 793) * 100 */
    z-index: 1;
    box-shadow: inset 0 0 100px rgba(0, 10, 30, 0.4);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Hotspots Overlay Grid */
.hero-hotspots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.hotspot {
    position: absolute;
    background: rgba(255, 255, 255, 0.0);
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.hotspot:hover {
    background: rgba(99, 194, 10, 0.08);
    box-shadow: 0 0 15px rgba(99, 194, 10, 0.15);
}

.hotspot:focus-visible {
    outline: 2px solid var(--secondary);
    background: rgba(99, 194, 10, 0.15);
}

/* Hotspot Coordinates (percentage-based relative to 1024x793 image bounds) */
.hotspot-logo {
    left: 2.5%;
    top: 2.5%;
    width: 25%;
    height: 7%;
    border-radius: 12px;
}

.hotspot-share {
    left: 92%;
    top: 24%;
    width: 5%;
    height: 4.5%;
    border-radius: 50px;
}

.hotspot-players {
    left: 35%;
    top: 87%;
    width: 7%;
    height: 8%;
    border-radius: 50px;
}

.hotspot-teams {
    left: 47%;
    top: 87%;
    width: 7%;
    height: 8%;
    border-radius: 50px;
}

.hotspot-stats {
    left: 59%;
    top: 87%;
    width: 7%;
    height: 8%;
    border-radius: 50px;
}

/* --- Toast Notification --- */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 100px);
    background: rgba(0, 20, 40, 0.95);
    border: 1px solid var(--primary);
    color: var(--text-primary);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(99, 194, 10, 0.15);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: none;
}

.toast-notification.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.toast-notification i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* --- Hero Scoreboard Overlay --- */
.hero-scoreboard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    background: rgba(0, 10, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0.8rem 2.2rem;
    margin: 1.5rem 0 2rem 0;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(99, 194, 10, 0.05);
}

.hero-scoreboard .team-name {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.hero-scoreboard .score-display {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.hero-scoreboard .score-divider {
    color: var(--text-muted);
    animation: blinkDivider 1.5s infinite;
}

#score-team-b.goal-scored {
    color: var(--secondary);
    animation: goalFlash 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes blinkDivider {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes goalFlash {
    0% { transform: scale(1); }
    20% { transform: scale(1.5); color: var(--secondary); text-shadow: 0 0 20px rgba(99, 194, 10, 0.6); }
    80% { transform: scale(1); color: var(--secondary); text-shadow: 0 0 10px rgba(99, 194, 10, 0.3); }
    100% { transform: scale(1); }
}

.hero-glass-card h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.hero-glass-card h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
}

.hero-glass-card .hero-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 2.8rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* --- Sales / Benefits Grid Section --- */
.benefits-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, #000A1E 0%, #001428 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: rgba(0, 20, 40, 0.35); /* Deep Pitch Navy */
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.2rem;
    text-align: center;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: rgba(0, 20, 40, 0.6);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
}

.benefit-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(90, 170, 10, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid rgba(90, 170, 10, 0.15);
}

.benefit-card:hover .benefit-icon-box {
    background: var(--primary-gradient);
    color: #000A1E;
    box-shadow: var(--shadow-green);
    border-color: transparent;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Features Section (Karakteristike) --- */
.features {
    padding: 7rem 0;
    background-color: #000A1E; /* Koda Navy */
    border-top: 1px solid var(--border-color);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* --- Split Screen Showcase --- */
.showcase-container {
    display: flex;
    gap: 4rem;
    position: relative;
    margin-top: 4rem;
}

.showcase-media-side {
    flex: 1.2;
    position: sticky;
    top: 120px;
    height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.showcase-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12rem;
    padding-bottom: 25vh;
}

/* Browser Mockup Frame */
.mockup-frame {
    width: 100%;
    max-width: 680px;
    background: #00050f;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(99, 194, 10, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.mockup-header {
    height: 40px;
    background: #001428;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    position: relative;
}

.mockup-dots {
    display: flex;
    gap: 6px;
    z-index: 3;
}

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

.mockup-dots .dot.red { background: #ff5f56; }
.mockup-dots .dot.yellow { background: #ffbd2e; }
.mockup-dots .dot.green { background: #27c93f; }

.mockup-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 10, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.2rem 2.5rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--text-secondary);
}

.mockup-content {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    background: #000A1E;
    overflow: hidden;
}

.showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.showcase-img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
}

/* Step Text block styles */
.showcase-step {
    padding: 3rem;
    background: rgba(0, 20, 40, 0.2);
    border: 1px solid rgba(168, 176, 184, 0.05);
    border-radius: 24px;
    transition: var(--transition-slow);
    opacity: 0.4;
    transform: translateY(20px);
}

.showcase-step.active-step {
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 20, 40, 0.5);
    border-color: rgba(99, 194, 10, 0.2);
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 1.2rem;
}

.step-num-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #000A1E;
    font-size: 0.75rem;
    font-weight: 800;
}

.showcase-step h3 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.showcase-step .feature-sub {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-transform: none;
    letter-spacing: 0;
}

.showcase-step p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
}

.step-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-step.active-step .step-feature-item {
    opacity: 1;
    transform: translateX(0);
}

.showcase-step.active-step .step-feature-item:nth-child(1) { transition-delay: 0.1s; }
.showcase-step.active-step .step-feature-item:nth-child(2) { transition-delay: 0.25s; }
.showcase-step.active-step .step-feature-item:nth-child(3) { transition-delay: 0.4s; }

.step-feature-item i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* --- Feature Toggles inside Step --- */
.feature-toggles {
    display: flex;
    gap: 0.8rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-toggle-btn {
    background: rgba(0, 10, 30, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-toggle-btn.active {
    background: var(--primary-gradient);
    color: #000A1E;
    border-color: transparent;
    box-shadow: var(--shadow-green);
    animation: activePulse 2.5s infinite ease-in-out;
}

.feature-toggle-btn.active i {
    color: #000A1E;
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(99, 194, 10, 0.25); }
    50% { box-shadow: 0 0 30px rgba(99, 194, 10, 0.55); }
}

.feature-toggle-btn i {
    color: var(--primary);
    transition: var(--transition);
}

/* Video inside mockup wrapper */
.showcase-video-wrapper {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-video-mockup {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.mobile-only-screenshot {
    display: none;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mobile-only-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- How It Works Section (Uporabniški Tok) --- */
.how-it-works {
    padding: 7rem 0;
    position: relative;
    background-image: radial-gradient(circle at 50% 50%, rgba(99, 194, 10, 0.04) 0%, transparent 60%);
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.8rem 2rem 2.2rem 2rem;
    flex: 1;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.step-num {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #000A1E;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    border: 3px solid var(--bg-dark);
}

.step-card h4 {
    font-size: 1.25rem;
    margin: 1rem 0 0.8rem 0;
    color: #fff;
}

.step-card p {
    font-size: 0.92rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.8rem;
    color: #001428; /* Deep Pitch Navy */
    align-self: center;
    margin-top: -2rem;
    animation: floatArrow 2s ease-in-out infinite;
}

@keyframes floatArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* --- CTA Section --- */
.cta-section {
    padding: 7rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.4) 0%, rgba(99, 194, 10, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: 36px;
    padding: 6rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 194, 10, 0.03) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 2.8rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* --- Footer --- */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    background: #00050f;
}

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

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

.footer-logo img {
    height: 38px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-glass-card {
        padding: 3rem 2rem;
    }
    
    .hero-glass-card h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-glass-card h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 3.5rem;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 400px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin-top: -1.5rem;
        margin-bottom: -0.5rem;
        animation: floatArrowMobile 2s ease-in-out infinite;
    }

    /* Showcase Mobile Layout */
    .showcase-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .showcase-media-side {
        display: none;
    }
    
    .mobile-only-screenshot {
        display: block;
    }
    
    .showcase-step {
        opacity: 1 !important;
        transform: none !important;
        background: rgba(0, 20, 40, 0.4);
        border-color: rgba(168, 176, 184, 0.1);
        padding: 2.2rem 1.8rem;
    }
    
    .showcase-text-side {
        gap: 3rem;
        padding-bottom: 0;
    }
}

@keyframes floatArrowMobile {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(5px); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #001428;
        padding: 2.5rem 2rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1.8rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active .btn {
        width: 100%;
    }
    
    .navbar {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .hero {
        height: 100vh;
        height: 100dvh;
        min-height: auto;
        padding: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
