/* ============================================
   SİCİLCİ.COM - ULTRA MODERN ÖZGÜN TASARIM
   Benzersiz, Hızlı ve Profesyonel Tasarım
   Inspired by: ofisarti.com.tr, workinton.com
   ============================================ */

/* ============================================
   GOOGLE FONTS - MODERN TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS - ÖZGÜN & MODERN
   ============================================ */
:root {
    /* Premium Color Palette */
    --color-primary: #0066FF;
    --color-secondary: #00D4AA;
    --color-accent: #FF6B35;
    --color-dark: #0A0E27;
    --color-darker: #050816;
    --color-light: #F8FAFC;

    /* Sophisticated Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4AA 0%, #0066FF 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-cool: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, hsla(217, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(167, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(14, 100%, 60%, 0.15) 0px, transparent 50%);

    /* Typography Scale */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Outfit', sans-serif;

    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);

    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Shadows - Soft & Premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 8px 32px rgba(102, 126, 234, 0.25);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

/* Animated Mesh Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    z-index: -1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-darker);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 900;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-4);
    color: #64748b;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-secondary);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

.section {
    padding: var(--space-24) 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }
}

/* ============================================
   MODERN HEADER - Glassmorphism
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: var(--text-xl);
    font-weight: 800;
    font-family: var(--font-display);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-dark);
    padding: var(--space-2) 0;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-8);
        gap: var(--space-6);
        transition: var(--transition-base);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ============================================
   HERO SECTION - Ultra Modern
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Animated Blob Shapes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphing 20s ease-in-out infinite;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.1) 100%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 102, 255, 0.1) 100%);
    bottom: -10%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes morphing {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(180deg) scale(0.9);
    }

    75% {
        border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%;
        transform: rotate(270deg) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: var(--text-lg);
    color: #475569;
    margin-bottom: var(--space-8);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Illustration */
.hero-illustration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

@media (max-width: 968px) {
    .hero-illustration {
        display: none;
    }
}

/* ============================================
   BUTTONS - Premium & Animated
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-weight: 600;
    font-size: var(--text-base);
    font-family: var(--font-display);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: var(--transition-base);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

/* ============================================
   CARDS - Modern & Interactive
   ============================================ */
.card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: none !important;
    transform: none !important;
    position: relative;
    overflow: hidden;
    animation: none !important;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: none !important;
    animation: none !important;
}

.card:hover,
.card:focus,
.card:active {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
    animation: none !important;
}

.card:hover::before,
.card:focus::before,
.card:active::before {
    transform: scaleX(0) !important;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--color-darker);
}

.card-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 768px) {
    .grid {
        gap: var(--space-6);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-subtitle {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.section-description {
    font-size: var(--text-lg);
    color: #64748b;
    line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--color-darker);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--space-24) * -1);
}

@media (max-width: 768px) {
    .stats {
        margin-top: 0;
        padding: var(--space-12) 0;
    }
}

.stats::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    top: -400px;
    right: -200px;
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-12);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-6);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

.stat-item {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--space-4);
}

.stat-label {
    font-size: var(--text-base);
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8);
    position: relative;
}

.process-step {
    text-align: center;
    padding: var(--space-8);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    font-weight: 900;
    font-family: var(--font-display);
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.process-step:hover .process-number {
    transform: scale(1.2) rotate(360deg);
}

.process-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.process-description {
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: var(--space-24) 0;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: var(--space-8);
    font-size: 10rem;
    font-family: Georgia, serif;
    color: rgba(102, 126, 234, 0.05);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: #FFB800;
}

.testimonial-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: #475569;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.testimonial-name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-darker);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: #64748b;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--space-24) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 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.2);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-6);
}

.cta-section p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-10);
}

.btn-white {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background: var(--color-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-darker);
    color: #cbd5e1;
    padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer h4 {
    color: white;
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: var(--space-3);
    transition: var(--transition-base);
}

.footer li:hover {
    transform: translateX(5px);
}

.footer a {
    color: #cbd5e1;
}

.footer a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    text-align: center;
    color: #94a3b8;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: var(--z-tooltip);
    transition: var(--transition-bounce);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: white;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    margin-bottom: var(--space-3);
    font-weight: 600;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--color-dark);
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: none;
}

/* Honeypot field - Hide spam trap */
input[name="website"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   REGULATION BANNER
   ============================================ */
.regulation-banner {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-left: 6px solid #FFB800;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .regulation-banner {
        padding: var(--space-6);
    }
}

