
:root {
    --brand-dark: #4a1524;
    --brand-primary: #ffb800;
    --brand-text-white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-dark);
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background-color: var(--brand-dark);
    position: relative;
    padding-bottom: 50px;
}

/* Navbar */
.nav-link { color: var(--brand-text-white) !important; }

.btn-talk, .btn-primary {
    background-color: var(--brand-primary) !important;
    border: none;
    color: #000 !important;
    font-weight: 700;
    border-radius: 50px;
}

.logo-icon {
    background: var(--brand-primary);
    color: var(--brand-dark);
    padding: 2px 8px;
    border-radius: 5px;
}

/* Dashboard Mockup */
.dashboard-card {
    max-width: 450px;
    position: relative;
    z-index: 5;
}

.bar {
    background: #fdf1d6;
    width: 12%;
    border-radius: 4px;
    position: relative;
}

.bar.highlight { background: var(--brand-primary); }

.bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #999;
}

/* Floating Elements */
.floating-notif {
    position: absolute;
    width: 260px;
    z-index: 10;
}

.top-notif {
    top: -20px;
    right: -30px;
}

.bottom-notif {
    bottom: -30px;
    left: -40px;
}

.avatar, .avatar-user {
    width: 24px;
    height: 24px;
    background: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    color: #000;
}

.avatar-user { background: #6c757d; }

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #4a1524 0%, #7a3e4e 50%, #f8f9fa 50%);
    padding-top: 80px;
}

.accent-line {
    width: 40px;
    height: 3px;
    background-color: var(--brand-primary);
}

.text-primary-gradient { color: #ffd27a; }

.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #fffaf0;
    transform: translateY(-5px);
}

.service-item h5 {
    color: #333;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .floating-notif {
        position: relative;
        width: 100%;
        margin: 10px 0;
        top: 0; right: 0; bottom: 0; left: 0;
    }
}

/* Sticky Navbar Logic */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--brand-dark);
    transition: background-color 0.3s ease;
}

/* Sound Familiar Section */
.familiar-section {
    background-color: #f4f4f4; /* Light grey background from screenshot */
    padding-top: 100px;
    padding-bottom: 100px;
}

