/* ===================================
   Race Admin - Estilo Premium
   =================================== */

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

:root {
    /* ── Paleta Racing + Laranja do Logo (Harmonizada) ───────────── */
    /* Cores extraídas do logo.png: topo #EC541A -> base #E5401F */
    /* --primary = tom "queimado" alinhado ao perfil escuro do logo */
    --primary:        #D23E19;   /* 🔥 Laranja-vermelho queimado (média do novo gradient) */
    --primary-dark:   #A02212;   /* 🔥 Vermelho escuro p/ hover */
    --secondary:      #e63946;   /* ✅ MANTÉM: Vermelho (decorativo) */
    --secondary-dark: #c1121f;   /* ✅ Vermelho escuro (decorativo) */
    --accent:         #3b82f6;   /* ✅ MANTÉM: Azul para coaches/telemetria */
    --dark:           #0d0d0d;
    --dark-light:     #141414;
    --dark-lighter:   #1c1c1c;
    --text:           #f8fafc;
    --text-muted:     #a0a0a0;
    --border:         rgba(255, 255, 255, 0.09);
    --gradient:       linear-gradient(135deg, #EC541A 0%, #B82818 100%);  /* 🔥 Topo laranja real; Base vermelho-tijolo (mais R, menos G) */
    --gradient-secondary: linear-gradient(135deg, #e63946 0%, #c1121f 100%);  /* Vermelho (decorativo) */
    --gradient-blue:  linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-lg:   0 8px 32px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 20px rgba(210, 62, 25, 0.35);  /* 🔥 Glow com laranja-vermelho queimado */

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Xadrez de bandeirada - identidade racing igual ao login */
    background-color: var(--dark);
    background-image: repeating-conic-gradient(
        #1a1a1a 0% 25%,
        #0d0d0d 0% 50%
    );
    background-size: 40px 40px;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Overlay radial - suaviza o xadrez, mantém conteúdo legível */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(
        ellipse 130% 85% at 50% 30%,
        rgba(30, 30, 30, 0.70) 0%,
        rgba(5, 5, 5, 0.96) 100%
    );
    pointer-events: none;
    z-index: -1;
}

/* Listra vermelha racing no topo - igual ao login */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #c1121f, #e63946);
    z-index: 9999;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 4px; /* respira a listra vermelha de 4px */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    /* Glass ativo desde o início - consistente com o login */
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(230, 57, 70, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

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

.logo-img {
    height: 25px;
    width: auto;
    transition: transform 0.3s ease;
    border-radius: 0px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin-top: 0.5rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 13px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--secondary);
}

/* Botão CTA no Menu */
.nav-menu .btn-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.nav-menu .btn-cta::after {
    display: none; /* Remove underline effect */
}

.nav-menu .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.5);
    color: white;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 104px; /* 100px + 4px da listra */
}

.hero-stripes {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 45%,
        rgba(220, 38, 38, 0.03) 45%,
        rgba(220, 38, 38, 0.03) 55%,
        transparent 55%);
    background-size: 100px 100px;
    animation: stripeMove 20s linear infinite;
    pointer-events: none;
}

@keyframes stripeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge i {
    color: var(--secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
    animation: float 6s ease-in-out infinite;
}

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

.card-content {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(255, 107, 53, 0.05));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.card-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.card-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.pulse {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How it Works */
.how-it-works {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
}

.step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.938rem;
}

/* Clientes Section */
.clientes-section {
    background: var(--dark-light);
    padding: 6rem 0;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cliente-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.cliente-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.04);
}

.cliente-logo {
    max-width: 200px;
    height: auto;
    filter: grayscale(20%) brightness(0.9);
    transition: var(--transition);
}

.cliente-card:hover .cliente-logo {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.cliente-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    margin: 0;
}

/* Gallery Section */
.gallery {
    background: var(--dark);
}

.gallery-swiper {
    padding: 2rem 0 4rem;
}

.gallery-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-swiper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.slide-caption {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: rgba(220, 38, 38, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
}

.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
}

/* Examples Section */
.examples {
    background: var(--dark-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.example-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.example-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.example-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.example-content {
    padding: 1.5rem;
}

.example-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.example-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.938rem;
}

.example-content .btn {
    width: 100%;
    justify-content: center;
}

/* Coaches Section */
.coaches {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.coaches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05), transparent 70%);
    pointer-events: none;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.coach-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: var(--transition);
}

