/* ResponseAI Master Stylesheet */
/* Use this file across all pages for consistent design */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: #0f172a;
    color: #ffffff;
    line-height: 1.6;
}

/* === UTILITIES === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none;
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
    z-index: 1000;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.nav-links {
    display: none;
    gap: 32px;
    font-size: 14px;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 16px 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #60a5fa;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    margin-top: 0;
    padding-top: 8px;
    z-index: 1000;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.dropdown-content a {
    color: #cbd5e1;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-content a:hover {
    background: #334155;
    color: #60a5fa;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown > a {
    cursor: pointer;
    padding-bottom: 8px;
}

.dropdown > a::after {
    content: ' ▾';
    font-size: 12px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #60a5fa;
}

/* === BUTTONS === */
.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #334155;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: background 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #475569;
}

.btn-large {
    background: #2563eb;
    color: #fff;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-large:hover {
    background: #1d4ed8;
}

.btn-cta {
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: block;
    transition: all 0.3s;
}

/* === HERO SECTIONS === */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 128px 24px 80px;
    text-align: center;
}

.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

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

.breadcrumb {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 48px;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

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

.hero-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #4ade80;
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    color: #94a3b8;
}

/* === CTA BUTTONS === */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

/* === FEATURE LISTS === */
.features-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: #22c55e;
}

/* === SECTIONS === */
.section {
    padding: 80px 24px;
}

.section-alt {
    background: rgba(30, 41, 59, 0.5);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 48px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* === STATS & PROGRESS === */
.stats-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #334155;
    animation: floating 3s ease-in-out infinite;
}

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

