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

:root {
    --primary-orange: #FF5722;
    --primary-orange-hover: #E64A19;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --border-light: #e5e7eb;
    --border-lighter: #f3f4f6;
    --line-color: #e8e8e8;
    --crosshatch-color: rgba(0, 0, 0, 0.03);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

/* Subtle crosshatch pattern in outer margins */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 1200px) / 2);
    pointer-events: none;
    z-index: 50;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.015) 8px,
            rgba(0, 0, 0, 0.015) 9px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.015) 8px,
            rgba(0, 0, 0, 0.015) 9px);
}

body::before {
    left: 0;
}

body::after {
    right: 0;
}

/* Vertical Lines Background - Only 2 lines at edges */
.vertical-lines {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    max-width: 1200px;
}

.v-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--line-color);
}

.v-line-left {
    left: 0;
}

.v-line-right {
    right: 0;
}

/* Cross-hatch Pattern - Wider than tall */
.crosshatch-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.crosshatch-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.crosshatch {
    position: absolute;
    width: 90px;
    height: 60px;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 6px,
            rgba(180, 180, 180, 0.2) 6px,
            rgba(180, 180, 180, 0.2) 7px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 6px,
            rgba(180, 180, 180, 0.2) 6px,
            rgba(180, 180, 180, 0.2) 7px);
    border: 1px solid var(--line-color);
}

.crosshatch-left-top {
    left: -91px;
    top: 70px;
}

.crosshatch-right-top {
    right: -91px;
    top: 70px;
}

.crosshatch-left-mid {
    left: -91px;
    top: 260px;
}

.crosshatch-right-mid {
    right: -91px;
    top: 260px;
}

/* Navigation - Sticky with bottom border and vertical lines */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line-color);
}

/* Vertical lines that continue through navbar */
.navbar::before,
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--line-color);
    pointer-events: none;
}

.navbar::before {
    left: calc(50% - 600px);
}

.navbar::after {
    right: calc(50% - 600px);
}

.nav-divider {
    display: none;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin-right: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-sales {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-signin {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    padding: 10px 20px;
}

.btn-outline:hover {
    background-color: var(--bg-light);
    border-color: var(--text-gray);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px 40px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background-color: white;
    border: 1px solid var(--border-lighter);
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-new {
    background-color: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-text {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    z-index: 10;
    padding: 40px 20px 80px;
}

.dashboard-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    animation: scaleIn 1s ease-out 0.9s both;
}

/* Before/After Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1178 / 1578;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    cursor: ew-resize;
    animation: scaleIn 1s ease-out 0.9s both;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 1;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 10;
}

.comparison-label-before {
    left: 20px;
}

.comparison-label-after {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: ew-resize;
}

.comparison-handle-line {
    flex: 1;
    width: 3px;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.comparison-handle-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    color: var(--text-dark);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.comparison-handle-circle:hover,
.comparison-slider.dragging .comparison-handle-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.comparison-handle-circle svg {
    width: 18px;
    height: 18px;
}

/* Desktop scroll-mode styles */
@media (min-width: 1024px) {
    .dashboard-container {
        max-width: 750px;
    }

    .comparison-slider.scroll-mode {
        border-radius: 20px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    }

    .comparison-slider.scroll-mode .comparison-label {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
        top: 24px;
    }

    .comparison-slider.scroll-mode .comparison-label-before {
        left: 24px;
    }

    .comparison-slider.scroll-mode .comparison-label-after {
        right: 24px;
    }

    .comparison-slider.scroll-mode .comparison-before {
        transition: clip-path 0.1s ease-out;
    }
}

/* Mobile/tablet drag-mode styles */
.comparison-slider.drag-mode .comparison-before {
    transition: none;
}

/* Make slider container maintain aspect ratio - handled by JS padding-top */

/* Metrics Section */
.metrics-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 10;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: var(--bg-light);
    z-index: -1;
}

.metrics-header {
    text-align: center;
    margin-bottom: 50px;
}

.metrics-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-gray);
    background: var(--bg-white);
    margin-bottom: 25px;
}

.metrics-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.metrics-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.metrics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.metric-card {
    padding: 40px 35px;
    border-right: 1px solid var(--border-light);
}

.metric-card:last-child {
    border-right: none;
}

