/* ===== Variables ===== */
:root {
  --teal-900: #0c4a4e;
  --teal-800: #115e59;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;

  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
  --transition: 0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 12px 24px;
  white-space: nowrap;
}

.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}
.btn--primary:hover {
  background: var(--teal-800);
  border-color: var(--teal-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
}

.btn--outline {
  background: var(--white);
  color: var(--teal-700);
  border-color: var(--teal-600);
}
.btn--outline:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--teal-800);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-900);
}
.logo i {
  color: var(--teal-600);
  font-size: 1.1rem;
}
.logo strong { font-weight: 800; }

.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--teal-700); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--slate-800);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(20, 184, 166, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(245, 158, 11, 0.08), transparent),
    linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-100);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero__badge i { color: var(--amber-500); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.stat i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--teal-600);
  font-size: 1rem;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}
.stat span {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ===== Section headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--slate-500);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: var(--slate-400); }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.section-header--light .section-tag { color: var(--teal-500); }

/* ===== Pricing ===== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 40%, var(--slate-100) 100%);
}
.pricing .section-header h2 { color: white; }
.pricing .section-header p { color: var(--slate-400); }
.pricing .section-tag { color: var(--teal-400); }

.packages-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Myth nav ===== */
.myth-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: 14px;
  font-size: 0.75rem;
  color: var(--slate-500);
  transition: all var(--transition);
  min-width: 110px;
}
.myth-nav__sym { font-size: 1.3rem; line-height: 1; }
.myth-nav__item strong { font-size: 0.9rem; color: var(--slate-800); }
.myth-nav__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.myth-nav__item.myth-hermes:hover   { border-color: #10b981; }
.myth-nav__item.myth-athena:hover   { border-color: #8b5cf6; }
.myth-nav__item.myth-poseidon:hover { border-color: #0ea5e9; }
.myth-nav__item.myth-zeus:hover     { border-color: #f59e0b; }
.myth-nav__item.myth-olympus:hover  { border-color: #ec4899; }

.package-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

/* ===== Myth package card ===== */
.myth-pkg {
  --myth-accent: #0d9488;
  --myth-accent2: #115e59;
  --myth-glow: rgba(13, 148, 136, 0.2);
  --myth-side-bg: linear-gradient(165deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.myth-pkg:hover {
  box-shadow: 0 20px 60px var(--myth-glow);
  transform: translateY(-3px);
}
.myth-pkg--featured {
  border: 2px solid var(--myth-accent);
  box-shadow: 0 16px 56px var(--myth-glow);
}

.myth-hermes   { --myth-accent: #10b981; --myth-accent2: #059669; --myth-glow: rgba(16,185,129,0.25); }
.myth-athena   { --myth-accent: #8b5cf6; --myth-accent2: #7c3aed; --myth-glow: rgba(139,92,246,0.25); }
.myth-poseidon { --myth-accent: #0ea5e9; --myth-accent2: #0284c7; --myth-glow: rgba(14,165,233,0.25); }
.myth-zeus     { --myth-accent: #f59e0b; --myth-accent2: #d97706; --myth-glow: rgba(245,158,11,0.3); }
.myth-olympus  { --myth-accent: #ec4899; --myth-accent2: #db2777; --myth-glow: rgba(236,72,153,0.25); }
.myth-kronos   { --myth-accent: #dc2626; --myth-accent2: #991b1b; --myth-glow: rgba(220,38,38,0.3); --myth-side-bg: linear-gradient(165deg, #1a0505 0%, #450a0a 50%, #1a0505 100%); }

.myth-nav__item.myth-kronos:hover { border-color: #dc2626; }

.myth-pkg__ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--myth-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.myth-pkg__new {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #ef4444;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

.myth-pkg__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 400px;
}

/* Side panel */
.myth-pkg__side {
  background: var(--myth-side-bg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.myth-pkg__side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--myth-glow), transparent 70%);
  pointer-events: none;
}
.myth-pkg__side > * { position: relative; z-index: 1; }

.myth-pkg__symbol {
  font-size: 2rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.myth-pkg__god {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--myth-accent);
}
.myth-pkg__title {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 2px;
  font-weight: 500;
}
.myth-pkg__icon-ring {
  width: 56px;
  height: 56px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--myth-accent);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--myth-accent);
  box-shadow: 0 0 24px var(--myth-glow);
}

.myth-pkg__total {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 12px;
  margin-bottom: 14px;
}
.myth-pkg__total-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 4px;
}
.myth-pkg__total-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--myth-accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.myth-pkg__total-sub {
  display: block;
  font-size: 0.68rem;
  opacity: 0.55;
  margin-top: 6px;
}

.myth-pkg__comp {
  width: 100%;
  font-size: 0.72rem;
  margin-bottom: 12px;
  opacity: 0.8;
}
.myth-pkg__comp span { display: block; margin-bottom: 6px; }
.myth-pkg__bar {
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  margin-bottom: 4px;
}
.myth-pkg__bar div {
  height: 100%;
  background: var(--myth-accent);
  border-radius: 100px;
}
.myth-pkg__comp strong { color: var(--myth-accent); font-size: 0.85rem; }

.myth-pkg__margin {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 14px;
  font-size: 0.75rem;
}
.myth-pkg__margin i { color: var(--myth-accent); margin-right: 4px; }
.myth-pkg__margin small { display: block; opacity: 0.5; margin-top: 3px; font-size: 0.65rem; }

.myth-pkg__price-block { margin-bottom: 14px; }
.myth-pkg__price-old {
  display: block;
  font-size: 0.85rem;
  text-decoration: line-through;
  opacity: 0.45;
}
.myth-pkg__price-sale {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--myth-accent);
  letter-spacing: -0.02em;
}
.myth-pkg__price-save {
  display: block;
  font-size: 0.68rem;
  color: #86efac;
  margin-top: 2px;
}

.myth-pkg__cta {
  width: 100%;
  padding: 14px;
  background: var(--myth-accent);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  margin-bottom: 12px;
}
.myth-pkg__cta:hover {
  background: var(--myth-accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--myth-glow);
}

.myth-pkg__meta {
  display: flex;
  gap: 12px;
  font-size: 0.65rem;
  opacity: 0.5;
}
.myth-pkg__meta i { margin-right: 3px; }

/* Main panel */
.myth-pkg__main {
  padding: 28px 28px 24px;
  background: var(--slate-50);
}
.myth-pkg__tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
}

.myth-section {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.myth-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-100);
}
.myth-section__head i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--myth-accent) 12%, white);
  color: var(--myth-accent);
  border-radius: 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.myth-section__head h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-800);
}
.myth-section__head p {
  font-size: 0.72rem;
  color: var(--slate-500);
  margin-top: 1px;
}
.myth-section__tag {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--myth-accent) 15%, white);
  color: var(--myth-accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* Bulk grid */
.myth-bulk__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--slate-100);
  list-style: none;
}
.myth-bulk__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--white);
  font-size: 0.78rem;
}
.myth-bulk__qty {
  font-weight: 800;
  color: var(--myth-accent);
  font-size: 0.82rem;
  white-space: nowrap;
}
.myth-bulk__label { color: var(--slate-700); }
.myth-bulk__code {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--slate-400);
  background: var(--slate-50);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Premium cols */
