/* ============================================================
   KRIWEB — Colors & Type Foundations
   Dorabase Veri Merkezi Hizmetleri A.Ş.
   Brand: Güven. Kesinti Yok. Sürpriz Yok.
   ============================================================ */

/* ---------- Poppins — self-hosted brand fonts ---------- */



















:root {
  /* ---------- BRAND CORE (verbatim from brand brief) ---------- */
  --navy:   #05284d;  /* Lacivert  — primary, trust, B2B seriousness  */
  --slate:  #38475d;  /* Arduvaz   — secondary text & supporting UI    */
  --orange: #df7e38;  /* Turuncu   — accent, CTAs, Krican's warmth     */
  --ice:    #f5f7fb;  /* Buz Mavisi— airy backgrounds, white-space     */

  /* ---------- NAVY SCALE (primary) ---------- */
  --navy-950: #021526;
  --navy-900: #05284d;
  --navy-800: #0a325c;
  --navy-700: #114073;
  --navy-600: #1c5290;
  --navy-500: #2d68ad;
  --navy-400: #5a8cc9;
  --navy-300: #93b4dd;
  --navy-200: #c3d6ed;
  --navy-100: #e3ecf7;
  --navy-50:  #f1f6fc;

  /* ---------- SLATE SCALE (neutral / text) ---------- */
  --slate-900: #1f2733;
  --slate-800: #2a3441;
  --slate-700: #38475d;
  --slate-600: #4b5b73;
  --slate-500: #647389;
  --slate-400: #8893a5;
  --slate-300: #aeb6c4;
  --slate-200: #d2d8e1;
  --slate-100: #e7ebf1;
  --slate-50:  #f5f7fb;

  /* ---------- ORANGE SCALE (accent) ---------- */
  --orange-900: #7a3f12;
  --orange-800: #9c531c;
  --orange-700: #be6827;
  --orange-600: #d07330;
  --orange-500: #df7e38;  /* base */
  --orange-400: #e89b62;
  --orange-300: #f0b88c;
  --orange-200: #f6d4ba;
  --orange-100: #fbe9dc;
  --orange-50:  #fdf4ee;

  /* ---------- SEMANTIC STATUS ---------- */
  --success:   #1f8a5b;
  --success-bg:#e6f4ec;
  --warning:   #c8881d;
  --warning-bg:#fcf2dc;
  --danger:    #c4453f;
  --danger-bg: #fbe9e8;
  --info:      var(--navy-500);
  --info-bg:   var(--navy-100);

  /* ---------- SURFACES & TEXT (semantic) ---------- */
  --bg-page:       var(--ice);
  --bg-surface:    #ffffff;
  --bg-raised:     #ffffff;
  --bg-sunken:     #eef1f7;
  --bg-navy:       var(--navy);
  --bg-inverse:    var(--navy);

  --fg-1: var(--navy);        /* primary headings / strong text */
  --fg-2: var(--slate-700);   /* body text                       */
  --fg-3: var(--slate-500);   /* muted / secondary               */
  --fg-4: var(--slate-400);   /* placeholder / disabled          */
  --fg-on-navy:   #eaf1fa;
  --fg-on-orange: #ffffff;

  --border:        var(--slate-200);
  --border-strong: var(--slate-300);
  --border-subtle: var(--slate-100);

  --accent:        var(--orange-500);
  --accent-hover:  var(--orange-600);
  --accent-press:  var(--orange-700);
  --link:          var(--navy-600);

  /* ---------- LIVE-SITE TOKENS (as-built, from KRIWEB.fig) ----------
     The existing kriweb.com uses these. The brand-core tokens above are
     the strategic refresh; these mirror the shipped product so the
     website UI kit can replicate it faithfully. */
  --site-ink:        #232323;  /* headlines / body on the live site   */
  --site-slate:      #38475d;  /* primary buttons & structural color   */
  --site-orange:     #ef7917;  /* live CTA / featured orange (brighter)*/
  --site-sage:       #dfe3dd;  /* soft hero panel background           */
  --site-peach:      #ffe5d2;  /* discount-badge background            */
  --site-green:      #56ab68;  /* uptime / success badge               */
  --site-gray-bg:    #f2f2f2;  /* alternating section background       */
  --site-placeholder:#a9a9a9;  /* input placeholder                    */
  --site-hairline:   #e8eaeb;  /* nav + divider hairline               */
  --site-strike:     #8a8a8a;  /* struck-through old price             */

  /* ---------- TYPE ---------- */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SFMono-Regular', ui-monospace, 'JetBrains Mono', 'Cascadia Code', Consolas, monospace;

  /* Weights */
  --w-light: 300;
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --w-extra: 800;

  /* Fluid display + fixed UI scale (1.25 major-third-ish) */
  --text-display: 700 clamp(2.75rem, 1.6rem + 4.2vw, 4.5rem)/1.04 var(--font-sans);
  --text-h1: 700 2.5rem/1.1 var(--font-sans);
  --text-h2: 600 2rem/1.15 var(--font-sans);
  --text-h3: 600 1.5rem/1.25 var(--font-sans);
  --text-h4: 600 1.25rem/1.3 var(--font-sans);
  --text-lead: 400 1.25rem/1.6 var(--font-sans);
  --text-body: 400 1rem/1.65 var(--font-sans);
  --text-sm: 400 0.875rem/1.55 var(--font-sans);
  --text-xs: 500 0.75rem/1.4 var(--font-sans);
  --text-overline: 600 0.75rem/1.2 var(--font-sans);

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-overline: 0.12em;

  /* ---------- RADII ---------- */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* ---------- SPACING (4pt base) ---------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* ---------- SHADOWS (cool navy-tinted) ---------- */
  --shadow-xs: 0 1px 2px rgba(5, 40, 77, 0.06);
  --shadow-sm: 0 1px 3px rgba(5, 40, 77, 0.08), 0 1px 2px rgba(5, 40, 77, 0.04);
  --shadow-md: 0 4px 12px rgba(5, 40, 77, 0.08), 0 2px 4px rgba(5, 40, 77, 0.04);
  --shadow-lg: 0 12px 28px rgba(5, 40, 77, 0.12), 0 4px 8px rgba(5, 40, 77, 0.05);
  --shadow-xl: 0 24px 56px rgba(5, 40, 77, 0.16), 0 8px 16px rgba(5, 40, 77, 0.06);
  --shadow-accent: 0 8px 20px rgba(223, 126, 56, 0.28);

  /* ---------- MOTION ---------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 140ms;
  --dur-med: 240ms;
  --dur-slow: 420ms;
}

/* ============================================================
   SEMANTIC ELEMENT DEFAULTS (opt-in via .kw-prose / utilities)
   ============================================================ */
.kw-display { font: var(--text-display); letter-spacing: var(--tracking-tight); color: var(--fg-1); }
.kw-h1 { font: var(--text-h1); letter-spacing: var(--tracking-tight); color: var(--fg-1); }
.kw-h2 { font: var(--text-h2); letter-spacing: var(--tracking-tight); color: var(--fg-1); }
.kw-h3 { font: var(--text-h3); color: var(--fg-1); }
.kw-h4 { font: var(--text-h4); color: var(--fg-1); }
.kw-lead { font: var(--text-lead); color: var(--fg-2); }
.kw-body { font: var(--text-body); color: var(--fg-2); }
.kw-sm { font: var(--text-sm); color: var(--fg-3); }
.kw-overline {
  font: var(--text-overline);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   KRIWEB — Referanslar / Müşteriler landing page
   Page styles. Built on colors_and_type.css (live-site tokens).
   ============================================================ */

:root {
  /* Accent + structural colors (accent is Tweak-overridable) */
  --c-accent: var(--site-orange);      /* #ef7917 */
  --c-accent-ink: #ffffff;
  --c-ink: var(--site-ink);            /* #232323 */
  --c-slate: var(--site-slate);        /* #38475d */
  --c-hairline: var(--site-hairline);  /* #e8eaeb */
  --c-muted: #6b7686;

  /* Density (Tweak-overridable via [data-density]) */
  --section-py: 92px;

  /* Corner style (Tweak-overridable via [data-corners]) */
  --card-r: 18px;
  --chip-r: 999px;
  --btn-r: 11px;

  --maxw: 1200px;
}

[data-density="Kompakt"] { --section-py: 60px; }
[data-density="Normal"]  { --section-py: 92px; }
[data-density="Ferah"]   { --section-py: 128px; }

[data-corners="Keskin"]    { --card-r: 6px;  --btn-r: 6px;  --chip-r: 6px; }
[data-corners="Yumuşak"]   { --card-r: 18px; --btn-r: 11px; --chip-r: 999px; }
[data-corners="Yuvarlak"]  { --card-r: 28px; --btn-r: 16px; --chip-r: 999px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: #fff;
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: var(--orange-200); }

/* ---------- layout ---------- */
.kw-container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.kw-section { padding: var(--section-py) 0; }
.kw-section--ice { background: var(--ice); }
.kw-section--slate { background: var(--c-slate); color: var(--fg-on-navy); }

.kw-head { max-width: 760px; margin: 0 0 48px; }
.kw-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.kw-overline {
  font: var(--text-overline); letter-spacing: var(--tracking-overline);
  text-transform: uppercase; color: var(--c-accent); margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.kw-h2 {
  font: var(--text-h2); font-size: clamp(2rem, 1.4rem + 1.8vw, 2.7rem);
  letter-spacing: var(--tracking-tight); color: var(--c-ink); margin: 0;
  font-weight: 700; line-height: 1.12; text-wrap: balance;
}
.kw-section--slate .kw-h2 { color: #fff; }
.kw-h2 b { color: var(--c-slate); font-weight: 800; }
.kw-section--slate .kw-h2 b { color: var(--c-accent); }
.kw-lead {
  font: var(--text-lead); color: var(--c-muted); margin: 16px 0 0;
  max-width: 60ch; text-wrap: pretty;
}
.kw-section--slate .kw-lead { color: rgba(255,255,255,0.78); }

/* ---------- buttons ---------- */
.kw-btn {
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  border: none; border-radius: var(--btn-r); padding: 14px 26px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: all var(--dur-fast) var(--ease-out); white-space: nowrap;
}
.kw-btn:active { transform: scale(0.98); }
.kw-btn i { width: 19px; height: 19px; }
.kw-btn--primary { background: var(--c-accent); color: var(--c-accent-ink); box-shadow: 0 8px 20px color-mix(in srgb, var(--c-accent) 32%, transparent); }
.kw-btn--primary:hover { filter: brightness(0.94); }
.kw-btn--slate { background: var(--c-slate); color: #fff; }
.kw-btn--slate:hover { background: var(--slate-800); }
.kw-btn--ghost { background: transparent; color: var(--c-slate); border: 1.5px solid var(--border-strong); }
.kw-btn--ghost:hover { border-color: var(--c-slate); background: #fff; }
.kw-section--slate .kw-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.kw-section--slate .kw-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.kw-btn--lg { font-size: 17px; padding: 16px 32px; }

/* ---------- nav ---------- */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--c-hairline); position: sticky; top: 0; z-index: 60;
}
.nav__row {
  max-width: 1320px; margin: 0 auto; padding: 0 28px; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__left { display: flex; align-items: center; gap: 52px; }
.nav__logo img { height: 34px; }
.nav__links { display: flex; gap: 40px; }
.nav__links a { font-size: 17px; font-weight: 600; color: var(--c-slate); transition: color var(--dur-fast); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--c-accent); }
.nav__right { display: flex; align-items: center; gap: 26px; }
.nav__support { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--c-slate); }
.nav__support .dot { width: 26px; height: 26px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; }
.nav__support .dot i { width: 15px; height: 15px; }
.nav__phone { font-size: 15px; font-weight: 700; color: var(--c-slate); }
.nav__login { border: 1px solid var(--c-hairline); background: #fff; border-radius: var(--btn-r); padding: 10px 20px; font-size: 15px; font-weight: 600; color: var(--c-slate); box-shadow: var(--shadow-xs); cursor: pointer; font-family: var(--font-sans); }
.nav__cart { position: relative; border: none; background: none; cursor: pointer; color: var(--c-slate); display: flex; }
.nav__cart i { width: 24px; height: 24px; }
.nav__cart .badge { position: absolute; top: -6px; right: -8px; background: var(--c-accent); color: #fff; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .nav__links, .nav__support, .nav__phone { display: none; } }

/* ---------- breadcrumb ---------- */
.crumb { background: #fff; border-bottom: 1px solid var(--c-hairline); }
.crumb ol { list-style: none; display: flex; align-items: center; gap: 10px; margin: 0; padding: 14px 0; font-size: 13.5px; color: var(--c-muted); }
.crumb a:hover { color: var(--c-accent); }
.crumb li[aria-current] { color: var(--c-slate); font-weight: 600; }
.crumb .sep { color: var(--slate-300); }

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--ice) 100%); padding: 72px 0 80px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.hero__title { font-size: clamp(2.4rem, 1.5rem + 3vw, 3.9rem); line-height: 1.06; letter-spacing: -0.025em; font-weight: 700; color: var(--c-ink); margin: 18px 0 0; text-wrap: balance; }
.hero__title b { color: var(--c-slate); }
.hero__sub { font-size: 1.2rem; line-height: 1.6; color: var(--c-muted); margin: 22px 0 0; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--c-hairline); border-radius: var(--chip-r);
  padding: 9px 16px; font-size: 14.5px; font-weight: 600; color: var(--c-slate);
  box-shadow: var(--shadow-xs);
}
.chip i { width: 17px; height: 17px; color: var(--c-accent); }
.hero__note { display: flex; gap: 8px; align-items: flex-start; margin: 22px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--c-muted); max-width: 56ch; }
.hero__note i { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--slate-400); }

/* hero visual panel */
.hero__panel {
  background: var(--site-sage); border-radius: 24px; padding: 34px;
  display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-md);
}
.hero__statbig { display: flex; flex-direction: column; gap: 2px; }
.hero__statbig .num { font-size: 3.4rem; font-weight: 800; color: var(--c-ink); letter-spacing: -0.02em; line-height: 1; }
.hero__statbig .lab { font-size: 1rem; font-weight: 600; color: var(--c-slate); }
.hero__panelrow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__minicard { background: rgba(255,255,255,0.75); border-radius: 14px; padding: 16px; }
.hero__minicard i { width: 22px; height: 22px; color: var(--c-slate); margin-bottom: 8px; }
.hero__minicard .t { font-size: 14px; font-weight: 700; color: var(--c-ink); }
.hero__minicard .d { font-size: 12.5px; color: var(--c-muted); margin-top: 2px; line-height: 1.4; }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- generic card ---------- */
.card {
  background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--card-r);
  box-shadow: var(--shadow-sm); padding: 26px; transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.card-ico {
  width: 46px; height: 46px; border-radius: 13px; background: var(--orange-50);
  color: var(--c-accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card-ico i { width: 23px; height: 23px; }

/* ---------- trust stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.stat {
  background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--card-r);
  padding: 26px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-height: 100%;
}
.stat__ico { width: 40px; height: 40px; border-radius: 11px; background: var(--ice); color: var(--c-slate); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.stat__ico i { width: 21px; height: 21px; }
.stat__num { font-size: 2rem; font-weight: 800; color: var(--c-ink); letter-spacing: -0.02em; line-height: 1.05; }
.stat__lab { font-size: 15px; font-weight: 600; color: var(--c-slate); margin-top: 6px; }
.stat__src { margin-top: auto; padding-top: 16px; font-size: 11.5px; line-height: 1.45; color: var(--c-muted); display: flex; gap: 6px; align-items: flex-start; border-top: 1px dashed var(--slate-200); }
.stat__src i { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; color: var(--slate-400); }
@media (max-width: 1080px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }

/* ---------- filter bar ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; }
.filter {
  border: 1px solid var(--c-hairline); background: #fff; color: var(--c-slate);
  border-radius: 999px; padding: 9px 18px; font-size: 14.5px; font-weight: 600;
  cursor: pointer; font-family: var(--font-sans); transition: all var(--dur-fast) var(--ease-out);
}
.filter:hover { border-color: var(--c-slate); }
.filter[aria-pressed="true"] { background: var(--c-slate); color: #fff; border-color: var(--c-slate); }

/* ---------- testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .tgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tgrid { grid-template-columns: 1fr; } }
.tcard {
  background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--card-r);
  box-shadow: var(--shadow-sm); padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.tcard__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; background: var(--navy-50); color: var(--c-slate);
  letter-spacing: 0.01em; text-transform: none;
}
.stars { color: var(--c-accent); font-size: 15px; letter-spacing: 2px; }
.stars .empty { color: var(--slate-200); }
.tcard__quote { font-size: 15.5px; line-height: 1.6; color: var(--c-ink); margin: 0; }
.placeholder {
  color: var(--c-muted); font-style: italic; background: repeating-linear-gradient(135deg, var(--ice), var(--ice) 7px, #fff 7px, #fff 14px);
  border: 1px dashed var(--slate-300); border-radius: 9px; padding: 12px 14px; display: block;
  font-size: 14px; line-height: 1.5;
}
.tcard__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 6px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: repeating-linear-gradient(135deg, var(--slate-100), var(--slate-100) 5px, #fff 5px, #fff 10px);
  border: 1px dashed var(--slate-300); display: flex; align-items: center; justify-content: center;
  color: var(--slate-400);
}
.avatar i { width: 19px; height: 19px; }
.tcard__name { font-size: 14.5px; font-weight: 700; color: var(--c-ink); }
.tcard__meta { font-size: 12.5px; color: var(--c-muted); margin-top: 1px; }
.tcard__svc { font-size: 12px; font-weight: 600; color: var(--c-accent); margin-top: 3px; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { display: flex; flex-direction: column; }
.svc:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc h3 { font: var(--text-h4); color: var(--c-ink); margin: 0 0 8px; }
.svc p { font: var(--text-sm); color: var(--c-muted); margin: 0 0 18px; line-height: 1.6; }
.svc__feats { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 9px; }
.svc__feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; color: var(--c-slate); }
.svc__feats li i { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.svc__ref {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  margin: 0 0 16px; padding: 6px 11px; border-radius: 999px;
  background: var(--orange-50); border: 1px solid var(--orange-200);
  font-size: 11.5px; font-weight: 600; color: var(--orange-800);
}
.svc__ref i { width: 14px; height: 14px; color: var(--c-accent); }
.svc__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 700; color: var(--c-slate); transition: gap var(--dur-fast); }
.svc__link i { width: 17px; height: 17px; transition: transform var(--dur-fast); }
.svc:hover .svc__link { color: var(--c-accent); }
.svc:hover .svc__link i { transform: translateX(3px); }

/* ---------- featured case study (Smile Hair) ---------- */
.fcase {
  background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--card-r);
  box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
}
@media (max-width: 920px) { .fcase { grid-template-columns: 1fr; } }
.fcase__main { padding: 40px; }
.fcase__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.fcase__brand { display: flex; align-items: center; gap: 13px; }
.fcase__logo {
  width: 52px; height: 52px; border-radius: 13px; background: var(--c-slate); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fcase__logo i { width: 26px; height: 26px; color: var(--c-accent); }
.fcase__logo--img { background: #fff; border: 1px solid rgba(0,0,0,.08); padding: 5px; }
.fcase__logo--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.fcase__brandname { font-size: 19px; font-weight: 800; color: var(--c-ink); letter-spacing: -0.01em; line-height: 1.1; }
.fcase__sector { font-size: 12.5px; font-weight: 600; color: var(--c-muted); margin-top: 2px; }
.verified {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
  background: var(--success-bg); color: var(--success); font-size: 11.5px; font-weight: 700;
}
.verified i { width: 14px; height: 14px; }
.verified--muted { background: var(--slate-100); color: var(--c-muted); }

/* ---------- featured case carousel ---------- */
.fcarousel { position: relative; }
.fcarousel__viewport { overflow: hidden; border-radius: var(--card-r); }
.fcarousel__track { display: flex; transition: transform .45s var(--ease-out); will-change: transform; }
.fcarousel__slide { min-width: 100%; flex: 0 0 100%; }
.fcarousel__slide .fcase { margin-bottom: 0; height: 100%; }
.fcarousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid var(--c-hairline); background: #fff; color: var(--c-slate);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 4; transition: all var(--dur-fast) var(--ease-out);
}
.fcarousel__nav:hover { background: var(--c-slate); color: #fff; border-color: var(--c-slate); }
.fcarousel__nav:active { transform: translateY(-50%) scale(0.95); }
.fcarousel__nav i { width: 21px; height: 21px; }
.fcarousel__nav--prev { left: -14px; }
.fcarousel__nav--next { right: -14px; }
.fcarousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.fcdot { width: 9px; height: 9px; border-radius: 999px; border: none; background: var(--slate-200); cursor: pointer; padding: 0; transition: all var(--dur-fast) var(--ease-out); }
.fcdot:hover { background: var(--slate-300); }
.fcdot.on { background: var(--c-accent); width: 28px; }
@media (max-width: 980px) { .fcarousel__nav--prev { left: 6px; } .fcarousel__nav--next { right: 6px; } }
.fcase__lede { font-size: 16px; line-height: 1.6; color: var(--c-ink); margin: 18px 0 24px; }
.fcase__rows { display: grid; gap: 16px; }
.fcase__row { display: grid; grid-template-columns: 116px 1fr; gap: 16px; align-items: start; }
@media (max-width: 480px) { .fcase__row { grid-template-columns: 1fr; gap: 4px; } }
.fcase__k { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); display: flex; align-items: center; gap: 7px; padding-top: 2px; }
.fcase__k i { width: 15px; height: 15px; color: var(--c-accent); }
.fcase__v { font-size: 14.5px; line-height: 1.55; color: var(--c-ink); }
.fcase__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fcase__chips span { font-size: 12.5px; font-weight: 600; background: var(--navy-50); color: var(--c-slate); border-radius: 999px; padding: 6px 13px; display: inline-flex; align-items: center; gap: 6px; }
.fcase__chips span i { width: 14px; height: 14px; color: var(--c-slate); }
.fcase__metric { font-size: 13.5px; color: var(--c-muted); }
.fcase__metric .placeholder { display: inline-block; margin-top: 4px; }

.fcase__quote {
  background: var(--c-slate); color: #fff; padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px; position: relative;
}
.fcase__quotemark { font-family: Georgia, serif; font-size: 80px; line-height: 0.5; color: var(--c-accent); height: 30px; }
.fcase__quotetext { font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem); line-height: 1.5; font-weight: 500; color: #fff; margin: 0; letter-spacing: -0.01em; border: none; border-left: none; padding-left: 0; }
.fcase__by { display: flex; align-items: center; gap: 13px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.14); }
.fcase__byname { font-size: 14.5px; font-weight: 700; color: #fff; }
.fcase__byrole { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.fcase__avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.1); border: 1px dashed rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); }
.fcase__avatar i { width: 20px; height: 20px; }
.fcase__avatar--photo { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); overflow: hidden; }
.fcase__avatar--photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; display: block; }
.case-sub { font-size: 14px; font-weight: 700; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 18px; }

