/* ========================================
   DEEPPADEL COMMERCIAL WEBSITE - CSS
   Updated to match sleek black design with lime green accents
   ======================================== */

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
    /* DeepPadel Brand Colors - Updated */
    --primary-black: #000000;
    --pure-white: #FFFFFF;
    --neon-green: #CDFF00;
    --bright-green: #00E676;
    --energy-yellow: #CDFF00;
    --slate-gray: #111111;
    --dark-green: #0a2f1f;
    
    /* Legacy mappings for compatibility */
    --primary-color: #CDFF00;
    --primary-dark: #a8d400;
    --primary-light: #d4ff33;
    --secondary-color: #CDFF00;
    --accent-color: #CDFF00;
    --success-color: #CDFF00;
    --warning-color: #CDFF00;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #CDFF00 0%, #a8d400 100%);
    --gradient-cta: linear-gradient(135deg, #CDFF00 0%, #a8d400 100%);
    --gradient-secondary: linear-gradient(135deg, #CDFF00 0%, #d4ff33 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #0a2f1f 30%, #000000 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #111111 100%);
    
    /* Neutrals */
    --text-primary: #FFFFFF;
    --text-secondary: #a0a0a0;
    --text-light: #808080;
    --bg-light: #0a0a0a;
    --bg-white: #000000;
    --bg-dark: #000000;
    --border-color: #222222;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow-green: 0 0 60px rgba(205, 255, 0, 0.5);
    --shadow-glow-yellow: 0 0 60px rgba(205, 255, 0, 0.4);
}

/* ========================================
   GOOGLE FONTS - Sport Tech Typography
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--primary-black);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--pure-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(205, 255, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    background: rgba(0, 0, 0, 0.98);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--pure-white);
}

.logo-image {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.logo i {
    font-size: 28px;
}

.logo strong {
    color: var(--pure-white);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--pure-white);
    position: relative;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--neon-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--primary-black);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(205, 255, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(205, 255, 0, 0.6), 0 0 40px rgba(205, 255, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: var(--pure-white);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    color: var(--primary-black);
    border-color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--primary-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    opacity: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--dark-green);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--dark-green);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--dark-green);
    bottom: -100px;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 550px;
    height: 550px;
    background: var(--dark-green);
    top: 20%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--pure-white);
    line-height: 1.1;
    font-weight: 700;
}

.gradient-text {
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(205, 255, 0, 0.6);
    font-weight: 700;
}

.highlight-text {
    color: var(--neon-green);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--neon-green);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--neon-green);
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    text-shadow: 0 0 25px rgba(205, 255, 0, 0.6);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-top: 8px;
    font-weight: 400;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    animation: float-gentle 6s infinite ease-in-out;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #0a0a0a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    border: 2px solid rgba(10, 47, 31, 0.5);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a2f1f 0%, #051510 100%);
    border-radius: 32px;
    overflow: hidden;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 750px;
    background: radial-gradient(circle, rgba(10, 47, 31, 0.8) 0%, rgba(10, 47, 31, 0.4) 40%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1);
        filter: blur(60px);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.15);
        filter: blur(80px);
    }
}

.app-preview {
    padding: 20px;
    color: white;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.chat-bubble {
    background: rgba(10, 47, 31, 0.6);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(205, 255, 0, 0.2);
}

.chat-bubble i {
    font-size: 24px;
    color: var(--neon-green);
}

.stats-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-stat {
    background: rgba(10, 47, 31, 0.6);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(205, 255, 0, 0.2);
}

.mini-stat i {
    color: var(--neon-green);
}

/* Neon Rings Behind Phone */
.rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ring {
    position: absolute;
    width: 700px;
    height: 700px;
    left: 68%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(205, 255, 0, 0.3);
    box-shadow:
        0 0 120px rgba(205, 255, 0, 0.25),
        inset 0 0 120px rgba(205, 255, 0, 0.15);
    filter: blur(0.2px);
    animation: ring-pulse 6s ease-in-out infinite;
    z-index: -1;
}

.ring.r2 {
    width: 850px;
    height: 850px;
    left: 68%;
    top: 50%;
    border-color: rgba(205, 255, 0, 0.2);
    box-shadow:
        0 0 160px rgba(205, 255, 0, 0.18),
        inset 0 0 140px rgba(205, 255, 0, 0.12);
    animation: ring-pulse 8.5s ease-in-out infinite reverse;
    z-index: -2;
}

@keyframes ring-pulse {
    0%, 100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Subtle radial aura behind phone */
.phone-mockup::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 82%;
    width: 560px;
    height: 560px;
    translate: -50% -50%;
    border-radius: 50%;
    background:
        radial-gradient(closest-side, rgba(0, 230, 118, .22), rgba(0, 230, 118, 0) 65%),
        radial-gradient(closest-side, rgba(205, 255, 0, .12), transparent 70%);
    filter: blur(6px);
    z-index: -1;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(205, 255, 0, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--pure-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ========================================
   FEATURES OVERVIEW
   ======================================== */
.features-overview {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(205, 255, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(205, 255, 0, 0.2);
    border-color: var(--neon-green);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--neon-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(205, 255, 0, 0.3);
}

.feature-icon:hover {
    box-shadow: 0 8px 25px rgba(205, 255, 0, 0.5);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-black);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--neon-green);
    color: var(--primary-black);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* ========================================
   MOBILE APP SECTION
   ======================================== */
.mobile-app {
    background: #000000;
    color: var(--pure-white);
    position: relative;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 47, 31, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-app .container {
    position: relative;
    z-index: 1;
}

.mobile-app .section-tag {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 10px 24px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(205, 255, 0, 0.5);
    box-shadow: 0 0 20px rgba(205, 255, 0, 0.2);
}

.mobile-app .section-title {
    color: var(--pure-white);
    font-size: 52px;
    font-weight: 800;
    text-align: center;
}

.mobile-app .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.mobile-app .app-feature-content h4 {
    color: var(--pure-white);
    font-weight: 700;
    font-size: 20px;
}

.mobile-app .app-feature-content h4::before {
    content: attr(data-emoji) ' ';
    color: var(--neon-green);
}

.mobile-app .app-feature-content p {
    color: rgba(255, 255, 255, 0.75);
}

.highlight-neon {
    color: var(--neon-green);
    font-weight: 800;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-screens {
    position: relative;
    height: 600px;
}

.screen {
    position: absolute;
    width: 280px;
    height: 560px;
    background: var(--bg-light);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid rgba(10, 47, 31, 0.5);
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screen-1 {
    top: 0;
    left: 0;
    z-index: 2;
    animation: float-screen-1 6s infinite ease-in-out;
}

.screen-2 {
    top: 40px;
    right: 0;
    z-index: 1;
    animation: float-screen-2 6s infinite ease-in-out;
}

@keyframes float-screen-1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float-screen-2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(15px) rotate(2deg); }
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.app-feature {
    display: flex;
    gap: 20px;
}

.app-feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--neon-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(205, 255, 0, 0.4),
                0 4px 15px rgba(205, 255, 0, 0.3);
    border: 2px solid rgba(205, 255, 0, 0.5);
}

.app-feature-icon i {
    font-size: 28px;
    color: var(--primary-black);
}

.app-feature-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.app-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.app-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #0a0a0a;
    color: white;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.badge-placeholder:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(205, 255, 0, 0.2);
}

.badge-placeholder i {
    font-size: 28px;
}

/* ========================================
   MANAGEMENT SYSTEM
   ======================================== */
.management-system {
    background: var(--bg-dark);
    color: var(--pure-white);
}

.management-system .section-title {
    color: var(--pure-white);
}

.management-system .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.management-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.management-header .section-tag {
    display: inline-block;
}

.management-header .section-title {
    margin-bottom: 20px;
}

.management-header .section-description {
    margin-bottom: 0;
}

.management-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.management-text {
    display: flex;
    flex-direction: column;
}

.management-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mgmt-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(10, 47, 31, 0.3);
    border: 1px solid rgba(205, 255, 0, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.mgmt-feature:hover {
    transform: translateX(8px);
    background: rgba(10, 47, 31, 0.5);
    border-color: var(--neon-green);
    box-shadow: 0 4px 20px rgba(205, 255, 0, 0.3);
}

.mgmt-feature i {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--neon-green);
    margin-top: 4px;
}

.mgmt-feature h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.mgmt-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.management-visual {
    margin-top: 0;
}

.dashboard-preview {
    position: relative;
    animation: float-gentle 6s infinite ease-in-out;
}

.dashboard-window {
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(205, 255, 0, 0.2);
}

.window-header {
    background: #0a0a0a;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333333;
}

.window-dots span:nth-child(1) { background: #ef4444; }
.window-dots span:nth-child(2) { background: #f59e0b; }
.window-dots span:nth-child(3) { background: #10b981; }

.window-title {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   WHATSAPP SECTION
   ======================================== */
.whatsapp-section {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 47, 31, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.whatsapp-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(205, 255, 0, 0.3);
    border-radius: 24px;
    padding: 60px 48px;
    position: relative;
    backdrop-filter: blur(10px);
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 48px;
}

.new-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--neon-green);
    border-radius: 24px;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.new-feature-badge i {
    font-size: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.whatsapp-title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.whatsapp-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--neon-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(205, 255, 0, 0.5);
}

.whatsapp-icon i {
    font-size: 32px;
    color: var(--primary-black);
    font-weight: 900;
}

.whatsapp-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--pure-white);
    margin: 0;
    text-align: left;
    line-height: 1.2;
}

.whatsapp-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.whatsapp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.whatsapp-feature-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(205, 255, 0, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.whatsapp-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.whatsapp-feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--neon-green);
    background: rgba(10, 47, 31, 0.3);
    box-shadow: 0 8px 30px rgba(205, 255, 0, 0.2);
}

.whatsapp-feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box-icon {
    width: 48px;
    height: 48px;
    background: var(--neon-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.feature-box-icon i {
    font-size: 24px;
    color: var(--primary-black);
}

.whatsapp-feature-box:hover .feature-box-icon {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-feature-box h4 {
    font-size: 18px;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 12px;
}

.whatsapp-feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.whatsapp-pricing {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(205, 255, 0, 0.2);
    text-align: center;
}

.whatsapp-price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.whatsapp-price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.whatsapp-price {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.whatsapp-price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.whatsapp-price-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive adjustments for WhatsApp section */
@media (max-width: 768px) {
    .whatsapp-content {
        padding: 40px 32px;
    }
    
    .whatsapp-title {
        font-size: 28px;
    }
    
    .whatsapp-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-title-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .whatsapp-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .whatsapp-content {
        padding: 32px 24px;
    }
    
    .whatsapp-title {
        font-size: 24px;
    }
    
    .whatsapp-icon {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon i {
        font-size: 28px;
    }
    
    .whatsapp-feature-box {
        padding: 24px 20px;
    }
}

/* ========================================
   WHY CHOOSE SECTION (Competitive Advantage)
   ======================================== */
.why-choose {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 47, 31, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #0a0a0a;
    border: 1px solid rgba(205, 255, 0, 0.15);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    background: rgba(10, 47, 31, 0.2);
    box-shadow: 0 12px 40px rgba(205, 255, 0, 0.25);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for Why Choose section */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 28px 24px;
    }
    
    .benefit-icon-emoji {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
}

/* ========================================
   COMING SOON
   ======================================== */
.coming-soon {
    background: var(--primary-black);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.coming-soon-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed rgba(205, 255, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
}

.coming-soon-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    background: rgba(10, 47, 31, 0.2);
    box-shadow: 0 20px 40px rgba(205, 255, 0, 0.2);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--neon-green);
    color: var(--primary-black);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.coming-soon-icon i {
    font-size: 36px;
    color: var(--primary-black);
}

.coming-soon-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--pure-white);
}

.coming-soon-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(205, 255, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(205, 255, 0, 0.2);
    border-color: var(--neon-green);
}

.pricing-card.featured {
    background: rgba(10, 47, 31, 0.4);
    color: white;
    transform: scale(1.05);
    border: 2px solid var(--neon-green);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header p,
.pricing-card.featured .pricing-feature span {
    color: white;
}

.pricing-card.featured .pricing-feature i {
    color: var(--neon-green);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--neon-green);
    color: var(--primary-black);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(205, 255, 0, 0.3);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-feature i {
    font-size: 20px;
    color: var(--neon-green);
}

.pricing-feature span {
    color: var(--text-secondary);
}

/* ========================================
   PRICING BOTTOM SECTION (ADD-ONS & ALL PLANS)
   ======================================== */
.pricing-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.addons-section,
.all-plans-section {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(205, 255, 0, 0.1);
}

.addons-title,
.all-plans-title {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--pure-white);
    font-weight: 700;
}

.addons-list,
.all-plans-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.addon-item,
.plan-include-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.addon-icon,
.plan-include-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-icon i,
.plan-include-icon i {
    font-size: 24px;
    color: var(--primary-black);
}

.addon-content h4,
.plan-include-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--pure-white);
    font-weight: 600;
}

.addon-content p,
.plan-include-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.addon-price-inline {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 16px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--primary-black);
    padding-top: 60px;
}

/* Inline CTA at top of Contact Section */
.cta-content-inline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.cta-content-inline .cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--pure-white);
    font-weight: 800;
}

.cta-content-inline .cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-content-inline .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-content-inline .cta-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
}

