/* ==========================================================================
   SEOyhun Bilişim — Premium Static Site
   Design system: dark navy + champagne gold accent
   ========================================================================== */

:root{
  /* Surfaces — warm light (default page theme) */
  --bg:            #f8f6f1;
  --bg-soft:       #f1ece1;
  --surface:       #ffffff;
  --surface-2:     #f7f4ec;
  --surface-3:     #efe9da;
  --border:        rgba(20,22,35,.09);
  --border-strong: rgba(20,22,35,.16);

  /* Text */
  --text:        #2b2d3a;
  --text-dim:    #5b5f72;
  --text-faint:  #8a8d9c;
  --ink:         #181a26;

  /* Accent — champagne gold */
  --gold:        #b8893f;
  --gold-light:  #d9b36c;
  --gold-deep:   #8c6526;
  --gold-ink:    #1c1404;

  /* Status accents */
  --teal:        #34c0a0;
  --amber:       #e0a23b;
  --red:         #e2604f;

  /* Effects */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --shadow-1:  0 1px 0 rgba(255,255,255,.7) inset, 0 10px 26px rgba(30,28,20,.07);
  --shadow-2:  0 22px 50px rgba(30,28,20,.13);
  --gold-grad: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Dark sections (header, hero, marquee, CTA banner, footer) ----------
   The rest of the page uses the light/cream theme above; these structural
   bands keep the original dark-navy + gold look for contrast and framing. */
.site-header,
.hero,
.page-hero,
.marquee-wrap,
.cta-banner,
.site-footer,
.stats{
  --bg:            #070a13;
  --bg-soft:       #0b0f1c;
  --surface:       #111729;
  --surface-2:     #161d33;
  --surface-3:     #1b2340;
  --border:        rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);
  --text:          #f4f5f8;
  --text-dim:      #aab0c6;
  --text-faint:    #6c7290;
  --ink:           #ffffff;
  --gold:          #d9b36c;
  --gold-light:    #f3dba6;
  --gold-deep:     #b8853a;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input,textarea,select{ font-family: inherit; }
h1,h2,h3,h4,h5{
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p{ margin: 0 0 1em; color: var(--text-dim); }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ position: relative; }
.section-pad{ padding: 110px 0; }
@media (max-width: 768px){ .section-pad{ padding: 72px 0; } }

::selection{ background: var(--gold); color: var(--gold-ink); }

/* ---------- Background texture ---------- */
.bg-grid{
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
          mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}
.glow{
  position:absolute; border-radius:50%; filter: blur(90px); pointer-events:none; z-index:0;
  opacity:.35;
}

/* ---------- Eyebrow / kicker ---------- */
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker::before{
  content:""; width:18px; height:2px; background: var(--gold-grad); display:inline-block; border-radius:2px;
}

.eyebrow-center{ text-align:center; }
.eyebrow-center .kicker{ justify-content:center; }
.section-head{ max-width: 680px; margin: 0 0 56px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 42px); color:var(--ink); }
.section-head p{ font-size: 17px; }

.text-gold{ color: var(--gold); }
.grad-text{
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip:text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 28px; border-radius: 999px; font-weight:600; font-size:15px;
  border:1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; }
