/* ============================================================
   Traffic Mind Landing Page — Premium SaaS Light Theme
   Developed by Sharp Minds Technologies
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: rgba(79, 70, 229, 0.08);
    --secondary: #7c3aed;
    --secondary-light: rgba(124, 58, 237, 0.08);
    --accent: #06b6d4;
    --emerald: #10b981;
    --amber: #f59e0b;

    /* Backgrounds */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-header: rgba(255, 255, 255, 0.95);

    /* Text Colors */
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;

    /* Borders & Shadows */
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.05);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --grad-glow: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    --grad-text: linear-gradient(135deg, #0f172a 0%, #4f46e5 100%);
}

/* --- Reset & Global --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header / Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap; /* CRITICAL: Keeps Traffic Mind on single line */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--text-heading);
    white-space: nowrap; /* CRITICAL: Prevent wrapping onto two lines */
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    flex-shrink: 0;
}

.logo-text {
    white-space: nowrap;
    display: inline-block;
}

.company-sub-badge {
    font-size: 11px;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
    transition: color 0.2s;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-heading);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hamburger Toggle Button */
.mobile-toggle {
    display: none;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 20px;
    color: var(--text-heading);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-toggle:hover {
    background: var(--border);
}

/* --- Mobile Bottom Sheet Navigation Drawer --- */
.mobile-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sheet-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: var(--bg-card);
    border-radius: 28px 28px 0 0; /* Unique rounded top corners */
    box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.2);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    padding: 12px 24px 32px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-bottom-sheet.active {
    transform: translateY(0);
}

.sheet-handle {
    width: 44px;
    height: 5px;
    background: #cbd5e1;
    border-radius: 10px;
    margin: 4px auto 16px;
    flex-shrink: 0;
}

.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.sheet-close {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-heading);
    cursor: pointer;
}

.sheet-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.sheet-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    background: var(--bg-main);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.sheet-link:hover, .sheet-link:active {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(79, 70, 229, 0.3);
}

.sheet-link-icon {
    font-size: 18px;
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 550px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.14) 0%, rgba(124, 58, 237, 0.06) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-heading);
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.hero-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-meta-item svg {
    color: var(--emerald);
}

/* Floating Glass Badges */
.floating-badge {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    animation: float 4s ease-in-out infinite;
}

.badge-left {
    top: 40%;
    left: -40px;
    animation-delay: 0s;
}

.badge-right {
    top: 55%;
    right: -40px;
    animation-delay: 2s;
}

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

/* --- Hero Mockup Showcase --- */
.hero-mockup-wrap {
    margin-top: 60px;
    position: relative;
}

.hero-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    text-align: left;
}

.mockup-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.mockup-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mockup-title {
    font-weight: 800;
    font-size: 14px;
    color: var(--text-heading);
}

.mockup-by {
    font-size: 11px;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mockup-range-selector {
    display: flex;
    gap: 4px;
    background: var(--bg-subtle);
    padding: 4px;
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.mockup-range-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-body);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.mockup-range-btn.active {
    background: var(--bg-card);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mockup-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.mockup-card-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-card-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading);
    margin: 4px 0;
}

.mockup-card-change {
    font-size: 11px;
    font-weight: 700;
    color: var(--emerald);
}

.mockup-chart-area {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.mockup-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.mockup-chart-title {
    font-weight: 800;
    font-size: 15px;
    color: var(--text-heading);
}

.mockup-chart-toggles {
    display: flex;
    gap: 6px;
}

.mockup-toggle-btn {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.2s;
}

.mockup-toggle-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* SVG Chart Canvas */
.mockup-svg-canvas {
    width: 100%;
    height: 180px;
}

/* Mockup Mini Tables Row */
.mockup-tables-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mockup-mini-table {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
}

.mockup-mini-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.mockup-mini-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.mockup-mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-body);
}

.mockup-mini-item span:first-child {
    font-weight: 600;
    color: var(--text-heading);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 130px;
}

.mockup-mini-item span:last-child {
    font-weight: 700;
    color: var(--primary);
}

/* --- Features Section --- */
.features {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-body);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Comparison Section --- */
.comparison {
    padding: 100px 0;
}

.comp-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.comp-table th, .comp-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.comp-table th {
    background: var(--bg-subtle);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-heading);
}

.comp-table td {
    font-size: 15px;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-highlight {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.check-icon {
    color: var(--emerald);
    font-weight: bold;
}

.cross-icon {
    color: #ef4444;
}

/* --- Testimonials / Social Proof --- */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.test-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.test-quote {
    font-size: 15px;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.test-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-heading);
}

.test-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
}

.cta-box {
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-white {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta-box .btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* --- Legal Pages Formatting --- */
.legal-page {
    padding: 140px 0 80px;
}

.legal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.legal-box h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.legal-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 32px 0 16px;
}

.legal-box p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-box ul {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.legal-box li {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.6;
}

.license-pre {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    font-family: monospace;
    font-size: 13px;
    color: var(--text-body);
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.5;
}

/* --- Footer --- */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-body);
    margin-top: 12px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-body);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-company {
    font-weight: 700;
    color: var(--primary);
}

/* --- Responsive Media Queries --- */

@media screen and (max-width: 1024px) {
    .floating-badge { display: none; }
    .hero-title { font-size: 44px; }
    .features-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-cards { grid-template-columns: repeat(2, 1fr); }
    .mockup-tables-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
    .header-inner { height: 70px; }
    
    /* Logo on mobile: strictly inline & no line wrap */
    .logo {
        font-size: 18px;
        gap: 8px;
        white-space: nowrap;
    }
    .logo-icon {
        width: 34px;
        height: 34px;
    }
    .company-sub-badge {
        display: none; /* Hide sub badge in mobile navbar to keep header clean & single line */
    }

    /* Navbar links on mobile Desktop Header hidden (handled via Bottom Sheet) */
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Download Free button in header on mobile */
    .header-cta .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* Hero Responsive Fixes */
    .hero { padding: 110px 0 50px; }
    .hero-title { font-size: 32px; letter-spacing: -0.5px; }
    .hero-desc { font-size: 16px; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-meta { flex-direction: column; gap: 8px; }

    /* Mockup Responsive Fixes */
    .hero-mockup { padding: 16px; }
    .mockup-title-wrap { flex-direction: column; align-items: flex-start; gap: 4px; }
    .mockup-title { font-size: 13px; }
    .mockup-by { font-size: 10px; }
    .mockup-cards { grid-template-columns: 1fr; }
    .mockup-tables-row { grid-template-columns: 1fr; }
    .mockup-svg-canvas { height: 140px; }

    /* Features & Comparison Fixes */
    .features, .comparison, .testimonials, .faq, .cta-banner { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .features-grid, .test-grid { grid-template-columns: 1fr; }
    
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 26px; }
    .cta-box p { font-size: 15px; }

    .legal-page { padding: 100px 0 50px; }
    .legal-box { padding: 24px; }
    .legal-box h1 { font-size: 28px; }

    /* Footer Fixes */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
