/* ═══════════════════════════════════════════════════════════════════════
   HESAPOS LANDING — MODERN DESIGN SYSTEM
   A premium, hand-crafted landing experience
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Brand Colors */
  --brand: #f55d1d;
  --brand-dark: #d64a11;
  --brand-light: #ff7a3d;
  --brand-glow: rgba(245, 93, 29, 0.15);

  /* Neutral Palette */
  --slate-950: #0f172a;
  --slate-900: #1e293b;
  --slate-800: #334155;
  --slate-700: #475569;
  --slate-600: #64748b;
  --slate-500: #94a3b8;
  --slate-400: #cbd5e1;
  --slate-300: #e2e8f0;
  --slate-200: #f1f5f9;
  --slate-100: #f8fafc;
  --white: #ffffff;

  /* Accent Colors */
  --blue: #3b82f6;
  --green: #10b981;
  --purple: #8b5cf6;
  --teal: #14b8a6;
  --rose: #f43f5e;
  --amber: #f59e0b;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Spacing */
  --section-gap: clamp(5rem, 10vw, 8rem);
  --container: min(1200px, 90vw);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-brand: 0 20px 40px -12px rgba(245, 93, 29, 0.35);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

/* ─── Accessibility ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
  background: var(--brand);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ─── Container ─── */
.container { width: var(--container); margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
.navbar.is-scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.navbar__inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 1.5rem;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}

.navbar__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(245, 93, 29, 0.3);
}

.navbar__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.navbar__links a:hover {
  color: var(--slate-900);
  background: var(--slate-200);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--slate-300);
}
.navbar__hamburger span {
  width: 18px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: 0.3s;
}

.navbar__mobile {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--slate-200);
}
.navbar__mobile.is-open { display: grid; gap: 0.25rem; }
.navbar__mobile a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-200);
}
.navbar__mobile-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  box-shadow: 0 24px 48px -12px rgba(245, 93, 29, 0.4);
}

.btn--ghost {
  color: var(--slate-700);
  border-color: var(--slate-300);
  background: var(--white);
}
.btn--ghost:hover {
  background: var(--slate-100);
  border-color: var(--slate-400);
}

.btn--outline {
  color: var(--slate-700);
  border-color: var(--slate-300);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: var(--white);
  border-color: var(--brand);
  color: var(--brand);
}

.btn--white {
  background: var(--white);
  color: var(--brand);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.btn--white:hover {
  box-shadow: var(--shadow-xl);
}

.btn--lg {
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION HEADER (shared)
   ═══════════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.section-header__desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.12;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  left: -200px;
  top: -200px;
  background: var(--brand);
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  right: -150px;
  top: 100px;
  background: var(--blue);
  opacity: 0.08;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 4rem;
}

.hero__content { max-width: 540px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  background: var(--brand-glow);
  border: 1px solid rgba(245, 93, 29, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}
.hero__badge i {
  font-size: 0.7rem;
  background: var(--brand);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--slate-950);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.hero__gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 500;
}
.hero__trust-item i {
  color: var(--green);
  font-size: 0.75rem;
}

/* Hero Visual */
.hero__visual {
  position: relative;
}

.hero__browser {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.06);
  background: var(--white);
}
.hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--red { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #28c840; }
.hero__browser-url {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--slate-500);
  background: var(--white);
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid var(--slate-200);
}

.hero__browser img {
  width: 100%;
  display: block;
}

/* Floating Metrics */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  font-size: 0.8rem;
  white-space: nowrap;
}
.hero__float strong { display: block; color: var(--slate-900); font-weight: 700; }
.hero__float span { color: var(--slate-500); font-size: 0.72rem; }
.hero__float-up { color: var(--green) !important; font-weight: 600; }

.hero__float-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 93, 29, 0.1);
  color: var(--brand);
  font-size: 0.8rem;
}
.hero__float-icon--green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.hero__float--1 {
  bottom: 15%;
  left: -30px;
  animation: float-1 4s ease-in-out infinite;
}
.hero__float--2 {
  top: 20%;
  right: -20px;
  animation: float-2 5s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════════════════
   PROOF BAR
   ═══════════════════════════════════════════════════════════════════════ */
.proof {
  padding: 2.5rem 0;
  background: var(--slate-100);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof__item { text-align: center; }
.proof__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.proof__label {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 500;
}
.proof__divider {
  width: 1px;
  height: 36px;
  background: var(--slate-300);
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-gap) 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.feature-card__icon--orange { background: rgba(245,93,29,0.08); color: var(--brand); }
.feature-card__icon--blue { background: rgba(59,130,246,0.08); color: var(--blue); }
.feature-card__icon--green { background: rgba(16,185,129,0.08); color: var(--green); }
.feature-card__icon--purple { background: rgba(139,92,246,0.08); color: var(--purple); }
.feature-card__icon--teal { background: rgba(20,184,166,0.08); color: var(--teal); }
.feature-card__icon--rose { background: rgba(244,63,94,0.08); color: var(--rose); }

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHOWCASE (TABS + SCREENSHOT)
   ═══════════════════════════════════════════════════════════════════════ */
.showcase {
  padding: var(--section-gap) 0;
  background: var(--slate-100);
}

.showcase__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.showcase__tab {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.showcase__tab:hover {
  color: var(--slate-900);
  background: var(--white);
}
.showcase__tab.is-active {
  background: var(--white);
  color: var(--brand);
  border-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.showcase__stage { max-width: 960px; margin: 0 auto; }
.showcase__browser {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  background: var(--white);
}
.showcase__browser img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════
   DEEP DIVE (Feature showcases with screenshots)
   ═══════════════════════════════════════════════════════════════════════ */
.deep-dive {
  padding: var(--section-gap) 0;
}
.deep-dive__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.deep-dive__row:last-child { margin-bottom: 0; }
.deep-dive__row--reverse { direction: rtl; }
.deep-dive__row--reverse > * { direction: ltr; }

.deep-dive__browser {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  background: var(--white);
}
.deep-dive__browser img {
  width: 100%;
  display: block;
}

.deep-dive__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--slate-900);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.deep-dive__content > p {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.deep-dive__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.deep-dive__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate-700);
  font-weight: 500;
}
.deep-dive__list i {
  color: var(--green);
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   ADDON MODULES
   ═══════════════════════════════════════════════════════════════════════ */
.addons {
  padding: var(--section-gap) 0;
  background: var(--slate-100);
}

.addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 840px;
  margin: 0 auto;
}

.addon-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}
.addon-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245,93,29,0.1);
  transform: translateY(-4px);
}