.btn-primary{
  background: var(--gold-grad); color: var(--gold-ink); box-shadow: 0 10px 30px -8px rgba(217,179,108,.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(217,179,108,.7); }
.btn-outline{
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost{ background: rgba(20,22,35,.05); color:var(--text); }
.btn-ghost:hover{ background: rgba(20,22,35,.09); }
.btn-sm{ padding: 10px 20px; font-size:13px; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  padding: 22px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  padding: 14px 0;
  background: rgba(7,10,19,.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--border);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ height: 34px; width:auto; display:block; }

.nav{ display:flex; align-items:center; gap:36px; }
.nav a{
  font-size: 14.5px; font-weight:600; color: var(--text-dim);
  position:relative; padding: 6px 0; transition: color .2s var(--ease);
}
.nav a:hover, .nav a.active{ color:var(--ink); }
.nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--gold-grad); border-radius:2px;
}
.nav .has-sub{ position:relative; }
.nav .nav-row{ display:flex; align-items:center; gap:5px; }
.nav .sub-toggle{
  width:22px; height:22px; display:flex; align-items:center; justify-content:center;
  background:transparent; border:0; color:var(--text-dim); padding:0; flex-shrink:0;
}
.nav .sub-toggle svg{ width:13px; height:13px; transition: transform .25s var(--ease); }
.nav .has-sub.is-open .sub-toggle svg{ transform: rotate(180deg); }
.sub-menu{ list-style:none; margin:0; padding:0; }
.sub-menu a{ display:flex; align-items:center; gap:8px; }
.sub-tag{
  font-size:10.5px; font-weight:700; color: var(--gold-ink); background: var(--gold-grad);
  padding:2px 9px; border-radius:999px; letter-spacing:.02em; white-space:nowrap;
}
@media (min-width:993px){
  .sub-menu{
    position:absolute; top:calc(100% + 20px); left:50%; transform: translateX(-50%) translateY(-6px);
    min-width:250px; background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-2); padding:8px; opacity:0; visibility:hidden; pointer-events:none;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s .22s;
    z-index:1001;
  }
  .has-sub:hover .sub-menu, .has-sub.is-open .sub-menu{
    opacity:1; visibility:visible; pointer-events:auto; transform: translateX(-50%) translateY(0);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s;
  }
  .sub-menu li + li{ margin-top:2px; }
  .sub-menu a{ padding:11px 14px; border-radius:8px; font-size:13.5px; font-weight:600; color:var(--text-dim); white-space:nowrap; }
  .sub-menu a:hover, .sub-menu a.active{ background: var(--surface-2); color:var(--ink); }
  .has-sub .sub-toggle{ display:none; }
}
@media (max-width:992px){
  .has-sub .nav-row{ width:100%; justify-content:space-between; }
  .has-sub .sub-toggle{
    width:38px; height:38px; border:1px solid var(--border); border-radius:9px; background: rgba(255,255,255,.05); color:var(--text);
  }
  .sub-menu{ max-height:0; overflow:hidden; transition: max-height .3s var(--ease); padding-left:2px; }
  .has-sub.is-open .sub-menu{ max-height:240px; margin-top:16px; }
  .sub-menu li + li{ margin-top:16px; }
  .sub-menu a{ font-size:16px; color:var(--text-dim); }
  .sub-menu a.active{ color:var(--ink); }
}
.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .btn-outline{ display:none; }
.tel-pill{
  display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color:var(--ink);
}
.tel-pill svg{ width:16px; height:16px; color: var(--gold); }

.nav-toggle{
  display:none; width:44px; height:44px; border-radius:10px; background: rgba(255,255,255,.06);
  border:1px solid var(--border); align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:18px; height:2px; background:#fff; border-radius:2px; transition: transform .25s, opacity .25s; }
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px){
  .nav{
    position:fixed; inset: 0 0 0 30%; top:0; height:100vh;
    background: var(--bg-soft); border-left:1px solid var(--border);
    flex-direction:column; justify-content:center; align-items:flex-start; gap:26px;
    padding: 40px 36px; transform: translateX(100%); transition: transform .4s var(--ease);
    z-index: 999;
  }
  .nav.is-open{ transform: translateX(0); }
  .nav a{ font-size:20px; }
  .nav-toggle{ display:flex; }
  .header-actions .tel-pill{ display:none; }
}
@media (min-width: 993px){
  .header-actions .btn-outline{ display:inline-flex; }
}

.nav-overlay{
  position:fixed; inset:0; background: rgba(0,0,0,.6); z-index: 998; opacity:0; pointer-events:none;
  transition: opacity .35s var(--ease);
}
.nav-overlay.is-open{ opacity:1; pointer-events:auto; }

/* ---------- Hero ---------- */
/* .hero/.page-hero accept an optional per-page photo via the --hero-photo custom
   property (set inline on the section). A dark scrim sits between the gold/teal
   accent gradients and the photo so hero text stays legible over any image. */
