/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Base Glass Variables */
:root {
  --glass-light: rgba(255, 255, 255, 0.05);
  --glass-medium: rgba(255, 255, 255, 0.1);
  --glass-heavy: rgba(255, 255, 255, 0.15);
  --blur-light: 8px;
  --blur-medium: 16px;
  --blur-heavy: 24px;
  --border-glass: rgba(255, 255, 255, 0.18);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --glass-light: rgba(255, 255, 255, 0.03);
    --glass-medium: rgba(255, 255, 255, 0.07);
    --glass-heavy: rgba(255, 255, 255, 0.12);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.hidden {
    display: none !important;
}

.text-blue {
    color: #2563eb;
}

.text-red {
    color: #dc2626;
    font-weight: 600;
}

.text-white {
    color: white;
}

.text-blue-light {
    color: #93c5fd;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Header */
.header {
    background: var(--glass-light);
    backdrop-filter: blur(var(--blur-medium));
    -webkit-backdrop-filter: blur(var(--blur-medium));
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.header:hover {
    background: var(--glass-medium);
    backdrop-filter: blur(var(--blur-heavy));
    -webkit-backdrop-filter: blur(var(--blur-heavy));
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-img {
    height: 3rem;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active {
    border-bottom: 2px solid #2563eb;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    width: 14rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: #dbeafe;
    color: #2563eb;
}

.cta-button {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: scale(1);
}

@media (min-width: 768px) {
    .cta-button {
        display: inline-flex;
    }
}

.cta-button:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

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

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile-link {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-mobile-link:hover {
    color: #2563eb;
}

.cta-button-mobile {
    margin-top: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-button-mobile:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    padding: 5rem 0;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

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

/* Problem Section */
.problem-section {
    background: #f9fafb;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.problem-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
}

.problem-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

.problem-text + .problem-text {
    margin-top: 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

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

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

.process-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3.75rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.2;
}

.process-icon {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.process-step {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.process-description {
    color: #4b5563;
    line-height: 1.75;
}

/* Social Proof Section */
.social-proof-section {
    background: #1e3a8a;
    color: white;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

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

.testimonial-card {
    background: #1e40af;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.testimonial-metric {
    font-size: 1.875rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.testimonial-period {
    font-size: 0.875rem;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

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

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-brand {
    max-width: 28rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: #d1d5db;
}

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-cta {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-cta:hover {
    color: #93c5fd;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #2563eb;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    border: none;
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    transform: scale(1);
}

.floating-contact-btn:hover {
    background: #1d4ed8;
    transform: scale(1.1);
    box-shadow: 
        0 8px 20px rgba(37, 99, 235, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.floating-contact-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    stroke: currentColor;
    fill: none;
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.contact-modal {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    width: 24rem;
    max-width: calc(100vw - 3rem);
    z-index: 50;
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
}

.contact-modal-header button {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.contact-modal-header button:hover {
    color: #6b7280;
}

.contact-modal-header button:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.contact-modal-header button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-icon {
    width: 1rem;
    height: 1rem;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.exit-popup {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    max-width: 28rem;
    width: 100%;
    max-height: 65vh;
    overflow-y: auto;
    position: relative;
}

@media (min-width: 640px) {
    .exit-popup {
        padding: 1.5rem;
        max-width: 36rem;
        max-height: 75vh;
    }
}

.exit-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 10;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .exit-popup-close {
        top: 1rem;
        right: 1rem;
    }
}

.exit-popup-close:hover {
    color: #6b7280;
}

.exit-popup-close:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.exit-popup-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.exit-popup-content {
    text-align: center;
    padding-bottom: 0;
}

@media (min-width: 640px) {
    .exit-popup-content {
        padding-bottom: 0;
    }
}

.exit-popup-icon {
    background: #dbeafe;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.exit-popup-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.exit-popup-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .exit-popup-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.exit-popup-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .exit-popup-description {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

.exit-popup-benefits {
    background: #dbeafe;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .exit-popup-benefits {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.benefits-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .benefits-title {
        font-size: 1rem;
    }
}

.benefits-list {
    list-style: none;
    font-size: 0.75rem;
    color: #1e40af;
    text-align: left;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .benefits-list {
        font-size: 0.875rem;
        line-height: 1.25;
    }
}

.benefits-list li {
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .benefits-list li {
        margin-bottom: 0.125rem;
    }
}

.exit-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .exit-popup-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }
}

.exit-popup-buttons .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
    .exit-popup-buttons .btn-primary {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

.exit-popup-decline {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .exit-popup-decline {
        font-size: 0.875rem;
    }
}

/* Business Profile Styles */
.business-profile {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.profile-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-label {
    font-weight: 500;
    color: #6b7280;
}

.profile-value {
    font-weight: 600;
    color: #1e3a8a;
}

/* ROI Analysis Styles */
.roi-analysis {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.roi-analysis h3 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roi-analysis p {
    color: #1e40af;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-weight: 500;
}

/* Case Studies Compact Cards */
.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
}

.case-study-card-compact {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.case-study-compact-header {
    margin-bottom: 1rem;
}

.case-study-industry {
    background: #dbeafe;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.case-study-title-compact {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.case-study-subtitle-compact {
    color: #6b7280;
    font-size: 0.875rem;
}

.case-study-metrics-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .case-study-metrics-compact {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-item {
    text-align: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.case-study-expand-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.case-study-expand-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.case-study-card-compact:hover .case-study-expand-icon {
    color: #2563eb;
}

/* Expanded Case Study Details */
.case-study-expanded {
    background: #f9fafb;
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expanded-content {
    padding: 2rem;
}

.expanded-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.expanded-content h3:first-child {
    margin-top: 0;
}

.expanded-content p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #374151;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.case-study-quote {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
    margin-top: 1.5rem;
}

.case-study-quote blockquote {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.case-study-quote cite {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .case-study-card-compact {
        padding: 1rem;
    }
    
    .case-study-title-compact {
        font-size: 1.125rem;
    }
    
    .case-study-metrics-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .metric-item {
        padding: 0.5rem;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .expanded-content {
        padding: 1.5rem;
    }
    
    .case-study-expand-icon {
        top: 1rem;
        right: 1rem;
    }
}

/* Form Message Styles */
.form-message {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Loading spinner animation */
.submit-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-loading .spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.exit-popup-decline:hover {
    color: #374151;
}

/* Social Proof Notification */
.social-proof-notification {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 1rem;
    max-width: 20rem;
    z-index: 40;
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.notification-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.notification-icon svg {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-message {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .problem-box,
    .exit-popup-benefits {
        padding: 1rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-in {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glassmorphic Button Styles */
.glass-button {
    background: var(--glass-medium);
    backdrop-filter: blur(var(--blur-light));
    -webkit-backdrop-filter: blur(var(--blur-light));
    border: 1px solid var(--border-glass);
    color: white;
    padding: 12px 24px;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-button:hover {
    background: var(--glass-heavy);
    backdrop-filter: blur(var(--blur-medium));
    -webkit-backdrop-filter: blur(var(--blur-medium));
    transform: translateY(-1px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Glass Card Styles */
.glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(var(--blur-light));
    -webkit-backdrop-filter: blur(var(--blur-light));
    border: 1px solid var(--border-glass);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    backdrop-filter: blur(var(--blur-medium));
    -webkit-backdrop-filter: blur(var(--blur-medium));
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.assessment-subtitle {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 0;
}

.score-description {
    color: #d1d5db;
}

/* Current State Costs */
.current-state-section {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.current-state-section h3 {
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cost-metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.cost-metric {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #fecaca;
}

.cost-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.cost-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
}

/* Transformation Potential */
.transformation-section {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.transformation-section h3 {
    color: #0369a1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.scenario-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.scenario-card.conservative {
    border-color: #fbbf24;
}

.scenario-card.expected {
    border-color: #3b82f6;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
}

.scenario-card.aggressive {
    border-color: #10b981;
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.scenario-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
}

.improvement-rate {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background: #dbeafe;
    color: #2563eb;
}

.scenario-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.scenario-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.metric-value {
    font-weight: 600;
    color: #1e3a8a;
}

.progress-bar {
    width: 100%;
    background: #e5e7eb;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.8s ease;
}

.conservative-fill {
    background: #fbbf24;
}

.expected-fill {
    background: #3b82f6;
}

.aggressive-fill {
    background: #10b981;
}

/* Investment vs Return */
.investment-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.investment-section h3 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.investment-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.investment-item,
.return-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.investment-label,
.return-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.investment-value {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.return-value {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.investment-note,
.return-note {
    font-size: 0.75rem;
    color: #6b7280;
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
    padding: 0 1rem;
}

.roi-summary {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

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

.roi-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

/* Next Steps */
.next-steps-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 0.75rem;
    padding: 2rem;
}

.next-steps-section h3 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.urgency-banner {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: #92400e;
    font-weight: 500;
}

.urgency-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.cta-container {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.cta-content h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cta-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.results-content {
    padding: 2rem;
}

/* Qualification Page Styles */
.qualification-container {
    min-height: calc(100vh - 4rem);
    background: #f9fafb;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualification-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 48rem;
    width: 100%;
}

.qualification-header {
    background: #1e3a8a;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qualification-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.qualification-subtitle {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 0;
}

.qualification-progress-info {
    text-align: right;
}

.progress-text {
    font-size: 0.875rem;
    color: #d1d5db;
}

.progress-percent {
    font-size: 1.125rem;
    font-weight: 600;
}

.qualification-option {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.qualification-option:hover {
    border-color: #93c5fd;
    background: #dbeafe;
    transform: translateY(-1px);
}

.qualification-option:last-child {
    margin-bottom: 0;
}

.qualification-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.question-info {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Result Cards */
.result-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    max-width: 36rem;
    width: 100%;
}

.result-icon {
    background: #dbeafe;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.qualified-icon {
    background: #d1fae5;
}

.qualified-icon svg {
    width: 2rem;
    height: 2rem;
    color: #10b981;
}

.not-qualified-icon {
    background: #fee2e2;
}

.not-qualified-icon svg {
    width: 2rem;
    height: 2rem;
    color: #dc2626;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.result-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.result-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.highlight-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
}

.result-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.result-cta:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    border-color: #93c5fd;
    background: #dbeafe;
}

.resource-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.resource-link h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.resource-link p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .qualification-container {
        padding: 1rem;
    }
    
    .qualification-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .qualification-title {
        font-size: 1.25rem;
    }
    
    .qualification-subtitle {
        font-size: 0.875rem;
    }
    
    .qualification-option {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .qualification-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-title {
        font-size: 1.25rem;
    }
    
    .result-highlights {
        padding: 1rem;
    }
    
    .resource-link {
        padding: 0.75rem;
    }
}

/* Privacy Page Styles */
.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content ul li {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.contact-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.cookie-consent-visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.cookie-consent-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.cookie-link {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: #1d4ed8;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-primary {
    background: #2563eb;
    color: white;
}

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

.cookie-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-btn-secondary:hover {
    background: #e5e7eb;
}

.cookie-btn-link {
    background: transparent;
    color: #2563eb;
    padding: 0.5rem 0.75rem;
}

.cookie-btn-link:hover {
    text-decoration: underline;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal-overlay.cookie-modal-visible {
    opacity: 1;
}

.cookie-modal {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 40rem;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal-visible .cookie-modal {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: #6b7280;
}

.cookie-modal-close:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.cookie-modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.75rem;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 1.75rem;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 1.25rem;
    width: 1.25rem;
    left: 0.25rem;
    bottom: 0.25rem;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #2563eb;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(1.25rem);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.cookie-modal-footer .cookie-btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        text-align: center;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }
}
/* About Page & Comparison Page Styles */
.comparison-table-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.comparison-table {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    background: #1e3a8a;
    padding: 1.5rem;
    align-items: end;
}

@media (max-width: 1024px) {
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.comparison-category {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.875rem;
}

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

.comparison-column.highlight {
    background: #2563eb;
    border-radius: 0.5rem;
    padding: 1rem;
}

.column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.column-subtitle {
    font-size: 0.875rem;
    color: #93c5fd;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

@media (max-width: 1024px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .comparison-category {
        font-weight: 700;
        font-size: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-value {
    font-size: 0.875rem;
    color: #6b7280;
    padding: 0.5rem;
}

.comparison-value.highlight {
    background: #dbeafe;
    border-radius: 0.375rem;
    color: #1e40af;
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.story-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.story-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.story-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.story-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.story-card p {
    color: #6b7280;
    line-height: 1.75;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.2;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.approach-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #6b7280;
    line-height: 1.75;
}

/* Results Overview Section */
.results-overview-section {
    padding: 5rem 0;
    background: #1e3a8a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.stat-card {
    background: #1e40af;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.pricing-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pricing-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.pricing-timeline {
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-features {
    padding: 2rem;
}

.features-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.pricing-guarantee {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-top: 1px solid #e5e7eb;
}

.pricing-best-for {
    padding: 1rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.pricing-best-for strong {
    display: block;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.pricing-best-for p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.pricing-cta {
    display: block;
    margin: 0 2rem 2rem;
    padding: 0.75rem;
    background: #2563eb;
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Pricing Comparison Section */
.pricing-comparison-section {
    padding: 5rem 0;
    background: white;
}

/* ROI Examples */
.roi-examples-section {
    padding: 5rem 0;
    background: #1e3a8a;
    color: white;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.roi-card {
    background: #1e40af;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-header {
    margin-bottom: 1.5rem;
}

.roi-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.roi-revenue {
    color: #93c5fd;
    font-size: 0.875rem;
}

.roi-investment,
.roi-savings {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.roi-amount {
    font-weight: 600;
    color: white;
    font-size: 1.125rem;
}

.roi-metric {
    margin-top: 1.5rem;
    text-align: center;
}

.roi-percentage {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.roi-payback {
    display: block;
    color: #93c5fd;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #2563eb;
    margin-top: 0.125rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

/* Testimonial Comparison Section */
.testimonial-comparison-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-comparison-section .testimonial-card {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.testimonial-comparison-section .testimonial-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.quote-icon {
    color: #2563eb;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.quote-icon svg {
    width: 2rem;
    height: 2rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: #1f2937;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* When to Choose Section */
.when-to-choose-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

.choice-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.choice-card.highlight {
    border-color: #2563eb;
    background: #dbeafe;
}

.choice-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.choice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.choice-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
    line-height: 1.5;
}

.choice-list li:last-child {
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}
