/* ==========================================================================
   Base & Variables (Corporate Growth Theme)
   ========================================================================== */
:root {
    --col-header: #0a192f;
    /* Deep Midnight Blue for contrast with white logo */
    --col-footer: #060f1c;
    /* Darker Blue */
    --col-bg: #f8fafc;
    /* Soft Slate Background */
    --col-surface: #ffffff;
    /* Clean White */
    --col-primary: #ff6b35;
    /* Vibrant Sunset Orange */
    --col-primary-hover: #e85d2b;
    --col-secondary: #2563eb;
    /* Trust Blue */
    --col-accent: #fcd34d;
    /* Growth Gold */
    --col-text: #1e293b;
    /* Slate text */
    --col-text-muted: #64748b;
    /* Muted slate */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --header-height: 90px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --radius-lg: 24px;
    --radius-md: 12px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--col-bg);
    color: var(--col-text);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--col-primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 5px;
    left: 0;
    background: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--col-text-muted);
    max-width: 650px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--col-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--col-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    border: 2px solid var(--col-header);
    color: var(--col-header);
    background: transparent;
}

.btn-outline:hover {
    background: var(--col-header);
    color: #fff;
    transform: translateY(-3px);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    position: relative;
}

/* CSS Grid Dot Pattern Background */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(100, 116, 139, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: -1;
}

/* ==========================================================================
   Header & Nav (STRICTLY CONSISTENT SITE-WIDE - DARK NAVY)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--col-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--col-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--col-primary);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.header-cta::after {
    display: none;
}

.header-cta:hover {
    background: var(--col-primary-hover);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: var(--transition-fast);
    border-radius: 3px;
}

/* ==========================================================================
   1. Hero Section (Isometric 3D)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--col-header);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.2s;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--col-text-muted);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.6s;
}

/* CSS-Only Isometric 3D Bar Chart */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.8s;
}

.isometric-container {
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg);
}

.iso-bar {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 60px;
    background: var(--col-secondary);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    box-shadow: -15px 15px 20px rgba(0, 0, 0, 0.2);
    animation: riseUp 2s ease-out forwards;
}

.iso-bar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform-origin: bottom;
    transform: rotateX(90deg) translateZ(-60px);
}

.iso-bar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform-origin: left;
    transform: rotateY(-90deg) translateZ(-60px);
}

.bar-1 {
    left: 0;
    top: 0;
    height: 100px;
    background: var(--col-header);
    animation-delay: 0.5s;
}

.bar-2 {
    left: 80px;
    top: 80px;
    height: 180px;
    background: var(--col-secondary);
    animation-delay: 0.7s;
}

.bar-3 {
    left: 160px;
    top: 160px;
    height: 280px;
    background: var(--col-primary);
    animation-delay: 0.9s;
}

/* ==========================================================================
   2. Trust Bar Section
   ========================================================================== */
.trust-section {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.trust-flex:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--col-text-muted);
}

/* ==========================================================================
   3. About / Metrics Section
   ========================================================================== */
.metrics-section {
    background: var(--col-bg);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    background: var(--col-surface);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid #e2e8f0;
    transition: var(--transition-slow);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
    border-color: var(--col-secondary);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--col-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--col-text-muted);
    font-weight: 600;
}

/* ==========================================================================
   4. Services Section (Glassmorphism Cards)
   ========================================================================== */
.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--col-secondary), var(--col-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--col-secondary);
    transition: var(--transition-fast);
}

.service-box:hover .service-icon {
    background: var(--col-secondary);
    color: #fff;
}

.service-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--col-text-muted);
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--col-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.learn-more svg {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    transition: var(--transition-fast);
    fill: currentColor;
}

.service-box:hover .learn-more svg {
    transform: translateX(5px);
}

/* ==========================================================================
   5. Industries Section (Hover Expand)
   ========================================================================== */
.industries-section {
    background: var(--col-header);
    color: #fff;
}

.industries-section .section-title,
.industries-section h2 {
    color: #fff;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    height: 400px;
}