.hero,
.page-hero{
  position:relative; overflow:hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(217,179,108,.20), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(52,192,160,.12), transparent 65%),
    linear-gradient(160deg, rgba(7,10,19,.86) 0%, rgba(7,10,19,.66) 45%, rgba(9,12,22,.90) 100%),
    var(--hero-photo, linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%));
  background-repeat: no-repeat;
  background-position: center, center, center, center;
  background-size: auto, auto, auto, cover;
}
/* soft secondary glow (teal) for depth, opposite the gold .glow blob */
.hero::before,
.page-hero::before{
  content:""; position:absolute; z-index:0; pointer-events:none; border-radius:50%;
  width:420px; height:420px; filter: blur(110px); opacity:.22;
  background: var(--teal); bottom:-180px; left:-120px;
}
/* faint abstract growth-chart motif, bottom-right */
.hero::after,
.page-hero::after{
  content:""; position:absolute; z-index:0; pointer-events:none;
  width:min(520px, 60%); aspect-ratio: 400/240; right:0; bottom:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 240'%3E%3Cpolyline points='10,210 80,160 150,180 220,90 290,110 370,30' fill='none' stroke='%23d9b36c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.4'/%3E%3Cg fill='%23d9b36c' opacity='0.6'%3E%3Ccircle cx='10' cy='210' r='5'/%3E%3Ccircle cx='80' cy='160' r='5'/%3E%3Ccircle cx='150' cy='180' r='5'/%3E%3Ccircle cx='220' cy='90' r='5'/%3E%3Ccircle cx='290' cy='110' r='5'/%3E%3Ccircle cx='370' cy='30' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:bottom right; background-size:contain;
  opacity:.5;
}
@media (max-width:768px){ .hero::after, .page-hero::after{ opacity:.28; width:80%; } }

.hero{ padding: 160px 0 110px; }
.hero .glow{ width:560px; height:560px; background: var(--gold); top:-220px; right:-160px; z-index:0; }
.hero-inner{ position:relative; z-index:1; max-width: 880px; }
.hero h1{
  font-size: clamp(36px, 5.6vw, 68px); color:var(--ink); margin-bottom: 24px;
}
.hero p.lead{ font-size: clamp(16px,1.8vw,19px); max-width: 600px; margin-bottom: 36px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 64px; }
.hero-trust{ display:flex; gap:40px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; gap:2px; }
.hero-trust strong{ font-family:"Outfit",sans-serif; font-size: 26px; color:var(--ink); }
.hero-trust span{ font-size:13px; color: var(--text-faint); }

.page-hero{
  padding: 138px 0 80px;
  text-align:center;
}
.page-hero .kicker{ justify-content:center; }
.page-hero h1{ font-size: clamp(32px,4.6vw,52px); color:var(--ink); }
.page-hero p{ max-width:640px; margin: 0 auto 28px; font-size:17px; }
.page-hero .container{ position:relative; z-index:1; }
.breadcrumb{ display:flex; gap:8px; justify-content:center; font-size:13px; color: var(--text-faint); margin-bottom:18px; }
.breadcrumb a:hover{ color: var(--gold); }
@media (max-width:768px){
  .hero{ padding: 128px 0 80px; }
  .page-hero{ padding: 112px 0 60px; }
}

