:root {
    --bg-dark: #0f1115;
    --bg-card: #181b21;
    --bg-lighter: #232730;

    --text-primary: #ffffff;
    --text-secondary: #b0b4c0;
    --text-accent: #e5c07b;
    /* Gold-ish for premium feel */

    --primary: #d4af37;
    /* Gold as the new primary technical/premium accent */
    --primary-dark: #b8860b;
    --accent: #3b82f6;
    /* Keep blue for very subtle specific technical icons only, if needed */
    --gold: #d4af37;

    --success: #10b981;
    --danger: #ef4444;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;

    --max-width: 1200px;
    --radius: 12px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary);
}

.highlight-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-green {
    background: #0d9668;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(13, 150, 104, 0.39);
}

.btn-green:hover {
    background: #059669;
    transform: translateY(-1px);
}


.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-sm:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-box {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-accent);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-item svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.section-header {
    margin-bottom: 4rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin-top: 1rem;
    border-radius: 2px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.problem-list li svg {
    color: var(--danger);
}

.problem-card {
    background: var(--bg-lighter);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.alert-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.alert-box svg {
    color: var(--accent);
    flex-shrink: 0;
}

.alert-box p {
    margin: 0;
    color: var(--text-accent);
    font-style: italic;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
}

.pre-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.method-card-main {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius);
}

.important-note {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.important-note svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.important-note div {
    text-align: left;
}

.important-note strong {
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.important-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
}

.highlight-step {
    background: rgba(212, 175, 55, 0.03);
}

.solution-bottom-text {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* Comparison */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-col {
    padding: 2rem;
    border-radius: var(--radius);
}

.does {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.does-not {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.comparison-col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.does h3 svg {
    color: var(--primary);
}

.does-not h3 svg {
    color: var(--danger);
}

.comparison-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.comparison-col li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
}

.comparison-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
}

/* Audience */
.audience-section {
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    padding: 2rem;
    background: var(--bg-lighter);
    border-radius: var(--radius);
}

.audience-card ul {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audience-card li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.positive li svg {
    color: var(--primary);
}

.negative li svg {
    color: var(--danger);
}

/* Uses */
.uses-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.use-item {
    border-left: 2px solid var(--primary);
    padding-left: 1.5rem;
}

.use-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}


.use-item p {
    margin-bottom: 0;
}

.uses-quote-box {
    margin-top: 4rem;
    background-color: var(--bg-lighter);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.uses-quote-box p {
    color: #ffffff;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .uses-quote-box p {
        font-size: 1.2rem;
    }
}

/* Kit Contents */
.kit-contents-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.content-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-icon svg {
    width: 24px;
    height: 24px;
}

.content-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.content-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Revamped Premium Offer */
.offer-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #1e2229 0%, #0c0e12 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.kit-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

.visual-benefits {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.v-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.v-benefit svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.offer-card-call-to-action {
    background: #181b21;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.offer-urgency-pill {
    display: flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 2rem;
    width: fit-content;
}

.urgency-label {
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-right: 12px;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.1rem;
    padding-right: 12px;
}

.urgency-timer svg {
    width: 16px;
    height: 16px;
}

.offer-card-call-to-action h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.offer-subtitle-cta {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.price-container {
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
}

.discount-seal {
    position: absolute;
    top: -15px;
    right: -10px;
    background: linear-gradient(135deg, #0d9668 0%, #059669 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    transform: rotate(8deg);
    box-shadow: 0 10px 25px rgba(13, 150, 104, 0.4);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.price-old {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price-new {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.price-new .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-new .value {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
}

.price-new .cents {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-microcopy {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 1rem;
    border-left: 2px solid var(--primary);
    padding-left: 12px;
}

.price-full {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.btn-xl {
    padding: 18px 30px;
    font-size: 1.15rem;
}

.payment-methods-safe {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.pay-method {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pay-method svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.guarantee-footer {
    display: flex;
    gap: 12px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    text-align: left;
}

.guarantee-footer svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.guarantee-footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .offer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-card-call-to-action {
        padding: 2rem;
    }

    .price-new .value {
        font-size: 4rem;
    }
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-dark);
}

.faq-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-lighter);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* Footer */
footer {
    padding: 4rem 0;
    background: black;
    text-align: center;
    color: var(--text-secondary);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .comparison-grid,
    .audience-grid,
    .offer-content {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 5px 0;
    }

    .logo {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .nav-content .btn-sm {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero {
        padding-top: 100px;
    }

    .offer-content {
        padding: 1.5rem;
    }

    .btn-xl,
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Closing Section */
.closing-section {
    padding: 120px 0;
    background-color: #111827;
    /* Dark Navy matches image */
    color: #ffffff;
}

.closing-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.closing-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.closing-quote-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.closing-quote-box p {
    font-size: 1.25rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

/* Green Button */
.btn-green {
    background-color: #0d9668;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(13, 150, 104, 0.2), 0 2px 4px -1px rgba(13, 150, 104, 0.1);
}

.btn-green:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 150, 104, 0.3), 0 4px 6px -2px rgba(13, 150, 104, 0.1);
}

.btn-green svg {
    width: 20px;
    height: 20px;
}


.closing-pricing-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
}

.closing-pricing-info strong {
    color: #ffffff;
}

/* Site Footer */
.site-footer {
    background-color: #0f1218;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-logo svg {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}


@media (max-width: 768px) {
    .closing-section h2 {
        font-size: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Standalone Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.guarantee-card-standalone {
    background-color: var(--bg-card);
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.guarantee-card-standalone h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.guarantee-seal {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.guarantee-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.guarantee-bottom {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
}

/* Cost Comparison Section */
.cost-comparison-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

.cost-comparison-section .section-header h2 {
    color: var(--text-primary);
    background: linear-gradient(to right, #ffffff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.cost-comparison-section .section-header p {
    color: var(--text-secondary);
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cost-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.cost-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cost-card h3 svg {
    color: var(--danger);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.cost-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================
   SCROLL REVEAL ANIMATIONS
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for children reveal if needed */
.steps-grid .step-card:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .step-card:nth-child(4) { transition-delay: 0.3s; }
.steps-grid .step-card:nth-child(5) { transition-delay: 0.4s; }

.contents-grid .content-item:nth-child(2) { transition-delay: 0.1s; }
.contents-grid .content-item:nth-child(3) { transition-delay: 0.2s; }
.contents-grid .content-item:nth-child(4) { transition-delay: 0.3s; }

/* =========================
   FIXED CTA
   ========================= */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.fixed-cta.visible {
    transform: translateY(0);
}

.fixed-cta .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-fixed {
    width: auto;
    min-width: 300px;
}

@media (max-width: 768px) {
    .fixed-cta {
        padding: 10px 0;
    }
    
    .btn-fixed {
        min-width: unset;
        width: 100%;
        font-size: 1.1rem;
        padding: 14px 20px;
    }
}