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

:root {
    --teal: #14B8A6;
    --teal-dark: #0d9488;
    --teal-light: #F0FAFA;
    --lime: #D4E235;
    --lime-dark: #7A8000;
    --lime-light: #FAFDE0;
    --orange: #E8916A;
    --orange-light: #FEF0E8;
    --warm: #FFF8F5;

    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --text-dark-secondary: #4A5568;

    --bg-white: #FFFFFF;
    --bg-gray: #F6F7F8;
    --bg-dark: #1A1A1A;

    --border: #E5E7EB;

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.10);

    --font-heading: 'Bricolage Grotesque', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    --font-body: 'DM Sans', 'Hiragino Sans', 'Yu Gothic', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --container: 1200px;
    --section-pad: 80px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===========================
   Container
   =========================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Typography helpers
   =========================== */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    flex-shrink: 0;
}

.eyebrow-orange { color: #E85A4F; }
.eyebrow-orange::before { background: #E85A4F; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--teal);
    color: #fff;
}
.btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 6px 20px rgba(20,184,166,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg-gray); }

.btn-teal {
    background: var(--teal);
    color: #fff;
}
.btn-teal:hover {
    background: var(--teal-dark);
    box-shadow: 0 6px 20px rgba(20,184,166,0.3);
}

.btn-white {
    background: #fff;
    color: var(--text-primary);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

a:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* ===========================
   Section base
   =========================== */
.section {
    padding: var(--section-pad) 0;
}

/* ===========================
   Header
   =========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 72px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.header.scrolled { box-shadow: var(--shadow-md); }

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-brand-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.2s;
}

.nav-menu a:hover { color: var(--teal); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--teal);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===========================
   Hero
   =========================== */
.hero {
    background: var(--teal-light);
    padding: var(--section-pad) 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,226,53,0.3);
    color: var(--lime-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right {
    flex-shrink: 0;
    width: 520px;
}

.hero-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    overflow: hidden;
}

.hero-card-top {
    background: #FFF8F5;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-pain-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-dark-secondary);
}

.hero-pain-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.hero-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    background: var(--bg-gray);
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
}

.hero-card-bottom {
    background: var(--teal);
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card-bottom-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
}

.hero-card-bottom-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.hero-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    display: inline-block;
    padding: 5px 13px;
    background: rgba(255,255,255,0.22);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ===========================
   Pain Points
   =========================== */
.pain-section {
    background: var(--warm);
}

.pain-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.pain-header-left .section-title { margin-bottom: 0; }

.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.pain-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pain-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    background: var(--orange-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.pain-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    padding-top: 6px;
}

.pain-card-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 52px;
}

/* ===========================
   About
   =========================== */
.about-section {
    background: var(--bg-white);
}

.about-text-block {
    margin-bottom: 48px;
}

.about-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 32px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
}

.stat-item:first-child { padding-left: 0; }

.stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
}

.process-step--teal { background: var(--teal-light); }
.process-step--lime { background: var(--lime-light); }

.process-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.process-badge--teal { background: var(--teal); color: #fff; }
.process-badge--lime { background: var(--lime); color: var(--text-primary); }

.process-icon { flex-shrink: 0; }

.process-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.process-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--text-muted);
    align-self: center;
}

/* ===========================
   Strengths
   =========================== */
