/* ============================================
   TALEVO — style.css
   Practical recruitment-focused design
   ============================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --white:   #FFFFFF;
    --bg:      #F7F7F8;
    --ink:     #111317;
    --mid:     #4A4F5A;
    --muted:   #8A8F9A;
    --line:    #E2E4E9;
    --accent:  #5A355F;
    --accent2: #7A4F7F;
    --green:   #16A34A;
    --yellow:  #D97706;
    --red:     #DC2626;
    --radius:  10px;
    --shadow:  0 1px 3px rgba(0,0,0,.07), 0 6px 24px rgba(0,0,0,.05);
    --shadow-lg: 0 2px 8px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.08);
    --t:       .2s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 96px 0; }

.section-head { margin-bottom: 56px; }

.section-head h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--ink);
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.eyebrow-light { color: rgba(255,255,255,.5); }

/* ── SCROLL REVEAL ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
    transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background var(--t), color var(--t), border-color var(--t), opacity var(--t);
    white-space: nowrap;
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover { background: #2A2D35; }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--mid); background: var(--bg); }

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(17,19,23,.35);
}
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; }

/* ── NAVBAR ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 1px 0 var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    padding: 6px 12px;
    font-size: 14px;
    color: var(--mid);
    border-radius: 6px;
    transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--ink); background: var(--bg); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}

.mobile-only { display: none; }

/* ── HERO ── */
.hero {
    padding: 140px 0 96px;
    background: var(--white);
    overflow: hidden;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #F0EAF1;
    color: var(--accent);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 20px;
}
.hero-title em {
    font-style: normal;
    color: var(--accent);
}

.hero-desc {
    font-size: 17px;
    color: var(--mid);
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 32px;
}

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

/* Hero pipeline visual (legacy) */
.hero-visual {
    display: flex;
    justify-content: flex-end;
}

/* ── HERO FLOATING CARDS ── */
.hero-cards {
    position: relative;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.cards-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.match-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    width: 340px;
}

.card-front { z-index: 3; transform: translate(0,0) rotate(0deg); animation: float1 9s ease-in-out infinite; }
.card-mid   { z-index: 2; transform: translate(-60px,40px) rotate(-6deg); opacity: 0.7; animation: float2 9s ease-in-out infinite; }
.card-back  { z-index: 1; transform: translate(70px,-30px) rotate(8deg); opacity: 0.45; filter: blur(3px); animation: float3 9s ease-in-out infinite; }

.card-badge {
    display: inline-block;
    background: rgba(107,76,123,0.1);
    color: #6B4C7B;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.card-title { font-size: 22px; font-weight: 700; color: #1D1D1F; margin-bottom: 8px; }
.card-desc  { font-size: 13px; color: #6E6E73; margin-bottom: 20px; line-height: 1.5; }

.bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}
.bar-row:last-child { margin-bottom: 0; }
.bar-row span:first-child {
    font-size: 12px;
    color: #3A3A3C;
    white-space: nowrap;
    min-width: 110px;
}
.bar-track {
    flex: 1;
    height: 4px;
    background: rgba(107,76,123,0.12);
    border-radius: 4px;
    position: relative;
}
.bar-fill {
    height: 100%;
    background: #6B4C7B;
    border-radius: 4px;
}
.bar-dot {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #F28A2E;
    border-radius: 50%;
}
.card-footer { margin-top: 20px; font-size: 11px; color: #999; }

@keyframes float1 { 0%,100% { transform: translate(0,0); }          50% { transform: translate(0,-6px); } }
@keyframes float2 { 0%,100% { transform: translate(-60px,40px) rotate(-6deg); } 50% { transform: translate(-60px,34px) rotate(-6deg); } }
@keyframes float3 { 0%,100% { transform: translate(70px,-30px) rotate(8deg); }  50% { transform: translate(70px,-36px) rotate(8deg); } }

.hv-window {
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hv-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.hv-dots { display: flex; gap: 6px; }
.hv-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.hv-dot.red    { background: #FF5F57; }
.hv-dot.yellow { background: #FEBC2E; }
.hv-dot.green  { background: #28C840; }

.hv-title {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.hv-body { padding: 16px; }

.hv-col-head {
    display: grid;
    grid-template-columns: 1fr .9fr .55fr;
    gap: 8px;
    padding: 0 4px 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
}

.hv-rows { display: flex; flex-direction: column; gap: 2px; }

.hv-row {
    display: grid;
    grid-template-columns: 1fr .9fr .55fr;
    gap: 8px;
    align-items: center;
    padding: 9px 8px;
    border-radius: 8px;
    transition: background var(--t);
}
.hv-row:hover { background: var(--bg); }
.hv-row--active { background: #F5F0F6; }

.hv-candidate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hv-avatar {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--c, #eee);
    color: var(--t, #888);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hv-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
}
.hv-role {
    font-size: 11px;
    color: var(--muted);
}

.hv-score {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hv-bar {
    flex: 1;
    height: 5px;
    background: var(--line);
    border-radius: 3px;
    overflow: hidden;
}
.hv-fill {
    height: 100%;
    width: var(--w, 0%);
    background: var(--accent);
    border-radius: 3px;
}
.hv-score > span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    min-width: 24px;
    text-align: right;
}

.hv-status {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
}
.status-yes  { background: #DCFCE7; color: #15803D; }
.status-wait { background: #FEF9C3; color: #A16207; }
.status-no   { background: #FEE2E2; color: #B91C1C; }

.hv-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px 0;
    margin-top: 8px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--muted);
    gap: 8px;
}
.hv-rate {
    font-weight: 600;
    color: var(--green);
}

/* ── TAGLINE STRIP ── */
.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 14px 0;
}
.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mid);
}
.strip-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--line);
    flex-shrink: 0;
}

/* ── WHAT WE DO ── */
.what { background: var(--white); }

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.what-card {
    padding: 40px 36px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background var(--t);
    border-right: 1px solid var(--line);
}
.what-card:last-child { border-right: none; }
.what-card:hover { background: var(--bg); }

.what-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--muted);
}

.what-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.3;
}

.what-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
    flex: 1;
}

.what-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-top: 4px;
    transition: opacity var(--t);
}
.what-link:hover { opacity: .7; }