/* ---------- Marquee / partner logos ---------- */
.marquee-wrap{
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background: var(--bg-soft);
  padding: 36px 0;
  overflow:hidden;
}
.marquee-label{
  text-align:center; font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; color: var(--text-faint);
  margin-bottom: 26px;
}
.marquee{ display:flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover{ animation-play-state: paused; }
.marquee-track{ display:flex; align-items:center; gap:28px; padding-right:28px; }
.logo-chip{
  background:#fff; border-radius:12px; padding:10px 20px; display:flex; align-items:center; justify-content:center;
  opacity:.8; filter:grayscale(1); transition: opacity .25s, filter .25s, transform .25s;
}
.logo-chip:hover{ opacity:1; filter:none; transform: translateY(-2px); }
.marquee-track img{ height: 28px; width:auto; max-width:120px; object-fit:contain; display:block; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats{ padding: 90px 0; border-bottom:1px solid var(--border); }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align:center; }
.stat-num{ font-family:"Outfit",sans-serif; font-size: clamp(34px,5vw,52px); font-weight:800; color:var(--ink); }
.stat-num span{ color: var(--gold); }
.stat-label{ color: var(--text-faint); font-size:14px; margin-top:6px; }
@media (max-width:768px){ .stats-grid{ grid-template-columns: repeat(2,1fr); gap:36px 20px; } }

/* ---------- Cards / Services ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width:992px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .grid-3,.grid-2,.grid-4{ grid-template-columns: 1fr; } }

.card{
  background: linear-gradient(180deg, var(--surface), var(--surface) 60%, var(--surface-2));
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position:relative;
}
.card:hover{ transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-2); }

.icon-tile{
  width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background: rgba(217,179,108,.12); color: var(--gold); margin-bottom: 22px;
}
.icon-tile svg{ width:28px; height:28px; }

.service-card h3{ font-size:21px; color:var(--ink); margin-bottom:10px; }
.service-card p{ font-size:15px; margin-bottom:20px; }
.service-card .link-arrow{ font-weight:700; font-size:14px; color: var(--gold); display:inline-flex; gap:8px; align-items:center; }
.service-card .link-arrow svg{ width:14px; height:14px; transition: transform .25s var(--ease); }
.service-card:hover .link-arrow svg{ transform: translateX(4px); }

.badge{
  display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700;
  padding: 5px 12px; border-radius:999px; letter-spacing:.03em;
}
.badge-amber{ background: rgba(224,162,59,.15); color: var(--amber); }
.badge-teal{ background: rgba(52,192,160,.15); color: var(--teal); }
.badge-gold{ background: rgba(217,179,108,.15); color: var(--gold); }
.badge-dot{ width:6px; height:6px; border-radius:50%; background:currentColor; }

.card.paused{ opacity:.92; }
.card.paused .badge{ position:absolute; top:28px; right:28px; }

/* ---------- Portfolio ---------- */
.portfolio-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width:992px){ .portfolio-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .portfolio-grid{ grid-template-columns: 1fr; } }
.portfolio-card{
  display:block; background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.portfolio-card:hover{ transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-2); }
.portfolio-browser{
  display:flex; gap:6px; align-items:center; padding:12px 16px; background: var(--bg-soft); border-bottom:1px solid var(--border);
}
.portfolio-browser span{ width:9px; height:9px; border-radius:50%; background: var(--border-strong); }
.portfolio-thumb{ aspect-ratio: 16/10; overflow:hidden; background: var(--bg-soft); }
.portfolio-thumb img{ width:100%; height:100%; object-fit:cover; object-position: top; transition: transform .5s var(--ease); }
.portfolio-card:hover .portfolio-thumb img{ transform: scale(1.05); }
.portfolio-info{ padding:22px 24px; display:flex; align-items:center; justify-content:space-between; gap:14px; }
.portfolio-info h3{ font-size:16.5px; color:var(--ink); margin-bottom:6px; }
.portfolio-info .link-arrow{ font-weight:700; font-size:13.5px; color: var(--gold); display:inline-flex; gap:7px; align-items:center; white-space:nowrap; }
.portfolio-info .link-arrow svg{ width:14px; height:14px; transition: transform .25s var(--ease); }
.portfolio-card:hover .link-arrow svg{ transform: translateX(4px); }

/* ---------- About split ---------- */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap:40px; } }
.split .visual{ position:relative; }

