/* ==========================================================================
   KolayYaz — Premium Landing Site
   Tasarım sistemi & global stiller
   ========================================================================== */

:root {
  /* Brand */
  --navy: #0B1736;
  --navy-soft: #18264D;
  --navy-700: #122044;
  --navy-light: #EEF1FA;
  --gold: #F4B400;
  --gold-soft: #FFF4CC;
  --gold-border: rgba(244, 180, 0, 0.25);

  /* Surfaces */
  --bg: #F8F9FB;
  --surface: #FFFFFF;
  --surface-2: #FCFCFE;

  /* Text */
  --text: #101828;
  --muted: #667085;
  --muted-2: #98A2B3;

  /* Lines */
  --border: #E4E7EC;
  --border-light: #F2F4F7;

  /* States */
  --danger: #B42318;
  --danger-soft: #FEF3F2;
  --success: #027A48;
  --success-soft: #ECFDF3;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.07);
  --shadow-lg: 0 18px 40px rgba(11, 23, 54, 0.12);
  --shadow-xl: 0 30px 70px rgba(11, 23, 54, 0.18);
  --shadow-gold: 0 14px 30px rgba(244, 180, 0, 0.28);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Layout */
  --container: 1180px;
  --nav-h: 74px;

  --grad-navy: linear-gradient(160deg, #0B1736 0%, #16264F 60%, #1C3266 100%);
  --grad-gold: linear-gradient(135deg, #F4B400 0%, #FFCB3D 100%);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--navy); }

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

/* --------------------------- Utilities ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.nowrap { white-space: nowrap; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 18px 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

.lead { font-size: 19px; color: var(--muted); }

/* --------------------------- Buttons ------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-full);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 19px; height: 19px; }
.btn-gold { background: var(--grad-gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(244,180,0,0.4); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-soft); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--surface); color: var(--navy); border: 1px solid var(--border); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--navy); box-shadow: var(--shadow-md); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* --------------------------- Navbar ------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(248, 249, 251, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(248,249,251,0.92); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -0.03em; }
.brand .mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand b { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--navy-soft);
  padding: 9px 14px; border-radius: var(--r-full); transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--navy-light); color: var(--navy); }
.nav-links a.active { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--bg); padding: 24px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-size: 18px; font-weight: 600; color: var(--navy); padding: 16px 12px; border-bottom: 1px solid var(--border-light); }
.mobile-menu .btn { margin-top: 16px; }

/* --------------------------- Hero --------------------------------------- */
.hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -260px; right: -200px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(244,180,0,0.16), transparent 62%); z-index: 0;
}
.hero::after {
  content: ""; position: absolute; bottom: -300px; left: -240px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(11,23,54,0.08), transparent 62%); z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 60px; align-items: center; }
.hero-text { position: relative; z-index: 2; min-width: 0; }
.hero h1 { font-size: clamp(36px, 5.6vw, 60px); line-height: 1.05; margin: 22px 0 20px; }
.hero h1 .hl { position: relative; color: var(--navy); white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 14px; background: var(--gold-soft); z-index: -1; border-radius: 4px; }
.hero p.sub { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 600; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--success); }

.rating-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.rating-stars svg { width: 16px; height: 16px; }

/* --------------------------- Phone mockup ------------------------------- */
.phone {
  position: relative; width: 300px; margin: 0 auto;
  background: #0A1430; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255,255,255,0.04) inset;
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #0A1430; border-radius: var(--r-full); z-index: 3;
}
.phone-screen {
  position: relative; background: var(--bg); border-radius: 34px; overflow: hidden;
  height: 600px; display: flex; flex-direction: column;
}
.hero .phone { transform: rotate(2deg); }