.myth-premium__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  padding: 12px 16px;
}
.myth-premium__cols ul { list-style: none; }
.myth-premium__cols li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--slate-600);
  padding: 4px 0;
  border-bottom: 1px solid var(--slate-50);
  line-height: 1.35;
}
.myth-premium__cols li i {
  color: var(--myth-accent);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* SEO grid */
.myth-seo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--slate-100);
}
.myth-seo__item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 9px 12px;
  background: var(--white);
  font-size: 0.7rem;
  color: var(--slate-600);
  line-height: 1.35;
}
.myth-seo__item i { color: var(--myth-accent); font-size: 0.7rem; margin-top: 2px; flex-shrink: 0; }

/* Trust */
.myth-pkg__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.myth-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 10px 6px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--slate-600);
  line-height: 1.25;
}
.myth-trust i { font-size: 0.9rem; color: var(--myth-accent); }

.pricing__bulk {
  text-align: center;
  margin-top: 48px;
  font-size: 0.95rem;
  color: var(--slate-500);
}
.pricing__bulk i { color: var(--amber-500); margin-right: 6px; }
.pricing__bulk a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Press / Tanıtım Yazısı ===== */
.press {
  padding: 100px 0;
  background: linear-gradient(165deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
}

.press-grid { margin-bottom: 48px; }
.press-grid__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.press-grid__title i { color: #a78bfa; }
.press-grid__sub {
  color: #c4b5fd;
  font-size: 0.9rem;
  margin: -12px 0 20px;
}

.press-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.press-grid__items--3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.press-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9e5ff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.25);
}
.press-card--featured {
  border: 2px solid #7c3aed;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
}
.press-card--premium {
  border: 2px solid #f59e0b;
}

.press-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #7c3aed;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.press-card__ribbon--gold { background: #f59e0b; }

.press-card__discount {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  align-self: flex-start;
}