.story-card {
    background-color: #fef9e7; /* Creamy yellow "Post-it" color */
    border: none;
    position: relative;
    height: 100%;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

/* Post-it Rotation effects */
.card-rotate-right { transform: rotate(1deg); }
.card-rotate-left { transform: rotate(-1deg); }

.story-card:hover {
    transform: scale(1.03) rotate(0deg);
    z-index: 10;
}

/* The small yellow square "Pin" */
.card-pin {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background-color: var(--brand-primary);
}

.story-icon {
    font-size: 1.5rem;
    background: var(--brand-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.story-link {
    color: #4a1524;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.story-link:hover {
    border-bottom: 1px solid #4a1524;
}

/* Section 4 Specific Styles */
.ready-section {
    padding-top: 80px;
    padding-bottom: 120px;
    background-color: #f4f4f4; /* Matches the grey from the section above */
}

/* Floating Top Icon */
.cta-icon-wrapper {
    width: 120px;
    height: 120px;
    background: #fdf1d6; /* Lightest gold circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.cta-icon-inner {
    width: 80px;
    height: 80px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Burgundy Banner */
.ready-banner {
    background-color: var(--brand-dark);
    margin-top: 0;
    padding-top: 100px !important; /* Extra space for the floating icon */
}

/* Background Pattern (Subtle Plus Signs) */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(white 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Enhancing Section 4 Heading */
.ready-banner h2 {
    font-size: 3rem;
    line-height: 1.2;
}

/* Responsive adjustment for the overlapping icon */
@media (max-width: 768px) {
    .ready-banner h2 {
        font-size: 2rem;
    }
    .cta-icon-wrapper {
        width: 100px;
        height: 100px;
        top: 30px;
    }
    .cta-icon-inner {
        width: 65px;
        height: 65px;
    }
}


/* Section 5 Results Styling */
.results-section {
    background-color: #ffffff;
    background-image: radial-gradient(#dee2e6 1px, transparent 0); /* Subtle Grid Pattern */
    background-size: 30px 30px;
    padding-bottom: 100px;
}

.text-maroon {
    color: var(--brand-dark);
}

/* Featured Impact Card */
.featured-card {
    background-color: var(--brand-dark);
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.decoration-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -20px;
    background: rgba(255, 184, 0, 0.1); /* Subtle brand yellow glow */
}

/* Stats Card UI */
.stat-icon-small {
    width: 35px;
    height: 35px;
    background: #fef9e7;
    color: var(--brand-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.badge-fast-track {
    background-color: #fff9e6;
    color: #cc9900;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.impact-card {
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}








.results-section {
    background-color: #fff;
    /* This creates the subtle cross-grid pattern seen in the image */
    background-image: 
        radial-gradient(circle, #ddd 1px, transparent 1px),
        radial-gradient(circle, #ddd 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    padding: 100px 0;
}

.text-maroon { color: #4a1524; }

.featured-card {
    background-color: #4a1524;
    min-height: 400px;
}

/* Decorative circles in the featured card */
.decoration-1 {
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.03);
    top: -100px; right: -100px;
}

.decoration-2 {
    width: 200px; height: 200px;
    background: rgba(139, 0, 0, 0.2);
    bottom: -50px; left: -50px;
}

.stat-icon-small {
    width: 30px; height: 30px;
    background: #fdf1d6;
    color: #cc9900;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.badge-fast-track {
    background-color: #fff9e6;
    color: #cc9900;
    font-size: 12px;
}

.impact-card {
    transition: all 0.3s ease;
    border-color: #eee !important;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}






/* Industry Expertise Styles */
.industry-alert {
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

.industry-icon-box {
    width: 80px;
    height: 80px;
    background-color: #fdf1d6; /* Light Gold */
    flex-shrink: 0;
}

.industry-row {
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-color: #eee !important;
}

.industry-row:hover {
    transform: translateX(10px);
    border-color: var(--brand-primary) !important;
}

.industry-row .industry-arrow {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.industry-row:hover .industry-arrow {
    opacity: 1;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-color: #ddd;
}

.nav-arrow:hover {
    background-color: var(--brand-dark);
    color: #fff;
}

.badge.bg-light {
    font-weight: 500;
    color: #666 !important;
}




/* Section 7 Specifics */
.bg-maroon { background-color: #4a1524 !important; }

.accent-line-horizontal {
    width: 40px;
    height: 2px;
    background-color: #ffb800; /* Brand Gold */
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ffb800;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #ffb800;
    border-radius: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2;
}

.step-badge {
    background-color: #fef9e7;
    color: #cc9900;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.timeline-row {
    position: relative;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-content {
        padding-left: 50px !important;
        text-align: left !important;
    }
    .timeline-spacer { display: none; }
}







/* Section 8 Specifics */
.testimonials-section {
    background-color: #4a1524; /* Maroon */
    overflow: hidden;
}

.pattern-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 0); /* Subtle plus/dot pattern */
    background-size: 40px 40px;
    z-index: 1;
}

/* Category Buttons */
.btn-filter {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-filter:hover, .btn-filter.active {
    background: #ffb800; /* Gold */
    color: #4a1524;
}

/* Card Styling */
.testimonial-card {
    border: none;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.card-dark-maroon {
    background-color: rgba(0, 0, 0, 0.15); /* Slightly darker maroon for cards */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-text {
    line-height: 1.4;
    font-size: 1.5rem;
}

.avatar-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.bg-maroon { background-color: #4a1524; }

.btn-dark-maroon {
    background-color: #4a1524;
    color: white;
    border: none;
}

.card-corner-glow {
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at top right, #fff9e6, transparent);
    opacity: 0.5;
}

.x-small { font-size: 0.7rem; }




/* Section 9 Specifics */
.bg-dark-navy { background-color: #0d1b2a; } /* Darker navy for featured text side */
.bg-gold { background-color: #ffb800; }

.featured-icon-box {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card {
    background-color: #f8f9fa; /* Very light grey */
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}

.badge-category {
    background-color: #fdf1d6; /* Light Gold */
    color: #cc9900;
    font-weight: 600;
}

.text-gold { color: #ffb800; }






/* Section 10 Specifics */
.search-box {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-faq-filter {
    background: #fff;
    border: 1px solid #eee;
    color: #444;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-faq-filter:hover, .btn-faq-filter.active {
    background: #4a1524; /* Maroon */
    color: white;
    border-color: #4a1524;
}

.custom-faq .accordion-item {
    background-color: #fff;
}

.custom-faq .accordion-button {
    padding: 1.5rem;
    background-color: #fff;
    color: #0d1b2a;
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #4a1524; /* Maroon for open question */
}

/* Arrow rotation fix */
.custom-faq .accordion-button::after {
    background-size: 1rem;
}

.text-maroon { color: #4a1524; }








/* Footer Styles */
.main-footer {
    background-color: var(--brand-dark);
    font-size: 0.95rem;
}

.mb-n5 {
    margin-bottom: -3rem !important; /* Pulls the footer up to overlap the button */
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a, .footer-sublink {
    color: var(--brand-text-white);
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover, .footer-sublink:hover {
    opacity: 1;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--brand-primary);
    color: var(--brand-dark);
}

/* Newsletter Form Tweaks */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-color: var(--brand-primary);
}

.x-small {
    font-size: 0.75rem;
}

.footer-sublink {
    font-size: 0.85rem;
}










.hero { padding: 96px 24px; background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%); position: relative; overflow: hidden; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; margin-bottom: 24px; }
.hero p { font-size: clamp(1.125rem, 2vw, 1.5rem); max-width: 600px; margin: 0 auto; color: #666; }
.billing-section { padding: 32px 24px; background: white; border-bottom: 1px solid #e5e7eb; }
.billing-toggle-container { max-width: 400px; margin: 0 auto; }
.billing-label { font-size: 14px; color: #666; margin-bottom: 12px; display: block; }
.billing-toggle { display: flex; background: #f3f4f6; border-radius: 9999px; padding: 4px; }
.billing-toggle button { flex: 1; padding: 10px 24px; border: none; background: transparent; border-radius: 9999px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; color: #666; }
.billing-toggle button:hover { color: #111; }
.billing-toggle button.active { background: white; color: #111; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.billing-toggle button span { font-size: 12px; color: #999; }
.pricing-section { padding: 80px 24px; background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { border: 2px solid #e5e7eb; border-radius: 16px; padding: 32px; display: flex; flex-direction: column; transition: all 0.3s; }
.pricing-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.pricing-card.recommended { border-color: #ffb400; box-shadow: 0 10px 40px rgba(255,180,0,0.15); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #ffb400; color: #5b1e2d; padding: 4px 16px; border-radius: 9999px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .subtitle { font-size: 14px; color: #666; margin-bottom: 24px; }
.pricing-card .tagline { color: #666; font-size: 16px; margin-bottom: 8px; }
.pricing-card .tagline-emphasis { font-weight: 500; margin-bottom: 24px; }
.pricing-card .price-label { font-size: 14px; color: #666; margin-bottom: 4px; }
.pricing-card .price { font-size: 32px; font-weight: 700; color: #111; }
.pricing-card .price-period { color: #666; font-size: 16px; }
.pricing-card .features { list-style: none; margin: 24px 0; flex-grow: 1; }
.pricing-card .features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: #374151; }
.check-icon { width: 20px; height: 20px; flex-shrink: 0; color: #5b1e2d; }
.pricing-card.recommended .check-icon { color: #ffb400; }
.pricing-card .cta { width: 100%; padding: 14px 24px; border: none; border-radius: 9999px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.pricing-card .cta.primary { background: #ffb400; color: #5b1e2d; }
.pricing-card .cta.primary:hover { background: #e3b23c; }
.pricing-card .cta.secondary { background: #111; color: white; }
.pricing-card .cta.secondary:hover { background: #333; }
.comparison-section { padding: 80px 24px; background: #f9fafb; }
.comparison-table { background: white; border-radius: 16px; border: 1px solid #e5e7eb; overflow: hidden; max-width: 960px; margin: 0 auto; }
.comparison-header { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; background: #f9fafb; border-bottom: 1px solid #e5e7eb; }
.comparison-header div { padding: 16px; font-weight: 600; text-align: center; }
.comparison-body { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; }
.comparison-row { border-bottom: 1px solid #f3f4f6; }
.comparison-row div { padding: 16px; display: flex; align-items: center; justify-content: center; }
.most-chosen { color: #16a34a; font-size: 14px; font-weight: 500; margin-top: 4px; display: block; }
.highlight-column { background: rgba(255,180,0,0.05); }
.reassurance-section { padding: 48px 24px; background: #f3f4f6; }
.reassurance-section p { font-size: 18px; color: #374151; font-weight: 500; max-width: 800px; margin: 0 auto; }
.services-section { padding: 80px 24px; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; transition: border-color 0.2s; }
.service-card:hover { border-color: #d1d5db; }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.service-card .price { font-size: 18px; font-weight: 500; color: #5b1e2d; margin-bottom: 16px; }
.service-card ul { list-style: none; }
.service-card li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; color: #374151; }
.service-note { font-size: 14px; color: #6b7280; text-align: center; margin-top: 32px; }
.faq-section { padding: 80px 24px; background: #f9fafb; }
.faq-container { max-width: 640px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; border: none; background: white; text-align: left; font-size: 18px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s; }
.faq-question:hover { background: #f9fafb; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { padding-bottom: 20px; max-height: 200px; }
.testimonial-section { padding: 80px 24px; background: white; }
.testimonial-card { background: #f9fafb; border-radius: 16px; padding: 48px; border: 1px solid #f3f4f6; max-width: 768px; margin: 0 auto; }
.testimonial-quote { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; margin-bottom: 32px; line-height: 1.4; }
.testimonial-author { color: #666; }
.cta-section { padding: 80px 24px; background: linear-gradient(135deg, #5b1e2d 0%, #4a1824 100%); }
.cta-content { max-width: 768px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 2.5rem); color: white; margin-bottom: 24px; }
.cta-content p { font-size: 20px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 40px; }
.cta-button { display: inline-flex; align-items: center; gap: 8px; background: #ffb400; color: #5b1e2d; padding: 16px 32px; border-radius: 9999px; font-size: 16px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.cta-button:hover { background: #e3b23c; }