/* --------------------------- Hero premium device ------------------------ */
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 380px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(244, 180, 0, 0.22) 0%, rgba(11, 23, 54, 0.06) 42%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.device-premium {
  position: relative;
  z-index: 1;
  width: 312px;
  transform: rotate(2deg);
  filter: drop-shadow(0 40px 64px rgba(11, 23, 54, 0.28)) drop-shadow(0 12px 24px rgba(11, 23, 54, 0.12));
}
.device-premium-bezel {
  position: relative;
  padding: 11px;
  border-radius: 52px;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.14) 0%, transparent 38%),
    linear-gradient(165deg, #3d4659 0%, #1a2234 18%, #0c1019 42%, #161c2a 68%, #2a3347 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.06);
}
.device-premium-side {
  position: absolute;
  background: linear-gradient(180deg, #4a5368, #222938 45%, #151b28);
  border-radius: 3px;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.device-premium-side-l {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 34px;
  border-radius: 3px 0 0 3px;
  box-shadow: -1px 0 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.device-premium-side-l::after {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  width: 3px;
  height: 56px;
  background: inherit;
  border-radius: 3px 0 0 3px;
  box-shadow: inherit;
}
.device-premium-side-r {
  right: -2px;
  top: 128px;
  width: 3px;
  height: 72px;
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.device-premium-screen {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  background: #0B1736;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.device-premium-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 27px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Hero in-app UI */
.hero-ui {
  display: flex;
  flex-direction: column;
  min-height: 580px;
  background: #fff;
}
.hero-ui-top {
  background: linear-gradient(180deg, #0B1736 0%, #122044 100%);
  padding-bottom: 2px;
}
.hero-ui-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.hero-ui-viewport {
  flex: 1;
  overflow: hidden;
  background: #fff;
  min-height: 432px;
}
.hero-ui-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.45, 0, 0.2, 1);
  will-change: transform;
}
.hero-ui-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #122044 0%, #F4F6FA 22%, #FFFFFF 22%);
}
.hero-ui-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px 18px;
  background: transparent;
}
.hero-ui-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.hero-ui-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.hero-ui-brand strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-ui-brand span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.62);
  margin-top: 1px;
}
.hero-ui-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 800;
  color: #86EFAC;
  background: rgba(2, 122, 72, 0.28);
  border: 1px solid rgba(134, 239, 172, 0.22);
}
.hero-ui-badge svg { width: 13px; height: 13px; }

.hero-ui-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-ui-status-icons svg { width: 15px; height: 15px; opacity: 0.92; }

.hero-ui-incoming {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--navy-soft);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 14px;
  margin-bottom: 2px;
  box-shadow: var(--shadow-sm);
}

.hero-ui-body {
  flex: 1;
  padding: 4px 18px 16px;
  display: flex;
  flex-direction: column;
}
.hero-ui-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px 2px;
}
.hero-ui-tones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-ui-tone {
  padding: 9px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hero-ui-tone.is-on {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(244, 180, 0, 0.22);
}
.hero-ui-tone.is-tr {
  font-size: 11px;
}

.hero-ui-result {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: var(--shadow-md);
}
.hero-ui-result-compact {
  flex: 0;
  padding: 16px 18px;
}
.hero-ui-result p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.62;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero-ui-slide.is-active .hero-ui-result {
  animation: heroUiIn 0.55s ease-out both;
}

.hero-ui-edits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 12px;
}
.hero-ui-edits span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 6px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-soft);
  background: var(--surface);
  border: 1px solid var(--border);
}
.hero-ui-edits svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

.hero-ui-cta { margin-top: auto; }
.hero-ui-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(180deg, #FFD033 0%, #F4B400 100%);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hero-ui-copy svg { width: 17px; height: 17px; }

.hero-ui-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 2px;
  background: #fff;
}
.hero-ui-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: width 0.35s ease, background 0.35s ease;
  cursor: pointer;
}
.hero-ui-dot.is-on {
  width: 18px;
  border-radius: 99px;
  background: var(--gold);
}

.hero-ui-home {
  width: 108px;
  height: 4px;
  border-radius: 99px;
  background: rgba(16, 24, 40, 0.18);
  margin: 10px auto 8px;
}

@keyframes heroUiIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ui-track { transition: none; }
  .hero-ui-slide.is-active .hero-ui-result { animation: none; }
}