.ind-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background-size: cover;
    background-position: center;
}

/* Dummy Background Colors for Industries */
.ind-card:nth-child(1) {
    background-color: #1e293b;
}

.ind-card:nth-child(2) {
    background-color: #334155;
}

.ind-card:nth-child(3) {
    background-color: #475569;
}

.ind-card:nth-child(4) {
    background-color: #0f172a;
}

.ind-card:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.ind-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.ind-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.ind-overlay p {
    color: #cbd5e1;
    opacity: 0;
    margin-top: 10px;
    transform: translateY(20px);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.ind-card:hover .ind-overlay h3 {
    transform: translateY(0);
    color: var(--col-primary);
}

.ind-card:hover .ind-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   6. Interactive Campaign Reports Section
   ========================================================================== */
.reports-section {
    background: #fff;
}

.report-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.report-text {
    flex: 1;
}

.report-ui {
    flex: 1;
    background: var(--col-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.chart-wrap {
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, var(--col-secondary), var(--col-primary));
    border-radius: 6px 6px 0 0;
    height: 0;
    /* JS Animation */
    transition: height 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bar-label {
    position: absolute;
    bottom: 0;
    font-weight: 600;
    color: var(--col-text-muted);
}

/* ==========================================================================
   7. Process Section (Vertical Zigzag)
   ========================================================================== */
.process-section {
    background: var(--col-bg);
}

.process-path {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.step-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--col-header);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 0 10px var(--col-bg);
    z-index: 2;
}

/* ==========================================================================
   8. Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testi-slider {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    /* Scroll snap for native feel */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testi-slider::-webkit-scrollbar {
    display: none;
}

.testi-item {
    min-width: 400px;
    background: var(--col-bg);
    padding: 3rem;
    border-radius: var(--radius-lg);
    scroll-snap-align: center;
    border: 1px solid #e2e8f0;
}

.testi-rating {
    color: var(--col-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--col-text);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #cbd5e1;
}

/* ==========================================================================
   9. CTA Section
   ========================================================================== */
.cta-section {
    background: var(--col-header);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="rgba(255,107,53,0.1)" stroke-width="2" fill="none"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 3.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* ==========================================================================
   10. Footer (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-footer {
    background: var(--col-footer);
    color: #94a3b8;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--col-primary);
    transform: translateX(5px);
}

.footer-form {
    display: flex;
    margin-top: 1rem;
}

.footer-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.footer-form button {
    padding: 0.8rem 1.5rem;
    background: var(--col-primary);
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links {
    margin-top: 1rem;
}

.footer-bottom-links a {
    margin: 0 10px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ==========================================================================
   Internal Pages (Legal & Contact)
   ========================================================================== */
.page-header {
    padding: 12rem 0 6rem;
    background: var(--col-header);
    text-align: center;
    color: #fff;
}

.page-header h1 {
    color: #fff;
    font-size: 4rem;
}

.legal-container {
    max-width: 900px;
    margin: -3rem auto 5rem;
    background: #fff;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 10;
}

.legal-container h2 {
    font-size: 2rem;
    color: var(--col-header);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--col-text);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

/* Contact Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: -3rem auto 5rem;
    position: relative;
    z-index: 10;
}

.contact-info-panel {
    background: var(--col-header);
    color: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info-panel h2 {
    color: #fff;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    color: var(--col-primary);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #cbd5e1;
}

.contact-form-panel {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background: var(--col-bg);
    font-family: var(--font-main);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--col-secondary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes riseUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .ind-card {
        height: 250px;
    }

    .report-container {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--col-header);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-fast);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .metrics-grid,
    .services-grid,
    .ind-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-path::before {
        left: 30px;
    }

    .step-row,
    .step-row:nth-child(even) {
        flex-direction: column;
        align-items: flex-end;
    }

    .step-content {
        width: calc(100% - 80px);
    }

    .step-number {
        left: 30px;
    }

    .testi-item {
        min-width: 100%;
    }

    .legal-container {
        padding: 2rem;
        margin-top: -2rem;
    }
}