.addon-card__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.addon-card__badge--new {
  background: var(--green);
}

.addon-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.addon-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.addon-card__icon--orange {
  background: rgba(245,93,29,0.08);
  color: var(--brand);
}
.addon-card__icon--green {
  background: rgba(16,185,129,0.08);
  color: var(--green);
}

.addon-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
}
.addon-card__subtitle {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 2px;
}

.addon-card__features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.addon-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-600);
}
.addon-card__features i {
  color: var(--brand);
  font-size: 0.65rem;
}

.addon-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.addon-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}
.addon-card__period {
  font-size: 0.9rem;
  color: var(--slate-500);
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-gap) 0;
}

.pricing__toggle {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 3rem;
  background: var(--slate-100);
  padding: 4px;
  border-radius: var(--radius-lg);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing__toggle-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing__toggle-btn.is-active {
  background: var(--white);
  color: var(--slate-900);
  box-shadow: var(--shadow-sm);
}
.pricing__toggle-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Plan Cards (dynamically rendered) */
.plan-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-lg);
}
.plan-card-featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card__type,
.plan-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: 0.35rem;
}
.plan-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
}
.plan-blurb {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.plan-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
}
.plan-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-500);
}
.plan-yearly {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}
.plan-card ul {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.plan-card ul li {
  font-size: 0.85rem;
  color: var(--slate-600);
  padding-left: 1.25rem;
  position: relative;
}
.plan-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}
.plan-card .btn {
  width: 100%;
}

/* Payment Trust */
.pricing__trust {
  text-align: center;
  padding-top: 1rem;
}
.pricing__trust-logos {
  max-width: 360px;
  margin: 0 auto 1rem;
  opacity: 0.85;
}
.pricing__trust-text {
  font-size: 0.82rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pricing__trust-text i {
  color: var(--green);
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--slate-100);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--amber);
  font-size: 0.85rem;
}
.testimonial__text {
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-glow), rgba(59,130,246,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}
.testimonial__author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-900);
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-gap) 0;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq__item[open] {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--slate-400);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  content: '−';
  color: var(--brand);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════════════ */
.cta-band {
  padding: 3rem 0;
}
.cta-band__inner {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-950));
  border-radius: var(--radius-2xl);
  padding: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.08;
  filter: blur(80px);
}

.cta-band__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.cta-band__content p {
  font-size: 1rem;
  color: var(--slate-400);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  padding: 4rem 0 0;
  background: var(--slate-950);
  color: var(--slate-400);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all 0.2s ease;
}
.footer__social a:hover {
  background: var(--brand);
  color: var(--white);
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-300);
  margin-bottom: 1rem;
}
.footer__col a,
.footer__legal-btn {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-400);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
  text-align: left;
}
.footer__col a:hover,
.footer__legal-btn:hover {
  color: var(--white);
}
.footer__address {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.footer__bottom p {
  font-size: 0.8rem;
}
.footer__payment img {
  height: 24px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   LEGAL MODAL
   ═══════════════════════════════════════════════════════════════════════ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.legal-modal[hidden] { display: none; }
.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}
.legal-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.legal-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--slate-200);
}
.legal-modal__head h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
}
.legal-modal__close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  transition: all 0.2s ease;
}
.legal-modal__close:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}
.legal-modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--slate-700);
  line-height: 1.7;
}
.legal-modal__body ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin: 0.75rem 0;
}
.legal-modal__body li {
  margin-bottom: 0.35rem;
}
.legal-modal__body p {
  margin-bottom: 0.75rem;
}
.muted-date {
  font-size: 0.8rem;
  color: var(--slate-400);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__float { display: none; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deep-dive__row,
  .deep-dive__row--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__title {
    font-size: 2.25rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .showcase__tabs {
    gap: 0.35rem;
  }
  .showcase__tab {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .addons__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .proof__divider { display: none; }
  .proof__inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn { width: 100%; }
}
