/* ============================================================
   DESIGN SYSTEM — Dilovası Plise Perde
   Design Tokens · Typography · Spacing · Components
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand Colors */
  --c-brand:       #83bd81;
  --c-brand-dark:  #6aab68;
  --c-brand-light: #a8d4a7;
  --c-brand-pale:  #edf7ed;
  --c-deep:        #404e5e;
  --c-deep-dark:   #2e3a47;
  --c-deep-light:  #5a6a7a;

  /* Neutrals */
  --c-white:       #ffffff;
  --c-bg:          #fafafa;
  --c-bg-alt:      #f4f6f8;
  --c-surface:     #ffffff;
  --c-border:      #e2e8f0;
  --c-border-soft: #eef1f4;
  --c-text:        #1a2332;
  --c-text-muted:  #5a6a7a;
  --c-text-light:  #8a9ab0;

  /* Semantic */
  --c-success:     #22c55e;
  --c-warning:     #f59e0b;
  --c-error:       #ef4444;
  --c-info:        #3b82f6;

  /* ── Typography Scale ── */
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 Helvetica, Arial, sans-serif, "Apple Color Emoji";

  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.25rem;   /* 20px */
  --fs-xl:   1.5rem;    /* 24px */
  --fs-2xl:  1.875rem;  /* 30px */
  --fs-3xl:  2.25rem;   /* 36px */
  --fs-4xl:  2.75rem;   /* 44px */
  --fs-5xl:  3.5rem;    /* 56px */

  --fw-normal:    400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  --lh-tight:   1.2;
  --lh-snug:    1.35;
  --lh-normal:  1.5;
  --lh-relaxed: 1.7;
  --lh-loose:   1.9;

  --ls-tight:   -0.03em;
  --ls-snug:    -0.01em;
  --ls-normal:  0em;
  --ls-wide:    0.02em;
  --ls-wider:   0.05em;

  /* ── Spacing Scale (4px base) ── */
  --sp-1:  0.25rem;   /* 4px  */
  --sp-2:  0.5rem;    /* 8px  */
  --sp-3:  0.75rem;   /* 12px */
  --sp-4:  1rem;      /* 16px */
  --sp-5:  1.25rem;   /* 20px */
  --sp-6:  1.5rem;    /* 24px */
  --sp-8:  2rem;      /* 32px */
  --sp-10: 2.5rem;    /* 40px */
  --sp-12: 3rem;      /* 48px */
  --sp-16: 4rem;      /* 64px */
  --sp-20: 5rem;      /* 80px */
  --sp-24: 6rem;      /* 96px */

  /* ── Border & Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-xs:  0 1px 2px rgba(64,78,94,0.05);
  --shadow-sm:  0 2px 8px rgba(64,78,94,0.08);
  --shadow-md:  0 4px 16px rgba(64,78,94,0.10);
  --shadow-lg:  0 8px 32px rgba(64,78,94,0.12);
  --shadow-xl:  0 16px 48px rgba(64,78,94,0.14);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;

  /* ── Container ── */
  --container-max:  1240px;
  --container-pad:  var(--sp-6);
  --section-gap:    var(--sp-24);
  --section-gap-sm: var(--sp-16);
  .navbar-logo-text,
  .navbar-logo-sub { display: block; }
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-system);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── 3. TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--c-deep);
}

h1 {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.04em;
}
h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
}
h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
}
h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
}
h5 {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
}
h6 {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
}

p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.text-sm   { font-size: var(--fs-sm);   line-height: var(--lh-normal); }
.text-xs   { font-size: var(--fs-xs);   line-height: var(--lh-normal); }
.text-lg   { font-size: var(--fs-lg);   line-height: var(--lh-snug); }
.text-xl   { font-size: var(--fs-xl);   line-height: var(--lh-snug); }
.text-muted  { color: var(--c-text-muted); }
.text-light  { color: var(--c-text-light); }
.text-brand  { color: var(--c-brand); }
.text-deep   { color: var(--c-deep); }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.fw-bold     { font-weight: var(--fw-bold); }
.fw-semibold { font-weight: var(--fw-semibold); }

/* Content Typography */
.content-body strong { font-weight: var(--fw-bold); color: var(--c-deep); }
.content-body em     { font-style: italic; color: var(--c-deep-light); }
.content-body u      { text-decoration: underline; text-underline-offset: 3px; }

