/* ==========================================================
   css/landing.css — Estilos Exclusivos da Landing Page ObraSync
   ========================================================== */

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

/* =========================================
   VARIÁVEIS & RESET DA LANDING PAGE
========================================= */
:root {
    --lp-amber: #f59e0b;
    --lp-amber-dark: #d97706;
    --lp-amber-light: #fef3c7;
    --lp-amber-glow: rgba(245, 158, 11, 0.18);
    --lp-dark: #0f172a;
    --lp-dark-2: #1e293b;
    --lp-dark-3: #334155;
    --lp-slate: #64748b;
    --lp-light: #f8fafc;
    --lp-white: #ffffff;
    --lp-border: rgba(226, 232, 240, 0.8);
    --lp-radius-sm: 10px;
    --lp-radius: 16px;
    --lp-radius-lg: 24px;
    --lp-radius-xl: 32px;
    --lp-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --lp-shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.04);
    --lp-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.06);
    --lp-shadow-amber: 0 8px 30px rgba(245, 158, 11, 0.30);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.landing-page {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--lp-white);
    color: var(--lp-dark-3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 72px;
    overflow-x: hidden;
}

/* =========================================
   UTILITÁRIOS GLOBAIS
========================================= */
.text-amber {
    color: var(--lp-amber) !important;
}

.bg-amber {
    background-color: var(--lp-amber) !important;
}

.bg-dark-lp {
    background-color: var(--lp-dark) !important;
}

.bg-dark2 {
    background-color: var(--lp-dark-2) !important;
}

/* Scroll-reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Badge pill */
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lp-amber-light);
    color: var(--lp-amber-dark);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    text-transform: uppercase;
}

/* Section label */
.section-label {
    display: block;
    color: var(--lp-amber);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* =========================================
   NAVBAR
========================================= */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 72px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.lp-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-navbar .navbar-brand i {
    color: var(--lp-amber);
    font-size: 1.2rem;
}

.lp-navbar .navbar-brand .brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-top: 1px;
}

.lp-nav-link {
    color: rgba(255, 255, 255, 0.65) !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 0.5rem 0.9rem !important;
    border-radius: 8px;
    text-decoration: none;
}

.lp-nav-link:hover {
    color: white !important;
}

.btn-lp-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    border-radius: 10px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-lp-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-lp-cta {
    background: var(--lp-amber);
    border: none;
    color: var(--lp-dark) !important;
    border-radius: 10px;
    padding: 0.5rem 1.3rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lp-cta:hover {
    background: var(--lp-amber-dark);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    transform: translateY(-1px);
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a2540 55%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
}

/* Decorative background elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: white;
}

.hero-title .highlight {
    color: var(--lp-amber);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    font-weight: 400;
}

/* Hero Lead Form */
.hero-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--lp-radius-lg);
    padding: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-form-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.hero-form-card p.form-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}

.hero-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--lp-amber);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
    color: white;
    outline: none;
}

.hero-form-card .form-select option {
    background: #1e293b;
    color: white;
}

.hero-form-card label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.btn-hero-submit {
    width: 100%;
    background: var(--lp-amber);
    color: var(--lp-dark);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem;
    border: none;
    border-radius: 12px;
    box-shadow: var(--lp-shadow-amber);
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-hero-submit:hover {
    background: var(--lp-amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.40);
}

.btn-hero-submit:active {
    transform: translateY(0);
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
    justify-content: center;
}

/* Hero Stats */
.hero-stat {
    text-align: center;
    padding: 8px 0;
}

.hero-stat .stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}

.hero-stat .stat-num span {
    color: var(--lp-amber);
}

.hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

/* =========================================
   SOCIAL PROOF BAR
========================================= */
.trust-bar {
    background: var(--lp-light);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 22px 0;
}

.trust-bar-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lp-slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo i {
    font-size: 1.1rem;
}

/* =========================================
   DOR/PROBLEMA → SOLUÇÃO
========================================= */
.problem-section {
    background: var(--lp-white);
    padding: 100px 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    background: var(--lp-light);
    transition: all 0.3s;
}