/* Legacy phone mockup (unused in hero) */
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--navy);
  z-index: 4;
}
.float-card .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 auto; }
.float-card .ic svg { width: 17px; height: 17px; }
.float-a { top: 24px; left: -32px; animation: floaty 5s ease-in-out infinite; }
.float-b { bottom: 140px; right: -38px; animation: floaty 6s ease-in-out infinite .6s; }
.float-c { bottom: 28px; left: -22px; animation: floaty 5.5s ease-in-out infinite 1.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* App screen building blocks (reused in mockups) */
.app-top { padding: 40px 18px 14px; background: var(--grad-navy); color: #fff; }
.app-top .greet { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 600; }
.app-top .hi { font-size: 18px; font-weight: 800; color: #fff; margin-top: 2px; }
.app-usage { margin-top: 14px; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 10px 12px; }
.app-usage .row { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 600; margin-bottom: 6px; }
.app-usage .bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.18); overflow: hidden; }
.app-usage .bar i { display: block; height: 100%; width: 60%; background: var(--gold); border-radius: 4px; }
.app-body { padding: 14px; flex: 1; overflow: hidden; }
.app-sec-title { font-size: 12px; font-weight: 800; color: var(--navy); margin: 4px 2px 10px; }
.app-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.app-cat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 11px; box-shadow: var(--shadow-sm); }
.app-cat .ic { width: 32px; height: 32px; border-radius: 9px; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; margin-bottom: 8px; }
.app-cat .ic svg { width: 17px; height: 17px; }
.app-cat .t { font-size: 12px; font-weight: 800; color: var(--navy); }
.app-cat .s { font-size: 9.5px; color: var(--muted); margin-top: 2px; line-height: 1.3; }

/* --------------------------- Real device frame (screenshots) ------------ */
.device {
  position: relative; width: 290px; margin: 0 auto;
  background: #0A1430; border-radius: 42px; padding: 10px;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255,255,255,0.05) inset;
}
.device img { display: block; width: 100%; border-radius: 32px; }
.device.tilt-l { transform: rotate(-3deg); }
.device.tilt-r { transform: rotate(3deg); }
.hero .device { transform: rotate(2deg); }

/* Screenshot showcase gallery */
.showcase {
  display: flex; gap: 26px; overflow-x: auto; padding: 14px 4px 30px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.showcase::-webkit-scrollbar { height: 8px; }
.showcase::-webkit-scrollbar-track { background: var(--border-light); border-radius: 99px; }
.showcase::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.showcase .shot { flex: 0 0 auto; scroll-snap-align: center; width: 240px; }
.showcase .device { width: 240px; }
.showcase .shot .cap { text-align: center; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--navy); }
.showcase .shot .cap span { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 2px; }

/* --------------------------- Logos strip -------------------------------- */
.usecases-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px 38px; flex-wrap: wrap; padding: 26px 0; }
.strip-inner .lbl { font-size: 13px; font-weight: 700; color: var(--muted-2); letter-spacing: .04em; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--navy-soft);
  padding: 8px 15px; border-radius: var(--r-full); background: var(--bg); border: 1px solid var(--border);
}
.chip svg { width: 16px; height: 16px; color: var(--gold); }

