/* ==========================================================================
   PratikCV — Landing Page
   Bölüm sırası ve zemin akışı için index.html içindeki section yorumlarına bakın.
   Renkler tek yerden: :root değişkenleri.
   ========================================================================== */

:root {
  /* Marka */
  --white: #ffffff;
  --bg-soft: #f8f9fc;
  --bg-gray: #f1f2f6;
  --orange: #ff6b1a;
  --orange-dark: #e9500a;
  --orange-soft: #fff1e8;
  --orange-tint: #fff8f3;
  --ink: #0f1115;
  --ink-2: #545a63;
  --ink-body: #4a4f57;
  --line: #e8e8ec;
  --green: #159a68;
  --yellow: #e7a321;
  --red: #c93232;
  --dark: #101119;
  --public-orange: var(--orange);
  --public-orange-dark: var(--orange-dark);
  --public-soft: var(--orange-soft);
  --public-ink: var(--ink);
  --public-muted: var(--ink-body);
  --public-line: var(--line);

  --grad: linear-gradient(135deg, #ff7a1a 0%, #ff4d00 100%);

  /* Ölçekler */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(23, 23, 23, .04), 0 2px 8px rgba(23, 23, 23, .04);
  --shadow-md: 0 4px 12px rgba(23, 23, 23, .06), 0 12px 32px rgba(23, 23, 23, .07);
  --shadow-lg: 0 24px 60px rgba(23, 23, 23, .12), 0 4px 16px rgba(23, 23, 23, .06);
  --shadow-orange: 0 10px 30px rgba(255, 107, 26, .28);

  --maxw: 1320px;
  --nav-h: 72px;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { margin: 0; letter-spacing: -.02em; line-height: 1.12; text-wrap: balance; }
h1 { font-size: clamp(40px, 6.2vw, 76px); font-weight: 800; letter-spacing: -.038em; }
h2 { font-size: clamp(30px, 3.9vw, 48px); font-weight: 800; letter-spacing: -.03em; }
h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 700; letter-spacing: -.02em; }
p { margin: 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
/* Bölüm üstü rozet: solda gradient ikon kabı, sağda açıklama — referans tasarım. */
.pill-eyebrow { padding: 5px 6px 5px 5px; gap: 9px; }
/* .pill b kuralındaki yatay padding ikonu sağa kaydırıyordu; iki sınıflı seçici
   ile özgüllük artırılıp padding sıfırlanır. */
.pill.pill-eyebrow b,
.pill.pill-eyebrow .pill-icon {
  display: grid; place-items: center; width: 28px; height: 28px; padding: 0;
  border-radius: 999px; background: var(--grad); color: #fff; flex: none; line-height: 0;
}
.pill.pill-eyebrow b svg,
.pill.pill-eyebrow .pill-icon svg { width: 15px; height: 15px; display: block; }
.pill-eyebrow .pill-txt { padding-right: 12px; font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: 0; text-transform: none; }

.lead { font-size: clamp(15.5px, 1.6vw, 18.5px); color: var(--ink-body); line-height: 1.72; }
.text-emphasis { font-weight: 700; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .lead { margin-top: 14px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 650; font-size: 15px; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  min-height: 46px;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255, 107, 26, .36); }
.btn-ghost { background: rgba(255,255,255,.75); color: var(--ink); border-color: var(--line); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; min-height: 54px; }
.btn .arw { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.22); }
.btn-ghost .arw { background: var(--orange-soft); color: var(--orange); }

/* ==========================================================================
   AURORA ARKA PLAN (hero + final CTA)
   Bulut hissi: çok büyük, bulanık turuncu lekeler; yavaş ve GPU dostu hareket.
   ========================================================================== */
.aurora {
  position: absolute; inset: -20% -12% auto -12%; height: 150%; z-index: 0; pointer-events: none; overflow: hidden;
  /* Açılışta hafif yamuk durur; aşağı inildikçe JS bu değeri sıfıra çeker. */
  transform: skewY(var(--aurora-skew, -4deg));
  transform-origin: top center;
  will-change: transform;
}
.aurora::before {
  content: "";
  position: absolute;
  inset: 10% 3% 4%;
  border-radius: 42%;
  background:
    radial-gradient(ellipse 28% 18% at 7% 38%, rgba(255, 116, 30, .58) 0%, rgba(255, 150, 82, .30) 45%, transparent 76%),
    radial-gradient(ellipse 24% 22% at 27% 54%, rgba(255, 183, 132, .62) 0%, rgba(255, 133, 57, .30) 48%, transparent 78%),
    radial-gradient(ellipse 30% 18% at 49% 42%, rgba(255, 232, 214, .92) 0%, rgba(255, 174, 117, .34) 50%, transparent 80%),
    radial-gradient(ellipse 24% 22% at 70% 58%, rgba(255, 146, 73, .46) 0%, rgba(255, 196, 154, .36) 48%, transparent 78%),
    radial-gradient(ellipse 30% 20% at 94% 38%, rgba(255, 101, 18, .55) 0%, rgba(255, 151, 83, .28) 48%, transparent 78%),
    radial-gradient(ellipse 54% 24% at 50% 78%, rgba(255, 107, 26, .42) 0%, rgba(255, 171, 111, .26) 52%, transparent 82%);
  filter: blur(34px) saturate(1.08);
  opacity: .95;
  transform-origin: center;
  will-change: transform, opacity;
  animation: cloudFlow 12s ease-in-out infinite alternate;
}
.aurora::after {
  content: "";
  position: absolute;
  inset: 18% 12% 24%;
  background:
    radial-gradient(ellipse 34% 28% at 50% 20%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 45%, transparent 76%),
    radial-gradient(ellipse 23% 23% at 17% 56%, rgba(255,255,255,.88) 0%, rgba(255,255,255,.48) 46%, transparent 76%),
    radial-gradient(ellipse 25% 22% at 82% 52%, rgba(255,255,255,.84) 0%, rgba(255,255,255,.42) 48%, transparent 76%),
    radial-gradient(ellipse 20% 14% at 35% 76%, rgba(255,255,255,.76) 0%, transparent 78%),
    radial-gradient(ellipse 24% 15% at 67% 78%, rgba(255,255,255,.72) 0%, transparent 78%);
  filter: blur(21px);
  transform-origin: center;
  will-change: transform, opacity;
  animation: cloudBreath 9s ease-in-out infinite alternate;
}
.aurora span {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(70px); opacity: .55; will-change: transform;
}
.a1 { width: 780px; height: 620px; left: -6%; top: -8%; background: radial-gradient(circle at 40% 40%, #ffb27a 0%, rgba(255,178,122,0) 70%); animation: drift1 17s ease-in-out infinite; }
.a2 { width: 900px; height: 700px; right: -10%; top: -14%; background: radial-gradient(circle at 50% 50%, #ff8a3d 0%, rgba(255,138,61,0) 68%); opacity: .42; animation: drift2 21s ease-in-out infinite; }
.a3 { width: 1100px; height: 560px; left: 12%; top: 26%; background: radial-gradient(ellipse at 50% 50%, #ffd7b8 0%, rgba(255,215,184,0) 70%); opacity: .7; animation: drift3 19s ease-in-out infinite; }
.a4 { width: 620px; height: 520px; right: 8%; top: 42%; background: radial-gradient(circle at 50% 50%, #ff6b1a 0%, rgba(255,107,26,0) 70%); opacity: .22; animation: drift1 24s ease-in-out infinite reverse; }

@keyframes drift1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(60px,40px,0) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate3d(0,0,0) scale(1.05); } 50% { transform: translate3d(-70px,50px,0) scale(1); } }
@keyframes drift3 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(40px,-40px,0) scale(1.1); } }
@keyframes cloudFlow {
  0% { transform: translate3d(-5%, -2%, 0) scale(1); opacity: .80; }
  50% { transform: translate3d(2%, 3%, 0) scale(1.12); opacity: 1; }
  100% { transform: translate3d(6%, -3%, 0) scale(1.04); opacity: .88; }
}
@keyframes cloudBreath {
  0% { transform: translate3d(4%, -1%, 0) scale(.94); opacity: .62; }
  100% { transform: translate3d(-5%, 4%, 0) scale(1.13); opacity: 1; }
}

/* İnce grain — gradient bantlaşmasını gizler */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .035; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center;
  transition: height .25s ease, background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled { height: 62px; background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 var(--line), 0 8px 28px rgba(23,23,23,.06); }
/* Header tam ekran: içerik ortadaki 1180px kabına sıkışmaz, kenarlara yaslanır. */
.nav .wrap { display: flex; align-items: center; gap: 28px; max-width: none; padding: 0 clamp(16px, 3vw, 44px); }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.03em; }
/* Logo artık kendi başına turuncu; arkasına kare kap gerekmiyor. */
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--orange); background: none; box-shadow: none;
}
.brand-mark svg { width: 30px; height: 30px; }

/* Menü öğeleri kendi içinde satır atlamamalı: dar ekranda sığmıyorsa hamburger devreye girer. */
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 10px; border-radius: 999px; font-size: 14px; font-weight: 550; color: #3a3a3a;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease;
}
.nav-links a:hover { background: var(--orange-soft); color: var(--orange-dark); }
.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.nav-cta .btn { padding: 9px 16px; font-size: 14px; min-height: 40px; white-space: nowrap; }
/* "Giriş Yap" menü bağlantısı gibi değil, ikinci bir BUTON gibi görünür:
   çerçeveli, beyaz zeminli — birincil turuncu CTA ile karışmaz. */
.link-plain {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 650; padding: 9px 18px; min-height: 40px;
  white-space: nowrap; border-radius: 999px;
  border: 1.5px solid var(--orange); color: var(--orange-dark); background: #fff;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.link-plain:hover { background: var(--orange-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.link-plain:hover { color: var(--orange-dark); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; margin-left: auto; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .2s ease; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 55; background: #fff;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 0 24px; display: flex; flex-direction: column; gap: 4px;
  /* Kapalıyken yüksekliği sıfır ve yukarı kaymış durur; açılırken aşağı iner. */
  max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: max-height .42s cubic-bezier(.22, .7, .26, 1), opacity .3s ease,
              transform .42s cubic-bezier(.22, .7, .26, 1), padding .42s ease, visibility 0s linear .42s;
}
.mobile-menu.open {
  max-height: 82vh; overflow-y: auto; opacity: 1; visibility: visible;
  transform: translateY(0); padding: 14px 24px 22px;
  transition: max-height .42s cubic-bezier(.22, .7, .26, 1), opacity .28s ease,
              transform .42s cubic-bezier(.22, .7, .26, 1), padding .42s ease, visibility 0s;
}
/* Menü öğeleri de sırayla belirir */
.mobile-menu > * { opacity: 0; transform: translateY(-6px); transition: opacity .3s ease, transform .3s ease; }
.mobile-menu.open > * { opacity: 1; transform: none; }
.mobile-menu.open > *:nth-child(1) { transition-delay: .06s; }
.mobile-menu.open > *:nth-child(2) { transition-delay: .09s; }
.mobile-menu.open > *:nth-child(3) { transition-delay: .12s; }
.mobile-menu.open > *:nth-child(4) { transition-delay: .15s; }
.mobile-menu.open > *:nth-child(5) { transition-delay: .18s; }
.mobile-menu.open > *:nth-child(6) { transition-delay: .21s; }
.mobile-menu.open > *:nth-child(7) { transition-delay: .24s; }
.mobile-menu.open > *:nth-child(8) { transition-delay: .27s; }
.mobile-menu.open > *:nth-child(n+9) { transition-delay: .3s; }

/* Hamburger ikonu açıkken çarpıya döner */
.burger span { transition: background .2s ease, transform .3s ease; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu a { padding: 13px 10px; border-radius: 12px; font-weight: 600; min-height: 46px; display: flex; align-items: center; }
.mobile-menu a:hover { background: var(--bg-soft); }
.mobile-menu .btn { margin-top: 8px; width: 100%; }

/* ==========================================================================
   1) HERO
   ========================================================================== */
.hero {
  position: relative; padding: calc(var(--nav-h) + 60px) 0 0; overflow: hidden;
  background:
    linear-gradient(180deg,rgba(255,255,255,.22) 0%,rgba(255,255,255,.03) 68%,rgba(247,248,252,.3) 100%),
    url('/images/public/orange-cloud-hero.webp') center top/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -7%; pointer-events: none;
  background: url('/images/public/orange-cloud-hero.webp') center top/cover no-repeat;
  opacity: .72; transform: translate3d(-1.5%, -1%, 0) scale(1.06);
  transform-origin: center; will-change: transform, opacity;
  animation: heroCloudPan 10s ease-in-out infinite alternate;
}
@keyframes heroCloudPan {
  0% { transform: translate3d(-2.5%, -1.5%, 0) scale(1.06); opacity: .62; }
  45% { transform: translate3d(1%, 1%, 0) scale(1.1); opacity: .78; }
  100% { transform: translate3d(3%, -1%, 0) scale(1.08); opacity: .68; }
}
.brand-mark img{display:block;width:100%;height:100%;object-fit:contain}
.hero-inner { position: relative; z-index: 2; text-align: center; }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 6px 6px 7px;
  background: rgba(255,255,255,.86); border: 1px solid rgba(255,107,26,.22); border-radius: 999px;
  box-shadow: 0 6px 20px rgba(255,107,26,.12); backdrop-filter: blur(10px);
  font-size: 13.5px; font-weight: 550; color: #4a4a4a;
}
.pill b { background: var(--grad); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.pill .pill-txt { padding-right: 12px; }

/* 24ch: "CV oluşturmak hiç bu kadar" tek satıra sığar, ikinci satır "pratik olmamıştı" olur. */
.hero h1 { margin: 26px auto 0; max-width: 24ch; }

/* Değişen kelime — layout shift olmaması için sabit min genişlik */
/* min-width: en uzun kelimeye göre sabit kutu — kelime değişirken satır kaymaz.
   Alt çizgi kutuya değil KELİMEYE bağlıdır; yazarken metinle birlikte büyür. */
.rotator { position: relative; display: inline-block; min-width: 5.2ch; text-align: left; }
.rotator .word {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  border-bottom: .06em solid rgba(255, 107, 26, .35); padding-bottom: .04em;
}
.rotator .caret {
  display: inline-block; width: 3px; height: .82em; margin-left: 4px; vertical-align: -.06em;
  background: var(--orange); border-radius: 2px; animation: blink 1s steps(1) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.hero .lead { margin: 22px auto 0; max-width: 60ch; font-size: clamp(15.5px, 1.7vw, 19px); }

/* E-posta + CTA (referans hero'daki abone kutusu yerine kayıt kutusu) */
.hero-form {
  margin: 34px auto 0; display: flex; align-items: center; gap: 8px; width: min(560px, 100%);
  background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 7px 7px 20px; box-shadow: var(--shadow-md); backdrop-filter: blur(10px);
}
.hero-form input {
  flex: 1; border: 0; background: transparent; font: inherit; font-size: 15px; color: var(--ink);
  min-width: 0; padding: 10px 0;
}
.hero-form input::placeholder { color: #9a9aa2; }
.hero-form input:focus { outline: none; }
.hero-form .btn { flex: none; }

.hero-alt { margin: 16px auto 0; display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; }
.trustline { margin: 20px auto 0; font-size: 13.5px; color: #7a7a82; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.trustline i { color: var(--green); font-style: normal; }

/* Hero'da yüzen mini kartlar (referanstaki küçük ikon kartları) */
.float-card {
  position: absolute; z-index: 2; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9);
  border-radius: 16px; box-shadow: var(--shadow-md); backdrop-filter: blur(10px);
  padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
  animation: floaty 7s ease-in-out infinite;
}
.float-card .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-dark); }
.fc-1 { left: 3%; top: 30%; animation-delay: -1s; }
.fc-2 { right: 3%; top: 24%; animation-delay: -3.5s; }
.fc-3 { left: 7%; top: 62%; animation-delay: -5s; }
.fc-4 { right: 6%; top: 58%; animation-delay: -2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.shot-frame {
  position: relative; z-index: 2; margin: 62px auto 0; width: min(1240px, calc(100% - 32px));
  border-radius: clamp(20px, 2.2vw, 32px) clamp(20px, 2.2vw, 32px) 0 0;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.46));
  border: 1px solid rgba(255,255,255,.92);
  border-bottom: 0;
  box-shadow: 0 34px 90px rgba(66, 43, 30, .18), 0 12px 34px rgba(255, 107, 26, .13), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  padding: clamp(7px, 1vw, 13px) clamp(7px, 1vw, 13px) 0;
  overflow: hidden;
  transform-origin: center top;
  transform: perspective(1350px)
    rotateX(var(--hero-panel-tilt-x, 18deg))
    translate3d(0, var(--hero-panel-y, 0px), 0)
    scale(var(--hero-panel-scale, .965));
  will-change: transform;
}
.shot-scroll { overflow: hidden; border-radius: clamp(14px, 1.7vw, 22px) clamp(14px, 1.7vw, 22px) 0 0; }
.hero-product-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(13px, 1.55vw, 20px) clamp(13px, 1.55vw, 20px) 0 0;
  border: 1px solid rgba(35, 35, 42, .10);
  box-shadow: 0 16px 38px rgba(35, 35, 42, .12);
}