/* ---------- uptime / infra ---------- */
.infra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 880px) { .infra-grid { grid-template-columns: 1fr; } }
.statuscard { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--card-r); padding: 28px; box-shadow: var(--shadow-sm); }
.status-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--c-hairline); }
.status-row:last-child { border-bottom: none; }
.status-row .lbl { font-size: 15px; font-weight: 600; color: var(--c-ink); display: flex; align-items: center; gap: 10px; }
.status-row .lbl i { width: 18px; height: 18px; color: var(--c-slate); }
.status-pill { font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--slate-100); color: var(--c-muted); display: inline-flex; align-items: center; gap: 6px; }
.status-pill.soon { background: var(--warning-bg); color: var(--warning); }
.status-pill .d { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.infra-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.infra-list li { display: flex; gap: 12px; font-size: 15px; color: var(--c-ink); line-height: 1.5; }
.infra-list li i { width: 20px; height: 20px; color: var(--c-accent); flex-shrink: 0; margin-top: 1px; }
.notebox { display: flex; gap: 11px; align-items: flex-start; margin-top: 22px; background: var(--warning-bg); border: 1px solid color-mix(in srgb, var(--warning) 25%, transparent); border-radius: 12px; padding: 14px 16px; font-size: 13px; line-height: 1.5; color: #7a5a14; }
.notebox i { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; color: var(--warning); }

/* ---------- 3rd-party widgets ---------- */
.ref-google-reviews { max-width: 1200px; margin: 0 auto; }
.widget-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 420px; margin: 0 auto; }
@media (max-width: 880px) { .widget-grid { grid-template-columns: 1fr; } }
.widget {
  border: 1px dashed var(--slate-300); border-radius: var(--card-r); padding: 30px 24px;
  background: repeating-linear-gradient(135deg, var(--ice), var(--ice) 9px, #fff 9px, #fff 18px);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 200px; justify-content: center;
}
.widget__logo { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.widget__tag { font-family: var(--font-mono); font-size: 12px; color: var(--c-muted); background: #fff; border: 1px solid var(--c-hairline); border-radius: 7px; padding: 6px 12px; }
.widget__desc { font-size: 13px; color: var(--c-muted); line-height: 1.5; max-width: 30ch; }

/* ---------- expert quote ---------- */
.expert { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: center; }
@media (max-width: 820px) { .expert { grid-template-columns: 1fr; gap: 28px; } }
.expert__photo {
  width: 100%; aspect-ratio: 1; border-radius: 22px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12) 9px, rgba(255,255,255,0.04) 9px, rgba(255,255,255,0.04) 18px);
  border: 1px dashed rgba(255,255,255,0.35); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.7);
}
.expert__photo i { width: 38px; height: 38px; }
.expert__photo .ph { font-family: var(--font-mono); font-size: 11px; }
.expert__quote { font-size: clamp(1.3rem, 1rem + 1.2vw, 1.85rem); line-height: 1.45; font-weight: 500; color: #fff; margin: 0; letter-spacing: -0.01em; }
.expert__quote .placeholder { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); font-size: 1.05rem; }
.expert__by { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.expert__name { font-size: 16px; font-weight: 700; color: #fff; }
.expert__role { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.expert__link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--c-accent); margin-top: 10px; }
.expert__link i { width: 16px; height: 16px; }

/* ---------- case studies ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .case-grid { grid-template-columns: 1fr; } }
.case { display: flex; flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.case__head { background: var(--ice); padding: 20px 24px; border-bottom: 1px solid var(--c-hairline); }
.case__type { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--c-slate); }
.case__type i { width: 17px; height: 17px; color: var(--c-accent); }
.case__body { padding: 22px 24px 26px; display: grid; gap: 16px; }
.case__row .k { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); margin-bottom: 5px; }
.case__row .v { font-size: 15px; color: var(--c-ink); line-height: 1.5; }
.case__solution { display: flex; flex-wrap: wrap; gap: 6px; }
.case__solution span { font-size: 12.5px; font-weight: 600; background: var(--navy-50); color: var(--c-slate); border-radius: 999px; padding: 5px 11px; }

/* ---------- CTA band ---------- */
.ctaband { text-align: center; }
.ctaband .kw-h2 { color: #fff; }
.ctaband__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 34px 0 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--c-hairline); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: var(--font-sans);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 4px; text-align: left; font-size: 18px; font-weight: 600; color: var(--c-ink);
}
.faq__q i { width: 22px; height: 22px; color: var(--c-slate); flex-shrink: 0; transition: transform var(--dur-med) var(--ease-out); }
.faq__item.open .faq__q i { transform: rotate(45deg); color: var(--c-accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq__a-inner { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.65; color: var(--c-muted); max-width: 70ch; }

/* ---------- footer ---------- */
.footer { background: var(--c-slate); color: rgba(255,255,255,0.72); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-top: 64px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer__logo { height: 30px; margin-bottom: 18px; }
.footer__about { font-size: 14px; line-height: 1.6; color: var(--navy-200); max-width: 34ch; margin: 0; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--navy-100); transition: all var(--dur-fast); }
.footer__social a:hover { background: var(--c-accent); color: #fff; }
.footer__social i { width: 17px; height: 17px; }
.footer__col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 14px; color: var(--navy-200); transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--orange-300); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; padding: 24px 0 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bar span, .footer__bar a { font-size: 13px; color: var(--navy-300); }
.footer__bar .links { display: flex; gap: 22px; }

/* ---------- star rating (supports half) ---------- */
.rating { display: inline-block; position: relative; font-size: 16px; line-height: 1; white-space: nowrap; font-family: Arial, "Segoe UI Symbol", sans-serif; }
.rating::before { content: "\2605\2605\2605\2605\2605"; letter-spacing: 2px; color: var(--slate-200); }
.rating::after { content: "\2605\2605\2605\2605\2605"; letter-spacing: 2px; color: var(--c-accent); position: absolute; left: 0; top: 0; width: var(--p, 100%); overflow: hidden; }

/* ---------- initials avatars (override placeholder look) ---------- */
.avatar {
  background: var(--navy-50); border: none; color: var(--c-slate);
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.01em;
}
.avatar--0 { background: var(--orange-50); color: var(--orange-800); }
.avatar--1 { background: var(--navy-50); color: var(--c-slate); }
.avatar--2 { background: var(--site-sage); color: var(--c-slate); }
.avatar--3 { background: var(--ice); color: var(--c-slate); }
.avatar--lg { width: 60px; height: 60px; font-size: 20px; border-radius: 16px; }

/* ---------- clickable testimonial cards ---------- */
.tcard { cursor: pointer; position: relative; transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), border-color var(--dur-fast); }
.tcard:hover, .tcard:focus-visible { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: color-mix(in srgb, var(--c-accent) 40%, var(--c-hairline)); outline: none; }
.tcard:focus-visible { box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 35%, transparent); }
.tcard__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 2px;
  font-size: 13px; font-weight: 700; color: var(--c-slate);
  opacity: 0; transform: translateY(-4px); transition: opacity var(--dur-fast), transform var(--dur-fast), color var(--dur-fast);
}
.tcard__more i { width: 15px; height: 15px; }
.tcard:hover .tcard__more, .tcard:focus-visible .tcard__more { opacity: 1; transform: none; color: var(--c-accent); }
@media (hover: none) { .tcard__more { opacity: 1; transform: none; color: var(--c-accent); } }