/* ── PROCESS / TABS ── */
.process { background: var(--ink); }

.process-head { margin-bottom: 48px; }
.process-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}
.process-sub {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    max-width: 560px;
    line-height: 1.65;
}

.tab-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.tab-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-align: left;
    color: rgba(255,255,255,.35);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--t), border-color var(--t), background var(--t);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}
.tab-btn:hover {
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.03);
}
.tab-btn--active {
    color: var(--white);
    border-bottom-color: var(--accent2);
}

.tab-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--accent2);
    opacity: .6;
}
.tab-btn--active .tab-num { opacity: 1; }

.tab-content { min-height: 300px; }

.tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0 8px;
}
.tab-panel--active { display: grid; }

.tp-text h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.tp-text p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin-bottom: 20px;
}
.tp-text ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.tp-text li {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.tp-text li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent2);
}

.tp-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

/* Rings (tab 0) */
.tpv-rings {
    position: relative;
    width: 200px; height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tpv-ring {
    position: absolute;
    width: var(--s); height: var(--s);
    border-radius: 50%;
    border: 1px solid rgba(122,79,127,.35);
}
.tpv-core {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(90,53,95,.25);
}
.tpv-tag {
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Screen (tab 1) */
.tpv-screen {
    width: 100%;
    max-width: 280px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    overflow: hidden;
}
.tpv-screen-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.65);
}
.tpv-screen-status {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(22,163,74,.2);
    color: #4ADE80;
    border-radius: 20px;
}
.tpv-screen-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.tpv-screen-row:last-child { border-bottom: none; }
.tpv-bar-track {
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    overflow: hidden;
}
.tpv-bar-fill {
    height: 100%;
    width: var(--w, 0%);
    background: var(--accent2);
    border-radius: 3px;
}
.tpv-screen-row > span:last-child {
    font-weight: 600;
    color: rgba(255,255,255,.8);
    min-width: 24px;
    text-align: right;
}

/* Matrix (tab 2) */
.tpv-matrix {
    width: 100%;
    max-width: 260px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    overflow: hidden;
}
.tpv-matrix-head {
    display: grid;
    grid-template-columns: 1fr repeat(3, 40px);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    text-align: center;
    gap: 4px;
}
.tpv-matrix-head span:first-child { text-align: left; }
.tpv-matrix-row {
    display: grid;
    grid-template-columns: 1fr repeat(3, 40px);
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    gap: 4px;
}
.tpv-matrix-row:last-child { border-bottom: none; }
.tpv-matrix-row > span {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}
.tpv-cell {
    width: 28px; height: 28px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.tpv-cell--high { background: rgba(22,163,74,.2);  color: #4ADE80; }
.tpv-cell--mid  { background: rgba(217,119,6,.2);   color: #FCD34D; }
.tpv-cell--low  { background: rgba(220,38,38,.2);   color: #F87171; }

/* Chain (tab 3) */
.tpv-chain {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px;
}
.tpv-chain-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.tpv-chain-step span {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
}
.tpv-chain-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.15);
}
.tpv-chain-dot--done {
    background: var(--accent);
    border-color: var(--accent);
}
.tpv-chain-dot--active {
    background: transparent;
    border-color: var(--accent2);
    box-shadow: 0 0 0 4px rgba(122,79,127,.2);
}
.tpv-chain-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.1);
    margin-bottom: 24px;
}
.tpv-chain-line--done { background: var(--accent); }