.problem-item:hover {
    border-color: #fca5a5;
    background: #fff5f5;
}

.problem-icon {
    width: 44px;
    height: 44px;
    background: #fee2e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.problem-item h6 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--lp-dark);
    margin-bottom: 3px;
}

.problem-item p {
    font-size: 0.85rem;
    color: var(--lp-slate);
    margin: 0;
}

.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.solution-arrow .arrow-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--lp-amber), transparent);
}

.solution-arrow i {
    color: var(--lp-amber);
    font-size: 1.5rem;
}

/* =========================================
   FUNCIONALIDADES — FINANCEIRO (dark)
========================================= */
.financial-section {
    background: var(--lp-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.financial-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(245, 158, 11, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.financial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--lp-radius);
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.financial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-amber), var(--lp-amber-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.financial-card:hover::before {
    transform: scaleX(1);
}

.financial-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.financial-card .fin-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--lp-amber);
    margin-bottom: 20px;
}

.financial-card h5 {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.financial-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================================
   FUNCIONALIDADES — OPERACIONAL (light)
========================================= */
.operations-section {
    background: var(--lp-light);
    padding: 100px 0;
}

.ops-card {
    background: white;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.ops-card:hover {
    border-color: var(--lp-amber);
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-6px);
}

.ops-icon {
    width: 52px;
    height: 52px;
    background: var(--lp-amber-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--lp-amber-dark);
    margin-bottom: 18px;
}

.ops-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--lp-dark);
    margin-bottom: 8px;
}

.ops-card p {
    font-size: 0.875rem;
    color: var(--lp-slate);
    line-height: 1.65;
    margin: 0;
}

/* =========================================
   APP MOBILE
========================================= */
.app-section {
    background: white;
    padding: 100px 0;
}

.app-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--lp-dark-3);
}

.app-checklist li i {
    color: #22c55e;
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.app-checklist li strong {
    color: var(--lp-dark);
}

.phone-mockup {
    background: var(--lp-dark);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.05);
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    z-index: 2;
}

.phone-mockup img {
    border-radius: 28px;
    width: 100%;
    display: block;
}

/* =========================================
   TESTEMUNHOS
========================================= */
.testimonials-section {
    background: var(--lp-light);
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--lp-amber);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--lp-amber);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

.testimonial-card .stars {
    color: var(--lp-amber);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testimonial-card .body {
    font-size: 0.95rem;
    color: var(--lp-dark-3);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 22px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-amber), var(--lp-amber-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card .author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--lp-dark);
}

.testimonial-card .author-role {
    font-size: 0.78rem;
    color: var(--lp-slate);
}

/* =========================================
   PRICING
========================================= */
.pricing-section {
    background: white;
    padding: 100px 0;
}

.pricing-card {
    background: var(--lp-light);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-xl);
    padding: 38px 32px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-6px);
}

.pricing-card.featured {
    background: var(--lp-dark);
    border-color: var(--lp-amber);
    box-shadow: var(--lp-shadow-amber), 0 20px 60px rgba(15, 23, 42, 0.2);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-amber);
    color: var(--lp-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-slate);
    margin-bottom: 10px;
}

.pricing-card.featured .pricing-plan-name {
    color: var(--lp-amber);
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing-price .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-dark);
    padding-bottom: 6px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--lp-dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.85rem;
    color: var(--lp-slate);
    padding-bottom: 8px;
}

