@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==================== RESET & VARIABLES ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00b4d8;
    --primary-light: #48cae4;
    --primary-glow: rgba(0, 180, 216, 0.3);
    --dark: #020c1b;
    --dark-blue: #0a1628;
    --dark-card: rgba(10, 22, 40, 0.8);
    --text: #ccd6f6;
    --text-light: #8892b0;
    --white: #e6f1ff;
    --gradient-1: linear-gradient(135deg, #00b4d8, #0077b6);
    --gradient-2: linear-gradient(135deg, #0077b6, #023e8a);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== PARTICLE CANVAS ==================== */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(2, 12, 27, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    padding: 0.6rem 2rem;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    background: var(--gradient-1) !important;
    border-radius: 8px;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.nav-cta::after { display: none !important; }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    z-index: 1;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: heroGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px var(--primary-glow);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--primary-glow);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(0, 180, 216, 0.08);
    transform: translateY(-3px);
}

/* ==================== HERO STATS (index.html) ==================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat { text-align: center; }

.hero-stat .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease 1s forwards, bounce 2s ease infinite 1.5s;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== SECTIONS ==================== */
section {
    position: relative;
    z-index: 1;
    padding: 7rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

/* ==================== PROCESS TIMELINE ==================== */
.process-section {
    background: var(--dark);
}

.process-timeline {
    margin-top: 4rem;
    position: relative;
}

/* Timeline vertical line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(0,180,216,0.1));
    transform: translateX(-50%);
}

/* Timeline draw animation overlay */
.process-timeline::after {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 0 8px var(--primary-glow), 0 0 20px var(--primary-glow);
}

.process-timeline.timeline-drawn::after {
    transform: translateX(-50%) scaleY(1);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(odd) { flex-direction: row; }
.process-step:nth-child(even) { flex-direction: row-reverse; }

.process-step-content {
    width: 38%;
    max-width: calc(50% - 60px);
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    position: relative;
}

/* Connection lines from card to circle */
.process-step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.3), var(--primary));
    transform: translateY(-50%);
}

/* Odd steps: card on left, line goes right */
.process-step:nth-child(odd) .process-step-content {
    margin-right: auto;
    border-left: 3px solid var(--primary);
}

.process-step:nth-child(odd) .process-step-content::before {
    right: -30px;
}

/* Even steps: card on right, line goes left */
.process-step:nth-child(even) .process-step-content {
    margin-left: auto;
    border-right: 3px solid var(--primary);
}

.process-step:nth-child(even) .process-step-content::before {
    left: -30px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 180, 216, 0.3));
}

.process-step-content:hover {
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Card hover shimmer effect */
.process-step-content::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.04), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    border-radius: 16px;
}

.process-step-content:hover::after {
    left: 100%;
}

/* Step number circle with pop-in animation */
.process-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 50px; height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    z-index: 3;
    box-shadow: 0 0 30px var(--primary-glow);
    border: 4px solid var(--dark);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step-number.pop-in {
    transform: translateX(-50%) scale(1);
}

.process-step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== CTA ==================== */
.cta-section {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 520px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.cta-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.cta-input::placeholder { color: var(--text-light); }

.cta-trust {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-trust .check-icon {
    color: var(--primary);
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 2rem;
    background: var(--dark);
    border-top: 1px solid rgba(0, 180, 216, 0.08);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

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

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 12, 27, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-overlay.open { display: flex; }

.modal {
    background: var(--dark-blue);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 20px;
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.modal h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal .modal-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.modal h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.modal p, .modal li {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

.modal ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.modal li { margin-bottom: 0.3rem; }
.modal a { color: var(--primary-light); text-decoration: none; }
.modal a:hover { text-decoration: underline; }

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.modal-info-item {
    background: rgba(0, 180, 216, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    padding: 1rem 1.2rem;
}

.modal-info-item .info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.modal-info-item .info-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==================== FLOAT ELEMENTS ==================== */
.float-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.04;
}

.float-1 {
    width: 300px; height: 300px;
    background: var(--primary);
    top: 20%; right: -100px;
    animation: float 8s ease-in-out infinite;
}

.float-2 {
    width: 200px; height: 200px;
    background: #0077b6;
    bottom: 10%; left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ==================== CURSOR GLOW ==================== */
.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px; height: 2px;
    background: var(--text);
    transition: all 0.3s;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(2, 12, 27, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    gap: 2rem;
    animation: fadeIn 0.3s ease;
}

.nav-links.mobile-open a {
    font-size: 1.3rem;
}

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

/* ==================== LUCIDE ICONS ==================== */
[data-lucide] {
    width: 1em;
    height: 1em;
    stroke-width: 2;
    vertical-align: -0.125em;
}

.pain-icon [data-lucide],
.service-icon-wrapper [data-lucide],
.leadgen-card-icon [data-lucide] {
    width: 1.6em;
    height: 1.6em;
}

.check [data-lucide] {
    width: 1em;
    height: 1em;
    color: var(--primary);
}

.testimonial-stars [data-lucide] {
    width: 1em;
    height: 1em;
    fill: #f5a623;
    color: #f5a623;
}

.cta-trust .check-icon [data-lucide] {
    width: 1em;
    height: 1em;
}

/* ==================== GRADIENT BORDER GLOW ==================== */
@keyframes borderRotate {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.card-glow {
    position: relative;
    overflow: hidden;
}

.card-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 40%,
        var(--primary) 50%,
        transparent 60%
    );
    animation: borderRotate 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card-glow::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: var(--dark-card);
    z-index: -1;
}

/* ==================== HOVER TILT 3D ==================== */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

/* ==================== NUMBER GLOW PULSE ==================== */
@keyframes glowPulse {
    0% { text-shadow: 0 0 5px var(--primary-glow); }
    50% { text-shadow: 0 0 25px var(--primary-glow), 0 0 50px rgba(0, 180, 216, 0.15); }
    100% { text-shadow: 0 0 5px var(--primary-glow); }
}

.count-up.counted-done {
    animation: countBounce 0.5s ease, glowPulse 2s ease 0.5s 2;
}

/* ==================== COUNT-UP BOUNCE ==================== */
@keyframes countBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.15); }
    50% { transform: scale(0.95); }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links { display: none; }

    /* Hide decorative elements on mobile to prevent horizontal scroll */
    .hero-glow,
    .float-element,
    .cta-glow {
        display: none;
    }

    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

    /* Timeline: stack vertically on mobile */
    .process-timeline::before { left: 20px; }
    .process-timeline::after { left: 20px; }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .process-step-content {
        width: 100%;
        max-width: 100%;
    }

    /* Remove side borders and connection lines on mobile */
    .process-step:nth-child(odd) .process-step-content,
    .process-step:nth-child(even) .process-step-content {
        border-left: 3px solid var(--primary);
        border-right: none;
        margin-left: 0;
        margin-right: 0;
    }

    .process-step-content::before {
        display: none;
    }

    .process-step-number {
        left: 20px;
        transform: translateX(-50%) scale(0);
    }

    .process-step-number.pop-in {
        transform: translateX(-50%) scale(1);
    }

    /* Hero buttons column on small screens */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-info-grid { grid-template-columns: 1fr; }
    .modal { padding: 2rem; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 5rem 1.5rem;
    }
}
