/* ==========================================
   SYNVAL JORDÃO - LANDING PAGE V2
   Bold, Modern & Futuristic Design
   ========================================== */

/* ==========================================
   VARIABLES
   ========================================== */
:root {
    /* Colors - Electric Theme */
    --bg-main: #050508;
    --bg-card: #0c0c12;
    --bg-elevated: #12121a;

    /* Primary - Electric Blue/Cyan */
    --primary: #00f0ff;
    --primary-glow: rgba(0, 240, 255, 0.3);
    --primary-dim: rgba(0, 240, 255, 0.1);

    /* Secondary - Vibrant Purple */
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.3);

    /* Accent - Electric Orange */
    --accent: #ff6b35;
    --accent-glow: rgba(255, 107, 53, 0.3);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Status */
    --green: #10b981;
    --red: #ef4444;

    /* WhatsApp */
    --whatsapp: #25d366;

    /* Spacing */
    --container: 1200px;
    --gap: 1.5rem;

    /* Transitions */
    --fast: 150ms ease;
    --smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-dim);
    border: 1px solid var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.text-red {
    color: var(--red);
}

.text-green {
    color: var(--green);
}

/* Grain overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--smooth);
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-mark {
    font-size: 1.5rem;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--fast);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--bg-main);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--smooth);
}

.nav-cta:hover {
    background: #00d4e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--smooth);
}

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

    .nav-toggle {
        display: flex;
    }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--gap) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 30% 20%, var(--primary-glow) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, var(--secondary-glow) 0%, transparent 40%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

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

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-sub strong {
    color: var(--text-primary);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.metric-card {
    position: absolute;
    background: rgba(12, 12, 18, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.metric-card.metric-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.metric-card.metric-2 {
    top: 45%;
    right: 5%;
    animation-delay: 1s;
}

.metric-card.metric-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

/* Marquee */
.hero-marquee {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-main);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: var(--smooth);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

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

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--whatsapp);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: var(--smooth);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

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

/* ==========================================
   PAIN SECTION
   ========================================== */
.pain-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.pain-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--smooth);
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-5px);
}

.pain-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.pain-bottom {
    text-align: center;
}

.pain-insight {
    font-size: 1.25rem;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   AUTHORITY SECTION
   ========================================== */
.authority-section {
    padding: 6rem 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.authority-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.authority-text strong {
    color: var(--text-primary);
}

.authority-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.authority-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.authority-list svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

/* Chart Container */
.chart-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.chart-live {
    font-size: 0.75rem;
    color: var(--green);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
}

.bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--primary) 0%, rgba(0, 240, 255, 0.3) 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    opacity: 0.4;
    transition: var(--smooth);
}

.bar.active {
    opacity: 1;
    box-shadow: 0 0 30px var(--primary-glow);
}

.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .authority-grid {
        grid-template-columns: 1fr;
    }

    .authority-visual {
        order: -1;
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    position: relative;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--smooth);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.1);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, var(--bg-main) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--bg-main);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border: 1px solid var(--primary);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card>p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-card>p strong {
    color: var(--text-primary);
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section {
    padding: 6rem 0;
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--smooth);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.why-num {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--smooth);
}

.testimonial:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial>p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial strong {
    color: var(--text-primary);
}

.testimonial footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.info {
    display: flex;
    flex-direction: column;
}

.info cite {
    font-weight: 600;
    font-style: normal;
    font-size: 0.95rem;
}

.info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   URGENCY
   ========================================== */
.urgency-section {
    padding: 6rem 0;
}

.urgency-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    position: relative;
}

.urgency-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--red);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.urgency-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-box>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.urgency-box>p strong {
    color: var(--text-primary);
}

.urgency-counter {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.counter-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.counter-sep {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-content>p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.final-content>p strong {
    color: var(--text-primary);
}

.form-card {
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-field input {
    padding: 1rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--smooth);
}

.form-field input::placeholder {
    color: var(--text-muted);
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-main);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: var(--smooth);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

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

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

.form-note svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 968px) {
    .final-grid {
        grid-template-columns: 1fr;
    }

    .final-content {
        text-align: center;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--fast);
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--smooth);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-main);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--smooth);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================
   CONVERSION OPTIMIZATION ELEMENTS
   ========================================== */

/* Hero CTA Bar */
.hero-cta-bar {
    background: rgba(0, 240, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.cta-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* Metrics Disclaimer */
.metrics-disclaimer {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* Pain CTA */
.pain-cta {
    margin-top: 2rem;
}

/* Services CTA with multiple buttons */
.services-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Urgency Consequence */
.urgency-consequence {
    font-size: 0.9rem;
    color: var(--red);
    font-weight: 500;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Qualification Box */
.qualification-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.qualification-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.qualification-box strong {
    color: var(--text-primary);
}

/* Form Value Note */
.form-value-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .cta-bar-content {
        flex-direction: column;
    }

    .cta-bar-content .btn-primary,
    .cta-bar-content .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

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

    .services-cta .btn-primary,
    .services-cta .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .metrics-disclaimer {
        position: relative;
        bottom: auto;
        margin-top: 1rem;
    }
}