/* styles.css */
:root {
    /* Brand Colors derived from standard logo scheme (Dark Blue & Green) */
    --primary-blue: #18406F;
    --primary-blue-light: #225C9E;
    --primary-blue-dark: #0D2644;
    
    --accent-green: #648C4E;
    --accent-green-light: #7EAB64;
    --accent-green-dark: #4B6E38;
    
    --bg-light: #F7F9FC;
    --bg-white: #FFFFFF;
    
    --text-main: #1A1A1A;
    --text-muted: #5E6977;
    
    --border-color: rgba(24, 64, 111, 0.1);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(24, 64, 111, 0.1);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light {
    background-color: var(--bg-light);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Typography Scale */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-light));
    color: white;
    box-shadow: 0 4px 15px rgba(24, 64, 111, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-blue-light), var(--primary-blue));
    box-shadow: 0 6px 20px rgba(24, 64, 111, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.nav-logo-image {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Sections Base */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(100, 140, 78, 0.1);
    color: var(--accent-green-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Decorative visual */
.hero-visual {
    position: relative;
}

.glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 64, 111, 0.15) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.glass-mockup {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.full-width {
    grid-column: 1 / -1;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.stat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.text-green { color: var(--accent-green); }

.progress-bar {
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 10px;
    margin-top: 5px;
}
.progress-fill {
    height: 100%;
    background: var(--accent-green);
    border-radius: 10px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.service-category {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto; /* Centered */
}

.icon-circle.primary {
    background: rgba(24, 64, 111, 0.1);
    color: var(--primary-blue);
}

.icon-circle.secondary {
    background: rgba(100, 140, 78, 0.1);
    color: var(--accent-green);
}

.service-target {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-features {
    flex-grow: 1; /* Stretch to fill space so cards align */
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-green);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-weight: 800;
    font-family: 'Outfit';
    color: rgba(24, 64, 111, 0.05); /* very subtle so it acts as background texture */
    z-index: 0;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.popular {
    background: var(--primary-blue-dark);
    color: white;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 50px rgba(24, 64, 111, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular .plan-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card.popular h4 {
    color: white;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-height: 45px;
    margin: 1rem 0;
}

.pricing-card.popular .plan-desc {
    color: rgba(255,255,255,0.8);
}

.plan-price {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-price span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    font-family: 'Outfit';
    display: block;
    line-height: 1;
    margin: 0.5rem 0;
}

.pricing-card.popular .plan-price, 
.pricing-card.popular .plan-price span {
    color: white;
}

.plan-body ul {
    margin-bottom: 2.5rem;
}

.plan-body li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.plan-body li i {
    color: var(--accent-green);
    width: 18px;
}

.plan-body li.disabled {
    color: #A0AEC0;
    text-decoration: line-through;
}

.plan-body li.disabled i {
    color: #A0AEC0;
}

/* About Us */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center; /* This perfectly centers the left bento box with the right text block if heights differ */
    max-width: 1100px;
    margin: 0 auto;
}

.about-content {
    align-self: center; /* Forced vertical centering */
    text-align: center;
}

.bento-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.bento-item {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.highlight-bento {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    justify-content: center;
}

.highlight-bento .bento-number {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: 'Outfit';
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bento-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    color: var(--accent-green);
    opacity: 0.8;
}

.highlight-bento .bento-icon {
    width: 48px;
    height: 48px;
    color: white;
    opacity: 0.2;
}

.bento-item.bg-dark {
    background: #111;
    color: white;
}

.bento-text {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.trust-indicators {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
}

.trust-item i {
    color: var(--primary-blue);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.method-item i {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form-wrapper {
    padding: 3rem;
    background: white;
}

.support-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.support-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #FAFAFA;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(24, 64, 111, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-blue-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links a,
.footer-legal a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay { transition-delay: 0.2s; }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* Responsive break points */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-container,
    .services-grid,
    .steps-container,
    .pricing-grid,
    .about-container,
    .contact-container,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .form-group.row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    h1 { font-size: 2.5rem; }
    .hero { padding-top: 6rem; min-height: auto; padding-bottom: 4rem; }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Resources Hub */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.resource-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.resource-image.security-bg {
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
    color: white;
}

.resource-image.business-bg {
    background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
    color: white;
}

.resource-image.master-bg {
    background: linear-gradient(135deg, var(--primary-blue-dark), #1a1a1a);
    color: white;
}

.resource-image.cloud-bg {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
}

.resource-content {
    padding: 2rem;
}

.resource-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.resource-link:hover {
    gap: 0.75rem;
}

/* Article Page Specifics */
.article-header {
    background: linear-gradient(to bottom, var(--primary-blue-dark), var(--primary-blue));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.article-header h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-body {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-body li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.back-to-resources {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Form Compliance */
.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.4;
    text-align: center;
}

.form-disclaimer a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

/* Massive CTAs */
.hero-actions-massive {
    margin-top: 3rem;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .hero-actions-massive {
        flex-direction: row;
    }
}

.btn-massive {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(24, 64, 111, 0.3);
}

/* Comparison Table */
.comparison-wrapper {
    margin-top: 6rem;
    text-align: center;
}

.comparison-wrapper h3 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.comparison-table-container {
    overflow-x: auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table td i {
    width: 20px;
}

.comparison-table .highlight {
    background: rgba(24, 64, 111, 0.03);
    font-weight: 700;
}

.comparison-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* =====================================================
   AUDIT REMEDIATIONS — Mobile UX & CTA Hierarchy
   ===================================================== */

/* Plan text link for non-featured plans (reduce CTA noise) */
.plan-cta-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}
.plan-cta-link:hover {
    color: var(--primary-blue-dark);
    gap: 0.5rem;
}

/* Lead Magnet Bridge Section */
.lead-bridge {
    padding: 2.5rem 0; /* Reduced from 5rem to tighten the white box */
}
.lead-bridge-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.lead-bridge-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.lead-bridge-text h3 {
    margin: 0.75rem 0 0.5rem;
    font-size: 1.5rem;
}
.lead-bridge-text p {
    color: var(--text-muted);
    margin: 0;
}

/* Mobile UX: Touch targets + form */
@media (max-width: 768px) {
    .support-form input,
    .support-form select,
    .support-form textarea {
        min-height: 48px;
        font-size: 1rem;
    }

    .comparison-table-container {
        font-size: 0.8rem;
    }

    .lead-bridge-inner {
        flex-direction: column;
        text-align: center;
    }

    .lead-bridge-actions {
        justify-content: center;
    }

    .btn-massive {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   AUDIT REMEDIATIONS — Trust Strip (Social Proof)
   ===================================================== */
.trust-strip {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-top: -1px;
}
.trust-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.trust-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
    max-width: 300px;
}
.trust-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
}
.trust-metric i {
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .trust-metrics {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}
