@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080b10;
    --bg2: #0d1117;
    --bg3: #111820;
    --surface: #141c27;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #e8ff47;
    --accent2: #47c8ff;
    --accent3: #ff6b47;
    --text: #e8edf5;
    --muted: #7a8899;
    --font-head: "Sora", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: #080b10;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(8, 11, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 40%;
    height: 100%;
    text-decoration: none;
}

.nav-logo-media {
    width: 220px;
    height: 100%;
}

.nav-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
}
.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.2s ease;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: #080b10 !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: opacity 0.2s !important;
}
.nav-cta:hover {
    opacity: 0.85;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    overflow: hidden;
}

/* Radial glow blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(232, 255, 71, 0.07);
    top: -100px;
    left: -150px;
}
.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(71, 200, 255, 0.06);
    bottom: -50px;
    right: -100px;
}
.blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 71, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 255, 71, 0.08);
    border: 1px solid rgba(232, 255, 71, 0.2);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

h1 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    background: var(--accent);
    color: #080b10;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition:
        transform 0.2s,
        opacity 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition:
        border-color 0.2s,
        transform 0.2s;
}
.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
    text-align: center;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
}
.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION SHARED ── */
section {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
}

/* ── PROBLEM ── */
#problem {
    background: var(--bg2);
    padding: 100px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-header {
    text-align: center;
    margin-bottom: 64px;
}
.problem-header .section-sub {
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.problem-col-head {
    padding: 20px 32px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.problem-col-head.promise {
    background: rgba(255, 107, 71, 0.08);
    color: var(--accent3);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.problem-col-head.reality {
    background: rgba(232, 255, 71, 0.06);
    color: var(--accent);
    border-bottom: 1px solid var(--border);
}

.problem-row {
    display: contents;
}

.problem-cell {
    padding: 20px 28px;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.problem-row:last-child .problem-cell {
    border-bottom: none;
}

.problem-cell.left {
    background: rgba(255, 107, 71, 0.03);
    border-right: 1px solid var(--border);
    color: var(--muted);
    position: relative;
    padding-left: 44px;
}
.problem-cell.left::before {
    content: "✕";
    position: absolute;
    left: 18px;
    top: 21px;
    color: var(--accent3);
    font-size: 12px;
    font-weight: 700;
}

.problem-cell.right {
    background: rgba(232, 255, 71, 0.025);
    color: var(--text);
    position: relative;
    padding-left: 44px;
}
.problem-cell.right::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 21px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

/* ── PILLARS ── */
#pillars {
    padding: 100px 5%;
}

.pillars-header {
    text-align: center;
    margin-bottom: 64px;
}
.pillars-header .section-sub {
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.pillar-card {
    background: var(--surface);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background 0.3s;
}
.pillar-card:hover {
    background: #192030;
}

.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 28px;
    flex-shrink: 0;
}
.pillar-card:nth-child(1) .pillar-icon {
    background: rgba(71, 200, 255, 0.1);
}
.pillar-card:nth-child(2) .pillar-icon {
    background: rgba(232, 255, 71, 0.1);
}
.pillar-card:nth-child(3) .pillar-icon {
    background: rgba(255, 107, 71, 0.1);
}

.pillar-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.pillar-title {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.pillar-card:nth-child(1) .pillar-title {
    color: var(--accent2);
}
.pillar-card:nth-child(2) .pillar-title {
    color: var(--accent);
}
.pillar-card:nth-child(3) .pillar-title {
    color: var(--accent3);
}

.pillar-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.pillar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pillar-features li {
    font-size: 13.5px;
    color: var(--text);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.pillar-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--muted);
    font-size: 12px;
}

/* ── PROCESS ── */
#process {
    background: var(--bg2);
    padding: 100px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-header {
    text-align: center;
    margin-bottom: 72px;
}
.process-header .section-sub {
    margin: 0 auto;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--accent),
        var(--accent2),
        var(--accent3),
        transparent
    );
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.process-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 12px;
}

.step-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.step-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.step-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232, 255, 71, 0.08);
    border: 1px solid rgba(232, 255, 71, 0.15);
    padding: 3px 10px;
    border-radius: 4px;
}

/* ── WHY US ── */
#why {
    padding: 100px 5%;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-left h2 {
    margin-bottom: 20px;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.2s;
}
.why-card:hover {
    border-color: rgba(232, 255, 71, 0.2);
}

.why-card-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-card-text strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}
.why-card-text p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.why-right {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.why-right::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(232, 255, 71, 0.06);
    border-radius: 50%;
    filter: blur(40px);
}

.market-insight {
    position: relative;
    z-index: 1;
}

.insight-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.insight-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(232, 255, 71, 0.2);
}

.insight-big {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 8px;
}

.insight-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.insight-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.insight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.insight-metric strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}
.insight-metric span {
    font-size: 12px;
    color: var(--muted);
}

/* ── CONTACT ── */
#contact {
    background: var(--bg2);
    padding: 100px 5%;
    border-top: 1px solid var(--border);
}

/* ── FAQ ── */
#faq {
    padding: 100px 5%;
}

.faq-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}

.faq-item h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    margin-bottom: 16px;
}
.contact-left .section-sub {
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
}
.contact-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: var(--accent);
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* FORM */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px;
}

.form-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.form-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.form-group select option {
    background: var(--bg2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(232, 255, 71, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    background: var(--accent);
    color: #080b10;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition:
        opacity 0.2s,
        transform 0.2s;
    margin-top: 8px;
}
.form-submit:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
}
.form-success .checkmark {
    font-size: 3rem;
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--muted);
    font-size: 14px;
}

/* ── FOOTER ── */
footer {
    padding: 40px 5%;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--text);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav {
        height: 64px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-logo-media {
        width: 180px;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(8, 11, 16, 0.98);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .nav-links.open {
        max-height: 340px;
    }

    .nav-links li {
        width: 100%;
        border-top: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 5%;
    }

    .nav-links .nav-cta {
        margin: 12px 5% 16px;
        display: inline-block;
        width: calc(100% - 10%);
        text-align: center;
    }

    #hero {
        min-height: auto;
        padding-top: 108px;
    }

    .hero-stats {
        margin-top: 48px;
        padding-top: 32px;
        gap: 28px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .problem-col-head.promise,
    .problem-cell.left {
        border-right: none;
    }
    .problem-col-head.reality {
        display: none;
    }
    .problem-cell.right {
        display: none;
    }
    .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-list {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 18px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: clamp(2.1rem, 10vw, 2.6rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-stats {
        gap: 18px;
        justify-content: flex-start;
    }

    .stat {
        text-align: left;
        width: 100%;
    }

    .contact-form {
        padding: 28px 20px;
    }
    .why-right {
        padding: 28px 20px;
    }
    .insight-big {
        font-size: 3rem;
    }

    .problem-cell,
    .pillar-card,
    .process-step {
        padding-left: 18px;
        padding-right: 18px;
    }
}
