/* ==========================================================================
   KISAN EZZ LANDING PAGE - PREMIUM STYLING (VANILLA CSS)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-color: #020803;
    --bg-color-2: #050E06;
    --bg-color-3: #0A160C;
    
    --primary: #22C55E;
    --primary-dark: #15803d;
    --primary-light: #4ade80;
    --primary-glass: rgba(34, 197, 94, 0.08);
    
    --accent-gold: #FBBF24;
    --accent-gold-dark: #d97706;
    --accent-gold-glass: rgba(251, 191, 36, 0.06);
    
    --text-main: #F4FBF6;
    --text-muted: #8FA895;
    --text-dark: #020803;
    
    --border-color: rgba(34, 197, 94, 0.12);
    --border-color-glow: rgba(34, 197, 94, 0.3);
    
    --glass-bg: rgba(10, 22, 12, 0.55);
    --glass-bg-hover: rgba(14, 32, 17, 0.75);
    --glass-border: rgba(34, 197, 94, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.6);
    
    --font-primary: 'Outfit', 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-secondary);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

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

/* Ambient Background Glow System */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.75;
    will-change: transform;
}

.glow-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(0,0,0,0) 70%);
    animation: drift-slow 25s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, rgba(0,0,0,0) 70%);
    animation: drift-slow 30s ease-in-out infinite alternate-reverse;
}

.glow-3 {
    top: 40%;
    left: 45%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, rgba(0,0,0,0) 70%);
    animation: drift-slow 20s ease-in-out infinite alternate;
}

@keyframes drift-slow {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    margin-bottom: 72px;
    max-width: 750px;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
}

.section-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px var(--glass-shadow);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-panel.hover-glow:hover {
    border-color: var(--border-color-glow);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.15);
    background: var(--glass-bg-hover);
}

