:root {
    --bg-dark: #050507;
    --bg-card: #0e0e12;
    --text-main: #e2e2e2;
    --text-muted: #a0a0a0;
    --primary: #3b82f6;
    --primary-glow: #3b82f6aa;
    --secondary: #6366f1;
    --accent: #06b6d4;

    --font-main: 'Inter', sans-serif;

    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
    font-display: swap;
    /* Garantia para PageSpeed */
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    will-change: transform;
    transform: translate3d(-50%, -50%, 0);
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 7, 0.95);
}

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

/* Timeline - Responsive Redesign */
.timeline {
    position: relative;
    max-width: 100%;
    margin: 60px auto 0;
}

.timeline::before {
    /* Horizontal Line for Desktop */
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.timeline-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 1.1rem;
    box-shadow: 0 0 0 8px var(--bg-dark);
    /* Mask line behind */
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {

    /* Tablet/Mobile Breakpoint */
    .timeline::before {
        top: 0;
        left: 21px;
        width: 2px;
        height: 100%;
    }

    .timeline-steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
    }

    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

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

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

nav a:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: normal;
    text-align: center;
    max-width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

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

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s, transform 0.5s;
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: 0s;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at center, #13131f 0%, var(--bg-dark) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    /* Subtle effect */
}

.hero-content {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    z-index: 1;
    position: relative;
    /* Ensure it's above canvas */
}

.hero-text {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    animation: pulse-animation 2s infinite;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    /* White Gradient Effect */
    background: linear-gradient(180deg, #FFFFFF 0%, #71717a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-cta-group .btn {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 480px) {
    .hero-cta-group .btn {
        min-width: 100%;
    }
}

.trust-indicators {
    display: flex;
    gap: 30px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.ti-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ti-item i {
    color: var(--primary);
}

.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    position: relative;
    z-index: 10;
}

/* General Section Styles */
section {
    padding: 100px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

/* Ignorar content-visibility para a Hero para não atrasar LCP */
#hero {
    content-visibility: visible;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-header.center p {
    margin: 0 auto;
}

/* Problem Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.icon-box.warning {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.icon-box.primary {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.icon-box.secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--secondary);
}

.glass-card h3,
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.glass-card p,
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solutions */
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.service-card:not(.featured) .service-content {
    margin-bottom: 30px;
}

/* Simple Infographic for Bento Grid child cards */
.infographic-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-node-s {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-node-s i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.info-node-s span {
    flex: 1;
}

.dot-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.dot-status.green {
    color: #22c55e;
    background: currentColor;
}

.dot-status.blue {
    color: #3b82f6;
    background: currentColor;
}

.node-val {
    font-weight: 700;
    color: var(--primary);
}

/* Mini wave animation for "Fluxo de Dados" */
.mini-wave {
    display: flex;
    gap: 3px;
    height: 12px;
    align-items: center;
}

.mini-wave span {
    width: 3px;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    animation: wave-anim 1s ease-in-out infinite;
}

.mini-wave span:nth-child(2) {
    animation-delay: 0.2s;
}

.mini-wave span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave-anim {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1.2);
    }
}

.feature-list {
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-list i {
    color: var(--primary);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.link-btn:hover {
    gap: 12px;
}

.infographic-lp {
    height: 100%;
    min-height: 350px;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15), transparent 60%);
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.infographic-lp::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.info-node {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: slideIn 0.8s ease backwards;
}

.info-node:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-node.conversion {
    animation-delay: 0.1s;
}

.info-node.performance {
    animation-delay: 0.3s;
}

.info-node.mobile-optimal {
    animation-delay: 0.5s;
}

.node-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.node-content {
    flex: 1;
}

.node-title {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 24px;
}

.mini-chart .bar {
    width: 12px;
    height: var(--h);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: height 1s ease;
}

.mini-chart .bar.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Performance Bar */
.performance-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.performance-bar .fill {
    width: 95%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    animation: growWidth 1.5s ease;
}

/* Score Stars */
.score-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.8rem;
}

.node-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.node-value {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

/* Decorative Orbits */
.floating-orbit {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: rotate 10s linear infinite;
}

.floating-orbit.secondary {
    width: 300px;
    height: 300px;
    border-color: rgba(99, 102, 241, 0.05);
    animation-duration: 20s;
    animation-direction: reverse;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes growWidth {
    from {
        width: 0;
    }

    to {
        width: 95%;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* CTA Section */
.cta-section {
    padding: 0;
    margin-bottom: 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.whatsapp-pulse {
    background: white;
    color: var(--primary);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
}

.whatsapp-pulse:hover {
    transform: scale(1.05);
}

.cta-box small {
    display: block;
    margin-top: 16px;
    opacity: 0.8;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 20px;
    background: var(--bg-card);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
}

.footer-links h4,
.footer-socials h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations Keyframes */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}



/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    header nav,
    header .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        text-align: left;
    }

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

    .service-card.featured {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .infographic-lp {
        min-height: auto;
        padding: 20px 15px;
    }

    .info-node {
        padding: 12px 15px;
        gap: 10px;
    }

    .node-title {
        font-size: 0.65rem;
    }

    .node-value {
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .info-node {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .node-badge,
    .node-value {
        margin-left: auto;
    }

    .infographic-simple {
        padding: 15px 10px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.85);
    /* Slightly transparent background */
    backdrop-filter: blur(8px);
    z-index: 2100;
    /* Higher than header and mobile menu */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #13131f;
    /* Slightly lighter than page bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

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

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header .icon-box {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: 0.3s;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.input-wrapper input:focus+i {
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}