/* ── 4. LAYOUT ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-gap);
}
.section--sm {
  padding-block: var(--section-gap-sm);
}
.section--alt {
  background-color: var(--c-bg-alt);
}
.section--brand {
  background-color: var(--c-brand-pale);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--sp-6);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-2 { gap: var(--sp-2); }
.flex-gap-4 { gap: var(--sp-4); }
.flex-gap-6 { gap: var(--sp-6); }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }

/* ── 5. SECTION HEADER ───────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-brand-dark);
  background: var(--c-brand-pale);
  border: 1px solid var(--c-brand-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  color: var(--c-deep);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-snug);
}
.section-desc {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-inline: auto;
}

/* ── 6. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 52px;
  padding-inline: var(--sp-8);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--c-brand);
  color: var(--c-white);
  border-color: var(--c-brand);
}
.btn-primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--c-deep);
  color: var(--c-white);
  border-color: var(--c-deep);
}
.btn-secondary:hover {
  background: var(--c-deep-dark);
  border-color: var(--c-deep-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--c-deep);
  border-color: var(--c-border);
}
.btn-outline:hover {
  background: var(--c-bg-alt);
  border-color: var(--c-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--c-brand-dark);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--c-brand-pale);
}

.btn-sm {
  height: 40px;
  padding-inline: var(--sp-5);
  font-size: var(--fs-sm);
  border-radius: var(--radius-md);
}
.btn-lg {
  height: 60px;
  padding-inline: var(--sp-10);
  font-size: var(--fs-md);
  border-radius: var(--radius-xl);
}
.btn-xl {
  height: 68px;
  padding-inline: var(--sp-12);
  font-size: var(--fs-lg);
  border-radius: var(--radius-xl);
}

/* WhatsApp special */
.btn-whatsapp {
  background: #25d366;
  color: var(--c-white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: var(--shadow-md);
}

/* ── 7. CARDS ────────────────────────────────────────────── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal),
              transform var(--transition-normal);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-sm {
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-brand-pale);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; color: var(--c-brand-dark); }
.card-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-deep);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}
.card-desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── 8. BADGE ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 3px var(--sp-2);
  border-radius: var(--radius-full);
  line-height: 1.4;
}
.badge-brand   { background: var(--c-brand-pale); color: var(--c-brand-dark); border: 1px solid var(--c-brand-light); }
.badge-deep    { background: #eef1f4; color: var(--c-deep); border: 1px solid #d4dae1; }
.badge-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ── 9. TABLES ───────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.table th {
  background: var(--c-deep);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  white-space: nowrap;
}
.table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.table th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }
.table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--c-border-soft);
  color: var(--c-text);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:nth-child(even) td { background: var(--c-bg-alt); }
.table tr:hover td { background: var(--c-brand-pale); transition: background var(--transition-fast); }
.table .check { color: var(--c-brand-dark); font-weight: var(--fw-bold); }
.table .cross  { color: #cbd5e1; }
.table .highlight td { background: var(--c-brand-pale) !important; font-weight: var(--fw-semibold); }

/* ── 10. ACCORDION / FAQ ─────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-3);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-surface);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-deep);
  text-align: left;
  transition: background var(--transition-fast);
}
.accordion-btn:hover { background: var(--c-bg-alt); }
.accordion-btn.active { background: var(--c-brand-pale); color: var(--c-brand-dark); }
.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
}
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-bg-alt);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  border-top: 1px solid var(--c-border-soft);
}
.accordion-body.open { display: block; }

/* ── 11. TABS ────────────────────────────────────────────── */
.tab-nav {
  display: flex;
  gap: var(--sp-1);
  background: var(--c-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--sp-1);
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-muted);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-align: center;
}
.tab-btn:hover { color: var(--c-deep); background: var(--c-white); }
.tab-btn.active {
  background: var(--c-white);
  color: var(--c-deep);
  box-shadow: var(--shadow-sm);
  font-weight: var(--fw-semibold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── 12. NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-soft);
  height: 72px;
  display: flex;
  align-items: center;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-left: auto;
  margin-right: var(--sp-6);
}
.navbar-links {
  display: flex;
  gap: var(--sp-5);
  list-style: none;
}
.navbar-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text-muted);
  padding-block: var(--sp-1);
  position: relative;
}
.navbar-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--c-brand);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.navbar-link:hover,
.navbar-link:focus-visible {
  color: var(--c-deep);
}
.navbar-link:hover::after,
.navbar-link:focus-visible::after,
.navbar-link.active::after {
  opacity: 1;
  transform: translateY(0);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-deep);
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16,24,40,0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  z-index: 90;
}
body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open { overflow: hidden; }
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.navbar-logo img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-deep);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.navbar-phone:hover {
  border-color: var(--c-brand);
  color: var(--c-brand-dark);
  background: var(--c-brand-pale);
}

/* ── 13. HERO ────────────────────────────────────────────── */
.hero {
  padding-block: var(--sp-24) var(--sp-20);
  background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 40%, #fafbff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(131,189,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(64,78,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-brand-dark);
  background: var(--c-brand-pale);
  border: 1px solid var(--c-brand-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-6);
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--c-deep);
  margin-bottom: var(--sp-6);
}
.hero-title .accent {
  color: var(--c-brand-dark);
  display: block;
}
.hero-desc {
  font-size: var(--fs-md);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.hero-stats {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-deep);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-1);
}