.stat-item {
    margin-bottom: 24px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.stat-label {
    color: #94a3b8;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
}

.progress-bar {
    height: 8px;
    background: #334155;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 1s ease;
}

.progress-green {
    background: #22c55e;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.live-text {
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
}

/* === STAT CARDS === */
.stats-grid {
    display: grid;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: #0f172a;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.stat-card-value {
    font-size: 48px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 8px;
}

/* Stats Grid & Cards */
.stat-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.stat-card-value {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0;
}

/* === CONTENT GRIDS === */
.content-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content-grid.services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === SERVICES === */
.services-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.services-grid {
    display: grid;
    gap: 32px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-blue { background: #2563eb; }
.icon-purple { background: #7c3aed; }
.icon-yellow { background: #ca8a04; }
.icon-pink { background: #db2777; }
.icon-green { background: #16a34a; }
.icon-teal { background: #0d9488; }
.icon-gradient { background: linear-gradient(135deg, #2563eb, #7c3aed); }

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-description {
    color: #cbd5e1;
    margin-bottom: 16px;
}

.service-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    color: #93c5fd;
}

.package-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* === FEATURE CARDS === */
.feature-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #334155;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* === STORY BOXES === */
.story-section {
    max-width: 800px;
    margin: 0 auto;
}

.story-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.story-box-success {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
}

.story-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
}

.story-box .time {
    color: #ef4444;
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.story-box-success .time {
    color: #22c55e;
}

/* === COST/BENEFIT CARDS === */
.cost-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.cost-value {
    font-size: 64px;
    font-weight: 700;
    color: #ef4444;
    margin: 16px 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.benefit-value {
    font-size: 64px;
    font-weight: 700;
    margin: 16px 0;
}

/* === HOW IT WORKS === */
.how-it-works {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.step-content p {
    color: #cbd5e1;
    font-size: 18px;
}

/* === RESULTS & TESTIMONIALS === */
.results-section {
    max-width: 1000px;
    margin: 0 auto;
}

.result-box {
    background: rgba(30, 41, 59, 0.7);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #334155;
    margin-bottom: 32px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.result-avatar {
    width: 64px;
    height: 64px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.result-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.result-info p {
    color: #94a3b8;
    font-size: 14px;
}

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

.result-stat {
    text-align: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
}

.result-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #4ade80;
}

.result-stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.result-quote {
    font-size: 18px;
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.8;
}

.results-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.result-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #334155;
}

.result-card-value {
    font-size: 36px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 8px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #334155;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
}

.author-company {
    color: #94a3b8;
    font-size: 14px;
}

/* === ROI CALCULATOR === */
.roi-section {
    padding: 80px 24px;
    background: #0f172a;
}

.calculator-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #334155;
    max-width: 800px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 24px;
}

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.calculator-input {
    width: 100%;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 16px;
}

.calculator-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.quick-result {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    text-align: center;
}

.quick-result-value {
    font-size: 48px;
    font-weight: 700;
    color: #ef4444;
    margin: 8px 0;
}

.expand-btn {
    margin-top: 16px;
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.expand-btn:hover {
    background: #3b82f6;
    color: #fff;
}

.detailed-results {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.detailed-results.expanded {
    max-height: 2000px;
}

.detail-card {
    margin-top: 24px;
    padding: 24px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid #334155;
}

.detail-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.roi-breakdown {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
}

.roi-label {
    color: #94a3b8;
}

.roi-value {
    font-weight: 700;
    font-size: 20px;
}

.final-cta {
    margin-top: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(124, 58, 237, 0.3));
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    text-align: center;
}

.investment-text {
    color: #94a3b8;
    margin: 24px 0 16px;
    text-align: center;
}

.result-value {
    font-size: 48px;
    font-weight: 700;
    margin: 8px 0;
}

.result-annual {
    font-size: 30px;
    font-weight: 700;
    color: #4ade80;
}

/* === FAQ === */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #3b82f6;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    margin-top: 16px;
}

.faq-answer p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* === CTA SECTIONS === */
.cta-section {
    padding: 80px 24px;
    background: #0f172a;
    text-align: center;
}

.cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.cta-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #334155;
    margin-top: 32px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.price-tag {
    font-size: 64px;
    font-weight: 700;
    margin: 24px 0;
}

.price-tag span {
    font-size: 24px;
    color: #94a3b8;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: #4ade80;
    font-size: 14px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
    text-align: center;
}

.guarantee-item {
    font-size: 24px;
    color: #4ade80;
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 14px;
    color: #94a3b8;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* === COMPARISON === */
.comparison {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

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

.comparison-box {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #334155;
}

.comparison-bad {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-good {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.comparison-bad .comparison-title {
    color: #ef4444;
}

.comparison-good .comparison-title {
    color: #22c55e;
}

.comparison-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.comparison-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

/* === PROCESS STEPS === */
.sales-process {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: rgba(30, 41, 59, 0.7);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 24px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b5cf6;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* === NEW SECTIONS - StoryBrand Updates === */

/* Guide Bridge */
.guide-bridge {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 32px;
    border-radius: 12px;
    margin: 48px auto;
    max-width: 900px;
}

.guide-bridge h3 {
    color: #22c55e;
    font-size: 24px;
    margin-bottom: 16px;
}

.guide-bridge p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 16px;
}

/* Success Vision Section */
.success-vision {
    background: linear-gradient(135deg, #1e3a8a 0%, #6366f1 50%, #8b5cf6 100%);
    padding: 80px 24px;
    text-align: center;
}

.success-checklist {
    max-width: 900px;
    margin: 48px auto;
    text-align: left;
}

.success-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.success-checkmark {
    color: #4ade80;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Stakes Section */
.stakes-section {
    background: rgba(239, 68, 68, 0.05);
    padding: 60px 24px;
}

.stakes-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 40px;
}

.stakes-list {
    margin: 32px 0;
}

.stakes-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.stakes-icon {
    color: #ef4444;
    font-size: 28px;
    flex-shrink: 0;
}

.stakes-item p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Enhanced Service Cards */
.service-problem {
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-what {
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 8px 0;
    text-transform: uppercase;
}

.service-benefit {
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 8px 0;
    text-transform: uppercase;
}

.service-checklist {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.service-checklist li {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.service-checklist li::before {
    content: "✓";
    color: #4ade80;
    font-weight: 700;
}

/* Decision Trigger CTA */
.decision-trigger {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 16px 0;
    line-height: 1.4;
}

/* === FOOTER === */
footer {
    padding: 48px 24px;
    background: #020617;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 16px 0;
    font-size: 14px;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #60a5fa;
}