/* ==================================
   LION SOLUTIONS — Design System
   BrandBook v1.0 Compliant
   ================================== */

/* --- CSS Variables (BrandBook Colors) --- */
:root {
    --navy-black: #0B1120;
    --deep-navy: #172040;
    --lion-gold: #C8921A;
    --amber: #E8B840;
    --warm-white: #F5F1E8;
    --green: #2D7A4E;
    --text-muted: #8A8FA8;
    --card-bg: rgba(23, 32, 64, 0.6);
    --card-border: rgba(200, 146, 26, 0.15);
    --gold-glow: rgba(200, 146, 26, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-white);
    background-color: var(--navy-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

.text-gold {
    color: var(--lion-gold);
}

/* --- Badge --- */
.badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(200, 146, 26, 0.12);
    color: var(--amber);
    border: 1px solid rgba(200, 146, 26, 0.25);
}

.badge--small {
    font-size: 11px;
    padding: 4px 12px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--lion-gold), var(--amber));
    color: var(--navy-black);
    box-shadow: 0 4px 24px rgba(200, 146, 26, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 146, 26, 0.5);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 14px;
}

.btn--ghost {
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(245, 241, 232, 0.2);
}

.btn--ghost:hover {
    border-color: var(--lion-gold);
    color: var(--lion-gold);
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lion-gold);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: var(--warm-white);
}

/* ============================
   NAVBAR 
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 146, 26, 0.1);
    z-index: -1;
    pointer-events: none;
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

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

.navbar__brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--warm-white);
}

.navbar__links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.navbar__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lion-gold);
    transition: width var(--transition);
}

.navbar__links a:hover {
    color: var(--warm-white);
}

.navbar__links a:hover::after {
    width: 100%;
}

.navbar__cta {
    font-size: 14px;
    padding: 10px 24px;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--warm-white);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ============================
   HERO 
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 146, 26, 0.08) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.8;
}

.hero__subtitle strong {
    color: var(--warm-white);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(200, 146, 26, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero__logo-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 146, 26, 0.15) 0%, transparent 60%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--lion-gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================
   HERO VIDEO BACKGROUND
   ============================ */

/* Vídeo posicionado na metade direita, tamanho contido */
.hero__video {
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.15s ease;
}

/* Gradiente protege a leitura do texto à esquerda */
.hero__video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(11, 17, 32, 0.95) 0%,
        rgba(11, 17, 32, 0.80) 35%,
        rgba(11, 17, 32, 0.30) 60%,
        rgba(11, 17, 32, 0.05) 100%
    );
    pointer-events: none;
}

.hero__bg-glow       { z-index: 2; }
.hero__inner         { z-index: 2; }
.hero__scroll-indicator { z-index: 2; }

@media (prefers-reduced-motion: reduce) {
    .hero__video,
    .hero__video-overlay { display: none; }
}

@media (max-width: 768px) {
    /* Vídeo cobre toda a hero em mobile */
    .hero__video {
        right: auto;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* Gradiente vertical: mais opaco para garantir leitura */
    .hero__video-overlay {
        background: linear-gradient(
            to bottom,
            rgba(11, 17, 32, 0.96) 0%,
            rgba(11, 17, 32, 0.90) 55%,
            rgba(11, 17, 32, 0.70) 100%
        );
    }
}

/* ============================
   COMPARISON TABLE
   ============================ */
.compare {
    padding: 120px 0;
    background: var(--deep-navy);
}

.compare__table {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200, 146, 26, 0.12);
}

.compare__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(200, 146, 26, 0.07);
    position: relative;
    overflow: hidden;
}

.compare__row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 146, 26, 0.04), transparent 60%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 0;
}

.compare__row.row-visible::before {
    transform: scaleX(1);
}