/* ---------- CV EDİTÖRÜ MOCKUP (ürünün gerçek ekranı, örnek aday verisiyle) ---------- */
.app {
  min-width: 1080px; background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); font-size: 12px;
}
.app-top {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-bottom: 1px solid var(--line); background: #fff; white-space: nowrap;
}

.tool { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 9px; font-size: 11px; font-weight: 600; color: #3f3f46; background: #fff; }
.tool.credit { border-color: rgba(255,107,26,.35); background: var(--orange-soft); color: var(--orange-dark); }
.tool.pdf { background: var(--ink); color: #fff; border-color: var(--ink); }

.avatar { width: 38px; height: 38px; border-radius: 50%; background: #f0f0f4; display: grid; place-items: center; color: #a9a9b2; }

.field { margin-top: 9px; }
.field label { display: block; font-size: 10.5px; color: var(--ink-2); margin-bottom: 4px; font-weight: 600; }
.field .inp { border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; font-size: 11.5px; background: #fff; color: #2a2a2e; min-height: 32px; }
.field .inp.empty { color: #c2c2c8; }

.paper {
  width: 100%; max-width: 430px; background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: var(--shadow-md); padding: 26px 30px; font-size: 10.5px; color: #1a1a1a; line-height: 1.5;
}
.cv-name { text-align: center; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }

.cv-h {
  margin: 16px 0 7px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1.5px solid #1a1a1a; padding-bottom: 4px;
}
.cv-row { display: flex; justify-content: space-between; gap: 10px; margin-top: 9px; }
.cv-row b { font-size: 11px; }

.paper ul { margin: 5px 0 0; padding-left: 15px; }
.paper li { margin-top: 3px; }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); }
.tabs span { padding: 8px 10px; font-size: 11.5px; font-weight: 650; color: #82828c; }
.tabs span.on { color: var(--orange-dark); border-bottom: 2px solid var(--orange); }
.quad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.quad div { border: 1px solid var(--line); border-radius: 11px; padding: 10px 6px; text-align: center; font-size: 10.5px; font-weight: 600; color: #43434a; }
.quad div i { display: block; font-size: 13px; margin-bottom: 4px; color: var(--orange); font-style: normal; }

.ats-top { display: flex; align-items: center; gap: 12px; }
.ring { --p: 87; width: 54px; height: 54px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: conic-gradient(var(--green) calc(var(--p) * 1%), #eceef2 0); position: relative; }
.ring::after { content: ""; position: absolute; inset: 5px; background: #fff; border-radius: 50%; }
.ring b { position: relative; z-index: 1; font-size: 16px; font-weight: 800; }
.ats-top .lbl { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.ats-top .val { font-size: 14px; font-weight: 750; color: var(--green); }
.ats-list { margin-top: 10px; display: flex; flex-direction: column; }
.ats-item { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; border-bottom: 1px solid #f2f2f5; }
.ats-item:last-child { border-bottom: 0; }
.dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 5px; flex: none; }
.dot.g { background: var(--green); } .dot.y { background: var(--yellow); } .dot.r { background: var(--red); }
.ats-item .t { font-size: 11.5px; font-weight: 650; }
.ats-item .s { font-size: 10px; color: var(--ink-2); }
.ats-item .n { margin-left: auto; font-size: 11px; font-weight: 700; color: #3a3a42; white-space: nowrap; }

.quick { background: var(--orange-tint); border: 1px solid rgba(255,107,26,.2); border-radius: 12px; padding: 10px; }
.quick .lbl { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-dark); }
.quick li { font-size: 10.5px; margin-top: 6px; color: #4a4a52; }
.quick ul { margin: 4px 0 0; padding-left: 14px; }

/* ==========================================================================
   3) TRUST
   ========================================================================== */
/* Rakamlar boşlukta asılı kalmasın: tek bir kart bandı, ayraçlı ve ikonlu. */
.trust { background: linear-gradient(180deg, var(--bg-gray) 0%, #fff 55%, #fff 100%); padding: 64px 0 26px; }

/* ==========================================================================
   4) ÖZELLİKLER — bento (referans 4)
   ========================================================================== */
.features {
  background: linear-gradient(180deg, #f7f8fc 0%, #fff 16%, #fff 84%, var(--orange-soft) 100%);
  padding: 92px 0 96px;
}
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.fcard {
  background: #fff; border: 1px solid #e9e9ee; border-radius: var(--r-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 16px; transition: transform .22s ease, box-shadow .22s ease;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fcard.w3 { grid-column: span 3; }
.fcard.w2 { grid-column: span 2; }
.fcard.w4 { grid-column: span 4; }
.fcard-visual {
  border-radius: var(--r-md); padding: 16px; min-height: 172px; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(255,138,61,.20) 0%, rgba(255,138,61,0) 60%),
    radial-gradient(100% 80% at 90% 100%, rgba(255,107,26,.16) 0%, rgba(255,107,26,0) 60%),
    #fbfbfd;
  border: 1px solid #edeef2;
  display: flex; flex-direction: column; justify-content: center;
}
.fcard h3 { font-size: 19px; }
.fcard p { color: var(--ink-2); font-size: 14.5px; margin-top: 6px; }

/* mini görseller */
.mini { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; box-shadow: var(--shadow-sm); }
.mini + .mini { margin-top: 10px; }
.mini-head { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; color: #45454d; }
.tagrow { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.tag { font-size: 10.5px; font-weight: 650; padding: 4px 9px; border-radius: 999px; background: #f2f3f7; color: #55555e; }
.tag.ok { background: rgba(21,154,104,.12); color: var(--green); }
.tag.miss { background: rgba(201,50,50,.1); color: var(--red); }
.tag.or { background: var(--orange-soft); color: var(--orange-dark); }
.bar { height: 7px; border-radius: 999px; background: #eef0f4; overflow: hidden; margin-top: 8px; }
.bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width 1.2s cubic-bezier(.2,.7,.3,1); }
.bubble { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 9px 11px; font-size: 11.5px; box-shadow: var(--shadow-sm); }
.bubble.me { background: var(--grad); color: #fff; border-color: transparent; margin-left: 34px; }
.bubble + .bubble { margin-top: 8px; }
.gauge-wrap { display: flex; align-items: center; gap: 14px; }
.gauge { --p: 87; width: 84px; height: 84px; border-radius: 50%; flex: none; display: grid; place-items: center; position: relative;
  background: conic-gradient(var(--orange) calc(var(--p) * 1%), #ebedf1 0); }
.gauge::after { content: ""; position: absolute; inset: 8px; background: #fff; border-radius: 50%; }
.gauge b { position: relative; z-index: 1; font-size: 24px; font-weight: 800; }

/* ==========================================================================
   5) NASIL ÇALIŞIR
   ========================================================================== */
/* Adımlar: kartlar başlangıçta birbirinin üstüne binmiş ve eğik durur;
   bölüm ekrana girince yerlerine oturup düzgün bir sıraya geçerler. */
.how { background: linear-gradient(180deg, var(--orange-soft) 0%, #fff7f1 18%, #fff7f1 82%, #fff 100%); padding: 110px 0 100px; --curve-color: var(--orange-soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; perspective: 1200px; }
.step {
  border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px 28px 36px; min-height: 260px;
  background: linear-gradient(180deg, #fff 0%, #fdfdff 100%); box-shadow: var(--shadow-sm);
  transition: transform .85s cubic-bezier(.2, .8, .25, 1), box-shadow .3s ease, opacity .6s ease;
}
html.js .steps .step { opacity: 0; }
/* Yığılmış başlangıç: ortaya toplan, hafif dön ve alçal. */
html.js .steps .step:nth-child(1) { transform: translate3d(72%, 26px, 0) rotate(-7deg) scale(.94); }
html.js .steps .step:nth-child(2) { transform: translate3d(24%, 14px, 0) rotate(-3deg) scale(.97); }
html.js .steps .step:nth-child(3) { transform: translate3d(-24%, 14px, 0) rotate(3deg) scale(.97); }
html.js .steps .step:nth-child(4) { transform: translate3d(-72%, 26px, 0) rotate(7deg) scale(.94); }
html.js .steps.in .step { opacity: 1; transform: none; }
html.js .steps.in .step:nth-child(1) { transition-delay: .05s; }
html.js .steps.in .step:nth-child(2) { transition-delay: .13s; }
html.js .steps.in .step:nth-child(3) { transition-delay: .21s; }
html.js .steps.in .step:nth-child(4) { transition-delay: .29s; }
.step:hover { box-shadow: var(--shadow-md); }
.step .num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 19px;
  box-shadow: var(--shadow-orange);
}
.step h3 { font-size: 21px; margin-top: 22px; }
.step p { color: var(--ink-body); font-size: 15.5px; margin-top: 10px; line-height: 1.65; }
.steps { gap: 22px; }

/* ==========================================================================
   6) ATS
   ========================================================================== */
.ats {
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  padding: 88px 0;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split ul { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.split > div > ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.split > div > ul li .ct { flex: 1 1 auto; min-width: 0; }
/* Panel içindeki "hızlı iyileştirmeler" listesi normal metin akışında kalır. */
.split .quick ul li { display: list-item; }
.split ul .ck { width: 22px; height: 22px; border-radius: 7px; background: var(--grad); color: #fff; display: grid; place-items: center; flex: none; font-size: 12px; }
.panel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 22px; }
.score-head { display: flex; align-items: center; gap: 18px; }
.big-ring { --p: 42; width: 104px; height: 104px; border-radius: 50%; flex: none; display: grid; place-items: center; position: relative;
  background: conic-gradient(var(--green) calc(var(--p) * 1%), #edeff3 0); transition: background .1s linear; }
.big-ring::after { content: ""; position: absolute; inset: 9px; background: #fff; border-radius: 50%; }
.big-ring b { position: relative; z-index: 1; font-size: 30px; font-weight: 800; }
.delta { display: inline-flex; align-items: center; gap: 6px; background: rgba(21,154,104,.12); color: var(--green); font-weight: 700; font-size: 12.5px; padding: 4px 10px; border-radius: 999px; }

/* ==========================================================================
   7) İLANA GÖRE CV
   ========================================================================== */
.match {
  background: #fff;
  padding: 88px 0;
}
.match .lead + .lead { margin-top: 14px; }
.match-visual { display: flex; flex-direction: column; gap: 14px; }
.jobcard { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.jobcard .hd { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.jobcard .hd .src { font-size: 11px; font-weight: 700; color: var(--orange-dark); background: var(--orange-soft); padding: 3px 9px; border-radius: 999px; }
.jobtext { font-size: 13px; color: #55555e; margin-top: 10px; line-height: 1.7; }
.jobtext mark { background: rgba(255,107,26,.16); color: var(--orange-dark); border-radius: 4px; padding: 1px 4px; font-weight: 600; }
.matchbar { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.matchbar .pct { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }

/* ==========================================================================
   8) EKLENTİ (koyu bölüm)
   ========================================================================== */
.ext {
  background: #fff;
  color: var(--ink); padding: 110px 0 96px; position: relative; overflow: hidden;
}
.ext::before {
  content: ""; position: absolute; width: min(1000px, 90vw); height: 420px; left: 50%; top: -240px; transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 50%, rgba(255,107,26,.09), transparent 70%);
  filter: blur(28px);
}
.ext::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12;
  background-image: radial-gradient(rgba(255,107,26,.24) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 35%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, #000 35%, transparent 92%);
}
.ext .wrap { position: relative; z-index: 1; }
.ext .lead { color: var(--ink-body); }
.ext .section-head h2 { color: var(--ink); }
/* Üç adım kartı ve içlerindeki görsel alanları AYNI boyda olmalı: kart dikey flex,
   metin bloğu esner, görsel kutusu sabit yükseklikte tabana oturur. */
.ext-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; align-items: stretch; }
.ext-step { background: rgba(255,255,255,.82); border: 1px solid rgba(255,107,26,.15); border-radius: var(--r-lg); padding: 18px; display: flex; flex-direction: column; box-shadow: 0 18px 50px rgba(109,61,28,.08); backdrop-filter: blur(12px); }
.ext-step .n { font-size: 11px; font-weight: 800; letter-spacing: .12em; color: var(--orange); }
.ext-step h3 { font-size: 17px; margin-top: 8px; color: var(--ink); }
.ext-step p { color: var(--ink-body); font-size: 13.5px; margin-top: 6px; }
.ext-step .ext-copy { flex: 1 1 auto; }
.ext-visual {
  background: #fff; border-radius: var(--r-md); margin-top: 16px; padding: 14px; color: var(--ink);
  height: 224px; display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.ext-pop { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.ext-pop-head { background: var(--grad); color: #fff; padding: 9px 11px; font-size: 11.5px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
.ext-pop-body { padding: 10px; font-size: 11px; }
.ext-sites { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 34px; }
.ext-sites span { font-size: 12.5px; font-weight: 650; color: #704126; border: 1px solid rgba(255,107,26,.18); background: rgba(255,255,255,.74); padding: 7px 14px; border-radius: 999px; box-shadow: 0 6px 18px rgba(109,61,28,.05); }
.ext-note { text-align: center; color: var(--ink-body); font-size: 13.5px; margin-top: 16px; }

/* ==========================================================================
   9) ŞABLONLAR
   ========================================================================== */
.tpl { background: linear-gradient(180deg, #fff 0%, #fff 84%, var(--orange-soft) 100%); padding: 120px 0 96px; --curve-color: #fff; }
/* Şablon slider'ı: ortadaki kart büyük ve net; yanlar bir yay boyunca dizilip
   uzaklaştıkça küçülür ve hafifçe döner. Kartlara tıklanınca merkeze gelir. */
.tpl-stage {
  position: relative; height: 650px; margin: 8px 0 10px;
  display: flex; align-items: flex-start; justify-content: center;
  /* Yayın uçlarındaki kartlar sayfa genişliğini aşmasın: sahnede kırpılırlar —
     bu aynı zamanda "uzaktan geliyor" hissini güçlendirir. */
  overflow: hidden;
  padding: 6px 0 24px;
}
.tpl-card {
  position: absolute; left: 50%; top: 0; width: 360px; margin-left: -180px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px;
  box-shadow: var(--shadow-md); cursor: pointer;
  transform: var(--tpl-t, none); opacity: var(--tpl-o, 1); z-index: var(--tpl-z, 1);
  transition: transform .62s cubic-bezier(.2,.75,.28,1), opacity .45s ease, box-shadow .3s ease;
  will-change: transform;
}
.tpl-card.is-active { box-shadow: var(--shadow-lg); border-color: rgba(255,107,26,.35); }
.tpl-card:not(.is-active) .tpl-meta { opacity: .75; }

.tpl-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 6px; }
.tpl-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.tpl-nav button:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.tpl-dots { display: flex; gap: 7px; align-items: center; }
.tpl-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d8d8e0; transition: all .25s ease; cursor: pointer; }
.tpl-dots span.on { width: 26px; border-radius: 999px; background: var(--grad); }

/* Canlı şablon önizlemesi — CV şablonları sayfasındaki mekanizmanın aynısı:
   gerçek render motoru A4 ölçüsünde iframe'de çizilir, kart genişliğine göre küçültülür,
   üzerine gelindiğinde sayfanın kalanı görünecek şekilde yukarı kayar. */
/* Kutu, ölçeklenmiş A4 sayfasından KISA olmalı; aradaki fark hover'da yukarı kayarak
   şablonun tamamının görünmesini sağlar (şablon sayfasındaki davranışın aynısı). */
.tpl-prev { position: relative; height: 505px; border-radius: 12px; border: 1px solid var(--line); background: #fff; overflow: hidden; }
.design-live { position: absolute; inset: 0; display: block; border-radius: inherit; overflow: hidden; background: #fff; }
.design-live iframe {
  position: absolute; top: 0; left: 0; width: 794px; height: 1123px; border: 0;
  transform-origin: top left; transform: var(--design-transform);
  transition: transform 3.2s cubic-bezier(.22, .61, .36, 1);
}
.tpl-card:hover .design-live iframe { transform: var(--design-transform-hover); }
.design-live[data-loaded="0"] {
  background: linear-gradient(100deg, #f4f4f6 30%, #ececf0 50%, #f4f4f6 70%);
  background-size: 220% 100%; animation: tpl-shimmer 1.1s linear infinite;
}
@keyframes tpl-shimmer { to { background-position: -220% 0; } }

.tpl-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }
.tpl-meta b { font-size: 14px; }
.badge-ats { font-size: 10.5px; font-weight: 700; color: var(--green); background: rgba(21,154,104,.12); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.badge-prem { font-size: 10.5px; font-weight: 700; color: var(--orange-dark); background: var(--orange-soft); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }

/* ==========================================================================
   10) KARŞILAŞTIRMA
   ========================================================================== */
/* Karşılaştırma: iki ayrı liste yerine tek tablo — aynı satırda iki yöntemi
   yan yana görmek farkı çok daha net anlatır. */
.cmp {
  background: linear-gradient(180deg, var(--orange-soft) 0%, #fff7f1 18%, #fff7f1 82%, #fff 100%);
  padding: 112px 0;
}
.cmp .section-head{max-width:920px;margin-bottom:42px}.cmp .section-head .lead{max-width:760px;margin-inline:auto}
.cmp-highlights{max-width:1120px;margin:0 auto 28px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.cmp-highlights article{min-height:126px;padding:22px;display:flex;align-items:flex-start;gap:15px;border:1px solid rgba(255,107,26,.14);border-radius:19px;background:rgba(255,255,255,.72);box-shadow:0 10px 30px rgba(94,57,31,.055);backdrop-filter:blur(10px)}.cmp-highlights article>span{width:43px;height:43px;flex:0 0 43px;display:grid;place-items:center;border-radius:13px;color:#fff;background:var(--grad);box-shadow:0 8px 20px rgba(255,107,26,.2)}.cmp-highlights b{display:block;margin:1px 0 7px;font-size:16px}.cmp-highlights p{color:#6d6870;font-size:13px;line-height:1.55}
.cmp-table {
  max-width: 1120px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-md); background: #fff;
}
.cmp-row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; }
.cmp-row + .cmp-row { border-top: 1px solid var(--line); }
.cmp-row > div { min-height:59px;padding: 17px 22px; display: flex; align-items: center; gap: 11px; font-size: 15px; }
.cmp-row .feat { font-weight: 650; }
.cmp-row .old { color: #7c7c86; background: var(--bg-soft); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cmp-row .new { background: var(--orange-tint); font-weight: 600; }
.cmp-head { background: #fff; }
.cmp-head > div { padding: 16px 18px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cmp-head .old { color: #8a8a94; }
.cmp-head .new { color: var(--orange-dark); display: flex; align-items: center; gap: 8px; }
.cmp-head .new .brand-mark { width: 22px; height: 22px; border-radius: 7px; line-height: 0; }
.cmp-head .new .brand-mark svg { width: 20px; height: 20px; display: block; }
.x, .v { width: 21px; height: 21px; border-radius: 6px; display: grid; place-items: center; flex: none; font-size: 12px; }
.x { background: #e6e6ec; color: #90909c; } .v { background: var(--grad); color: #fff; }
.cmp-bottom{max-width:1120px;margin:22px auto 0;padding:21px 24px;display:flex;align-items:center;justify-content:space-between;gap:28px;border:1px solid rgba(255,107,26,.18);border-radius:20px;background:#fff}.cmp-bottom>div{display:flex;align-items:center;gap:15px}.cmp-bottom>div>span{width:42px;height:42px;flex:0 0 42px;display:grid;place-items:center;border-radius:50%;color:#e9500a;background:#fff1e8}.cmp-bottom p{color:#66636a;font-size:14px}.cmp-bottom p b{color:#171717}.cmp-bottom>a{min-height:45px;padding:0 18px;display:inline-flex;align-items:center;gap:9px;border-radius:12px;color:#fff;background:var(--grad);font-size:13px;font-weight:800;white-space:nowrap;box-shadow:0 10px 24px rgba(255,107,26,.22)}

/* ==========================================================================
   11) YORUMLAR
   ========================================================================== */
/* Yorumlar: iki şerit zıt yönlerde sonsuz kayar. Şerit içeriği JS ile değil,
   işaretlemede iki kez yazılarak kopyalanır; böylece döngü dikişsiz olur. */
.tst { background: linear-gradient(180deg, #fff 0%, #fff 84%, var(--orange-soft) 100%); padding: 88px 0; overflow: hidden; position: relative; }
.tst::before, .tst::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.tst::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.tst::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }

.marquee { display: flex; gap: 20px; width: max-content; will-change: transform; }
.marquee-row { overflow: hidden; }
.marquee-row + .marquee-row { margin-top: 20px; }
.marquee.left { animation: slideLeft 58s linear infinite; }
.marquee.right { animation: slideRight 58s linear infinite; }
/* Şerit hiç durmaz: hover'da da akmaya devam eder. */
@keyframes slideLeft { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes slideRight { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }

.tst-card {
  flex: 0 0 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; }
.tst-card p { margin-top: 12px; font-size: 14.5px; color: #34343c; }
.tst-who { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.tst-av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); color: #fff !important; display: grid; place-items: center; font-weight: 800; font-size: 14px; letter-spacing: .02em; flex: none; }
.tst-who b { font-size: 13.5px; display: block; font-weight: 700; }
.tst-who span { font-size: 12px; color: var(--ink-2); }

/* ==========================================================================
   12) BLOG
   ========================================================================== */
.blog { background: linear-gradient(180deg, var(--orange-soft) 0%, #fff7f1 18%, #fff7f1 82%, #fff 100%); padding: 88px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-cover { height: 150px; position: relative;
  background: radial-gradient(120% 100% at 20% 0%, rgba(255,138,61,.28), rgba(255,138,61,0) 60%), linear-gradient(135deg, #fff3ea, #ffe6d5); }
.post-cover span { position: absolute; left: 14px; bottom: 12px; font-size: 11px; font-weight: 700; background: #fff; color: var(--orange-dark); padding: 4px 10px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.post-body { padding: 18px; }
.post-body h3 { font-size: 17px; }
.post-body p { color: var(--ink-2); font-size: 14px; margin-top: 8px; }
.post-meta { margin-top: 14px; font-size: 12px; color: #8a8a92; display: flex; gap: 8px; }

/* ==========================================================================
   13) FİYATLANDIRMA
   ========================================================================== */
/* Fiyatlandırma: ortalanmış başlık + Aylık/Yıllık anahtarı; öne çıkan paket
   gradient zeminde beyaz metinle ayrışır. */
.price {
  background: linear-gradient(180deg, #fff 0%, #fff 84%, var(--orange-soft) 100%);
  padding: 88px 0;
}
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px; margin: 26px auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.billing-toggle button {
  border: 0; background: transparent; padding: 10px 26px; border-radius: 999px;
  font-weight: 650; font-size: 14.5px; color: var(--ink-2); min-height: 44px;
  transition: background .2s ease, color .2s ease;
}
.billing-toggle button.on { background: var(--grad); color: #fff; box-shadow: var(--shadow-orange); }
.save-pill { font-size: 11px; font-weight: 700; background: rgba(21,154,104,.14); color: var(--green); padding: 3px 8px; border-radius: 999px; margin-left: 6px; }

.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 24px; justify-content: center; margin-top: 44px; }
.pcol { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; position: relative; display: flex; flex-direction: column; }
.pcol h3 { font-size: 21px; }
.pcol .sub { color: var(--ink-2); font-size: 14px; margin-top: 8px; min-height: 42px; }
.pcol .amt { font-size: 52px; font-weight: 800; letter-spacing: -.04em; margin-top: 18px; line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.pcol .amt small { font-size: 15px; font-weight: 600; color: var(--ink-2); letter-spacing: 0; }
.pcol .inc { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-top: 26px; }
.pcol ul { list-style: none; margin: 14px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; }
.pcol li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.pcol .btn { width: 100%; }

/* Öne çıkan paket */
.pcol.pro {
  border-color: transparent; color: #fff; box-shadow: var(--shadow-lg);
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(90% 80% at 90% 100%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 60%),
    var(--grad);
}
.pcol.pro .sub, .pcol.pro .amt small, .pcol.pro .inc { color: rgba(255,255,255,.86); }
.pcol.pro .v { background: #fff; color: var(--orange-dark); }
.pcol.pro::before {
  content: "En Popüler"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
}
.pcol.pro .btn-white { background: #fff; color: var(--orange-dark); }
.pcol.pro .btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.price-note { text-align: center; color: #8a8a92; font-size: 13.5px; margin-top: 30px; }

/* ==========================================================================
   14) SSS
   ========================================================================== */
/* SSS: solda başlık, sağda iletişim CTA'sı; altta numaralı, kart görünümlü sorular. */
.faq { background: linear-gradient(180deg, var(--orange-soft) 0%, #fff7f1 18%, #fff7f1 82%, #fff 100%); padding: 88px 0; }
.faq-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.faq-head h2 { max-width: 14ch; margin-top: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item.open { border-color: rgba(255,107,26,.35); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; padding: 22px 24px;
  display: flex; align-items: center; gap: 18px; font-size: 17px; font-weight: 650; min-height: 72px;
}
.faq-q .idx { font-size: 17px; font-weight: 800; color: var(--orange); flex: none; font-variant-numeric: tabular-nums; }
.faq-q .qt { flex: 1; }
.faq-q .pm {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; flex: none; transition: transform .3s ease, background .2s ease; font-size: 15px;
}
.faq-q:hover .pm { background: var(--orange-dark); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--grad); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s cubic-bezier(.2,.7,.3,1); }
.faq-a p { padding: 0 24px 24px 62px; color: var(--ink-2); font-size: 15.5px; }

/* ==========================================================================
   15) SON CTA
   ========================================================================== */
.final { position: relative; overflow: hidden; padding: 100px 0; text-align: center; background: var(--grad); color: #fff; }
.final::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 72%);
}
.final .wrap { position: relative; z-index: 1; }
.final h2 { color: #fff; max-width: 20ch; margin: 0 auto; }
.final p { color: rgba(255,255,255,.9); margin: 18px auto 0; max-width: 56ch; font-size: 17px; }
.final .btn-white { background: #fff; color: var(--orange-dark); margin-top: 30px; box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.final .btn-white:hover { transform: translateY(-3px); }
.final .fine { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,.86); }

/* ==========================================================================
   16) FOOTER
   ========================================================================== */
.foot { background: var(--dark); color: #b9b9c6; padding: 64px 0 28px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a:hover { color: var(--orange); }
.foot .brand { color: #fff; margin-bottom: 12px; }
.foot .about { max-width: 34ch; color: #8f8f9d; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; }
.socials a:hover { background: rgba(255,255,255,.07); }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #7d7d8b; font-size: 13px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
/* Ekran üstü (hero + ürün ekranı) içerik JS'e HİÇ bağlı değildir: giriş animasyonu saf CSS.
   Böylece sayfa arka planda açılsa, JS gecikse ya da hata verse bile içerik asla boş kalmaz. */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes shotUp { from { opacity: 0; transform: translateY(46px) scale(.985); filter: blur(12px); } to { opacity: 1; transform: none; filter: blur(0); } }
.hero-anim { animation: heroUp .8s cubic-bezier(.2,.7,.3,1) both; }
.hero-anim.h2 { animation-delay: .10s; } .hero-anim.h3 { animation-delay: .20s; }
.hero-anim.h4 { animation-delay: .30s; } .hero-anim.h5 { animation-delay: .38s; }
.hero-anim.h6 { animation-delay: .46s; }

/* Animasyon bir GELİŞTİRMEDİR: içerik varsayılan olarak GÖRÜNÜRDÜR.
   Gizleme yalnızca JS çalıştığında (html.js) devreye girer — böylece betik yüklenmezse
   ya da bir hata olursa sayfa boş kalmaz. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
html.js .blurin { filter: blur(14px); opacity: 0; transform: translateY(40px) scale(.98); transition: filter .9s cubic-bezier(.2,.7,.3,1), opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1); }
html.js .blurin.in { filter: blur(0); opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .fcard.w3, .fcard.w2, .fcard.w4 { grid-column: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .ext-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .float-card { display: none; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero h1 { max-width: 100%; }
  .hero-form { flex-direction: column; border-radius: 20px; padding: 12px; gap: 10px; align-items: stretch; }
  .hero-form input { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; }
  .hero-form .btn { width: 100%; }
  .btn { width: 100%; }
  .hero-alt .btn { width: 100%; }
  .shot-frame { border-radius: 18px; padding: 6px; }

  .bento, .steps, .blog-grid, .price-grid { grid-template-columns: 1fr; }
  /* Karşılaştırma tablosu: dar ekranda sütun metinleri gizlenir, yalnızca ✓/✕ kalır. */
  .cmp-row { grid-template-columns: 1fr 54px 54px; }
  .cmp-row > div { padding: 13px 12px; font-size: 13.5px; }
  .cmp-row .lbl { display: none; }
  .cmp-head > div { font-size: 10.5px; padding: 12px; }
  .cmp-head .new span:not(.brand-mark) { display: none; }
  .tst-card { flex-basis: 290px; padding: 18px; }
  .tst::before, .tst::after { width: 60px; }
  .price-grid { max-width: 420px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr; }
  .features, .how, .ats, .match, .ext, .tpl, .cmp, .tst, .blog, .price, .faq { padding: 62px 0; }
  .final { padding: 72px 0; }
  .aurora span { filter: blur(50px); }
  .tpl-stage { height: 520px; }
  .tpl-card { width: 286px; margin-left: -143px; }
  .tpl-prev { height: 398px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .blurin { opacity: 1 !important; transform: none !important; filter: none !important; }
  .shot-frame { transform: none !important; }
}

/* ==========================================================================
   HERO İÇİ ÜRÜN EKRANI
   Çerçeve hero'nun içinde durur, alt kenarı bölümle birlikte kırpılır —
   "ekranın devamı aşağıda" hissi verir.
   ========================================================================== */
/* Ürün ekranı kırpılmaz; hero en az ekran yüksekliği kadar olur ve
   çerçevenin tamamı görünür. */
.hero { min-height: 100svh; display: flex; flex-direction: column; }
  .hero .shot-scroll { max-height: none; overflow: hidden; }
.hero .shot-frame { margin-bottom: -42px; }

/* ==========================================================================
   KAVİSLİ BÖLÜM GEÇİŞLERİ
   Sert renk sınırı yerine üstteki bölüm alttakine doğru yay çizerek iner.
   ========================================================================== */
.sec-curve { position: relative; }
.sec-curve::before {
  content: none;
}
.sec-curve > * { position: relative; z-index: 1; }

/* ==========================================================================
   YÖNLÜ AÇILIŞ ANİMASYONLARI (soldan / sağdan / alttan)
   ========================================================================== */
html.js .rev-left  { opacity: 0; transform: translate3d(-48px, 0, 0); }
html.js .rev-right { opacity: 0; transform: translate3d(48px, 0, 0); }
html.js .rev-up    { opacity: 0; transform: translate3d(0, 48px, 0); }
html.js .rev-left, html.js .rev-right, html.js .rev-up {
  transition: opacity .75s cubic-bezier(.2, .7, .3, 1), transform .75s cubic-bezier(.2, .7, .3, 1);
}
html.js .rev-left.in, html.js .rev-right.in, html.js .rev-up.in { opacity: 1; transform: none; }

/* ==========================================================================
   FOOTER — açık zemin (referans tasarım)
   ========================================================================== */
.foot { background: var(--bg-soft); color: var(--ink-body); padding: 12px 0 30px; font-size: 14.5px; }
.foot h4 { color: var(--ink); font-size: 15px; letter-spacing: 0; text-transform: none; margin-bottom: 16px; font-weight: 700; }
.foot .brand { color: var(--ink); }
.foot .about { color: var(--ink-body); max-width: 34ch; }
.foot a { color: var(--ink-body); }
.foot a:hover { color: var(--orange-dark); }
.foot .socials a { border-color: var(--line); background: #fff; color: var(--ink-body); }
.foot .socials a:hover { background: var(--orange-soft); color: var(--orange-dark); border-color: rgba(255,107,26,.3); }
.foot-bottom { border-top: 1px solid var(--line); color: #8a8f98; }

/* ==========================================================================
   MOBİL DÜZELTMELERİ
   ========================================================================== */
@media (max-width: 900px) {
  /* Güven bandı 4 sütunda taşıyordu: 2x2 ızgaraya geçer { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 720px) {
  /* Hero rozeti tek satırda kalsın */
  .hero .pill { font-size: 12px; }
  .hero .pill b { font-size: 11px; padding: 4px 9px; }
  .hero .pill .pill-txt { padding-right: 10px; white-space: nowrap; }

  /* Hero ile ürün ekranı birbirine yapışmasın */
  .hero .shot-frame { margin-top: 40px; margin-bottom: -16px; }
  .hero { padding-bottom: 0; }

  /* Bölüm başlıkları: rozet, başlık ve açıklama arası nefes alsın */
  .section-head { margin-bottom: 34px; }
  .section-head .pill { margin-bottom: 16px; }
  .section-head h2 { margin-top: 0 !important; }
  .section-head .lead { margin-top: 12px; }
  .tpl { padding-top: 104px; }
  .how { padding-top: 96px; }

  /* Madde listeleri: ikon solda sabit, metin tek blok hâlinde akar */
  .split > div > ul li { font-size: 14.5px; line-height: 1.6; gap: 10px; }
  .split > div > ul li .ck { margin-top: 2px; }

  /* Karşılaştırma tablosu: başlık satırı okunur kalsın, sütunlar dar ama net */
  .cmp-table { border-radius: 18px; }
  .cmp-row { grid-template-columns: 1fr 60px 60px; }
  .cmp-head > div { font-size: 10px; letter-spacing: .02em; padding: 12px 8px; text-align: center; }
  .cmp-head .feat { text-align: left; }
  .cmp-head .old, .cmp-head .new { justify-content: center; }
  .cmp-head .new .brand-mark { width: 20px; height: 20px; }
  .cmp-row > div { padding: 13px 10px; font-size: 13.5px; }
  .cmp-row .old, .cmp-row .new { justify-content: center; }
}

/* Ekran boyutuna göre kısa/uzun etiket */
.only-sm { display: none; }
@media (max-width: 720px) {
  .only-lg { display: none; }
  .only-sm { display: inline; }
  /* Kısa etiket yazıldığı için PratikCV sütunu artık gizlenmiyor */
  .cmp-head .new span:not(.brand-mark) { display: none; }
  .cmp-head .old { font-size: 10.5px; }
}

/* Footer'daki dış bağlantı */
.foot-bottom a { color: var(--orange-dark); font-weight: 600; }
.foot-bottom a:hover { text-decoration: underline; }
/* CV'den kişisel portfolyo sitesine */
.portfolio-showcase{position:relative;padding:120px 0 110px;overflow:hidden;background:linear-gradient(180deg,#fff 0%,#fff7f0 55%,#fff 100%)}.portfolio-showcase:before{position:absolute;left:-12%;top:18%;width:460px;height:460px;border-radius:50%;content:"";background:rgba(255,107,26,.13);filter:blur(90px)}.portfolio-showcase-head{position:relative;z-index:1;display:grid;grid-template-columns:1.15fr .85fr;align-items:end;gap:80px}.portfolio-showcase-head h2{max-width:760px;margin:18px 0 0;font-size:clamp(42px,5vw,72px);line-height:1.02;letter-spacing:-.055em}.portfolio-showcase-copy p{margin:0;color:#65656d;font-size:17px;line-height:1.75}.portfolio-showcase-copy a{margin-top:22px;display:inline-flex;align-items:center;gap:9px;color:#e9500a;font-size:14px;font-weight:750;text-decoration:none}.portfolio-browser{position:relative;z-index:1;margin-top:58px;padding:10px;border:1px solid rgba(255,255,255,.9);border-radius:30px;background:rgba(255,255,255,.68);box-shadow:0 42px 110px rgba(91,53,27,.18),0 10px 35px rgba(255,107,26,.1);backdrop-filter:blur(18px)}.portfolio-browser-bar{height:58px;padding:0 18px;display:flex;align-items:center;gap:18px;border-bottom:1px solid #ececf0;border-radius:21px 21px 0 0;background:#fff}.browser-dots{display:flex;gap:6px}.browser-dots i{width:9px;height:9px;border-radius:50%;background:#ff6b1a}.browser-dots i:nth-child(2){background:#f2b84b}.browser-dots i:nth-child(3){background:#40b77a}.portfolio-address{height:34px;display:flex;align-items:center;justify-content:center;flex:1;border-radius:9px;color:#777;background:#f5f6f8;font-size:11px}.portfolio-address i{margin-right:7px;color:#53a879;font-size:9px}.portfolio-live{display:flex;align-items:center;gap:6px;color:#238259;font-size:10px;font-weight:750}.portfolio-live i{width:7px;height:7px;border-radius:50%;background:#22a76f;box-shadow:0 0 0 4px rgba(34,167,111,.12)}.portfolio-preview-stage{position:relative;height:680px;overflow:hidden;border-radius:0 0 21px 21px;background:#fff}.portfolio-preview-stage iframe{width:100%;height:100%;display:block;border:0;pointer-events:none}.portfolio-customizer{position:absolute;right:25px;top:28px;width:260px;padding:17px;border:1px solid rgba(255,255,255,.9);border-radius:18px;background:rgba(255,255,255,.92);box-shadow:0 22px 55px rgba(23,23,28,.16);backdrop-filter:blur(16px)}.customizer-title{display:flex;align-items:center;gap:10px;padding-bottom:13px;border-bottom:1px solid #ededf0}.customizer-title>span{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;color:#fff;background:linear-gradient(135deg,#ff7a1a,#ff4d00)}.customizer-title b,.customizer-title small{display:block}.customizer-title b{font-size:13px}.customizer-title small{margin-top:2px;color:#8a8a92;font-size:9px}.customizer-row{padding:13px 0;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #f0f0f2;color:#75757d;font-size:10px}.customizer-row>b{color:#2a2a2f;font-size:9.5px}.color-dots{display:flex;gap:5px}.color-dots i{width:15px;height:15px;border:2px solid #fff;border-radius:50%;background:#ff6b1a;box-shadow:0 0 0 1px #e3e3e7}.color-dots i:nth-child(2){background:#171719}.color-dots i:nth-child(3){background:#536ee8}.color-dots i:nth-child(4){background:#22a779}.customizer-toggle{padding-top:13px;display:flex;align-items:center;justify-content:space-between;color:#25252a;font-size:10px;font-weight:700}.customizer-toggle i{position:relative;width:32px;height:18px;border-radius:99px;background:#ff6b1a}.customizer-toggle i:after{position:absolute;right:3px;top:3px;width:12px;height:12px;border-radius:50%;content:"";background:#fff}.portfolio-benefits{position:relative;z-index:1;margin-top:24px;display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.portfolio-benefits span{min-height:54px;padding:12px 14px;display:flex;align-items:center;justify-content:center;gap:9px;border:1px solid #eeeef1;border-radius:14px;color:#46464d;background:#fff;font-size:11.5px;font-weight:650}.portfolio-benefits i{color:#ff6b1a}@media(max-width:900px){.portfolio-showcase{padding:90px 0}.portfolio-showcase-head{grid-template-columns:1fr;gap:25px}.portfolio-preview-stage{height:560px}.portfolio-customizer{width:225px}.portfolio-benefits{grid-template-columns:1fr 1fr}}@media(max-width:600px){.portfolio-showcase{padding:72px 0}.portfolio-showcase-head h2{font-size:39px}.portfolio-showcase-copy p{font-size:15px}.portfolio-browser{margin-top:38px;padding:6px;border-radius:22px}.portfolio-browser-bar{height:48px;padding:0 10px}.portfolio-address{justify-content:flex-start;padding:0 9px;overflow:hidden;white-space:nowrap}.portfolio-live{display:none}.portfolio-preview-stage{height:480px;border-radius:0 0 16px 16px}.portfolio-customizer{right:10px;top:auto;bottom:10px;width:calc(100% - 20px);padding:12px}.customizer-row{padding:9px 0}.portfolio-benefits{grid-template-columns:1fr}.portfolio-benefits span{justify-content:flex-start}}

/* Portfolio bölüm geçişi ve mobil ürün görünümü */
.portfolio-showcase{background:linear-gradient(180deg,#fff 0%,#fff8f2 58%,var(--orange-soft) 100%)}
@media(max-width:600px){.portfolio-showcase{padding:68px 0 58px}.portfolio-showcase-head{gap:20px}.portfolio-showcase-head h2{max-width:11ch;font-size:38px;line-height:1.04}.portfolio-showcase-copy p{font-size:16px;line-height:1.68}.portfolio-showcase-copy a{font-size:14px}.portfolio-browser{margin-top:32px;padding:5px;border-radius:18px}.portfolio-browser-bar{height:42px;border-radius:14px 14px 0 0}.browser-dots{display:none}.portfolio-address{font-size:9px}.portfolio-preview-stage{height:390px}.portfolio-preview-stage iframe{width:1000px;height:1000px;transform:scale(.36);transform-origin:top left}.portfolio-customizer{right:8px;bottom:8px;width:calc(100% - 16px);padding:11px;border-radius:14px}.customizer-title{padding-bottom:9px}.customizer-title>span{width:30px;height:30px}.customizer-row{padding:8px 0}.portfolio-benefits{gap:8px;margin-top:14px}.portfolio-benefits span{min-height:50px;font-size:12px}}

/* Karşılaştırma alanı responsive detay görünümü */
@media(max-width:900px){.cmp{padding:82px 0}.cmp-highlights{grid-template-columns:1fr}.cmp-highlights article{min-height:auto}.cmp-bottom{align-items:flex-start;flex-direction:column}.cmp-bottom>a{width:100%;justify-content:center}}
@media(max-width:600px){.cmp{padding:68px 0}.cmp .section-head{margin-bottom:30px;text-align:left}.cmp .section-head h2{font-size:36px}.cmp .section-head .lead{font-size:16px}.cmp-highlights{margin-bottom:22px}.cmp-highlights article{padding:17px}.cmp-table{display:grid;gap:10px;border:0;border-radius:0;overflow:visible;background:transparent;box-shadow:none}.cmp-row{padding:14px;display:grid;grid-template-columns:1fr 1fr;gap:9px;border:1px solid #ebe6e2!important;border-radius:16px;background:#fff;box-shadow:0 8px 25px rgba(55,35,22,.05)}.cmp-row.cmp-head{display:none}.cmp-row>div{min-height:auto;padding:0!important;border:0!important;background:transparent!important}.cmp-row .feat{grid-column:1/-1;padding-bottom:10px!important;border-bottom:1px solid #eee!important;font-size:15px}.cmp-row .old,.cmp-row .new{min-height:42px;padding:9px!important;justify-content:flex-start!important;border-radius:10px!important}.cmp-row .old{color:#85858d;background:#f4f4f6!important}.cmp-row .new{color:#28231f;background:#fff1e8!important}.cmp-row .lbl{display:inline!important;font-size:12px;line-height:1.3}.cmp-row .x,.cmp-row .v{width:19px;height:19px}.cmp-bottom{margin-top:14px;padding:18px}.cmp-bottom>div{align-items:flex-start}.cmp-bottom p{font-size:13px;line-height:1.6}}
