/* =========================================================
   CRM Tanıtım Hizmetleri — Modern rebuild
   Tek stylesheet · responsive · design tokens
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --bg: #ffffff;
    --bg-soft: #f5f6f8;
    --bg-dark: #14161c;
    --bg-dark-2: #1c1f27;

    --ink: #16181d;
    --text: #414651;
    --muted: #767b86;

    --brand: #fdcd0b;         /* logo yellow */
    --brand-dark: #e6b800;    /* hover yellow */
    --brand-soft: #fff5cc;    /* light yellow tint */
    --brand-ink: #7a5d00;     /* dark mustard — readable text/icon on light */

    --red: #c60000;           /* secondary accent */
    --red-dark: #a00000;

    --border: #e7e9ee;

    --r-sm: 10px;
    --r: 16px;
    --r-lg: 26px;
    --r-full: 999px;

    --shadow-sm: 0 1px 2px rgba(16, 18, 24, .06), 0 1px 3px rgba(16, 18, 24, .04);
    --shadow: 0 10px 30px -12px rgba(16, 18, 24, .18);
    --shadow-lg: 0 30px 60px -20px rgba(16, 18, 24, .30);

    --container: 1180px;
    --nav-h: 76px;

    --ease: cubic-bezier(.22, .61, .36, 1);

    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head: "Sora", var(--font-body);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 .5em;
    font-weight: 700;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 600;
}
.skip-link:focus { left: 12px; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #c8ccd6; }
.section--tight { padding: 64px 0; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.section-head.center .eyebrow, .section-head:not(.left) .eyebrow { justify-content: center; }

h2.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--muted); font-size: 18px; margin-bottom: 0; }

.lead { font-size: 20px; color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
    --btn-bg: var(--brand);
    --btn-fg: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 15px 26px;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    background: var(--btn-bg);
    color: var(--btn-fg);
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    box-shadow: 0 8px 20px -10px rgba(20, 22, 28, .35);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--brand-dark); color: var(--ink); box-shadow: 0 14px 26px -12px rgba(20, 22, 28, .4); }
.btn:active { transform: translateY(0); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border);
    box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }

.btn--dark { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: #000; color: #fff; }

.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn--light:hover { background: #fff; color: var(--brand-ink); }

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

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; border-radius: 9px; display: block; }

.main-nav { display: flex; align-items: center; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-menu a:not(.btn) {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
    padding: 9px 10px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-menu a:not(.btn):hover { background: var(--bg-soft); color: var(--ink); }
.nav-menu a.is-active { color: var(--ink); background: var(--brand-soft); }
.nav-menu .nav-cta { margin-left: 6px; }

/* Language switch */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
    padding-left: 10px;
    border-left: 1px solid var(--border);
}
.nav-lang .lang {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    padding: 6px 7px;
    border-radius: 7px;
}
.nav-lang .lang:hover { color: var(--ink); background: var(--bg-soft); }
.nav-lang .lang.is-active { color: var(--ink); }
.nav-lang .lang-sep { color: var(--border); font-size: 13px; }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(64px, 9vw, 120px) 0 clamp(72px, 9vw, 110px);
    background:
        radial-gradient(1100px 520px at 85% -10%, rgba(253, 205, 11, .22), transparent 60%),
        radial-gradient(760px 460px at 0% 110%, rgba(20, 22, 28, .05), transparent 55%),
        var(--bg);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 62px);
    letter-spacing: -.03em;
    margin-bottom: 22px;
}
.hero h1 .accent, .hl {
    background-image: linear-gradient(transparent 58%, rgba(253, 205, 11, .85) 0);
    padding: 0 .06em;
    border-radius: 2px;
}
.hero p { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 34ch; margin-bottom: 34px; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-soft);
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .02em;
    padding: 8px 16px 8px 12px;
    border-radius: var(--r-full);
    margin-bottom: 26px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(198, 0, 0, .18); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
    position: relative;
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 34px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    isolation: isolate;
}
.hero-card::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 100% 0%, rgba(253, 205, 11, .38), transparent 60%);
    z-index: -1;
}
.hero-card h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.hero-card .muted { color: #9aa0ad; font-size: 15px; margin-bottom: 26px; }
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-metric {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r);
    padding: 18px;
}
.hero-metric b { display: block; font-family: var(--font-head); font-size: 30px; color: #fff; line-height: 1; }
.hero-metric span { font-size: 13.5px; color: #9aa0ad; }
.hero-card .card-foot {
    margin-top: 22px; padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: #c8ccd6;
}
.hero-card .card-foot svg { color: var(--brand); flex: none; }
/* hero card foot check icon uses brand yellow on dark — good contrast */

/* ---------- Trust / logos strip ---------- */
.trust {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 10px 12px;
    font-family: var(--font-head);
    font-size: 14.5px;
}
.trust .trust-label { color: var(--ink); font-weight: 700; margin-right: 4px; }
.trust a.trust-chip {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-soft);
    padding: 9px 16px;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.trust a.trust-chip:hover {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ---------- Value flow (spotwords) ---------- */
.spotflow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 6px;
    font-family: var(--font-head);
}
.spotflow .spot {
    position: relative;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(16px, 2.3vw, 23px);
    letter-spacing: -.01em;
    color: var(--ink);
    background: none;
    border: 0;
    padding: 4px 6px;
    cursor: pointer;
    transition: color .2s var(--ease);
}
.spotflow .spot:hover { color: var(--red); }
.spotflow .spot.active { color: var(--red); }
.spotflow .spot.active::after {
    content: "";
    position: absolute; left: 6px; right: 6px; bottom: -1px;
    height: 3px; border-radius: 3px;
    background: var(--red);
}
.spotflow .spot-arrow { color: var(--muted); display: inline-flex; }
.spotflow .spot-arrow svg { width: 20px; height: 20px; }
.spotflow .spot-eq {
    color: var(--muted);
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 24px);
    margin: 0 4px;
}
.spotflow .spot-crm {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(24px, 3.2vw, 34px);
    letter-spacing: -.03em;
    color: var(--ink);
}

.spot-panel {
    position: relative;
    max-width: 620px;
    margin: 30px auto 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    border-radius: 16px;
    padding: 18px 26px;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 500;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.5;
    box-shadow: 0 18px 34px -16px rgba(198, 0, 0, .55);
}
.spot-panel::before {
    content: "";
    position: absolute;
    top: -8px;
    left: var(--arrow-x, 50%);
    transform: translateX(-50%) rotate(45deg);
    width: 16px; height: 16px;
    background: var(--red);
    border-radius: 3px;
}
.spot-panel-text { margin: 0; }

/* ---------- Stat band ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat b {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 52px);
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.03em;
}
.section--dark .stat b { color: #fff; }
.stat .stat-plus { color: var(--brand); }
.stat span { color: var(--muted); font-size: 15px; }

/* ---------- Service cards ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover .card-icon, .service:hover .card-icon { background: var(--red); color: #fff; }
.card:hover .card-link { color: var(--red); }
.card-icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--ink);
    color: var(--brand);
    margin-bottom: 22px;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.card .card-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    display: inline-flex; align-items: center; gap: 6px;
}
.card .card-link svg { transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service list (detailed page) */
.service-list { display: grid; gap: 20px; }
.service {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 30px 32px;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
    scroll-margin-top: 100px;
}
.service:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service .card-icon { margin-bottom: 0; }
.service h3 { font-size: 21px; margin-bottom: 12px; }
.service ul { list-style: none; display: grid; gap: 9px; }
.service ul li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-size: 15.5px;
}
.service ul li::before {
    content: "";
    position: absolute; left: 0; top: 8px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fbe4e4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23c60000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ---------- Feature / why-us ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}
.feature-list { display: grid; gap: 22px; }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
.feature-item .fi-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: var(--ink);
    color: var(--brand);
}
.feature-item .fi-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 18px; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: 15.5px; margin: 0; }

