/* ===========================================
   FICOTEK — Design system
   Palette: bleu profond + accents rouges
   =========================================== */

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0c1c34;
    --color-bg-darker: #0a1628;
    --color-bg-deepest: #050d1a;
    --color-border: #e2e8f0;
    --color-border-dark: #1e293b;

    --color-text: #0c1c34;
    --color-text-muted: #475569;
    --color-text-light: #64748b;
    --color-text-on-dark: #ffffff;
    --color-text-on-dark-muted: #94a3b8;
    --color-text-on-dark-light: #cbd5e1;

    --color-blue: #1e3a8a;
    --color-blue-light: #93c5fd;
    --color-blue-bg: #dbeafe;
    --color-blue-text: #1e3a8a;

    --color-red: #dc2626;
    --color-red-light: #ef4444;
    --color-red-bg: #fee2e2;
    --color-red-text: #991b1b;

    --radius-sm: 3px;
    --radius: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    --container-max: 1200px;
    --section-py: 80px;
    --section-py-sm: 56px;

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
ul { list-style: none; }

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ===================== NAVIGATION ===================== */
.nav-wrap {
    background: var(--color-bg-dark);
    border-bottom: 0.5px solid var(--color-border-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.nav-brand img {
    height: 36px;
    width: auto;
}
.nav-brand img.logo-svg {
    height: 44px;
    width: auto;
    display: block;
}
.nav-brand-text {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.08em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: var(--color-text-on-dark-light);
    font-size: 14px;
    font-weight: 400;
    padding: 26px 0;
    position: relative;
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--color-red);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 3px;
}
.lang-switch a {
    color: var(--color-text-on-dark-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 5px 9px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.lang-switch a.active {
    background: var(--color-red);
    color: #fff;
}
.lang-switch a:hover:not(.active) {
    color: #fff;
}
.nav-cta {
    background: var(--color-red);
    color: #fff;
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
    border: 0;
}
.nav-cta:hover { background: #b91c1c; }
.nav-burger {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 8px;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    border: 0;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--color-red);
    color: #fff;
}
.btn-primary:hover { background: #b91c1c; }
.btn-secondary {
    background: transparent;
    color: var(--color-text-on-dark-light);
    border: 1px solid var(--color-border-dark);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.btn-on-light-secondary {
    background: #fff;
    color: var(--color-text);
    border: 1px solid #cbd5e1;
}
.btn-dark {
    background: var(--color-bg-dark);
    color: #fff;
}
.btn-dark:hover { background: #050d1a; }

/* ===================== HERO ===================== */
.hero {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 96px 0 88px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.hero .container { position: relative; }
.eyebrow {
    display: inline-block;
    border: 1px solid var(--color-blue);
    color: var(--color-blue-light);
    padding: 5px 14px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.eyebrow::before { content: "▎"; color: var(--color-red); margin-right: 6px; }
.hero h1 {
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 20px;
    max-width: 800px;
    letter-spacing: -0.01em;
}
.hero h1 .red { color: var(--color-red-light); }
.hero .lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text-on-dark-muted);
    max-width: 620px;
    margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===================== PILLARS (home) ===================== */
.pillars {
    background: var(--color-bg-darker);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
}
.pillar {
    padding: 44px 36px;
    border-right: 0.5px solid var(--color-border-dark);
    position: relative;
    transition: background 0.3s;
}
.pillar:last-child { border-right: 0; }
.pillar::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--color-red);
    transition: width 0.3s;
}
.pillar:hover::before { width: 100%; }
.pillar:hover { background: rgba(255, 255, 255, 0.02); }
.pillar-icon {
    width: 52px; height: 52px;
    background: var(--color-blue);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    font-size: 24px;
}
.pillar-num {
    font-size: 11px;
    color: var(--color-red);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}
.pillar h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.pillar p {
    font-size: 14px;
    color: var(--color-text-on-dark-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.pillar-link {
    font-size: 13px;
    color: var(--color-blue-light);
    font-weight: 500;
}
.pillar-link:hover { color: #fff; }

/* ===================== SECTIONS ===================== */
.section { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }
.section-light { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: #fff; }
.section-darker { background: var(--color-bg-darker); color: #fff; }
.section-white { background: #fff; }

.section-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-red);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title::before { content: "■ "; }
.section-dark .section-title,
.section-darker .section-title { color: var(--color-red-light); }

h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.25;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
.section-dark h2, .section-darker h2 { color: #fff; }

.section-sub {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 36px;
}
.section-dark .section-sub,
.section-darker .section-sub { color: var(--color-text-on-dark-muted); }

/* ===================== SERVICE GRID (home) ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.svc-card {
    background: #fff;
    border: 0.5px solid var(--color-border);
    border-left: 3px solid var(--color-blue);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card.red { border-left-color: var(--color-red); }
.svc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.svc-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.tag-fin { background: var(--color-red-bg); color: var(--color-red-text); }
.tag-cpt { background: var(--color-blue-bg); color: var(--color-blue-text); }
.svc-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}
.svc-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===================== TECH APPS ===================== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}
.app-card {
    background: var(--color-bg-darker);
    border: 0.5px solid var(--color-border-dark);
    border-top: 2px solid var(--color-blue);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: transform 0.2s;
}
.app-card.featured { border-top-color: var(--color-red); }
.app-card:hover { transform: translateY(-2px); }
.app-status {
    position: absolute;
    top: 14px; right: 14px;
    font-size: 10px;
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
}
.status-dev { background: var(--color-red); color: #fff; }
.status-soon { background: var(--color-border-dark); color: var(--color-text-on-dark-muted); border: 0.5px solid #334155; }
.app-icon {
    width: 46px; height: 46px;
    background: var(--color-border-dark);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.app-card h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #fff;
}
.app-card p {
    font-size: 13px;
    color: var(--color-text-on-dark-muted);
    line-height: 1.6;
}
.app-link {
    color: var(--color-red-light);
    font-size: 13px;
    font-weight: 500;
    margin-top: 16px;
    display: inline-block;
}

/* ===================== ABOUT GRID ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-grid ul { margin-top: 16px; }
.about-grid li {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--color-text-muted);
    align-items: flex-start;
}
.check {
    width: 22px; height: 22px;
    background: var(--color-red);
    color: #fff;
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.badge-card {
    background: var(--color-bg-dark);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 36px;
    text-align: center;
    border-top: 3px solid var(--color-red);
}
.badge-card .label {
    font-size: 11px;
    color: var(--color-text-on-dark-muted);
    letter-spacing: 0.1em;
}
.badge-card .rccm-num {
    font-size: 13px;
    font-family: ui-monospace, monospace;
    margin: 6px 0 24px;
    color: var(--color-text-on-dark-light);
}
.badge-card .dash {
    width: 36px; height: 2px;
    background: var(--color-red);
    margin: 16px auto;
}
.badge-card .year {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}
.badge-card .year-lbl {
    font-size: 11px;
    color: var(--color-text-on-dark-muted);
    margin-top: 8px;
    letter-spacing: 0.1em;
}

/* ===================== CTA BAND ===================== */
.cta-band {
    background: var(--color-red);
    color: #fff;
    padding: 48px 0;
}
.cta-band .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band h3 { font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.cta-band p { font-size: 15px; margin: 0; opacity: 0.92; }

/* ===================== FOOTER ===================== */
.foot {
    background: var(--color-bg-deepest);
    color: var(--color-text-on-dark-muted);
    padding: 56px 0 24px;
    font-size: 13px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}
.foot h4 {
    color: #fff;
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.foot h4::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-red);
    margin-top: 8px;
}
.foot a {
    display: block;
    padding: 5px 0;
    color: var(--color-text-on-dark-muted);
    font-size: 13px;
    transition: color 0.2s;
}
.foot a:hover { color: #fff; }
.foot .brand-info { line-height: 1.7; opacity: 0.85; }
.foot-bot {
    border-top: 0.5px solid var(--color-border-dark);
    padding-top: 18px;
    font-size: 12px;
    opacity: 0.6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===================== PAGE HEADER (internal pages) ===================== */
.pheader {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}
.pheader::before {
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.pheader .container { position: relative; }
.crumb {
    font-size: 12px;
    color: var(--color-text-on-dark-muted);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.crumb .sep { color: var(--color-red); margin: 0 8px; }
.pheader h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.pheader h1 .red { color: var(--color-red-light); }
.pheader p {
    font-size: 16px;
    color: var(--color-text-on-dark-muted);
    max-width: 640px;
    line-height: 1.65;
}

/* ===================== FILTERS / TABS ===================== */
.tabs {
    display: flex;
    gap: 6px;
    padding: 24px 0;
    flex-wrap: wrap;
}
.tab {
    padding: 10px 18px;
    font-size: 14px;
    color: var(--color-text-light);
    border-radius: var(--radius);
    cursor: pointer;
    background: transparent;
    border: 0;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.tab .count {
    display: inline-block;
    margin-left: 6px;
    background: rgba(0,0,0,0.06);
    padding: 1px 8px;
    border-radius: 99px;
    font-size: 11px;
}
.tab:hover { background: rgba(0,0,0,0.04); }
.tab.active {
    background: var(--color-bg-dark);
    color: #fff;
}
.tab.active .count { background: rgba(255,255,255,0.15); color: #fff; }

/* ===================== SERVICE ROWS (services page) ===================== */
.svc-rows { display: grid; gap: 12px; }
.svc-row {
    background: #fff;
    border: 0.5px solid var(--color-border);
    border-left: 3px solid var(--color-blue);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 20px;
    align-items: start;
    transition: box-shadow 0.2s, transform 0.2s;
}
.svc-row.red { border-left-color: var(--color-red); }
.svc-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-1px); }
.svc-row-icon {
    width: 56px; height: 56px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-size: 22px;
}
.svc-row.red .svc-row-icon { background: var(--color-red-bg); }
.svc-row-title-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.svc-row h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
}
.svc-row p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.svc-row-bullets {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--color-text-muted);
}
.svc-row-bullets span::before { content: "› "; color: var(--color-red); font-weight: 700; }
.svc-row-cta {
    font-size: 13px;
    color: var(--color-red);
    font-weight: 500;
    white-space: nowrap;
    align-self: center;
}

/* ===================== PROCESS STEPS ===================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.step { position: relative; }
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: var(--color-border-dark);
}
.step-num {
    width: 48px; height: 48px;
    border: 1.5px solid var(--color-red);
    color: var(--color-red);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--color-bg-dark);
}
.step h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #fff;
}
.step p {
    font-size: 13px;
    color: var(--color-text-on-dark-muted);
    line-height: 1.6;
}

/* ===================== FEATURED APP ===================== */
.feat-app {
    background: var(--color-bg-darker);
    border: 0.5px solid var(--color-border-dark);
    border-left: 3px solid var(--color-red);
    border-radius: var(--radius-md);
    padding: 36px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
}
.feat-status {
    display: inline-block;
    background: var(--color-red);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.feat-status::before { content: "● "; }
.feat-app h3 { font-size: 28px; margin-bottom: 8px; font-weight: 500; color: #fff; }
.feat-tagline {
    font-size: 14px;
    color: var(--color-blue-light);
    margin-bottom: 16px;
    font-style: italic;
}
.feat-app p {
    font-size: 14px;
    color: var(--color-text-on-dark-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.feat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    margin-bottom: 24px;
}
.feat-features div {
    font-size: 13px;
    color: var(--color-text-on-dark-light);
}
.feat-features div::before { content: "› "; color: var(--color-red); font-weight: 700; }
.feat-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.feat-visual {
    background: var(--color-bg-deepest);
    border-radius: var(--radius);
    padding: 24px;
    border: 0.5px solid var(--color-border-dark);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feat-visual .row-mock { background: var(--color-border-dark); height: 10px; border-radius: 2px; }
.feat-visual .row-mock.short { width: 60%; }
.feat-visual .row-mock.colored { background: var(--color-blue); height: 18px; width: 70%; }
.feat-visual .grid-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 8px 0;
}
.feat-visual .cell-mock {
    background: var(--color-bg-darker);
    aspect-ratio: 1.4/1;
    border-radius: 2px;
    border: 0.5px solid var(--color-border-dark);
}
.feat-visual .cell-mock.red { border-color: var(--color-red); }

/* ===================== STACK CARD (techno page) ===================== */
.stack-card {
    background: var(--color-bg-dark);
    border-radius: var(--radius-md);
    padding: 32px;
    color: #fff;
    border-top: 3px solid var(--color-red);
}
.stack-card h4 { font-size: 16px; margin-bottom: 18px; font-weight: 500; }
.stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.stack-item {
    background: var(--color-bg-darker);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--color-text-on-dark-light);
    border: 0.5px solid var(--color-border-dark);
}
.stack-item::before { content: "▌"; color: var(--color-red); margin-right: 8px; }

/* ===================== VALUES (about) ===================== */
.val-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.val {
    background: #fff;
    border: 0.5px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 3px solid var(--color-red);
}
.val.alt { border-top-color: var(--color-blue); }
.val-icon {
    width: 44px; height: 44px;
    background: var(--color-red-bg);
    color: var(--color-red);
    border-radius: var(--radius);
    display: grid; place-items: center;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}
.val.alt .val-icon { background: var(--color-blue-bg); color: var(--color-blue); }
.val h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}
.val p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===================== KEY FIGURES ===================== */
.kf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.kf {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 24px;
    border-radius: var(--radius);
    border-left: 3px solid var(--color-red);
}
.kf .num {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}
.kf .lbl {
    font-size: 12px;
    color: var(--color-text-on-dark-muted);
    margin-top: 6px;
    letter-spacing: 0.06em;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 56px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: var(--container-max);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.contact-left {
    padding: 56px 48px;
    background: var(--color-bg-dark);
    color: #fff;
}
.contact-left h2 { color: #fff; }
.contact-info-block {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 0.5px solid var(--color-border-dark);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--color-blue);
    border-radius: var(--radius);
    display: grid; place-items: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 11px;
    color: var(--color-text-on-dark-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-info-value {
    font-size: 15px;
    color: #fff;
    margin-top: 3px;
}
.contact-info-extra {
    font-size: 12px;
    color: var(--color-blue-light);
    margin-top: 3px;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social {
    width: 40px; height: 40px;
    background: var(--color-border-dark);
    border-radius: var(--radius);
    display: grid; place-items: center;
    color: var(--color-text-on-dark-light);
    font-size: 14px;
    font-weight: 600;
    border: 0.5px solid #334155;
    transition: all 0.2s;
}
.social:hover { background: var(--color-red); color: #fff; border-color: var(--color-red); }
.contact-right {
    padding: 56px 48px;
    background: #fff;
}
.form { display: grid; gap: 16px; }
.field label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 0.5px solid #cbd5e1;
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--color-bg-alt);
    color: var(--color-text);
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0;
    border-color: var(--color-red);
    background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.submit {
    background: var(--color-red);
    color: #fff;
    border: 0;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 6px;
}
.submit:hover { background: #b91c1c; }
.legal {
    font-size: 12px;
    color: var(--color-text-on-dark-muted);
    margin-top: 12px;
    line-height: 1.5;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .container { padding: 0 20px; }
    .hero { padding: 64px 0 56px; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: 0; border-bottom: 0.5px solid var(--color-border-dark); }
    .pillar:last-child { border-bottom: 0; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(2)::after { display: none; }
    .feat-app { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; margin: 32px 0; border-radius: 0; }
    .contact-left, .contact-right { padding: 40px 24px; }
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .nav-cta { display: none; }
    .section { padding: 56px 0; }
    .cta-band .container { flex-direction: column; align-items: flex-start; }
    .svc-row { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
    .svc-row-cta { grid-column: 2; }
}
@media (max-width: 600px) {
    .foot-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step:not(:last-child)::after { display: none; }
    .kf-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .lang-switch { padding: 2px; }
    .lang-switch a { padding: 4px 7px; font-size: 10px; }
    .nav-brand img.logo-svg { height: 34px; }
}

/* ===================== MOBILE MENU OVERLAY ===================== */
.mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--color-bg-dark);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 99;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 50