/* --------------------------- Steps -------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num { font-size: 14px; font-weight: 800; color: var(--gold); }
.step .step-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; margin: 14px 0 18px; }
.step .step-ic svg { width: 27px; height: 27px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.step .connector { display: none; }

/* --------------------------- Feature grid ------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-border); }
.feature .f-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; background: var(--navy-light); color: var(--navy); }
.feature .f-ic svg { width: 26px; height: 26px; }
.feature.is-premium .f-ic { background: var(--gold-soft); color: #9a7100; }
.feature h3 { font-size: 19px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.feature p { color: var(--muted); font-size: 15px; }
.pill-premium { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #9a7100; background: var(--gold-soft); border: 1px solid var(--gold-border); padding: 3px 8px; border-radius: var(--r-full); }

/* --------------------------- Split feature ------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-text h2 { font-size: clamp(26px, 3.5vw, 36px); margin: 16px 0 16px; }
.split-text p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.split-list { display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); font-weight: 500; }
.split-list .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin-top: 1px; }
.split-list .tick svg { width: 14px; height: 14px; }
.split-media { display: flex; justify-content: center; }

/* Chat mockup for screenshot-to-reply */
.chat-demo { width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.chat-head { background: var(--grad-navy); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-weight: 800; }
.chat-head .nm { font-weight: 800; font-size: 15px; }
.chat-head .st { font-size: 11px; color: rgba(255,255,255,0.7); }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); }
.bubble { max-width: 80%; padding: 10px 13px; border-radius: 16px; font-size: 13.5px; line-height: 1.45; }
.bubble.them { align-self: flex-start; background: var(--surface); border: 1px solid var(--border); border-bottom-left-radius: 5px; color: var(--text); }
.bubble.me { align-self: flex-end; background: var(--navy); color: #fff; border-bottom-right-radius: 5px; }
.chat-suggest { background: var(--surface); border-top: 1px solid var(--border); padding: 14px 16px; }
.chat-suggest .tag { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.chat-suggest .tag svg { width: 13px; height: 13px; }
.chat-suggest .text { font-size: 13.5px; color: var(--text); background: var(--gold-soft); border: 1px solid var(--gold-border); padding: 11px 13px; border-radius: 12px; }

/* --------------------------- Tones -------------------------------------- */
.tones-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.tone-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tone {
  font-size: 15px; font-weight: 700; padding: 11px 18px; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--border); color: var(--navy-soft); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tone:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tone.is-tr { border-color: var(--gold-border); background: var(--gold-soft); color: #8a6500; }
.tone .lock { font-size: 11px; opacity: .7; }

/* --------------------------- Comparison table --------------------------- */
.compare { overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-md); background: var(--surface); }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border-light); }
.compare thead th { background: var(--surface-2); font-weight: 800; color: var(--navy); font-size: 14px; }
.compare thead th:nth-child(2), .compare thead th:nth-child(3) { text-align: center; width: 150px; }
.compare td:nth-child(2), .compare td:nth-child(3) { text-align: center; }
.compare th.col-prem { background: var(--navy); color: #fff; position: relative; }
.compare td.col-prem { background: rgba(244,180,0,0.04); font-weight: 700; color: var(--navy); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:hover td { background: var(--navy-light); }
.compare tbody tr:hover td.col-prem { background: rgba(244,180,0,0.1); }
.cell-feature { font-weight: 600; color: var(--text); }
.yes { color: var(--success); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.yes svg { width: 17px; height: 17px; }
.no { color: var(--muted-2); }
.compare .small { font-size: 13px; color: var(--muted); font-weight: 600; }

/* --------------------------- Pricing ------------------------------------ */
.price-toggle { display: inline-flex; align-items: center; gap: 12px; margin: 0 auto 44px; background: var(--surface); border: 1px solid var(--border); padding: 6px; border-radius: var(--r-full); box-shadow: var(--shadow-sm); }
.price-toggle button { font-size: 15px; font-weight: 700; color: var(--muted); padding: 10px 22px; border-radius: var(--r-full); transition: .25s; position: relative; }
.price-toggle button.active { background: var(--navy); color: #fff; }
.price-toggle .save { font-size: 11px; font-weight: 800; color: var(--success); background: var(--success-soft); padding: 3px 8px; border-radius: var(--r-full); margin-left: 6px; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.featured { background: var(--grad-navy); color: #fff; border: none; box-shadow: var(--shadow-xl); transform: scale(1.03); }
.plan.featured:hover { transform: scale(1.03) translateY(-6px); }
.plan.featured h3, .plan.featured .price .amt { color: #fff; }
.plan .badge-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: var(--navy); font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: var(--r-full); box-shadow: var(--shadow-gold); white-space: nowrap; }
.plan h3 { font-size: 21px; }
.plan .plan-desc { font-size: 14px; color: var(--muted); margin: 6px 0 22px; }
.plan.featured .plan-desc { color: rgba(255,255,255,0.7); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price .amt { font-size: 44px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.plan .price .per { font-size: 15px; color: var(--muted); font-weight: 600; }
.plan.featured .price .per { color: rgba(255,255,255,0.7); }
.plan .price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; min-height: 20px; }
.plan.featured .price-note { color: var(--gold); font-weight: 700; }
.plan ul { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
.plan ul li .tk { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin-top: 2px; }
.plan.featured ul li .tk { background: rgba(244,180,0,0.2); color: var(--gold); }
.plan ul li .tk svg { width: 12px; height: 12px; }
.plan ul li.off { color: var(--muted-2); }
.plan ul li.off .tk { background: var(--border-light); color: var(--muted-2); }

/* --------------------------- Referral ----------------------------------- */
.referral-card { background: var(--grad-navy); color: #fff; border-radius: var(--r-2xl); padding: 56px; position: relative; overflow: hidden; box-shadow: var(--shadow-xl); }
.referral-card::before { content: ""; position: absolute; top: -120px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(244,180,0,0.22), transparent 65%); }
.referral-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.referral-grid h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.referral-grid p { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 26px; }
.referral-rewards { display: flex; gap: 16px; }
.reward { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-lg); padding: 24px; text-align: center; }
.reward .big { font-size: 38px; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; }
.reward .lbl { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; font-weight: 600; }

/* --------------------------- Trust / KVKK ------------------------------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.trust .t-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.trust .t-ic svg { width: 24px; height: 24px; }
.trust h3 { font-size: 17px; margin-bottom: 8px; }
.trust p { color: var(--muted); font-size: 14px; }

/* --------------------------- Stats -------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat .num { font-size: clamp(32px, 4vw, 46px); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.stat .num b { color: var(--gold); }
.stat .lbl { color: var(--muted); font-size: 15px; font-weight: 600; margin-top: 4px; }

/* --------------------------- Testimonials ------------------------------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.quote .rating-stars svg { width: 17px; height: 17px; }
.quote p { font-size: 15px; color: var(--text); line-height: 1.6; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; font-weight: 800; }
.quote .who .nm { font-weight: 800; font-size: 14px; color: var(--navy); }
.quote .who .role { font-size: 12px; color: var(--muted); }

/* --------------------------- FAQ ---------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold-border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-size: 17px; font-weight: 700; color: var(--navy); text-align: left; }
.faq-q .ico { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-q .ico svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* --------------------------- CTA band ----------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-card { background: var(--grad-navy); border-radius: var(--r-2xl); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-xl); }
.cta-card::before { content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 560px; height: 560px; background: radial-gradient(circle, rgba(244,180,0,0.18), transparent 62%); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 19px; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --------------------------- Footer ------------------------------------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand b { color: var(--gold); }
.footer .f-about { font-size: 14.5px; line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,0.68); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 52px; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* --------------------------- Page hero (sub pages) ---------------------- */
.page-hero { background: var(--grad-navy); color: #fff; padding: calc(var(--nav-h) + 64px) 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -180px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(244,180,0,0.16), transparent 62%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin: 20px 0 18px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 19px; max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; }

/* --------------------------- Legal / prose ------------------------------ */
.prose-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.prose-toc { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.prose-toc h4 { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.prose-toc a { display: block; font-size: 14px; color: var(--navy-soft); padding: 7px 0; border-bottom: 1px solid var(--border-light); font-weight: 600; }
.prose-toc a:hover { color: var(--gold); }
.prose-toc a:last-child { border-bottom: none; }

.prose { max-width: 760px; }
.prose .updated { font-size: 14px; color: var(--muted); margin-bottom: 32px; padding: 12px 16px; background: var(--navy-light); border-radius: var(--r-md); display: inline-block; }
.prose h2 { font-size: 26px; margin: 44px 0 16px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; color: var(--navy-soft); }
.prose p { color: var(--text); font-size: 16px; margin-bottom: 16px; line-height: 1.75; }
.prose ul.bullets { margin: 0 0 18px; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.prose ul.bullets li { position: relative; padding-left: 28px; color: var(--text); font-size: 16px; line-height: 1.7; }
.prose ul.bullets li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose a.inline { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--gold-border); }
.prose a.inline:hover { border-color: var(--gold); }
.callout { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--r-md); padding: 18px 20px; margin: 22px 0; color: var(--text); font-size: 15px; box-shadow: var(--shadow-sm); }
.callout strong { color: var(--navy); }

/* --------------------------- Data deletion page ------------------------- */
.deletion-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.18), transparent 34%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 28px;
  margin-bottom: 34px;
}
.deletion-hero-card h2 {
  margin: 14px 0 10px;
}
.deletion-hero-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.process-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 3px;
}
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.deletion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 26px;
}
.deletion-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.deletion-card h3 {
  margin: 0 0 8px;
}
.deletion-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* --------------------------- Contact ------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .c-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; }
.contact-card .c-ic svg { width: 23px; height: 23px; }
.contact-card h3 { font-size: 16px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--muted); }
.contact-card a:hover { color: var(--gold); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--surface-2); color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); background: #fff; }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; background: var(--success-soft); border: 1px solid #ABEFC6; color: var(--success); padding: 16px 18px; border-radius: var(--r-md); font-size: 15px; font-weight: 600; margin-bottom: 20px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }

/* --------------------------- Auth / Web panel login --------------------- */
.auth { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: calc(var(--nav-h) + 48px) 0 64px; position: relative; overflow: hidden; }
.auth::before { content: ""; position: absolute; top: -240px; right: -160px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(244,180,0,0.14), transparent 62%); z-index: 0; }
.auth::after { content: ""; position: absolute; bottom: -260px; left: -180px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(11,23,54,0.07), transparent 62%); z-index: 0; }
.auth-card {
  position: relative; z-index: 1; width: 100%; max-width: 960px;
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-xl);
}
.auth-aside { background: var(--grad-navy); color: #fff; padding: 48px 40px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.auth-aside::before { content: ""; position: absolute; top: -120px; right: -90px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(244,180,0,0.2), transparent 65%); }
.auth-aside .brand { color: #fff; margin-bottom: 28px; }
.auth-aside .brand b { color: var(--gold); }
.auth-aside h2 { color: #fff; font-size: 28px; line-height: 1.2; margin-bottom: 14px; position: relative; }
.auth-aside p { color: rgba(255,255,255,0.78); font-size: 15px; margin-bottom: 26px; position: relative; }
.auth-benefits { display: flex; flex-direction: column; gap: 14px; position: relative; margin-top: auto; }
.auth-benefits li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,0.92); font-weight: 500; }
.auth-benefits .tk { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(244,180,0,0.18); color: var(--gold); display: grid; place-items: center; margin-top: 1px; }
.auth-benefits .tk svg { width: 13px; height: 13px; }

.auth-main { padding: 44px 44px 40px; }
.auth-main h1 { font-size: 25px; margin-bottom: 6px; }
.auth-main .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.auth-tabs { display: flex; gap: 6px; background: var(--bg); border: 1px solid var(--border); padding: 5px; border-radius: var(--r-full); margin-bottom: 26px; }
.auth-tabs button { flex: 1; padding: 11px; border-radius: var(--r-full); font-weight: 700; font-size: 15px; color: var(--muted); transition: .25s; }
.auth-tabs button.active { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }

.auth-msg { display: none; padding: 12px 15px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.auth-msg.show { display: block; }
.auth-msg.error { background: var(--danger-soft); color: var(--danger); border: 1px solid #FECDCA; }
.auth-msg.success { background: var(--success-soft); color: var(--success); border: 1px solid #ABEFC6; }
.auth-msg.info { background: var(--navy-light); color: var(--navy); border: 1px solid var(--border); }

.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; font-size: 13.5px; }
.auth-row label { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; cursor: pointer; margin: 0; }
.auth-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); }
.auth-row a { color: var(--navy); font-weight: 700; }
.auth-row a:hover { color: var(--gold); }

.btn-google { background: #fff; border: 1px solid var(--border); color: var(--text); }
.btn-google:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-google svg { width: 19px; height: 19px; }

.auth-or { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--muted-2); font-size: 13px; font-weight: 600; }
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.auth-foot { text-align: center; font-size: 14px; color: var(--muted); margin-top: 22px; }
.auth-foot a { color: var(--navy); font-weight: 700; }
.auth-foot a:hover { color: var(--gold); }
.auth-legal { text-align: center; font-size: 12.5px; color: var(--muted-2); margin-top: 18px; line-height: 1.6; }
.auth-legal a { color: var(--muted); text-decoration: underline; }

.auth-success { text-align: center; padding: 8px 0; }
.auth-success .ok-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto 18px; }
.auth-success .ok-ic svg { width: 32px; height: 32px; }
.auth-success h2 { font-size: 23px; margin-bottom: 8px; }
.auth-success p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.auth-account { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 16px; text-align: left; margin-bottom: 22px; font-size: 14px; }
.auth-account .lbl { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.auth-account .val { color: var(--navy); font-weight: 700; margin-top: 2px; }
.badge-prem { display: inline-block; font-size: 11px; font-weight: 800; color: #9a7100; background: var(--gold-soft); border: 1px solid var(--gold-border); padding: 2px 9px; border-radius: var(--r-full); margin-left: 6px; }

.nav-login-ic { display: inline-flex; }

@media (max-width: 860px) {
  .auth-card { grid-template-columns: 1fr; max-width: 460px; }
  .auth-aside { display: none; }
  .auth-main { padding: 36px 28px 32px; }
}

/* --------------------------- Category page ------------------------------ */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cat-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.cat-block:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-block .head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cat-block .head .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--navy-light); color: var(--navy); display: grid; place-items: center; flex: 0 0 auto; }
.cat-block .head .ic svg { width: 26px; height: 26px; }
.cat-block .head h3 { font-size: 19px; }
.cat-block .head p { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-tags span { font-size: 13px; font-weight: 600; color: var(--navy-soft); background: var(--bg); border: 1px solid var(--border); padding: 6px 12px; border-radius: var(--r-full); }

/* --------------------------- Misc helpers ------------------------------- */
.divider { height: 1px; background: var(--border); margin: 0; }
.muted { color: var(--muted); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.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; }
.reveal.d5 { transition-delay: .40s; }

/* --------------------------- 404 ---------------------------------------- */
.err-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 120px 24px 80px; }
.err-wrap .code { font-size: clamp(80px, 16vw, 160px); font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; }
.err-wrap .code b { color: var(--gold); }
.err-wrap h1 { font-size: 28px; margin: 12px 0 14px; }
.err-wrap p { color: var(--muted); font-size: 18px; max-width: 420px; margin: 0 auto 28px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero { text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .tones-wrap, .referral-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .features, .testimonials { grid-template-columns: 1fr 1fr; }
  .trust-grid, .stats { grid-template-columns: 1fr 1fr; }
  .prose-wrap { grid-template-columns: 1fr; }
  .prose-toc { position: static; }
  .split { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: inline-flex; }
  .steps, .features, .pricing, .testimonials { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-6px); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .cat-grid { grid-template-columns: 1fr; }
  .referral-card, .cta-card { padding: 40px 26px; }
  .referral-rewards { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .f-about { max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .deletion-hero-card { align-items: stretch; flex-direction: column; }
  .deletion-hero-card .btn { width: 100%; }
  .deletion-grid { grid-template-columns: 1fr; }
  .compare th, .compare td { padding: 12px 12px; font-size: 13.5px; }
  .compare thead th:nth-child(2), .compare thead th:nth-child(3) { width: auto; }
  .device-premium { transform: none; width: min(312px, 88vw); }
  .device-premium-bezel { padding: 9px; border-radius: 46px; }
  .device-premium-screen { border-radius: 38px; }
  .hero-ui { min-height: 520px; }
  .float-card { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .trust-grid, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 .hl { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