/* ---------- interview trigger buttons (featured case) ---------- */
.fcase__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.fcase__interview {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--c-accent); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-sans); font-weight: 700; font-size: 14.5px;
  border-radius: var(--btn-r); padding: 12px 20px;
  transition: filter var(--dur-fast), transform var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
  text-decoration: none;
}
.fcase__interview:hover { filter: brightness(0.94); }
.fcase__interview:active { transform: scale(0.98); }
.fcase__interview i { width: 17px; height: 17px; }
.fcase__interview--ghost { background: #fff; color: var(--c-slate); border: 1.5px solid var(--border-strong); filter: none; }
.fcase__interview--ghost:hover { border-color: var(--c-slate); background: var(--ice); filter: none; }

/* ---------- modal ---------- */
.kw-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.kw-modal[hidden] { display: none; }
.kw-modal__backdrop { position: absolute; inset: 0; background: rgba(20, 26, 35, 0.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .22s var(--ease-out); }
.kw-modal.in .kw-modal__backdrop { opacity: 1; }
.kw-modal__dialog {
  position: relative; background: #fff; border-radius: 20px; width: 100%; max-width: 620px;
  max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  padding: 38px; opacity: 0; transform: translateY(14px) scale(0.98);
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out);
}
.kw-modal.in .kw-modal__dialog { opacity: 1; transform: none; }
.kw-modal__close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid var(--c-hairline); background: #fff; color: var(--c-slate); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast);
}
.kw-modal__close:hover { background: var(--ice); color: var(--c-ink); }
.kw-modal__close i { width: 18px; height: 18px; }