.photo-frame{
  position:relative; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-2); border:1px solid var(--border);
  background: var(--surface);
}
.photo-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo-frame.contain img{ object-fit:contain; padding:36px; background:#fff; }
/* for source images with transparent/white artwork (e.g. white line-art icons) —
   swap the white card for the dark brand surface so the artwork stays visible */
.photo-frame.contain.dark-bg img{
  padding: 32px 32px 132px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(217,179,108,.18), transparent 65%),
    linear-gradient(160deg, #0b0f1c, #161d33);
}
.photo-frame.wide{ aspect-ratio: 16/9; }
.photo-frame .tag-pill{
  position:absolute; top:18px; left:18px; z-index:1; background: rgba(10,13,24,.55); backdrop-filter: blur(6px);
  color:#fff; font-size:12.5px; font-weight:700; padding:9px 16px; border-radius:999px; display:flex; align-items:center; gap:8px;
}
.photo-frame .tag-pill svg{ width:14px; height:14px; color: var(--gold-light); flex-shrink:0; }
.photo-frame .floating-card{
  position:absolute; left:20px; right:20px; bottom:20px; z-index:1;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:18px 22px; box-shadow: var(--shadow-2);
}
.photo-frame .floating-card .big-figure{ font-family:"Outfit",sans-serif; font-size:36px; font-weight:800; color:var(--ink); line-height:1; }
.photo-frame .floating-card .big-figure span{ color:var(--gold); }
.photo-frame .floating-card p{ margin:4px 0 0; font-size:13px; color:var(--text-dim); }

.feature-list{ display:flex; flex-direction:column; gap:18px; margin: 28px 0 32px; }
.feature-list li{ display:flex; gap:14px; align-items:flex-start; color: var(--text-dim); font-size:15px; }
.feature-list li svg{ width:22px; height:22px; flex-shrink:0; color: var(--gold); margin-top:1px; }
.feature-list li strong{ color:var(--ink); display:block; margin-bottom:2px; font-size:15.5px; }

/* ---------- Process steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; position:relative; }
@media (max-width:992px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .steps{ grid-template-columns: 1fr; } }
.step{ background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.step .step-num{
  font-family:"Outfit",sans-serif; font-weight:800; font-size:14px; color: var(--gold-ink);
  width:34px; height:34px; border-radius:10px; background: var(--gold-grad); display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.step h4{ color:var(--ink); font-size:17px; margin-bottom:8px; }
.step p{ font-size:14px; margin:0; }

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:28px; align-items:stretch; }
.pricing-grid.cols-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width:1100px){ .pricing-grid.cols-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:992px){ .pricing-grid{ grid-template-columns: 1fr; max-width:460px; margin-inline:auto; } }
@media (max-width:560px){ .pricing-grid.cols-4{ grid-template-columns: 1fr; } }
.price-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 38px 32px; display:flex; flex-direction:column; position:relative; transition: transform .3s var(--ease), border-color .3s;
}
.price-card:hover{ transform: translateY(-6px); border-color: var(--border-strong); }
.price-card.featured{ border-color: var(--gold); background: linear-gradient(180deg, rgba(217,179,108,.08), var(--surface) 40%); }
.price-card.featured::before{
  content:"En Tercih Edilen"; position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: var(--gold-grad); color: var(--gold-ink); font-size:11.5px; font-weight:800; letter-spacing:.04em;
  padding:6px 16px; border-radius:999px; white-space:nowrap;
}
.price-card h3{ color:var(--ink); font-size:19px; margin-bottom:6px; }
.price-card .price-desc{ font-size:13.5px; color:var(--text-faint); margin-bottom:22px; }
.price-amount{ display:flex; align-items:baseline; gap:10px; margin-bottom:6px; flex-wrap:wrap; }
.price-amount .old{ text-decoration:line-through; color: var(--text-faint); font-size:17px; }
.price-amount .new{ font-family:"Outfit",sans-serif; font-size:34px; font-weight:800; color: var(--gold); }
.price-amount .per{ font-size:13px; color:var(--text-faint); }
.price-card ul{ display:flex; flex-direction:column; gap:13px; margin: 22px 0 28px; flex-grow:1; }
.price-card ul li{ display:flex; gap:10px; font-size:14px; color:var(--text-dim); align-items:flex-start; }
.price-card ul li svg{ width:17px; height:17px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.price-foot{ font-size:12px; color:var(--text-faint); text-align:center; margin-top:28px; }

/* ---------- Testimonials ---------- */
.testi-row{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom: 12px; }
.testi-row::-webkit-scrollbar{ height:6px; }
.testi-row::-webkit-scrollbar-thumb{ background: var(--surface-2); border-radius:6px; }
.testi-card{
  scroll-snap-align:start; min-width: 340px; max-width:340px; background: var(--surface);
  border:1px solid var(--border); border-radius: var(--radius-lg); padding:30px; display:flex; flex-direction:column;
}
.testi-card .quote-mark{ color: var(--gold); font-size:34px; font-family:"Outfit",sans-serif; line-height:1; margin-bottom:10px; }
.testi-card p{ font-size:14.5px; color: var(--text-dim); flex-grow:1; }
.testi-foot{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.avatar-initial{
  width:44px; height:44px; border-radius:50%; background: var(--gold-grad); color: var(--gold-ink);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-family:"Outfit",sans-serif; flex-shrink:0;
  overflow:hidden;
}
.avatar-initial img{ width:100%; height:100%; object-fit:cover; }
.testi-foot strong{ display:block; color:var(--ink); font-size:14px; }
.testi-foot span{ font-size:12.5px; color: var(--text-faint); }
.testi-nav{ display:flex; gap:10px; justify-content:center; margin-top: 28px; }
.testi-nav button{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--border-strong); background:transparent; color:var(--ink);
  display:flex; align-items:center; justify-content:center; transition: background .2s, border-color .2s;
}
.testi-nav button:hover{ background: var(--surface-2); border-color: var(--gold); }
.testi-nav svg{ width:16px; height:16px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border:1px solid var(--border); padding: 64px 56px; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before{ content:""; position:absolute; width:380px; height:380px; background: var(--gold); opacity:.18; filter: blur(100px); border-radius:50%; top:-120px; left:50%; transform:translateX(-50%); }
.cta-banner h2{ font-size: clamp(26px,3.2vw,38px); color:var(--ink); margin-bottom:14px; position:relative; }
.cta-banner p{ max-width:520px; margin:0 auto 30px; position:relative; }
.cta-banner .hero-cta{ justify-content:center; position:relative; }
@media (max-width:640px){ .cta-banner{ padding: 48px 24px; } }

/* ---------- Footer ---------- */
.site-footer{ background: var(--bg-soft); border-top:1px solid var(--border); padding: 80px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:56px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h5{ color:var(--ink); font-size:14px; letter-spacing:.04em; text-transform:uppercase; margin-bottom:20px; }
.footer-grid p{ font-size:14px; max-width:280px; }
.footer-links{ display:flex; flex-direction:column; gap:12px; }
.footer-links a{ font-size:14.5px; color:var(--text-dim); transition: color .2s; }
.footer-links a:hover{ color: var(--gold); }
.footer-contact li{ display:flex; gap:10px; font-size:14.5px; color:var(--text-dim); margin-bottom:14px; align-items:flex-start; }
.footer-contact svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  border-top:1px solid var(--border); padding: 24px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color: var(--text-faint);
}
.footer-bottom a:hover{ color: var(--gold); }
.footer-bottom-links{ display:flex; gap:20px; }

/* ---------- Forms ---------- */
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size:13.5px; font-weight:600; color: var(--text-dim); margin-bottom:8px; }
.field input, .field textarea, .field select{
  width:100%; background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; color:var(--ink); font-size:14.5px; transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--text-faint); }