.press-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #4c1d95;
  line-height: 1.3;
  margin-bottom: 4px;
  padding-right: 60px;
}
.press-card__tagline {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 12px;
}
.press-card__domain {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 10px;
}

.press-card__stats {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: #64748b;
}
.press-card__stats i { color: #7c3aed; margin-right: 4px; }

.press-card__price {
  margin-bottom: 16px;
}
.press-card__old {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.press-card__sale {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #6d28d9;
  letter-spacing: -0.02em;
}

.press-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 18px;
}
.press-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: #475569;
  padding: 5px 0;
  line-height: 1.35;
}
.press-card__features i {
  color: #7c3aed;
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.press-card__cta {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.press-card__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.press-brands {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.press-brands p {
  color: #c4b5fd;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.press-brands__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.press-brands__list span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e9e5ff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ===== Features ===== */
.features {
  padding: 100px 0;
  background: var(--slate-900);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  background: var(--slate-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-box:hover {
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-2px);
}

.feature-box__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.12);
  border-radius: 10px;
  color: var(--teal-500);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-box p {
  font-size: 0.85rem;
  color: var(--slate-400);
  line-height: 1.5;
}

/* ===== Sample Report ===== */
.report {
  padding: 100px 0;
  background: var(--white);
}

.report__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

.report__preview {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
}

.report__file {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}
.report__file-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 14px;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.report__file h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
  word-break: break-all;
}
.report__file p {
  font-size: 0.78rem;
  color: var(--slate-500);
}

.report__sheets h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 12px;
}
.report__sheets ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.report__sheets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.4;
}
.report__sheets li i {
  color: var(--teal-600);
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}
.report__sheets strong { color: var(--slate-800); }

.report__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #16a34a;
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.report__download:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
}

.report__sample-table-wrap {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.report__sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--slate-900);
  color: var(--slate-400);
  font-size: 0.8rem;
}
.report__sample-tag {
  background: var(--teal-600);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.report__table-scroll {
  overflow-x: auto;
}
.report__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.report__table th,
.report__table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
  white-space: nowrap;
}
.report__table thead th {
  background: var(--slate-50);
  font-weight: 700;
  color: var(--slate-700);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.report__table tbody tr:hover { background: var(--slate-50); }
.report__table td:first-child { color: var(--slate-400); font-weight: 600; }
.report__table .yes { color: #16a34a; font-weight: 600; }
.report__table .pending { color: #d97706; font-weight: 600; }

.report__note {
  padding: 12px 20px;
  font-size: 0.75rem;
  color: var(--slate-500);
  font-style: italic;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}

/* ===== Comparison table ===== */
.compare {
  padding: 80px 0;
  background: var(--white);
}
.compare h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 32px;
}

.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare__table th,
.compare__table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--slate-100);
}
.compare__table th:first-child,
.compare__table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--slate-700);
}
.compare__table thead th {
  background: var(--slate-50);
  font-weight: 700;
  color: var(--slate-800);
  font-size: 0.85rem;
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody tr:hover { background: var(--slate-50); }

.highlight-col {
  background: var(--teal-50) !important;
  font-weight: 600;
  color: var(--teal-800);
}

.yes { color: var(--teal-600); }
.no { color: var(--slate-300); }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--slate-50);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--slate-400);
  transition: transform var(--transition);
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__item summary:hover { background: var(--slate-50); }
.faq__item p {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0;
  background: var(--slate-950);
  color: var(--slate-400);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand p {
  font-size: 0.85rem;
  margin-top: 8px;
}
.footer .logo { color: var(--white); }

.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--teal-500); }

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 8px;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal.is-open .modal__box { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--slate-400);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--slate-100); }

.modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: 50%;
  color: var(--teal-600);
  font-size: 1.3rem;
}

.modal__box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.modal__box p {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal__box .btn { margin-bottom: 10px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .myth-pkg__layout { grid-template-columns: 1fr; }
  .myth-pkg__side { padding: 24px 20px; }
  .myth-bulk__grid { grid-template-columns: 1fr; }
  .myth-premium__cols { grid-template-columns: 1fr; }
  .myth-seo__grid { grid-template-columns: repeat(2, 1fr); }
  .myth-pkg__trust { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .nav__links, .nav .btn--sm { display: none; }
  .nav__toggle { display: block; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--slate-200);
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .hero { padding: 120px 0 72px; }
  .hero__stats { gap: 20px; }

  .myth-pkg__main { padding: 20px 16px; }
  .myth-pkg__total-num { font-size: 1.6rem; }
  .myth-pkg__trust { grid-template-columns: repeat(2, 1fr); }
  .myth-seo__grid { grid-template-columns: 1fr; }

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

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

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta__actions .btn { width: 100%; }

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