/* Row animate (slide up + fade) */
.compare__row--animate {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.compare__row--animate.row-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header row */
.compare__row--header {
    background: rgba(11, 17, 32, 0.8);
    border-bottom: 2px solid rgba(200, 146, 26, 0.15);
}

.compare__row--header::before {
    display: none;
}

.compare__row--header .compare__col {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 20px 16px;
}

.compare__row--header .compare__col--highlight {
    color: var(--lion-gold);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

/* Footer row */
.compare__row--footer {
    background: rgba(11, 17, 32, 0.5);
    border-bottom: none;
    border-top: 2px solid rgba(200, 146, 26, 0.12);
}

.compare__row--footer::before {
    display: none;
}

/* Cells */
.compare__feature {
    padding: 18px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--warm-white);
    position: relative;
    z-index: 1;
}

.compare__col {
    padding: 18px 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Highlighted column (Lion Solutions) */
.compare__col--highlight {
    background: rgba(200, 146, 26, 0.06);
}

/* Status icons */
.icon-yes,
.icon-no,
.icon-warn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.icon-yes {
    background: rgba(45, 122, 78, 0.2);
    color: #4ADE80;
    border: 1px solid rgba(45, 122, 78, 0.3);
}

.icon-no {
    background: rgba(232, 93, 93, 0.15);
    color: #F87171;
    border: 1px solid rgba(232, 93, 93, 0.25);
}

.icon-warn {
    background: rgba(232, 184, 64, 0.15);
    color: var(--amber);
    border: 1px solid rgba(232, 184, 64, 0.25);
}

/* Text variants */
.compare__text-muted {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.compare__text-gold {
    font-size: 14px;
    color: var(--lion-gold);
    font-weight: 700;
}

/* Summary */
.compare__summary {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

.compare__summary--gold {
    color: var(--lion-gold);
    font-weight: 700;
    font-size: 13px;
}

/* ==========================================================================
   CTA Section (Contact Form)
   ========================================================================== */

.cta {
    padding: 100px 0;
    background: var(--navy-black);
    position: relative;
    overflow: hidden;
}

.cta__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta__left {
    max-width: 500px;
}

.cta__content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
}

.cta__content p {
    font-size: 18px;
    color: rgba(245, 241, 136, 0.7);
    margin-bottom: 40px;
}

.cta__founder {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.cta__founder-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 10%;
    border: 3px solid var(--warm-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: var(--navy-black);
    transition: transform 0.3s ease;
}

.cta__founder:hover .cta__founder-img {
    transform: scale(1.05);
}

.cta__founder-info strong {
    font-family: var(--font-header);
    font-size: 24px;
    color: var(--warm-white);
}

.cta__founder-info span {
    font-size: 14px;
    color: var(--lion-gold);
}

/* Form Styles */
.contact-form-container {
    background: var(--deep-navy);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(200, 146, 26, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(245, 241, 136, 0.5);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    background: #0B1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--warm-white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lion-gold);
    background: rgba(200, 146, 26, 0.05);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-footer {
    text-align: center;
    margin-top: 10px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(245, 241, 136, 0.4);
    margin-bottom: 8px;
}

.form-disclaimer {
    font-size: 12px;
    color: rgba(245, 241, 136, 0.3);
}

.form-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(245, 241, 136, 0.2);
    margin: 10px 0;
}

.form-separator::before,
.form-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(245, 241, 136, 0.1);
}

.form-separator span {
    padding: 0 10px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(200, 146, 26, 0.3);
    color: var(--lion-gold);
}

.btn--outline:hover {
    background: rgba(200, 146, 26, 0.1);
    border-color: var(--lion-gold);
}

/* ============================
   PAIN SECTION
   ============================ */
.pain {
    padding: 120px 0;
    background: var(--navy-black);
}

.pain__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pain__text {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.pain__text strong {
    color: #E85D5D;
    font-weight: 500;
}

.pain__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.pain__card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 146, 26, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pain__card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--lion-gold);
    transition: transform var(--transition);
}

.pain__card:hover .pain__card-icon {
    transform: scale(1.1);
}

.pain__card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--warm-white);
}

.pain__card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================
   SOLUTION SECTION
   ============================ */
.solution {
    padding: 120px 0;
    background: var(--deep-navy);
}

.solution__subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: -40px auto 60px;
    line-height: 1.8;
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution__card {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(200, 146, 26, 0.1);
    border-radius: 16px;
    padding: 40px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.solution__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lion-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.solution__card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 146, 26, 0.25);
}

.solution__card:hover::before {
    opacity: 1;
}

.solution__card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: var(--lion-gold);
    margin-bottom: 24px;
    transition: transform var(--transition);
}

.solution__card:hover .solution__card-icon {
    transform: scale(1.1);
}

.solution__card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--warm-white);
}

.solution__card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
    padding: 120px 0;
    background: var(--navy-black);
}

.steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lion-gold), var(--amber));
    color: var(--navy-black);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200, 146, 26, 0.3);
}

.step__content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--warm-white);
}

.step__content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.step__connector {
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, var(--lion-gold), rgba(200, 146, 26, 0.1));
    margin-left: 27px;
}

