/* ==========================================================================
   AskMyBiz.eu - Landing Page Styles
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-blue: #0040b4;
    --primary-orange: #e85a2a;
    --gradient-blue: linear-gradient(135deg, #0040b4 0%, #0052d9 100%);
    --gradient-orange: linear-gradient(135deg, #e85a2a 0%, #ff6b35 100%);
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Heading Styles */
h1 {
    color: #003d82;
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    color: #0056b3;
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    color: #003d82;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    background: var(--gradient-blue);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
    color: var(--white);
}

.lang-select {
    background: rgba(0,0,0,0.3);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
}

.lang-select option {
    background: var(--primary-blue);
    color: var(--white);
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gradient-blue);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-orange {
    background: var(--gradient-orange);
    color: var(--white);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-trial {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-text {
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-text {
    color: var(--gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border: 3px solid var(--primary-blue);
    position: relative;
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-badge-featured {
    background: var(--gradient-blue);
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
}

.price-currency {
    font-size: 1.25rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-desc {
    color: var(--gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--dark);
    border-bottom: 1px solid var(--light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--primary-blue);
}

.accordion-button:hover {
    background: var(--light);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-trial {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

.footer-text,
.footer-company {
    color: var(--white);
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}

/* ==========================================================================
   FEATURES PAGE STYLES
   ========================================================================== */

/* Features Hero */
.features-hero {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.features-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.features-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.problem-cost {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #d1e5f1;
    color: #e85a2a;
    border-radius: 8px;
    font-weight: 600;
}

.total-cost {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 16px;
    margin-top: 2rem;
}

.total-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #e85a2a;
    margin: 1rem 0;
}

.total-note {
    font-size: 1.125rem;
    color: var(--gray);
}

/* Before/After Comparison */
.solution-section {
    padding: 80px 0;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.before, .after {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.before h3, .after h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cost-badge {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.cost-high {
    background: #fff5f0;
    color: #e85a2a;
}

.cost-low {
    background: #efe;
    color: #0a0;
}

.arrow {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Detailed Features */
.detailed-features {
    padding: 80px 0;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.feature-block.reverse {
    background: var(--light);
}

.feature-block.reverse .feature-content {
    order: 2;
}

.feature-block.reverse .feature-visual {
    order: 1;
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-block h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-desc {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.feature-list i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.feature-highlight {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

/* Feature Visuals */
.email-preview, .transcript-preview, .dashboard-preview, .ai-demo {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.email-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
}

.email-body {
    padding: 1.5rem;
}

.conversation-preview {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-style: italic;
}

.transcript-preview {
    padding: 1.5rem;
}

.transcript-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light);
}

.transcript-q {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.transcript-a {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.transcript-a.missing {
    color: #c00;
    font-weight: 600;
}

.transcript-action {
    background: #fef8e7;
    padding: 0.75rem;
    border-radius: 8px;
    color: var(--dark);
    font-weight: 600;
}

.dashboard-preview {
    padding: 2rem;
}

.dashboard-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.dash-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    flex: 1;
}

.dash-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.dash-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.ai-demo {
    padding: 1.5rem;
}

.ai-input, .ai-output {
    padding: 1rem;
    border-radius: 8px;
}

.ai-input {
    background: var(--light);
}

.ai-output {
    background: #efe;
}

.ai-arrow {
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.structured-item {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.small-text {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ROI Section */
.roi-section {
    background: var(--light);
    padding: 80px 0;
}

.roi-calculator {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.roi-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.roi-input-group {
    text-align: center;
}

.roi-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roi-input {
    width: 100px;
    padding: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
}

.roi-unit {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.roi-results {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.roi-result {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    text-align: center;
}

.roi-result.highlight {
    background: #fef8e7;
    border: 2px solid var(--primary-orange);
}

.roi-result.success {
    background: #efe;
    border: 2px solid #0a0;
}

.roi-result-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.roi-result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.roi-result-value.large {
    font-size: 3rem;
    color: #e85a2a;
}

.roi-result-value.huge {
    font-size: 3.5rem;
    color: #0a0;
}

.roi-cta {
    text-align: center;
    margin-top: 2rem;
}

.roi-note {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    background: #d1e5f1;
    padding: 4rem;
    border-radius: 16px;
    border: 3px solid var(--primary-orange);
    text-align: center;
}

.urgency-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.urgency-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.urgency-stat {
    text-align: center;
}

.urgency-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.urgency-label {
    font-size: 1.125rem;
    color: var(--gray);
}

.urgency-timer {
    text-align: center;
}

.timer-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.timer-block {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.timer-block span:first-child {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.timer-label-small {
    font-size: 0.75rem;
    color: var(--gray);
}

.timer-sep {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.urgency-cta {
    margin-top: 2rem;
}

.urgency-note {
    margin-top: 1rem;
    color: var(--gray);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Final CTA Section */
.final-cta-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-guarantee {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .feature-block.reverse .feature-content,
    .feature-block.reverse .feature-visual {
        order: initial;
    }
    
    .roi-inputs {
        grid-template-columns: 1fr;
    }
    
    .urgency-box {
        padding: 2rem;
    }
    
    .urgency-stats {
        gap: 2rem;
    }
}

/* ==========================================================================
   HOW IT WORKS PAGE STYLES
   ========================================================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Step Section */
.step-section {
    padding: 80px 0;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-left: 6px solid #007bff;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    color: #007bff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Benefit Box */
.benefit-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
}

.benefit-box h4 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-btn {
    background: white;
    color: #ff6b35;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #ff6b35;
}

/* Feature Icon */
.feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.stat-box {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #007bff;
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
}

.comparison-table td {
    padding: 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #dee2e6;
}

.check-icon {
    color: #28a745;
    font-size: 1.5rem;
}

.cross-icon {
    color: #dc3545;
    font-size: 1.5rem;
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

/* FAQ Hero */
.faq-hero {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
    background: var(--light);
}

.faq-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
    border-left: 6px solid var(--primary-blue);
    padding-left: 1.5rem;
}

/* Accordion Overrides */
.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-button {
    background: var(--white);
    color: var(--dark);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 12px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230040b4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
}

.accordion-body strong {
    color: var(--dark);
}

/* FAQ CTA Section */
.faq-cta-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.faq-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-section-title {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    /* AI Assistant CTA Container - Remove padding on mobile */
    .assistant-cta-container {
        padding: 0 !important;
        margin: 1rem auto !important;
    }
}

/* ==========================================================================
   USER PROFILE PHOTO IN HEADER
   ========================================================================== */

.user-info-nav {
    position: relative;
}

.user-info-nav .user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.user-info-nav .user-menu-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-info-nav img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info-nav .user-name {
    font-weight: 500;
    color: var(--white);
}

.user-info-nav .bi-chevron-down {
    color: var(--white);
    font-size: 0.8rem;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.user-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
}

.user-dropdown-menu .dropdown-item i {
    font-size: 1rem;
}

/* ==========================================================================
   LANDING PAGES - UNIFIED STYLES (based on how-it-works.php palette)
   ========================================================================== */

/* Hero Section */
.hero-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Stats Section */
.stats-section {
    background: var(--light);
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Step/Feature Sections */
.step-section, .feature-section {
    padding: 80px 0;
}

.step-section:nth-child(even), .feature-section:nth-child(even) {
    background: var(--light);
}

.step-card, .feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary-blue);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--gradient-orange);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-card h3, .feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p, .feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Benefit Boxes */
.benefit-box {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-orange);
}

.benefit-box h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-box p {
    margin: 0;
    color: var(--gray);
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
}

.cross-icon {
    color: #dc3545;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-item {
    background: var(--light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #e9ecef;
    border-left-color: var(--primary-orange);
}

.faq-question {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-card h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.contact-info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--primary-orange);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-orange);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