/* review modal */
.rv__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding-right: 40px; }
.rv__name { font-size: 18px; font-weight: 800; color: var(--c-ink); }
.rv__meta { font-size: 13.5px; color: var(--c-muted); margin-top: 2px; }
.rv__tags { display: flex; align-items: center; gap: 10px; margin-top: 9px; }
.rv__quote { font-size: 19px; line-height: 1.55; color: var(--c-ink); font-weight: 500; margin: 0 0 24px; letter-spacing: -0.01em; }
.rv__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--c-hairline); }
.rv__svc { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--c-slate); }
.rv__svc i { width: 16px; height: 16px; color: var(--c-accent); }
.rv__note { font-size: 12px; color: var(--c-muted); }

/* interview modal */
.iv__badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--success-bg); color: var(--success); font-size: 11.5px; font-weight: 700; }
.iv__badge i { width: 14px; height: 14px; }
.iv__brand { font-size: 24px; font-weight: 800; color: var(--c-ink); letter-spacing: -0.01em; margin-top: 14px; }
.iv__sector { font-size: 13.5px; font-weight: 600; color: var(--c-muted); margin-top: 3px; }
.iv__intro { font-size: 15px; line-height: 1.6; color: var(--c-ink); margin: 18px 0 6px; }
.iv__list { display: grid; gap: 22px; margin-top: 18px; }
.iv__qa { border-left: 3px solid var(--orange-200); padding-left: 16px; }
.iv__q { font-size: 15.5px; font-weight: 700; color: var(--c-slate); line-height: 1.4; }
.iv__a { font-size: 14.5px; line-height: 1.65; color: var(--c-ink); margin: 8px 0 0; }
@media (max-width: 560px) { .kw-modal__dialog { padding: 26px 22px; } .rv__quote { font-size: 17px; } }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   INTERVIEW PAGES (Roportajlar.html liste · Roportaj.html tekil)
   ============================================================ */