/* ── SERVICES GRID ── */
.services { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    border-radius: var(--radius);
    overflow: hidden;
}

.svc-block {
    background: var(--white);
    padding: 40px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background var(--t);
}
.svc-block:hover { background: #FAFAFA; }

.svc-block-body { position: relative; z-index: 1; flex: 1; }

.svc-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.svc-block h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 10px;
}

.svc-block p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.65;
    max-width: 320px;
}

.svc-block-visual {
    position: absolute;
    right: -20px; bottom: -20px;
    width: 130px; height: 130px;
    border-radius: 50%;
    opacity: .06;
    pointer-events: none;
}
.sv-talent     { background: var(--accent); }
.sv-executive  { background: var(--ink); }
.sv-assessment { background: #0070F3; }
.sv-design     { background: #F26522; }

/* ── HOW WE WORK ── */
.how { background: var(--white); }

.steps-row {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.step-badge {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--mid);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.step-badge--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.step-connector {
    position: absolute;
    top: 23px;
    left: calc(50% + 24px);
    right: calc(-50% + 24px);
    height: 2px;
    background: var(--line);
    z-index: 0;
}
.step--last .step-connector { display: none; }

.step h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.step p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
}

/* ── TRUST GRID ── */
.trust { background: var(--bg); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    gap: 1px;
    background: var(--line);
}

.trust-item {
    background: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background var(--t);
}
.trust-item:hover { background: #FAFAFA; }

.trust-icon {
    width: 40px; height: 40px;
    background: #F5F0F6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
    line-height: 1.35;
}

.trust-item p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
}

/* ── CONTENT SECTION ── */
.content-section { background: var(--white); }

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

.content-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--t), box-shadow var(--t);
}
.content-card:hover {
    border-color: #C0C4CC;
    box-shadow: var(--shadow);
}

.content-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
}

.content-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.015em;
    line-height: 1.45;
    flex: 1;
}

.content-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    margin-top: 4px;
    transition: color var(--t);
}
.content-link:hover { color: var(--accent); }

/* ── CONTACT ── */
.contact { background: var(--bg); }

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-copy h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
    color: var(--ink);
    margin: 12px 0 16px;
}
.contact-copy p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 24px;
}
.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-meta a {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    transition: opacity var(--t);
}
.contact-meta a:hover { opacity: .7; }

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 14px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}
.field input,
.field textarea {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--t), box-shadow var(--t);
    outline: none;
    resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(90,53,95,.1);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: -4px;
}