.regulation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.regulation-banner h3 {
    color: #d97706;
    margin-bottom: var(--space-4);
}

.regulation-banner ul {
    list-style: none;
    margin: var(--space-6) 0;
}

.regulation-banner li {
    padding: var(--space-3) 0;
    color: #92400e;
}

/* Close Button for Regulation Banner */
.regulation-close-btn {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.regulation-close-btn:hover {
    background: white;
    border-color: #FFB800;
    transform: rotate(90deg) scale(1.1);
}

.regulation-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: #d97706;
    stroke-width: 3px;
}

@media (max-width: 768px) {
    .regulation-close-btn {
        width: 32px;
        height: 32px;
        top: var(--space-3);
        right: var(--space-3);
    }

    .regulation-close-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Hidden state for banner */
.regulation-banner.hidden {
    display: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: var(--space-2);
}

.gap-3 {
    gap: var(--space-3);
}

.gap-4 {
    gap: var(--space-4);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero {
        min-height: 80vh;
        text-align: center;
        padding: 100px 0 var(--space-16) !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 95px 0 var(--space-8) !important;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .btn-lg {
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 var(--space-6) !important;
    }

    .hero h1 {
        font-size: var(--text-4xl);
    }

    .hero p {
        font-size: var(--text-base);
    }

    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-4);
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.card:hover,
.btn:hover,
.process-step:hover {
    will-change: transform;
}

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */

/* WhatsApp Widget Container */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: auto;
    height: 60px;
    padding: 0 24px 0 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
    flex-shrink: 0;
}

.whatsapp-label {
    color: white;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.15),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.15),
            0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Chat Window */
.whatsapp-chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 520px;
    background: #ECE5DD;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-chat-window.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* WhatsApp Chat Header */
.whatsapp-chat-header {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.whatsapp-chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.whatsapp-chat-header-text h4 {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.whatsapp-chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-top: 2px;
}

.whatsapp-status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.whatsapp-close-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.whatsapp-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.whatsapp-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2.5;
}

/* WhatsApp Chat Messages */
.whatsapp-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #ECE5DD url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><g fill="%23D9D9D9" fill-opacity="0.08"><polygon points="0,0 100,0 50,50"/><polygon points="0,100 100,100 50,50"/></g></svg>') repeat;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.whatsapp-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