/* ---- listing grid (ikişer ikişer) ---- */
.ivlist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .ivlist-grid { grid-template-columns: 1fr; } }
.ivcard {
  background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--card-r);
  box-shadow: var(--shadow-sm); padding: 30px; display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), border-color var(--dur-fast);
}
.ivcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: color-mix(in srgb, var(--c-accent) 40%, var(--c-hairline)); }
.ivcard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ivcard__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--c-slate); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ivcard__icon i { width: 24px; height: 24px; color: var(--c-accent); }
.ivcard__icon--img { background: #fff; border: 1px solid rgba(0,0,0,.08); padding: 5px; }
.ivcard__icon--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ivcard__badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; background: var(--navy-50); color: var(--c-slate); }
.ivcard__badge.real { background: var(--success-bg); color: var(--success); }
.ivcard__badge i { width: 14px; height: 14px; }
.ivcard__brand { font-size: 20px; font-weight: 800; color: var(--c-ink); letter-spacing: -0.01em; margin-top: 4px; }
.ivcard__sector { font-size: 13px; font-weight: 600; color: var(--c-muted); }
.ivcard__quote { font-size: 15.5px; line-height: 1.6; color: var(--c-ink); margin: 6px 0 0; }
.ivcard__more { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--c-slate); transition: gap var(--dur-fast), color var(--dur-fast); }
.ivcard__more i { width: 16px; height: 16px; transition: transform var(--dur-fast); }
.ivcard:hover .ivcard__more { color: var(--c-accent); }
.ivcard:hover .ivcard__more i { transform: translateX(3px); }