.field input:focus, .field textarea:focus, .field select:focus{ outline:none; border-color: var(--gold); background: var(--surface-2); }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:560px){ .field-row{ grid-template-columns: 1fr; } }
.form-note{ font-size:12.5px; color: var(--text-faint); margin-top:-4px; }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-status{ font-size:14px; font-weight:600; margin:14px 0 0; min-height:0; }
.form-status.is-success{ color: var(--teal); }
.form-status.is-error{ color: var(--red); }
.btn[disabled]{ opacity:.6; pointer-events:none; }

.contact-card{ background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding:34px; display:flex; gap:18px; align-items:flex-start; }
.contact-card .icon-tile{ margin-bottom:0; flex-shrink:0; }
.contact-card h4{ color:var(--ink); font-size:16px; margin-bottom:6px; }
.contact-card p{ font-size:14px; margin:0; }
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow-1); }
.map-frame iframe{ width:100%; height:340px; border:0; display:block; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--border); padding: 22px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; gap:16px; cursor:pointer; }
.faq-q h4{ color:var(--ink); font-size:16px; margin:0; }
.faq-q .plus{ width:26px; height:26px; border-radius:50%; border:1px solid var(--border-strong); flex-shrink:0; position:relative; transition: transform .3s var(--ease), border-color .3s; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background: var(--text-dim); transition: transform .3s var(--ease), background .3s; }
.faq-q .plus::before{ width:10px; height:1.5px; top:50%; left:50%; transform: translate(-50%,-50%); }
.faq-q .plus::after{ width:1.5px; height:10px; top:50%; left:50%; transform: translate(-50%,-50%); }
.faq-item.is-open .plus{ transform: rotate(135deg); border-color: var(--gold); }
.faq-item.is-open .plus::before, .faq-item.is-open .plus::after{ background: var(--gold); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a p{ padding-top:14px; font-size:14.5px; }

/* ---------- Tables (pricing-info / info table) ---------- */
.info-table{ width:100%; border-collapse:collapse; }
.info-table th, .info-table td{ padding: 14px 16px; border-bottom:1px solid var(--border); text-align:left; font-size:14px; }
.info-table th{ color: var(--text-faint); font-weight:600; font-size:12.5px; text-transform:uppercase; letter-spacing:.04em; }
.info-table td{ color: var(--text-dim); }
.info-table td strong{ color:var(--ink); }
.table-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius: var(--radius); }
.table-wrap .info-table{ min-width:480px; }