.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 20px;
}

.metric-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    margin-top: 30px;
    background-color: var(--bg-white);
    position: relative;
    z-index: 10;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: var(--bg-light);
    z-index: -1;
}

.faq-container {
    max-width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-gray);
    background: var(--bg-white);
    margin-bottom: 25px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 300;
    min-width: 20px;
}

.faq-answer {
    display: none;
    padding: 0 0 20px 35px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item[data-expanded="true"] .faq-answer,
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active {
    background-color: rgba(255, 87, 34, 0.05);
    margin: 0 -20px;
    padding: 0 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 200px);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: var(--bg-light);
    z-index: -1;
}

.contact-container {
    max-width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-gray);
    background: var(--bg-white);
    margin-bottom: 25px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-orange);
    border-radius: 50%;
    margin-bottom: 24px;
}

.contact-icon svg {
    stroke: white;
}

.contact-card-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card-value {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.contact-card-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Footer Styles */
.footer {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

/* Footer CTA Section */
.footer-cta {
    background-color: #1a1a1a;
    padding: 50px clamp(20px, 4vw, 60px);
    border-bottom: 1px solid #2a2a2a;
}

.footer-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.footer-cta .btn-secondary {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.footer-cta .btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Footer Main Section */
.footer-main {
    background-color: #1a1a1a;
    padding: 60px clamp(20px, 4vw, 60px) 40px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    color: #ffffff;
}

.footer-watermark {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 25px clamp(20px, 4vw, 60px);
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {

    .vertical-lines,
    .crosshatch-container {
        max-width: calc(100% - 40px);
    }

    .navbar::before,
    .navbar::after {
        display: none;
    }

    .nav-container {
        padding: 0 30px;
        gap: 20px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-actions {
        gap: 16px;
    }

    .nav-sales {
        display: none;
    }

    .dashboard-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-cta {
        padding: 40px 30px;
    }

    .footer-main {
        padding: 50px 30px 30px;
    }

    .footer-bottom {
        padding: 20px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vertical-lines {
        max-width: calc(100% - 30px);
    }

    .crosshatch-container {
        max-width: calc(100% - 30px);
    }

    .crosshatch {
        width: 60px;
        height: 40px;
    }

    .crosshatch-left-top,
    .crosshatch-left-mid {
        left: -61px;
    }

    .crosshatch-right-top,
    .crosshatch-right-mid {
        right: -61px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        padding: 0 20px;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-sales,
    .nav-signin {
        display: none;
    }

    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        padding: 40px 20px 30px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .dashboard-preview {
        padding: 30px 15px 60px;
    }

    .dashboard-image {
        border-radius: 12px;
    }

    /* Metrics Mobile Styles */
    .metrics-section {
        padding: 50px 20px;
    }

    .metrics-title {
        font-size: 2rem;
    }

    .metrics-subtitle br {
        display: none;
    }

    .metrics-cards {
        grid-template-columns: 1fr;
    }

    .metric-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 30px 25px;
    }

    .metric-card:last-child {
        border-bottom: none;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    /* FAQ Mobile Styles */
    .faq-section {
        padding: 50px 0;
        margin-top: 20px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-title br {
        display: none;
    }

    /* Contact Mobile Styles */
    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 25px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .vertical-lines,
    .crosshatch-container {
        max-width: calc(100% - 20px);
    }

    .crosshatch {
        display: none;
    }

    .nav-container {
        padding: 0 15px;
    }

    .btn-outline {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 30px 15px 25px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 25px;
    }

    .badge {
        padding: 5px 12px 5px 5px;
    }

    .badge-new {
        padding: 3px 10px;
        font-size: 0.7rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .dashboard-preview {
        padding: 20px 10px 40px;
    }

    .dashboard-image {
        border-radius: 8px;
    }

    /* Footer Mobile Styles */
    .footer-cta {
        padding: 30px 15px;
    }

    .footer-cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-cta-title {
        font-size: 1.25rem;
    }

    .footer-main {
        padding: 40px 15px 30px;
    }

    .footer-watermark {
        display: none;
    }

    .footer-nav {
        gap: 15px 20px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
        order: 1;
    }

    .footer-legal {
        order: 2;
        gap: 20px;
    }
}