.coach-card[data-coach="alex"]::before { color: #10b981; }
.coach-card[data-coach="victor"]::before { color: #dc2626; }
.coach-card[data-coach="lara"]::before { color: #f59e0b; }
.coach-card[data-coach="telemetria"]::before { color: #3b82f6; }

.coach-card:hover {
    transform: translateY(-10px);
    border-color: currentColor;
    box-shadow: var(--shadow-lg);
}

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

.coach-card[data-coach="alex"]:hover { border-color: #10b981; }
.coach-card[data-coach="victor"]:hover { border-color: #dc2626; }
.coach-card[data-coach="lara"]:hover { border-color: #f59e0b; }
.coach-card[data-coach="telemetria"]:hover { border-color: #3b82f6; }

.coach-avatar {
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, currentColor, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.avatar-circle.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.avatar-circle.red {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.avatar-circle.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.avatar-circle.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.coach-card:hover .avatar-circle {
    transform: scale(1.1) rotate(360deg);
}

.coach-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coach-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.coach-card[data-coach="alex"] .coach-photo {
    border-color: #10b981;
}

.coach-card[data-coach="victor"] .coach-photo {
    border-color: #dc2626;
}

.coach-card[data-coach="lara"] .coach-photo {
    border-color: #f59e0b;
}

.coach-card[data-coach="telemetria"] .coach-photo {
    border-color: #3b82f6;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coach-card:hover .coach-photo {
    transform: scale(1.05);
    box-shadow: 0 0 20px currentColor;
}

.coach-card[data-coach="alex"]:hover .coach-photo {
    box-shadow: 0 0 20px #10b981;
}

.coach-card[data-coach="victor"]:hover .coach-photo {
    box-shadow: 0 0 20px #dc2626;
}

.coach-card[data-coach="lara"]:hover .coach-photo {
    box-shadow: 0 0 20px #f59e0b;
}

.coach-card[data-coach="telemetria"]:hover .coach-photo {
    box-shadow: 0 0 20px #3b82f6;
}

.coach-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.coach-card:hover .coach-photo::before {
    opacity: 1;
}

.coach-subtitle {
    color: var(--text-muted);
    font-size: 0.938rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coach-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coaches-info {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.coaches-info p {
    color: var(--text-muted);
    margin: 0;
}

.coaches-info i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* Modal Coach */
.modal-coach {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-coach-body {
    padding: 2rem;
}

.coach-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border-left-width: 4px;
}

.coach-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.coach-title h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.coach-title .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.coach-title .quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.938rem;
}

.coach-analysis h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.coach-analysis h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.coach-analysis ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.coach-analysis li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.coach-analysis strong {
    color: var(--text);
}

.feedback-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    margin: 1rem 0;
}

.feedback-section.brutal {
    border-left-color: #dc2626;
}

.feedback-section.strategic {
    border-left-color: #f59e0b;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.data-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.data-item .value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.data-item .value.warning {
    color: #f59e0b;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.rec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.rec-item i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.rec-item p {
    margin: 0;
    line-height: 1.6;
}

.conclusion {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-size: 1.063rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.conclusion.brutal {
    border-left-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.conclusion.data {
    border-left-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

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

.coach-footer small {
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(255, 107, 53, 0.06));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.stat-icon {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.stat-card .stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.938rem;
    line-height: 1.4;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;

}

.footer-logo p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

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

.footer-contact a p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    font-size: 1.25rem;
    min-width: 24px;
}

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary);
}

/* Phone Protection Styles */
.phone-display {
    opacity: 0.5;
    transition: var(--transition);
}

.phone-display.revealed {
    opacity: 1;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.phone-protected {
    position: relative;
}

.phone-protected::before {
    content: '🔒';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
    opacity: 0.5;
    transition: var(--transition);
}

.phone-protected.phone-revealed::before {
    content: '✓';
    color: #10b981;
    opacity: 1;
    animation: checkMark 0.5s ease-out;
}

@keyframes checkMark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.3s ease-out;
}

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

.modal-close {
    position: absolute !important;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.modal-body {
    padding: 3rem 2.5rem;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.modal-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.modal-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buttons .btn {
    flex: 1;
}

/* Responsive */
@media (max-width: 1142px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo p {
        max-width: 100%;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: 0 0 16px 16px;
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        min-width: 250px;
    }

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

    .nav-menu .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .menu-btn {
        display: block;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .card-stats {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