.strengths-section {
    background: var(--bg-gray);
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.strength-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.strength-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.strength-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-icon-wrap--teal { background: #E0F5F3; }
.strength-icon-wrap--lime { background: var(--lime-light); }

.strength-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.strength-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Use Cases Row */
.use-cases-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.use-case-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.use-case-card--lime { background: var(--lime-light); }

.use-case-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.use-case-label--lime { color: var(--lime-dark); }

.use-case-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.use-case-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

.use-case-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-chip {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===========================
   Services
   =========================== */
.services-section {
    background: var(--bg-white);
}

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

.service-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1.5px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card--gray {
    background: var(--bg-gray);
    border-color: var(--border);
}

.service-card--lime {
    background: var(--lime-light);
    border-color: #E8EF7A;
}

.service-card--teal {
    background: var(--teal-light);
    border-color: #A7E8E1;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrap--teal { background: #E0F5F3; }
.service-icon-wrap--lime { background: rgba(255,255,255,0.5); }
.service-icon-wrap--teal2 { background: rgba(255,255,255,0.5); }

.service-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

.service-badge--teal { background: #E0F5F3; color: var(--teal); }
.service-badge--lime { background: rgba(255,255,255,0.6); color: var(--lime-dark); }

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-examples {
    background: rgba(255,255,255,0.5);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: auto;
}

.service-examples h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-examples ul {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-examples li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

/* ===========================
   Mid CTA
   =========================== */
.mid-cta {
    background: var(--bg-dark);
    padding: 60px 0;
}

.mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.mid-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 12px;
}

.mid-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.mid-cta-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.mid-cta-right { flex-shrink: 0; }

/* ===========================
   Company
   =========================== */
.company-section {
    background: var(--bg-white);
}

.company-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.company-table-wrap {
    width: 580px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr { border-bottom: 1px solid var(--border); }
.company-table tr:last-child { border-bottom: none; }

.company-table th,
.company-table td {
    padding: 18px 24px;
    text-align: left;
    font-size: 14px;
}

.company-table th {
    font-weight: 600;
    color: var(--text-primary);
    width: 120px;
    white-space: nowrap;
}

.company-table td { color: var(--text-secondary); }

.company-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card {
    background: var(--teal);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mission-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.mission-body {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.remote-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.remote-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.remote-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.remote-sub {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===========================
   Contact
   =========================== */
.contact-section {
    background: var(--teal);
    padding: 100px 0;
    text-align: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.contact-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-dark);
    padding: 32px 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

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

.footer-nav a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-nav-cta {
    color: var(--teal) !important;
    font-weight: 600;
}

.footer-divider {
    height: 1px;
    background: #2A2A2E;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-dark-secondary);
}

/* ===========================
   Scroll animations
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Scroll to top
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(20,184,166,0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 8px 20px rgba(20,184,166,0.4);
}

/* ===========================
   Responsive — Tablet (≤1024px)
   =========================== */
@media (max-width: 1024px) {
    :root { --section-pad: 64px; }

    .hero-inner { gap: 48px; }
    .hero-right { width: 420px; }

    .services-grid { grid-template-columns: 1fr; }

    .company-inner { flex-direction: column; }
    .company-table-wrap { width: 100%; }
    .company-right { width: 100%; flex-direction: row; }
    .mission-card { flex: 1; }
    .remote-card { flex: 1; }
}

/* ===========================
   Responsive — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {
    :root { --section-pad: 48px; }

    /* Header */
    .nav-cta { display: none; }
    .nav-menu {
        display: none;
        position: fixed;
        inset: 72px 0 0 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 32px 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu a::after { display: none; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hero */
    .hero-inner {
        flex-direction: column;
        gap: 40px;
    }
    .hero-right { width: 100%; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    /* Pain Points */
    .pain-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .pain-card-body { padding-left: 0; }

    /* About */
    .process-flow {
        flex-direction: column;
        gap: 12px;
    }
    .process-arrow {
        transform: rotate(90deg);
        width: 100%;
        height: 24px;
    }
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 16px;
    }
    .process-desc { display: none; }

    /* Strengths */
    .strengths-grid { grid-template-columns: 1fr; }
    .use-cases-row { grid-template-columns: 1fr; }

    /* Mid CTA */
    .mid-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .mid-cta-right .btn { width: 100%; justify-content: center; }

    /* Company */
    .company-right { flex-direction: column; }

    /* Footer */
    .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-nav { flex-wrap: wrap; gap: 16px; }
}

/* ===========================
   Responsive — Small (≤480px)
   =========================== */
@media (max-width: 480px) {
    .section-title { font-size: 24px; }
    .hero-title { font-size: 32px; }
    .contact-title { font-size: 28px; }
    .mid-cta-title { font-size: 26px; }

    .about-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .stat-divider { display: none; }
    .stat-item { padding: 0; }
}
