/* ============================================================
   YAKAMOZ YEDEK PARÇA B2B — Yakında Hizmetinizde
   Özgün tasarım · Koyu mavi + turuncu vurgu · 2026
   ============================================================ */

:root {
  --blue: #0c3a85;
  --blue-2: #143e8a;
  --blue-3: #1e4ea3;
  --orange: #f27f05;
  --orange-2: #ff9420;
  --red: #e63946;
  --ink: #0f1623;
  --ink-2: #4a5568;
  --ink-3: #718096;
  --ink-faint: #a0aec0;
  --bg: #fafbfc;
  --bg-soft: #f1f5f9;
  --line: #e2e8f0;
  --line-soft: #edf2f7;
  --green: #22b573;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'JetBrains Mono', monospace; }
.am { color: var(--orange); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s; }

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(12,58,133,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,58,133,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.bg-gradient {
  position: fixed;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(242,127,5,.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-100px, 80px); }
}

body > * { position: relative; z-index: 1; }

/* ============================================================
   UTILITY BAR (üst)
   ============================================================ */
.util-bar {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 2px solid var(--orange);
}
.util-bar .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.util-bar a { color: #fff; }
.util-bar a:hover { color: var(--orange-2); }
.util-bar .sep { opacity: .4; margin: 0 8px; }
.util-bar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 6px;
  vertical-align: middle;
}
.util-bar .pulse {
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(242,127,5,.7);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242,127,5,.7); }
  100% { box-shadow: 0 0 0 10px rgba(242,127,5,0); }
}
.ub-r { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   HEADER
   ============================================================ */
.site {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: relative;
}
.site::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .4;
}
.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 48px; height: 48px;
  background: var(--blue);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--orange);
}
.brand-mark svg {
  width: 30px; height: 30px;
  color: #fff;
  position: relative; z-index: 1;
}
.brand-name { line-height: 1; }
.brand-name .b1 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 19px;
  color: var(--blue);
}
.brand-name .b2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--ink-faint);
  margin-top: 4px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,127,5,.3);
}
.btn.ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--line);
}
.btn.ghost:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
}
.btn.primary:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
  box-shadow: 0 6px 20px rgba(12,58,133,.3);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 70px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 26px;
}
.eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
}

.hero-h1 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--blue);
  margin-bottom: 26px;
}
.hero-sub {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

/* Hero features grid */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 580px;
}
.hf {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  transition: all .15s;
}
.hf:hover {
  border-left-color: var(--blue);
  transform: translateX(2px);
}
.hf-icon { font-size: 22px; flex-shrink: 0; }
.hf-text .t1 {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
.hf-text .t2 {
  font-size: 12px;
  color: var(--ink-3);
}

/* ============================================================
   ÖN KAYIT KARTI (Hero sağ)
   ============================================================ */
.reg-card {
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.reg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 30%, var(--blue) 30%, var(--blue) 100%);
}
.rc-head {
  padding: 32px 28px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.rc-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.rc-head h2 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.rc-head p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.reg-form { padding: 24px 28px 28px; }
.rf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rf-field { margin-bottom: 14px; }
.rf-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.rf-field .req { color: var(--red); }
.rf-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: all .15s;
}
.rf-field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,127,5,.1);
}
.rf-field input::placeholder { color: var(--ink-faint); }

.rf-check {
  display: flex;
  gap: 10px;
  margin: 18px 0 20px;
  padding: 14px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-2);
  cursor: pointer;
}
.rf-check input { margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }
.rf-check strong { color: var(--ink); }

.submit-btn {
  width: 100%;
  padding: 15px 22px;
  font-size: 14px;
  letter-spacing: .12em;
  font-weight: 700;
}

.rf-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.5;
}

/* ALERT */
.alert {
  padding: 18px 24px;
  margin: 0 28px 14px;
  font-size: 13.5px;
  line-height: 1.55;
}
.alert.ok {
  background: #e6fffa;
  color: #065f46;
  border-left: 4px solid var(--green);
}
.alert.err {
  background: #fee;
  color: #991b1b;
  border-left: 4px solid var(--red);
}
.alert strong { display: block; margin-bottom: 4px; font-size: 14px; }
.alert p { font-size: 13px; }

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands-strip {
  padding: 50px 0;
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.brands-strip::before, .brands-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 1;
}
.brands-strip::before { left: 0; background: linear-gradient(90deg, var(--blue), transparent); }
.brands-strip::after  { right: 0; background: linear-gradient(-90deg, var(--blue), transparent); }
.bs-label {
  font-size: 10.5px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-bottom: 26px;
}
.bs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,.1);
}
.bs-item {
  padding: 16px 32px;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,.8);
  border-right: 1px solid rgba(255,255,255,.1);
  letter-spacing: .04em;
  transition: color .15s;
}
.bs-item:hover { color: var(--orange-2); }

/* ============================================================
   PHASES
   ============================================================ */
.phases { padding: 80px 0; background: #fff; }
.ph-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.ph-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ph-tag .num { color: var(--ink-faint); margin-right: 6px; }
.ph-head h2 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -.015em;
  color: var(--blue);
  margin-bottom: 14px;
}
.ph-head .lede {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ph-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  transition: all .2s;
}
.ph-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(12,58,133,.08);
}
.ph-card.active {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fff, #fffaf2);
}
.ph-card.active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.ph-step {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--bg-soft);
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.ph-card.active .ph-step { color: rgba(242,127,5,.15); }

.ph-status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10.5px;
  letter-spacing: .14em;
  background: var(--bg-soft);
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 14px;
}
.ph-card.active .ph-status {
  background: var(--orange);
  color: #fff;
}
.ph-card h3 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.ph-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 24px;
  margin-top: 30px;
}
.sf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.sf-name {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.sf-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 420px;
}
.sf-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.sf-col p { font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.sf-col a { color: rgba(255,255,255,.85); }
.sf-col a:hover { color: var(--orange-2); }
.sf-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-features { grid-template-columns: 1fr; }
  .ph-grid { grid-template-columns: 1fr; }
  .sf-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-h1 { font-size: 44px; }
  .ph-head h2 { font-size: 34px; }
  .util-bar .ub-r { display: none; }
}

@media (max-width: 580px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 50px 0 40px; }
  .hero-h1 { font-size: 36px; }
  .rf-row { grid-template-columns: 1fr; }
  .bs-item { padding: 12px 18px; font-size: 14px; }
  .ph-card { padding: 24px 20px; }
  .site .wrap { flex-direction: column; gap: 14px; }
  .header-cta { width: 100%; }
  .btn { width: 100%; }
}