/* WhatsApp Message */
.whatsapp-message {
    max-width: 75%;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-message-received {
    align-self: flex-start;
}

.whatsapp-message-sent {
    align-self: flex-end;
}

.whatsapp-message-content {
    background: white;
    padding: 8px 12px 6px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message-received .whatsapp-message-content {
    background: white;
    border-bottom-left-radius: 2px;
}

.whatsapp-message-sent .whatsapp-message-content {
    background: #DCF8C6;
    border-bottom-right-radius: 2px;
}

.whatsapp-message-content p {
    margin: 0 0 4px 0;
    color: #303030;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.whatsapp-message-content p:last-of-type {
    margin-bottom: 0;
}

.whatsapp-message-time {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
    text-align: right;
    margin-top: 4px;
    padding-left: 40px;
}

/* WhatsApp Chat Input */
.whatsapp-chat-input {
    padding: 12px;
    background: #F0F0F0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.whatsapp-chat-input form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 24px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.whatsapp-chat-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    color: #303030;
    font-family: inherit;
}

.whatsapp-chat-input input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.whatsapp-send-btn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.whatsapp-send-btn:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

.whatsapp-send-btn:active {
    transform: scale(0.95);
}

.whatsapp-send-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
    transform: rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        margin-left: auto;
    }

    .whatsapp-label {
        display: none;
    }

    .whatsapp-chat-window {
        position: fixed;
        width: calc(100vw - 40px);
        max-width: 100%;
        height: calc(100vh - 140px);
        max-height: 600px;
        bottom: 110px;
        right: 20px;
        left: 20px;
        margin: 0 auto;
    }

    .whatsapp-chat-header {
        padding: 14px 16px;
    }

    .whatsapp-chat-avatar {
        width: 42px;
        height: 42px;
    }

    .whatsapp-chat-header-text h4 {
        font-size: 15px;
    }

    .whatsapp-chat-status {
        font-size: 12px;
    }

    .whatsapp-chat-messages {
        padding: 16px;
    }

    .whatsapp-message {
        max-width: 85%;
    }

    .whatsapp-message-content {
        padding: 7px 10px 5px;
    }

    .whatsapp-message-content p {
        font-size: 13px;
    }

    .whatsapp-chat-input {
        padding: 10px;
    }

    .whatsapp-chat-input input {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        margin-left: auto;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-chat-window {
        position: fixed;
        width: calc(100vw - 30px);
        max-width: 100%;
        height: calc(100vh - 100px);
        max-height: 550px;
        bottom: 95px;
        right: 15px;
        left: 15px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .whatsapp-chat-header {
        padding: 12px 14px;
    }

    .whatsapp-chat-avatar {
        width: 38px;
        height: 38px;
    }

    .whatsapp-chat-header-text h4 {
        font-size: 14px;
    }

    .whatsapp-chat-status {
        font-size: 11px;
    }

    .whatsapp-close-btn {
        width: 28px;
        height: 28px;
    }

    .whatsapp-close-btn svg {
        width: 16px;
        height: 16px;
    }

    .whatsapp-chat-messages {
        padding: 12px;
        gap: 10px;
    }

    .whatsapp-message {
        max-width: 90%;
    }

    .whatsapp-message-content {
        padding: 6px 9px 5px;
    }

    .whatsapp-message-content p {
        font-size: 13px;
    }

    .whatsapp-message-time {
        font-size: 10px;
        padding-left: 30px;
    }

    .whatsapp-chat-input {
        padding: 8px;
    }

    .whatsapp-chat-input form {
        padding: 6px 6px 6px 16px;
    }

    .whatsapp-chat-input input {
        font-size: 14px;
    }

    .whatsapp-send-btn {
        width: 36px;
        height: 36px;
    }

    .whatsapp-send-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .whatsapp-widget {
        bottom: 12px;
        right: 12px;
        left: 12px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-chat-window {
        width: calc(100vw - 24px);
        height: calc(100vh - 90px);
        max-height: 500px;
        bottom: 88px;
        right: 12px;
        left: 12px;
    }
}

/* Print Styles */
@media print {
    .whatsapp-widget {
        display: none !important;
    }
}

/* ============================================
   CAPTCHA STYLES - ULTRA MODERN & GLASSMORPHISM
   ============================================ */

.captcha-container {
    position: relative;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.95) 0%,
            rgba(168, 85, 247, 0.95) 50%,
            rgba(236, 72, 153, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* Animated background pattern */
.captcha-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
    animation: captchaPattern 20s linear infinite;
    pointer-events: none;
}

@keyframes captchaPattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating particles effect */
.captcha-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: captchaFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes captchaFloat {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.captcha-container:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 16px 48px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 60px rgba(168, 85, 247, 0.3);
}

.captcha-container .form-label {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    z-index: 1;
}

.captcha-question {
    position: relative;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    z-index: 1;
    transition: all 0.3s ease;
}

.captcha-question:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
}

.captcha-container input[type="text"] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    z-index: 1;
}

.captcha-container input[type="text"]::placeholder {
    color: rgba(99, 102, 241, 0.5);
    font-weight: 500;
}

.captcha-container input[type="text"]:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: white;
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.captcha-container input[type="text"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: white;
    box-shadow:
        0 8px 24px rgba(99, 102, 241, 0.25),
        0 0 0 4px rgba(255, 255, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-2px) scale(1.02);
}

.captcha-container input[type="text"]:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
    box-shadow:
        0 4px 20px rgba(16, 185, 129, 0.2),
        0 0 0 1px rgba(16, 185, 129, 0.3) inset;
}

.captcha-container input[type="text"]:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    box-shadow:
        0 4px 20px rgba(239, 68, 68, 0.2),
        0 0 0 1px rgba(239, 68, 68, 0.3) inset;
}

/* Glow pulse animation */
@keyframes captchaGlow {

    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(99, 102, 241, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        box-shadow:
            0 12px 40px rgba(168, 85, 247, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset,
            0 0 80px rgba(236, 72, 153, 0.3);
    }
}

.captcha-container.active {
    animation: captchaGlow 3s ease-in-out infinite;
}

/* Responsive captcha */
@media (max-width: 768px) {
    .captcha-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
        border-radius: 16px;
    }

    .captcha-container .form-label {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .captcha-question {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
        margin-bottom: 1rem;
    }

    .captcha-container input[type="text"] {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .captcha-container {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .captcha-question {
        font-size: 0.9rem;
        padding: 0.75rem 0.85rem;
    }
}