/* Button & Badge Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: #010602;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--bg-color-3);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-glass);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--primary-glass);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-text {
    background-color: transparent;
    color: var(--text-main);
}

.btn-text:hover {
    color: var(--primary);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.btn-full-width {
    width: 100%;
}

/* Glowing Button Highlight */
.glow-btn {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.badge-new {
    display: inline-block;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Header & Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header.sticky {
    padding: 16px 0;
    background: rgba(2, 8, 3, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 24px;
    color: var(--text-main);
}

.logo span span {
    color: var(--primary);
}

.brand-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    object-fit: cover;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-color-2);
    z-index: 150;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
    transition: right 0.4s ease;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-content {
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 32px;
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.drawer-link {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.drawer-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 220px;
    padding-bottom: 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 100px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 200px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 300px 280px, rgba(255,255,255,0.4), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 400px 400px, rgba(255,255,255,0.6), rgba(0,0,0,0));
    background-size: 550px 550px;
    opacity: 0.15;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 1;
}

.hero-text-content {
    flex: 1.1;
    max-width: 650px;
}

.hero-title {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-family: var(--font-secondary);
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-ratings {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-ratings .stars {
    color: var(--accent-gold);
    font-size: 20px;
}

.hero-visual {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Floating Glass Cards in Hero */
.hero-floating-card {
    position: absolute;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    background: rgba(10, 22, 12, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.hero-floating-card .card-icon {
    font-size: 22px;
    background: rgba(34, 197, 94, 0.12);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
}

.hero-floating-card .card-title {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-floating-card .card-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.card-top-left {
    top: 5%;
    left: -15%;
}

.card-bottom-right {
    bottom: 10%;
    right: -10%;
}

.card-mid-left {
    top: 45%;
    left: -20%;
}

/* Float animations for cards */
@keyframes hover-drift-1 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes hover-drift-2 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes hover-drift-3 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.float-delay-1 { animation: hover-drift-1 5s ease-in-out infinite; }
.float-delay-2 { animation: hover-drift-2 6s ease-in-out infinite; }
.float-delay-3 { animation: hover-drift-3 5.5s ease-in-out infinite; }

.phone-mockup-wrapper {
    position: relative;
    max-width: 340px;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    perspective: 1000px;
}

.phone-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    z-index: 5;
    pointer-events: none;
    border-radius: 40px;
}

.hero-phone-img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
    width: 100%;
    border-radius: 40px;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

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

.stat-card {
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.stat-num {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 48px;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    position: relative;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    z-index: 1;
    position: relative;
}

/* Section 3: App Showcase (GSAP Scroll storytelling) */
.scroll-showcase-section {
    padding: 160px 0;
    position: relative;
    background-color: var(--bg-color-2);
}

.scroll-showcase-container {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}

.scroll-showcase-left {
    flex: 1.2;
    padding-bottom: 120px;
}

.showcase-step {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.showcase-step:first-child {
    padding-top: 40px;
}

.showcase-step:last-child {
    border-bottom: none;
    padding-bottom: 40px;
}

.showcase-step.active {
    opacity: 1;
}

.step-num {
    display: block;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-title {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.step-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.step-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.step-features-list span {
    background: var(--bg-color-3);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
}

.scroll-showcase-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 150px;
    height: calc(100vh - 220px);
    align-items: center;
    z-index: 10;
}

.sticky-phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #000000;
    border: 9px solid #1a261c;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 5;
    pointer-events: none;
    transform: skewX(-25deg);
}

.phone-screen-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--bg-color);
}

.showcase-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

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

/* Features Section */
.services-section {
    padding: 140px 0;
    position: relative;
    z-index: 2;
}

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

.service-card {
    padding: 48px 36px;
    border: 1px solid rgba(34, 197, 94, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.icon-bg-green {
    background: rgba(34, 197, 94, 0.1);
}

.icon-bg-gold {
    background: rgba(251, 191, 36, 0.1);
}

.icon-bg-green-light {
    background: rgba(134, 239, 172, 0.1);
}

.service-title {
    font-size: 24px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.service-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.75;
}

/* Why Kisan Ezz Section */
.benefits-section {
    padding: 140px 0;
}

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

.benefit-card {
    padding: 44px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 22px;
    margin-bottom: 14px;
}

.benefit-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Team Section */
.team-section {
    padding: 140px 0;
    background-color: var(--bg-color-2);
}

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

.team-card {
    padding: 48px 36px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.06);
}

.team-avatar-badge {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 30px;
    color: #020803;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.team-name {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Testimonials Section */
.testimonials-section {
    padding: 140px 0;
    position: relative;
}

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

.testimonial-card {
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .stars {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-color-3);
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-light);
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-location {
    font-size: 13px;
    color: var(--text-muted);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 48px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge svg {
    color: var(--primary);
}

.trust-badge span {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

/* FAQ Section */
.faqs-section {
    padding: 140px 0;
}

.faqs-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.faq-question {
    padding: 28px 32px;
}

.faq-question h3 {
    font-size: 18px;
}

.faq-answer {
    padding: 0 32px;
    font-size: 15px;
}

.faq-item.open .faq-answer {
    padding-bottom: 28px;
}

/* Contact Us Section */
.contact-section {
    padding: 140px 0;
    background-color: var(--bg-color-2);
}

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

.contact-details {
    gap: 32px;
}

.contact-item .icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
}

.contact-item h4 {
    font-size: 18px;
}

.contact-form-block {
    padding: 48px;
}

/* Download CTA Section */
.download-cta-section {
    padding: 140px 0;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    padding: 80px 100px;
    border: 1px solid var(--border-color);
}

.cta-title {
    font-size: 46px;
    letter-spacing: -0.03em;
}

.cta-subtext {
    font-size: 18px;
}

.cta-phone-img {
    max-width: 280px;
}

/* Section 9: Footer */
.footer {
    background-color: #010602;
    border-top: 1px solid rgba(34, 197, 94, 0.06);
    padding: 100px 0 50px;
}

.footer-grid {
    gap: 80px;
}

.footer-logo {
    font-size: 28px;
}

.footer-links-group {
    gap: 40px;
}

.footer-col-title {
    font-size: 17px;
}

/* Modals Overlay & Card */
.modal-overlay {
    background-color: rgba(2, 8, 3, 0.88);
}

.modal-card {
    max-width: 460px;
    padding: 48px;
    border: 1px solid var(--border-color-glow);
    border-radius: 28px;
}

/* Legal Pages Styling overrides */
.legal-container {
    padding: 180px 0 100px;
    max-width: 950px;
}

.legal-content {
    padding: 72px;
    border-radius: 28px;
}

/* GSAP/Scroll reveals hooks - opacity initial state for non-GSAP fallback triggers */
.reveal-on-scroll {
    opacity: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    .cta-container {
        padding: 60px;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust-badges-row {
        flex-direction: column;
        gap: 20px;
    }
    .cta-container {
        padding: 50px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-image {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-floating-card {
        display: none; /* Hide floating status badges on mobile to keep space clean */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Degrading Scroll Showcase for Mobile */
    .scroll-showcase-container {
        flex-direction: column;
        gap: 40px;
    }
    .scroll-showcase-right {
        display: none;
    }
    .showcase-step {
        opacity: 1;
        padding: 40px 0;
    }
    .showcase-step::after {
        content: "";
        display: block;
        width: 100%;
        height: 380px;
        margin-top: 30px;
        border-radius: 24px;
        background-position: center;
        background-size: cover;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }
    .showcase-step[data-step="1"]::after { background-image: url('assets/hero_mockup.png'); }
    .showcase-step[data-step="2"]::after { background-image: url('assets/screenshot_schemes.png'); }
    .showcase-step[data-step="3"]::after { background-image: url('assets/screenshot_news.png'); }
    .showcase-step[data-step="4"]::after { background-image: url('assets/screenshot_videos.png'); }
    .showcase-step[data-step="5"]::after { background-image: url('assets/screenshot_tracking.png'); }
}

@media (max-width: 768px) {
    .nav-menu, .nav-buttons {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 42px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .contact-form-block {
        padding: 24px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons .btn, .cta-buttons .download-badge {
        width: 100%;
        justify-content: center;
    }
}