.media-card {
    background: linear-gradient(150deg, var(--bg-dark), var(--bg-dark-2));
    border-radius: var(--r-lg);
    padding: 40px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.media-card::after {
    content: "";
    position: absolute; right: -60px; top: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 205, 11, .4), transparent 70%);
}
.media-card .big-quote { font-family: var(--font-head); font-size: 26px; line-height: 1.4; color: #fff; letter-spacing: -.01em; }
.media-card .quote-by { margin-top: 22px; color: #9aa0ad; font-size: 15px; }

/* ---------- Values chips ---------- */
.values { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.value-chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 12px 22px;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.value-chip svg { color: var(--ink); width: 18px; height: 18px; }

/* ---------- References (client logos) ---------- */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
    gap: 14px;
}
.ref-item {
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    min-height: 82px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.ref-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.ref-item img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    filter: grayscale(1);
    opacity: .7;
    transition: filter .25s var(--ease), opacity .25s var(--ease);
}
.ref-item:hover img { filter: none; opacity: 1; }
@media (max-width: 560px) {
    .ref-grid { grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
    .ref-item { padding: 14px 10px; min-height: 68px; }
    .ref-item img { max-height: 32px; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 4px 24px;
    transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-size: 24px;
    color: var(--brand-ink);
    line-height: 1;
    transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 20px; color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- Contact form ---------- */
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field textarea {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 13px 15px;
    width: 100%;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(253, 205, 11, .25);
}
.field textarea { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-head);
    font-weight: 500;
}
.form-note.ok { background: #eafaf0; color: #1a7f4b; border: 1px solid #bce8cf; }
.form-note.err { background: var(--brand-soft); color: var(--brand-ink); border: 1px solid #f2dd9a; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(150deg, #1b1e26 0%, #14161c 100%);
    border-radius: var(--r-lg);
    padding: 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(520px 260px at 88% -12%, rgba(253, 205, 11, .26), transparent 60%),
        radial-gradient(460px 240px at 4% 116%, rgba(198, 0, 0, .22), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, .74); font-size: 19px; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    padding: clamp(56px, 7vw, 90px) 0 clamp(40px, 5vw, 60px);
    background:
        radial-gradient(900px 380px at 90% -20%, rgba(253, 205, 11, .22), transparent 60%),
        var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.page-hero .container { max-width: 820px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-hero p { font-size: 19px; color: var(--muted); margin: 0; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 18px; font-family: var(--font-head); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }

/* ---------- Prose (about/hr text) ---------- */
.prose { max-width: 760px; }
.prose p { font-size: 18px; color: var(--text); }
.prose p:first-of-type { font-size: 21px; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.office { display: grid; gap: 24px; }
.office-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
}
.office-card h3 { font-size: 19px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.office-card h3 .tag {
    font-family: var(--font-head);
    font-size: 12px; font-weight: 600;
    letter-spacing: .04em;
    color: var(--brand-ink);
    background: var(--brand-soft);
    padding: 4px 10px; border-radius: var(--r-full);
}
.contact-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--text); font-size: 15.5px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row svg { color: var(--brand-ink); flex: none; margin-top: 3px; width: 18px; height: 18px; }
.contact-row a { color: var(--text); }
.contact-row a:hover { color: var(--brand-ink); }

.map-wrap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #9aa0ad; padding: 72px 0 32px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand-word {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    letter-spacing: -.02em;
}
.footer-brand-word { color: var(--brand); }
.footer-brand-word span { color: var(--brand); }
.footer-tag { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: #767b86; margin-top: 2px; }
.site-footer p { font-size: 14.5px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head); }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col ul a { color: #9aa0ad; font-size: 15px; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--brand); flex: none; margin-top: 3px; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
    display: flex; flex-wrap: wrap; gap: 12px;
    align-items: center; justify-content: space-between;
    padding-top: 26px;
    font-size: 13.5px;
    color: #767b86;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero p { max-width: none; }
    .feature-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1120px) {
    .nav-toggle { display: inline-flex; }
    .main-nav { position: static; }
    .nav-menu {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 14px 20px 22px;
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s var(--ease), opacity .25s var(--ease);
    }
    .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
    .nav-menu a:not(.btn) { padding: 14px 12px; font-size: 17px; border-radius: 10px; }
    .nav-menu .nav-cta { margin: 10px 0 0; }
    .nav-menu .nav-cta .btn { width: 100%; }
    .nav-lang { border-left: none; padding-left: 12px; margin: 6px 0 0; }
    .nav-lang .lang { padding: 10px 12px; font-size: 16px; }
    .service { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .section { padding: 64px 0; }
    .container { padding-inline: 18px; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 40px 24px; }
    .hero-card, .media-card { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn:hover, .card:hover, .service:hover { transform: none; }
}
