/* ==========================================================================
   VAGAJET DESIGN SYSTEM - HIGH-PERFORMANCE TECH DARK MODE
   Inspirado no melhor do VagaNexo (Petrol/Mint/Lime) + JobOps (SaaS Dashboard)
   ========================================================================== */

:root {
    /* Palette: Deep Petrol Navy & Electric Accents */
    --bg-dark: #060c14;
    --bg-surface: #0a1422;
    --bg-card: rgba(14, 26, 43, 0.75);
    --bg-card-hover: rgba(20, 36, 60, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 242, 254, 0.35);

    /* Electric Identity Accents */
    --primary: #00f2fe;
    --primary-glow: rgba(0, 242, 254, 0.3);
    --secondary: #4facfe;
    --accent-mint: #35dfbf;
    --accent-lime: #c8f451;
    --accent-purple: #7f00ff;
    --success: #10b981;

    /* Text Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions & Shadows */
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --card-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-color);
    --glow-shadow: 0 0 35px -5px rgba(0, 242, 254, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.35;
}

.orb-primary {
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.orb-secondary {
    top: 35%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

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

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

/* Section Header Structure */
.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-mint) 100%);
    color: #060c14;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.45);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-lg {
    padding: 1.05rem 2.1rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.5);
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0, 242, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(6, 12, 20, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: -0.01em;
}

.brand-logo-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-mint) 100%);
    color: #060c14;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.brand-dot {
    color: var(--accent-lime);
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    padding: 5.5rem 0 4rem;
    text-align: center;
}

.hero-container {
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.8rem;
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-mint);
    box-shadow: 0 0 10px var(--accent-mint);
    animation: blink 1.6s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2.2rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--text-main);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-strip {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-check {
    color: var(--accent-mint);
    font-weight: 800;
}

/* Product Showcase Stage (Inspirado no App Window do VagaNexo) */
.product-stage {
    margin: 1.5rem auto 0;
    max-width: 860px;
    text-align: left;
}

.stage-window {
    background: #0b1523;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: var(--card-shadow), var(--glow-shadow);
    overflow: hidden;
}

.window-topbar {
    background: #111d2e;
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: #e2e8f0;
}

.live-pulse-badge {
    font-size: 0.75rem;
    color: var(--accent-mint);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.live-pulse-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-mint);
    display: inline-block;
    animation: blink 1.4s infinite;
}

/* Live Job Card (Hero Feature) */
.live-job-card {
    background: #101c2c;
    margin: 1.4rem;
    padding: 1.6rem;
    border-radius: 16px;
    border: 1px solid rgba(53, 223, 191, 0.25);
    background: linear-gradient(180deg, rgba(53, 223, 191, 0.05) 0%, #101c2c 100%);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.source-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.source-tag {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.source-gupy {
    background: rgba(0, 180, 216, 0.15);
    color: #00b4d8;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.source-lever {
    background: rgba(255, 112, 67, 0.15);
    color: #ff7043;
    border: 1px solid rgba(255, 112, 67, 0.3);
}

.source-linkedin {
    background: rgba(10, 102, 194, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(10, 102, 194, 0.3);
}

.source-fast {
    background: rgba(200, 244, 81, 0.15);
    color: var(--accent-lime);
    border: 1px solid rgba(200, 244, 81, 0.3);
}

.job-role-title {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

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

.job-score-box {
    text-align: right;
    background: rgba(53, 223, 191, 0.12);
    border: 1px solid rgba(53, 223, 191, 0.3);
    padding: 0.5rem 0.9rem;
    border-radius: 12px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-mint);
    line-height: 1;
}

.score-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.job-ai-explanation {
    background: rgba(0, 0, 0, 0.35);
    border-left: 3px solid var(--accent-mint);
    padding: 0.85rem 1.1rem;
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.3rem;
}

.exp-icon {
    font-size: 1.1rem;
}

.exp-text {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.82rem;
    color: #94a3b8;
}

/* Secondary Matches Mini Grid */
.secondary-matches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.4rem 1.4rem;
}

.compact-match {
    background: #0f1826;
    border: 1px solid var(--border-color);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compact-match strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0.3rem 0 0.15rem;
}

.compact-match small {
    color: var(--text-dim);
    font-size: 0.78rem;
}

.compact-score {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 242, 254, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-family: var(--font-mono);
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
}

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

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    border-radius: 18px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}

.highlight-box {
    border-color: var(--border-highlight);
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.08) 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 30px -10px rgba(0, 242, 254, 0.25);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.feature-title {
    font-size: 1.28rem;
    margin-bottom: 0.8rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
}

.comparison-table-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th {
    padding: 1.4rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.col-manual {
    color: var(--text-dim);
    width: 35%;
}

.col-jobot {
    color: var(--accent-mint);
    width: 40%;
    background: rgba(53, 223, 191, 0.05);
}

.comparison-table td {
    padding: 1.3rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.comparison-table td strong {
    color: #ffffff;
}

.col-jobot-highlight {
    background: rgba(53, 223, 191, 0.04);
    color: #ffffff !important;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.2rem;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.featured-card {
    border-color: var(--accent-mint);
    box-shadow: 0 10px 40px -10px rgba(53, 223, 191, 0.25);
    background: linear-gradient(180deg, rgba(53, 223, 191, 0.08) 0%, var(--bg-card) 100%);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-lime) 100%);
    color: #060c14;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(53, 223, 191, 0.4);
}

.card-badge-muted {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 0.2rem;
    color: var(--text-muted);
}

.amount {
    font-size: 3.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.4rem;
}

.trial-tag {
    font-size: 0.85rem;
    color: var(--accent-mint);
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.discount-tag {
    font-size: 0.85rem;
    color: var(--accent-lime);
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.2rem;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.plan-features li .check {
    flex-shrink: 0;
    color: var(--accent-mint);
    font-weight: 800;
    margin-top: 0.15rem;
}

.plan-features li .feature-text {
    flex: 1;
    display: inline;
}

.guarantee-text {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 0.9rem;
}

.direct-pay-link {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    color: var(--accent-mint);
    text-decoration: none;
    margin-top: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.direct-pay-link:hover {
    color: var(--accent-lime);
    text-decoration: underline;
}

/* Modal Overlay & Lead Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 12, 20, 0.88);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: #0d1726;
    border: 1px solid var(--border-highlight);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.2);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: translateY(20px) scale(0.96); }
    to { transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #94a3b8;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-badge {
    font-size: 0.78rem;
    color: var(--accent-mint);
    background: rgba(53, 223, 191, 0.1);
    border: 1px solid rgba(53, 223, 191, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

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

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.form-hint {
    display: block;
    font-size: 0.76rem;
    color: #64748b;
    margin-top: 0.35rem;
}

.modal-guarantee {
    text-align: center;
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.6rem;
    background: none;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent-mint);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.4rem;
    transition: max-height 0.35s ease-in-out;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 4rem 0 6rem;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(53, 223, 191, 0.15) 0%, rgba(127, 0, 255, 0.2) 100%);
    border: 1px solid rgba(53, 223, 191, 0.35);
    border-radius: 28px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px -10px rgba(53, 223, 191, 0.2);
}

.banner-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: #04080e;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-slogan {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .secondary-matches-grid {
        grid-template-columns: 1fr;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .modal-card {
        padding: 1.8rem;
    }
    .footer-meta {
        flex-direction: column;
        gap: 0.4rem;
    }
}