/* ============================
   PORTFOLIO
   ============================ */
.portfolio {
    padding: 120px 0;
    background: var(--deep-navy);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio__card {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(200, 146, 26, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.portfolio__card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 26, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio__card-visual {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-black), var(--deep-navy));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__card-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(200, 146, 26, 0.1);
    border: 1px solid rgba(200, 146, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lion-gold);
    transition: transform var(--transition);
}

.portfolio__card:hover .portfolio__card-placeholder {
    transform: scale(1.1);
}

.portfolio__card-info {
    padding: 28px;
}

.portfolio__card-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 12px 0 8px;
    color: var(--warm-white);
}

.portfolio__card-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================
   FAQ
   ============================ */
.faq {
    padding: 120px 0;
    background: var(--navy-black);
}

.faq__list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    border: 1px solid rgba(200, 146, 26, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item.active {
    border-color: rgba(200, 146, 26, 0.3);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: var(--card-bg);
    border: none;
    color: var(--warm-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
    text-align: left;
}

.faq__question:hover {
    background: rgba(23, 32, 64, 0.8);
}

.faq__icon {
    font-size: 24px;
    color: var(--lion-gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
    padding: 120px 0;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 146, 26, 0.06) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.final-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.final-cta__content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    margin-bottom: 20px;
}

.final-cta__content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

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

.final-cta__image {
    display: flex;
    justify-content: center;
    position: relative;
}

.final-cta__founder {
    width: 360px;
    height: 440px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    border: 2px solid rgba(200, 146, 26, 0.2);
    position: relative;
    z-index: 2;
}

.final-cta__founder-glow {
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(200, 146, 26, 0.1) 0%, transparent 60%);
    z-index: 1;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 48px 0;
    background: var(--navy-black);
    border-top: 1px solid rgba(200, 146, 26, 0.1);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer__tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--lion-gold);
    text-transform: uppercase;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--warm-white);
}

.footer__copy p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero__content {
        align-items: center;
    }
    .hero__subtitle {
        margin: 0 auto;
    }
    .hero__logo-wrapper {
        width: 280px;
        height: 280px;
    }
    .hero__logo {
        width: 200px;
        height: 200px;
    }
    .pain__cards,
    .solution__grid,
    .portfolio__grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta__left {
        max-width: 100%;
        text-align: center;
    }

    .cta__founder {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .contact-form-container {
        padding: 24px;
    }
    .final-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .final-cta__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .final-cta__content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .navbar__links,
    .navbar__cta {
        display: none;
    }
    .navbar__toggle {
        display: flex;
    }
    .navbar__links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
    }
    .navbar__links.active a {
        font-size: 24px;
        color: var(--warm-white);
    }
    .navbar__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero {
        padding: 100px 0 60px;
        min-height: 100dvh;
    }
    /* Comparison Table Responsive */
    .compare__table {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .compare__row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    .compare__feature {
        padding: 14px 16px;
        font-size: 13px;
    }
    .compare__col {
        padding: 14px 8px;
    }
    .compare__row--header .compare__col {
        font-size: 12px;
        padding: 16px 8px;
    }
    .compare__row--header .compare__col--highlight {
        font-size: 13px;
    }
    .compare__summary {
        font-size: 10px;
    }
    .compare__summary--gold {
        font-size: 11px;
    }

    /* Extra-small screens: tighten header to prevent wrapping */
    @media (max-width: 420px) {
        .compare__row {
            grid-template-columns: 1fr 0.8fr 0.8fr 1.1fr;
        }
        .compare__row--header .compare__col {
            font-size: 10px;
            padding: 14px 4px;
        }
        .compare__row--header .compare__col--highlight {
            font-size: 11px;
        }
        .compare__row--header .badge--small {
            font-size: 9px;
            padding: 2px 6px;
            letter-spacing: 0.8px;
        }
        .compare__feature {
            font-size: 12px;
            padding: 12px 10px;
        }
        .compare__col {
            padding: 12px 4px;
        }
    }

    .icon-yes, .icon-no, .icon-warn {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .pain__cards,
    .solution__grid,
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
    .pain,
    .solution,
    .how-it-works,
    .portfolio,
    .faq,
    .final-cta {
        padding: 80px 0;
    }
    .step {
        gap: 20px;
    }
    .step__number {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .step__connector {
        margin-left: 21px;
        height: 32px;
    }
    .final-cta__founder {
        width: 280px;
        height: 340px;
    }
}