/* ── 14. TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--c-deep);
  padding-block: var(--sp-6);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  min-width: 120px;
  color: var(--c-white);
}
.trust-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(131,189,129,0.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 20px; height: 20px; color: var(--c-white); }
.trust-item-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  line-height: 1.2;
}
.trust-item-sub {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.trust-divider { display: none; }

/* ── 15. PRODUCT TABS ─────────────────────────────────────── */
.product-family {
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}
.product-family-header {
  padding: var(--sp-6) var(--sp-8);
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border-soft);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.product-family-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-deep);
}
.product-sub-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
  padding: var(--sp-8);
}
.product-sub-card {
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: all var(--transition-normal);
  cursor: default;
}
.product-sub-card:hover {
  border-color: var(--c-brand);
  background: var(--c-brand-pale);
  box-shadow: var(--shadow-sm);
}
.product-sub-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-deep);
  margin-bottom: var(--sp-1);
}
.product-sub-desc {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

/* ── 16. STEP PROCESS ────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6);
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: var(--sp-8);
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--c-brand);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.step-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-deep);
  margin-bottom: var(--sp-2);
}
.step-desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}
.guide-text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}
#olcu-rehberi .grid { width: 100%; }
#olcu-rehberi .grid > div { min-width: 0; }

/* ── 17. GALLERY ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-border-soft);
  position: relative;
  background: var(--c-bg-alt);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: rgba(64,78,94,0.85);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* ── 18. DISTRICT GRID ───────────────────────────────────── */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-3);
}
.district-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-deep);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}
.district-card:hover {
  border-color: var(--c-brand);
  background: var(--c-brand-pale);
  box-shadow: var(--shadow-sm);
}
.district-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--c-brand);
  flex-shrink: 0;
}

/* ── 19. CTA BLOCK ───────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-dark) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(131,189,129,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-white);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-4);
}
.cta-desc {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-8);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}
.cta-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

/* ── 20. FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--c-deep-dark);
  color: rgba(255,255,255,0.8);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand {
  max-width: 280px;
}
.footer-brand-name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}
.footer-brand-desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-6);
}
.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}
.footer-link {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-3);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-link:hover { color: var(--c-brand-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-4);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-contact-item:hover { color: var(--c-brand-light); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

/* ── 21. FLOATING ACTIONS ────────────────────────────────── */
.float-actions {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  z-index: 200;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.float-btn-wa { background: #25d366; }
.float-btn-phone { background: var(--c-brand); }
.float-btn svg { width: 24px; height: 24px; color: var(--c-white); }

/* ── 22. MISC UTILITIES ──────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.divider {
  height: 1px;
  background: var(--c-border-soft);
  margin-block: var(--sp-8);
}
.mt-auto { margin-top: auto; }
.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.rounded-full { border-radius: var(--radius-full); }

/* ── 23. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-gap: var(--sp-20);
    --container-pad: var(--sp-6);
  }
  h1 { font-size: var(--fs-4xl); }
  h2 { font-size: var(--fs-2xl); }
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .navbar-nav { margin-right: 0; }
}
@media (max-width: 1024px) {
  .navbar-logo-text,
  .navbar-logo-sub {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: var(--sp-16);
    --section-gap-sm: var(--sp-12);
    --container-pad: var(--sp-5);
  }
  h1 { font-size: var(--fs-3xl); letter-spacing: -0.03em; }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-lg); }
  .section-title { font-size: var(--fs-2xl); }
  .section-header { margin-bottom: var(--sp-10); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-brand { max-width: 100%; }
  .trust-bar-inner { gap: var(--sp-5); }
  .trust-divider { display: none; }
  .hero-stats { gap: var(--sp-6); }
  .cta-block { padding: var(--sp-10) var(--sp-6); }
  .cta-title { font-size: var(--fs-2xl); }
  .navbar-phone .phone-text { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  #olcu-rehberi .grid { grid-template-columns: 1fr; }
  #olcu-rehberi .table-wrap { margin-top: var(--sp-6); }
  .navbar-links {
    flex-direction: column;
    gap: var(--sp-3);
  }
  .navbar-nav {
    position: fixed;
    top: 72px;
    right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - 72px);
    background: var(--c-white);
    border-left: 1px solid var(--c-border-soft);
    box-shadow: -2px 0 20px rgba(15,23,42,0.08);
    padding: var(--sp-8) var(--sp-6);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 95;
    margin: 0;
  }
  body.nav-open .navbar-nav { transform: translateX(0); }
  .navbar-nav nav { width: 100%; }
  .nav-toggle { display: flex; }
  .nav-backdrop { display: block; }
}

@media (max-width: 480px) {
  :root {
    --section-gap: var(--sp-12);
    --container-pad: var(--sp-4);
  }
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
  .section-title { font-size: var(--fs-xl); }
  .btn { height: 48px; padding-inline: var(--sp-6); font-size: var(--fs-sm); }
  .btn-xl { height: 56px; padding-inline: var(--sp-8); font-size: var(--fs-base); }
  .grid-4 { grid-template-columns: 1fr; }
  .tab-nav { flex-direction: column; }
  .tab-btn { min-width: unset; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-actions { bottom: var(--sp-4); right: var(--sp-4); }
}

/* Touch - no hover flicker */
@media (hover: none) {
  .card:hover { transform: none; }
  .btn:active { transform: translateY(1px); }
}

/* ── 24. PRINT ───────────────────────────────────────────── */
@media print {
  .navbar, .float-actions, .trust-bar { display: none; }
  .hero { padding-block: var(--sp-8); }
}