.contact-method-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--neon-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon i {
    font-size: 24px;
    color: var(--primary-black);
}

.contact-method-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.contact-method-info a,
.contact-method-info p {
    color: var(--text-secondary);
}

.contact-method-info a:hover {
    color: var(--neon-green);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--neon-green);
    color: var(--primary-black);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(205, 255, 0, 0.3);
    border-color: var(--neon-green);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(205, 255, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--pure-white);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-base);
    background: var(--primary-black);
    color: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-black);
    padding: 0;
    color: white;
    position: relative;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--neon-green) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(205, 255, 0, 0.6);
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-left .logo {
    color: white;
    margin-bottom: 8px;
}

.footer-left .logo strong {
    color: var(--pure-white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
    line-height: 1.6;
    font-style: italic;
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-socials .social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-socials .social-link:hover {
    background: var(--neon-green);
    color: var(--primary-black);
    border-color: var(--neon-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(205, 255, 0, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--neon-green);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--neon-green);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0 60px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .phone-mockup {
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .mobile-app-content,
    .management-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .app-screens {
        height: 500px;
        margin: 0 auto;
    }
    
    .screen {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Keep rings positioned for tablet */
    .ring {
        left: 50%;
        top: 55%;
        width: 400px;
        height: 400px;
    }
    
    .ring.r2 {
        left: 50%;
        top: 55%;
        width: 500px;
        height: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-black);
        flex-direction: column;
        padding: 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(205, 255, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-wrapper .btn-primary {
        display: none;
    }
    
    /* Keep rings positioned for mobile */
    .ring {
        left: 50%;
        top: 55%;
        width: 350px;
        height: 350px;
    }
    
    .ring.r2 {
        left: 50%;
        top: 55%;
        width: 450px;
        height: 450px;
    }
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-screens {
        height: 400px;
    }
    
    .screen {
        width: 200px;
        height: 400px;
    }
    
    .dashboard-window {
        transform: scale(0.9);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }
    
    .pricing-bottom-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: var(--bg-dark);
    padding-bottom: 60px;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
}

/* ========================================
   GLOW EFFECT FOR HERO CTA
   ======================================== */
.glow {
  position: relative;
  box-shadow: 0 0 25px rgba(205, 255, 0, 0.6),
              0 0 60px rgba(205, 255, 0, 0.3);
  animation: pulse-glow 2.5s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(205, 255, 0, 0.6),
                0 0 60px rgba(205, 255, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(205, 255, 0, 0.9),
                0 0 90px rgba(205, 255, 0, 0.5);
  }
}