.pricing-card.featured .pricing-price .currency,
.pricing-card.featured .pricing-price .amount {
    color: white;
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-description {
    font-size: 0.85rem;
    color: var(--lp-slate);
    margin-bottom: 24px;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-divider {
    border-color: rgba(0, 0, 0, 0.07);
    margin: 20px 0;
}

.pricing-card.featured .pricing-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--lp-dark-3);
    padding: 7px 0;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li i.fa-check {
    color: #22c55e;
    font-size: 0.8rem;
    margin-top: 3px;
}

.pricing-features li i.fa-xmark {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 3px;
}

.pricing-features li.dimmed {
    opacity: 0.45;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--lp-radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-pricing-outline {
    border: 2px solid var(--lp-border);
    color: var(--lp-dark);
    background: white;
}

.btn-pricing-outline:hover {
    border-color: var(--lp-amber);
    color: var(--lp-amber-dark);
    background: var(--lp-amber-light);
}

.btn-pricing-amber {
    background: var(--lp-amber);
    color: var(--lp-dark);
    border: 2px solid var(--lp-amber);
    box-shadow: var(--lp-shadow-amber);
}

.btn-pricing-amber:hover {
    background: var(--lp-amber-dark);
    border-color: var(--lp-amber-dark);
    color: var(--lp-dark);
    transform: translateY(-1px);
}

/* =========================================
   FAQ
========================================= */
.faq-section {
    background: var(--lp-light);
    padding: 100px 0;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--lp-border) !important;
    border-radius: var(--lp-radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: white !important;
    transition: box-shadow 0.2s;
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--lp-shadow);
}

.faq-accordion .accordion-button {
    background: white !important;
    color: var(--lp-dark) !important;
    font-weight: 700;
    font-size: 0.97rem;
    padding: 20px 24px;
    border-radius: var(--lp-radius) !important;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--lp-amber-dark) !important;
    background: white !important;
    border-bottom: 1px solid var(--lp-border) !important;
    border-radius: var(--lp-radius) var(--lp-radius) 0 0 !important;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59e0b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-accordion .accordion-body {
    padding: 20px 24px;
    font-size: 0.92rem;
    color: var(--lp-slate);
    line-height: 1.75;
}

/* =========================================
   CTA FINAL
========================================= */
.cta-final {
    background: linear-gradient(135deg, var(--lp-dark) 0%, #1a2540 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-final h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.urgency-badge i {
    color: #ef4444;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lp-amber);
    color: var(--lp-dark);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.35);
    transition: all 0.25s ease;
}

.btn-cta-final:hover {
    background: var(--lp-amber-dark);
    color: var(--lp-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(245, 158, 11, 0.45);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.2s;
}

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

/* =========================================
   FOOTER
========================================= */
.lp-footer {
    background: #080c17;
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 10px;
}

.footer-brand i {
    color: var(--lp-amber);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--lp-amber);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 40px 0 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--lp-amber);
}

/* =========================================
   COOKIE BANNER
========================================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

#cookie-banner.visible {
    transform: translateY(0);
}

#cookie-banner p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.55;
}

#cookie-banner a {
    color: var(--lp-amber);
    text-decoration: none;
    font-weight: 600;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

.btn-cookie-accept {
    background: var(--lp-amber);
    color: var(--lp-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: var(--lp-amber-dark);
}

.btn-cookie-essential {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cookie-essential:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

/* Cookie Preferences Modal */
#cookie-modal .modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: white;
}

#cookie-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

#cookie-modal .modal-title {
    color: white;
    font-weight: 800;
}

#cookie-modal .modal-footer {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
}

.cookie-toggle-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-toggle-row:last-child {
    border-bottom: none;
}

.cookie-toggle-info h6 {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.cookie-toggle-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.form-check-input:checked {
    background-color: var(--lp-amber) !important;
    border-color: var(--lp-amber) !important;
}

/* =========================================
   LEAD FORM SUCCESS
========================================= */
.form-success {
    text-align: center;
    padding: 30px 20px;
    display: none;
}

.form-success .success-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #22c55e;
    margin: 0 auto 16px;
}

.form-success h4 {
    color: white;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin: 0;
}

/* =========================================
   SECTION HEADINGS
========================================= */
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--lp-dark);
    line-height: 1.15;
}

.section-heading.light {
    color: white;
}

.section-sub {
    font-size: 1rem;
    color: var(--lp-slate);
    line-height: 1.7;
    max-width: 620px;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.55);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-form-card {
        margin-top: 40px;
    }

    .lp-navbar .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        padding: 16px;
        margin-top: 8px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

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

    .hero-form-card {
        padding: 24px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

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

    #cookie-banner .d-flex {
        flex-direction: column;
        gap: 12px !important;
    }

    .btn-cookie-accept,
    .btn-cookie-essential {
        width: 100%;
        text-align: center;
    }
}