/* ---- single interview ---- */
.ivsingle { max-width: 800px; margin: 0 auto; }
.ivsingle__head { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.ivsingle__logo { width: 96px; height: 96px; border-radius: 20px; background: #fff; border: 1px solid rgba(0,0,0,.08); padding: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(16,24,40,.06); }
.ivsingle__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ivsingle__brand { font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); font-weight: 800; letter-spacing: -0.02em; color: var(--c-ink); margin: 8px 0 0; line-height: 1.08; }
.ivsingle__sector { font-size: 15px; font-weight: 600; color: var(--c-muted); }
.ivsingle__svc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.ivsingle__svc span { font-size: 12.5px; font-weight: 600; background: var(--navy-50); color: var(--c-slate); border-radius: 999px; padding: 6px 13px; }
.ivsingle__hl { position: relative; margin: 32px 0 0; padding: 28px 30px 28px 34px; background: var(--c-slate); color: #fff; border-radius: var(--card-r); font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem); line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; }
.ivsingle__hl .qm { font-family: Georgia, serif; color: var(--c-accent); font-size: 1.4em; line-height: 0; vertical-align: -0.15em; margin-right: 4px; }
.ivsingle__intro { font-size: 16.5px; line-height: 1.7; color: var(--c-ink); margin: 28px 0 0; }
.ivsingle__qa { display: grid; gap: 30px; margin-top: 38px; }
.ivq { border-left: 3px solid var(--orange-200); padding-left: 20px; }
.ivq__q { font-size: 18px; font-weight: 700; color: var(--c-slate); line-height: 1.4; margin: 0; }
.ivq__a { font-size: 16px; line-height: 1.75; color: var(--c-ink); margin: 12px 0 0; }
.ivsingle__by { display: flex; align-items: center; gap: 14px; margin-top: 38px; border-top: 1px solid var(--c-hairline); padding-top: 24px; }
.ivsingle__byphoto { width: 66px; height: 66px; border-radius: 16px; overflow: hidden; flex-shrink: 0; background: var(--ice); border: 1px solid var(--c-hairline); display: flex; align-items: center; justify-content: center; }
.ivsingle__byphoto img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; display: block; }
.ivsingle__byphoto--icon i { width: 26px; height: 26px; color: var(--c-accent); }
.ivsingle__byname { font-size: 16px; font-weight: 800; color: var(--c-ink); }
.ivsingle__byrole { font-size: 13.5px; font-weight: 600; color: var(--c-muted); margin-top: 2px; }
.ivsingle__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-size: 14.5px; font-weight: 700; color: var(--c-slate); }
.ivsingle__back i { width: 17px; height: 17px; transition: transform var(--dur-fast); }
.ivsingle__back:hover { color: var(--c-accent); }
.ivsingle__back:hover i { transform: translateX(-3px); }