/* ── FOOTER ── */
.site-footer { background: #111; }

.footer-wrap {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    padding: 56px 0;
}

.footer-left { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand-link .brand-icon { background: #5A355F; color: white; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.footer-brand-link .brand-name { color: white; font-size: 18px; font-weight: 600; }
.footer-iskur { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.iskur-logo { height: 40px; width: auto; }
.footer-iskur span { color: #aaa; font-size: 12px; }

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}
.footer-nav a,
.footer-contact a {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    transition: color var(--t);
}
.footer-nav a:hover,
.footer-contact a:hover { color: rgba(255,255,255,1); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 16px 0;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.45);
}

/* ── SVC SECTION (Ne Yapıyoruz — 6 kart) ── */
.svc-section {
    background: #F7F7F5;
    padding: 140px 100px;
}

.svc-wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.svc-head {
    margin-bottom: 64px;
}

.svc-h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.svc-lead {
    max-width: 760px;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.6;
    color: #5F6672;
}

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

.svc-card {
    min-height: 320px;
    padding: 38px;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    border-color: #6B4C7B;
    box-shadow: 0 16px 48px rgba(107,76,123,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.svc-card:hover .svc-arr {
    transform: translateX(4px);
}

.svc-num {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #9B8FAE;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.svc-card h3 {
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 600;
    color: #111111;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.svc-card > p {
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.7;
    color: #5F6672;
    flex: 1;
    margin-bottom: 24px;
}

.svc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.svc-pill {
    background: rgba(107,76,123,0.08);
    color: #6B4C7B;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 14px;
}

.svc-arr {
    font-size: 18px;
    color: #9B8FAE;
    transition: transform 250ms ease;
    line-height: 1;
}

/* ── SYSTEM SECTION (İki kolonlu premium blok) ── */
.system-section {
    background: white;
    padding: 120px 100px;
}

.system-wrap {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48fr 52fr;
    gap: 80px;
    align-items: center;
}

.system-h2 {
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.system-em { color: #6B4C7B; }

.system-desc {
    font-size: clamp(15px, 1.3vw, 18px);
    color: #5F6672;
    line-height: 1.7;
    margin-bottom: 40px;
}

.system-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.system-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(17,17,17,0.07);
    border-radius: 16px;
    background: #F7F7F5;
    font-size: 14px;
    color: #3A3A3C;
    line-height: 1.5;
}

.feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.feat-dot--purple { background: #6B4C7B; }
.feat-dot--orange { background: #F28A2E; }

.system-right {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sys-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sys-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    padding: 24px 28px;
    width: 300px;
}

.sys-front { z-index: 3; transform: translate(0,0);                         animation: sysfloat1 8s ease-in-out infinite; }
.sys-mid   { z-index: 2; transform: translate(-40px,60px) rotate(-4deg);    opacity: 0.75; animation: sysfloat2 8s ease-in-out infinite; }
.sys-back  { z-index: 1; transform: translate(50px,-50px) rotate(5deg);     opacity: 0.45; filter: blur(2px); animation: sysfloat3 8s ease-in-out infinite; }

.sys-card-badge {
    display: inline-block;
    background: rgba(107,76,123,0.1);
    color: #6B4C7B;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.sys-card-label {
    font-size: 18px;
    font-weight: 700;
    color: #1D1D1F;
    margin-bottom: 14px;
}

.sys-bars { display: flex; flex-direction: column; gap: 8px; }

.sys-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #6E6E73;
}
.sys-bar-row span { min-width: 90px; }

.sys-bar-track {
    flex: 1;
    height: 4px;
    background: rgba(107,76,123,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.sys-bar-fill {
    height: 100%;
    background: #6B4C7B;
    border-radius: 3px;
}

@keyframes sysfloat1 { 0%,100% { transform: translate(0,0); }                                   50% { transform: translate(0,-8px); } }
@keyframes sysfloat2 { 0%,100% { transform: translate(-40px,60px) rotate(-4deg); }              50% { transform: translate(-40px,52px) rotate(-4deg); } }
@keyframes sysfloat3 { 0%,100% { transform: translate(50px,-50px) rotate(5deg); }               50% { transform: translate(50px,-58px) rotate(5deg); } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-wrap { grid-template-columns: 1fr; gap: 48px; }
    .hero { padding: 120px 0 64px; }
    .hero-visual { justify-content: center; }
    .hv-window { max-width: 520px; }

    .what-grid { grid-template-columns: 1fr; }
    .what-card { border-right: none; border-bottom: 1px solid var(--line); }
    .what-card:last-child { border-bottom: none; }

    .svc-section { padding: 80px 40px; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }

    .system-section { padding: 80px 40px; }
    .system-wrap { grid-template-columns: 1fr; gap: 60px; }
    .system-right { min-height: 420px; }

    .tab-nav { grid-template-columns: repeat(2, 1fr); }
    .tab-panel { grid-template-columns: 1fr; gap: 32px; }

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

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

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

    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

    .footer-wrap { grid-template-columns: 1fr 1fr; }
    .footer-left { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .section { padding: 64px 0; }
    .svc-section { padding: 64px 24px; }
    .svc-grid { grid-template-columns: 1fr; }
    .svc-card { min-height: auto; padding: 28px; }
    .system-section { padding: 64px 24px; }
    .system-features { grid-template-columns: 1fr; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(12px);
        padding: 16px 24px;
        border-bottom: 1px solid var(--line);
        gap: 2px;
        z-index: 800;
    }
    .nav-links.active { display: flex; }
    .nav-links.active .nav-link { padding: 12px 16px; border-radius: 8px; }
    .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .mobile-only { display: block; }

    .hero-title { font-size: clamp(28px, 8vw, 38px); }
    .hero-desc { font-size: 15px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .steps-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 24px 0;
        border-bottom: 1px solid var(--line);
        gap: 20px;
    }
    .step:last-child { border-bottom: none; }
    .step-connector { display: none; }
    .step-badge { flex-shrink: 0; margin-bottom: 0; }

    .tab-nav { grid-template-columns: 1fr; }
    .tab-btn {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .tab-btn--active {
        border-left-color: var(--accent2);
        background: rgba(255,255,255,.04);
    }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
    }
    .footer-nav,
    .footer-contact {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hv-col-head span:nth-child(2) { display: none; }
    .hv-row .hv-score { display: none; }
    .hv-col-head { grid-template-columns: 1fr .55fr; }
    .hv-row { grid-template-columns: 1fr .55fr; }
}