/* ---------- Misc utility ---------- */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.text-center{ text-align:center; }
.flex-center{ display:flex; align-items:center; justify-content:center; }
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.divider{ height:1px; background: var(--border); margin: 70px 0; }
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.back-to-top{
  position:fixed; bottom:28px; right:28px; width:48px; height:48px; border-radius:50%;
  background: var(--gold-grad); color: var(--gold-ink); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px -6px rgba(217,179,108,.6); opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .3s, transform .3s; z-index: 900; border:0;
}
.back-to-top.is-visible{ opacity:1; pointer-events:auto; transform: translateY(0); }
.back-to-top svg{ width:18px; height:18px; }

.whatsapp-fab{
  position:fixed; bottom:28px; left:28px; width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#06210f; display:flex; align-items:center; justify-content:center; z-index:900;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,.55); transition: transform .25s var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab svg{ width:28px; height:28px; }

.notice-box{
  display:flex; gap:16px; align-items:flex-start; background: rgba(224,162,59,.1); border:1px solid rgba(224,162,59,.35);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 40px;
}
.notice-box svg{ width:24px; height:24px; color: var(--amber); flex-shrink:0; }
.notice-box strong{ color:var(--ink); display:block; margin-bottom:4px; }
.notice-box p{ margin:0; font-size:14.5px; }

@media (max-width: 768px){
  .split, .grid-3, .grid-2, .grid-4, .pricing-grid, .steps, .footer-grid{ gap:20px; }
}

/* ---------- Prose (legal / long-form text) ---------- */
.prose{ max-width: 760px; margin: 0 auto; }
.prose h2{ color:var(--ink); font-size:21px; margin-top:46px; }
.prose h2:first-child{ margin-top:0; }
.prose p{ font-size:15px; }
.prose ul{ margin: 0 0 1.2em 1.3em; list-style: disc; }
.prose li{ margin-bottom:9px; color:var(--text-dim); font-size:15px; }
.prose strong{ color:var(--ink); }

/* ==========================================================================
   Kelime Sayacı tool
   ========================================================================== */
.wc-app{ background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-1); }
.wc-toolbar{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding-bottom:18px; margin-bottom:18px; border-bottom:1px solid var(--border); }
.wc-toolbar .seg{ display:flex; background:var(--surface-2); border-radius:10px; padding:4px; gap:4px; }
.wc-toolbar .seg button{ padding:8px 14px; border-radius:8px; background:transparent; border:0; color:var(--text-dim); font-size:13px; font-weight:600; transition: background .2s, color .2s; }
.wc-toolbar .seg button.is-active{ background: var(--gold-grad); color:var(--gold-ink); }
.wc-toolbar .group{ display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
.wc-toolbar select.tb-select{ background: var(--surface-2); border:1px solid var(--border); color:var(--text); border-radius:8px; padding:9px 10px; font-size:13px; }
.wc-toolbar button.tb-btn{ width:36px; height:36px; display:flex; align-items:center; justify-content:center; background: var(--surface-2); border:1px solid var(--border); color: var(--text-dim); border-radius:8px; transition: border-color .2s, color .2s; }
.wc-toolbar button.tb-btn svg{ width:16px; height:16px; }
.wc-toolbar button.tb-btn:hover, .wc-toolbar button.tb-btn.is-active{ border-color: var(--gold); color: var(--gold); }
.wc-toolbar .sep{ width:1px; height:26px; background:var(--border); margin:0 2px; }

.wc-editor{ min-height:300px; background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius); padding:24px; color:var(--ink); font-size:15.5px; line-height:1.75; outline:none; }
.wc-editor:focus{ border-color: var(--border-strong); }
.wc-editor:empty::before{ content: attr(data-placeholder); color: var(--text-faint); }
.wc-editor h1{ font-size:28px; margin:0 0 .6em; }
.wc-editor h2{ font-size:23px; margin:0 0 .6em; }
.wc-editor h3{ font-size:19px; margin:0 0 .6em; }
.wc-editor h4{ font-size:16.5px; margin:0 0 .6em; }
.wc-editor p{ margin:0 0 .8em; color:var(--ink); }
.wc-editor ul, .wc-editor ol{ margin:0 0 .8em 1.4em; color:var(--ink); }
.wc-editor blockquote{ border-left:3px solid var(--gold); padding-left:16px; color:var(--text-dim); margin:0 0 .8em; font-style:italic; }
.wc-editor a{ color: var(--gold); text-decoration:underline; }

.wc-plain{ width:100%; min-height:300px; background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius); padding:24px; color:var(--ink); font-size:15px; line-height:1.75; resize:vertical; }

.wc-quickbar{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; margin-top:18px; padding-top:18px; border-top:1px solid var(--border); }
.wc-quick-stats{ display:flex; gap:24px; flex-wrap:wrap; }
.wc-quick-stats div{ font-size:13px; color:var(--text-faint); }
.wc-quick-stats strong{ color:var(--ink); font-family:"Outfit",sans-serif; font-size:16px; margin-right:5px; }
.wc-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.wc-stats-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:32px; }
@media (max-width:992px){ .wc-stats-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .wc-stats-grid{ grid-template-columns:repeat(2,1fr); } }
.wc-stat{ background:var(--surface-2); border:1px solid var(--border); border-radius: var(--radius-sm); padding:18px 14px; text-align:center; }
.wc-stat .num{ font-family:"Outfit",sans-serif; font-size:24px; font-weight:800; color:var(--gold); display:block; }
.wc-stat .lbl{ font-size:11.5px; color:var(--text-faint); margin-top:6px; }

.wc-heading-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.wc-heading-chip{ display:flex; align-items:center; gap:8px; background:var(--surface-2); border:1px solid var(--border); border-radius:999px; padding:9px 18px; font-size:13px; color:var(--text-dim); }
.wc-heading-chip strong{ color:var(--ink); }
.wc-heading-chip.warn{ border-color: var(--red); color: var(--red); }
.wc-heading-chip.warn strong{ color: var(--red); }

.wc-tabs{ display:flex; gap:24px; margin: 40px 0 20px; border-bottom:1px solid var(--border); overflow-x:auto; }
.wc-tab{ padding:12px 2px; margin-bottom:-1px; border-bottom:2px solid transparent; color:var(--text-faint); font-size:14px; font-weight:600; white-space:nowrap; background:none; border-top:0; border-left:0; border-right:0; }
.wc-tab.is-active{ color:var(--ink); border-bottom-color: var(--gold); }

.wc-sort{ display:flex; gap:8px; margin-bottom:16px; flex-wrap:wrap; }
.wc-sort button{ font-size:12.5px; padding:7px 14px; border-radius:999px; background:var(--surface-2); border:1px solid var(--border); color:var(--text-dim); }
.wc-sort button.is-active{ background: var(--gold-grad); color:var(--gold-ink); border-color:transparent; }

.bar-track{ width:90px; height:6px; background:var(--surface-2); border-radius:4px; overflow:hidden; display:inline-block; vertical-align:middle; }
.bar-fill{ height:100%; background: var(--gold-grad); border-radius:4px; }

.status-pill{ font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px; white-space:nowrap; }
.status-ideal{ background: rgba(52,192,160,.15); color: var(--teal); }
.status-low{ background: rgba(20,22,35,.06); color: var(--text-faint); }
.status-high{ background: rgba(224,162,59,.15); color: var(--amber); }
.status-stuff{ background: rgba(226,96,79,.15); color: var(--red); }
.empty-row td{ text-align:center; color:var(--text-faint); padding:30px 16px; }
