/* =========================================================
   İLMİALEM ORGANİZASYON
   Kurumsal site stylesheet
   ========================================================= */

:root {
  /* Brand */
  --c-primary: #9e1030;
  --c-primary-dark: #7a0c25;
  --c-primary-light: #c11538;
  --c-primary-50: #fdf2f4;
  --c-primary-soft: rgba(158, 16, 48, 0.08);

  --c-gold: #c9a961;
  --c-gold-soft: #ead9a8;

  /* Neutrals */
  --c-bg: #fafaf7;
  --c-bg-alt: #f4f1ec;
  --c-surface: #ffffff;
  --c-text: #1a1a1a;
  --c-text-muted: #5a5a5a;
  --c-text-subtle: #8a8a8a;
  --c-border: #e9e6df;
  --c-border-strong: #d8d4ca;

  /* WhatsApp green */
  --c-wa: #25d366;
  --c-wa-dark: #128c7e;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(20, 10, 15, 0.04);
  --shadow: 0 8px 30px rgba(20, 10, 15, 0.06);
  --shadow-lg: 0 24px 60px rgba(20, 10, 15, 0.10);

  /* Type */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-primary-dark);
}

p {
  margin: 0 0 1em;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--c-text);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--c-primary);
  font-weight: 600;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--c-primary-soft);
  border-radius: 99px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 8px 24px rgba(158, 16, 48, 0.25);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(158, 16, 48, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}
.btn--white:hover {
  background: var(--c-bg);
  color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--xl { padding: 20px 36px; font-size: 17px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
  padding: 12px 0;
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav.is-scrolled .nav__brand {
  color: var(--c-text);
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav__brand-sub {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-top: 4px;
  opacity: 0.85;
}

.nav__menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__menu a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav.is-scrolled .nav__menu a {
  color: var(--c-text);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c-primary);
  transition: width var(--transition);
}
.nav__menu a:hover {
  color: var(--c-primary);
}
.nav__menu a:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
}
.nav.is-scrolled .nav__burger span {
  background: var(--c-text);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    linear-gradient(135deg, #6e0a22 0%, #9e1030 55%, #b21438 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  z-index: -1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='white' stroke-width='1'><path d='M40 4l36 36-36 36L4 40z'/><circle cx='40' cy='40' r='18'/><path d='M40 22v36M22 40h36'/></g></svg>");
  background-size: 160px 160px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.18) 0%, transparent 60%);
  z-index: -1;
}

.hero__inner {
  max-width: 920px;
  text-align: center;
  position: relative;
}

.hero__bismillah {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  margin: 0 0 28px;
  opacity: 0.85;
  letter-spacing: 0.02em;
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero__title {
  color: #fff;
  font-size: clamp(38px, 6.5vw, 78px);
  margin: 0 0 24px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero__title em {
  color: #ffd9a8;
  font-style: italic;
  font-weight: 600;
}

.hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 40px;
  opacity: 0.92;
}
.hero__lead strong {
  font-weight: 600;
  color: #ffe2b6;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__verse {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero__verse-text {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 8px;
  opacity: 0.95;
}
.hero__verse-source {
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin: 0;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  background: var(--c-surface);
  padding: 36px 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  z-index: 5;
  margin-top: -1px;
}

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

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--c-primary);
}
.trust__item div {
  flex: 1;
}
.trust__item strong {
  display: block;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 2px;
  font-weight: 600;
  font-family: var(--f-body);
}
.trust__item span {
  display: block;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* =========================================================
   GENERIC SECTION
   ========================================================= */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--c-bg-alt);
}

.section__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section__title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 0 0 18px;
  font-weight: 600;
}

.section__lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}
.section__lead strong { color: var(--c-text); font-weight: 600; }
.section__lead em { color: var(--c-primary); font-style: italic; }

/* =========================================================
   HAKKIMIZDA
   ========================================================= */
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section__intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}
.section__body {
  color: var(--c-text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.section__body strong { color: var(--c-text); }

.featured-card {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.featured-card__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-text);
  margin: 0;
}

.section__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.feature h3 {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0;
}
.feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.feature em { color: var(--c-primary); font-style: normal; font-weight: 600; }

/* Stats */
.stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stats__item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.stats__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

/* =========================================================
   KURBAN PRICES
   ========================================================= */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.price {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.price:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary);
}

.price--featured {
  background: linear-gradient(180deg, #fff 0%, #fff 70%, var(--c-primary-50) 100%);
  border-color: var(--c-primary);
  box-shadow: 0 20px 50px rgba(158, 16, 48, 0.12);
  transform: translateY(-12px);
}
.price--featured:hover {
  transform: translateY(-16px);
}

.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(158, 16, 48, 0.3);
  white-space: nowrap;
}

.price__head {
  text-align: center;
  margin-bottom: 20px;
}
.price__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.price__title {
  font-size: 36px;
  margin: 0 0 6px;
  font-weight: 600;
}
.price__sub {
  margin: 0;
  font-size: 13px;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

.price__amount {
  text-align: center;
  margin: 24px 0 28px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 22px 0;
}
.price__currency {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-primary);
  font-weight: 600;
}
.price__num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}
.price__features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  color: var(--c-text);
  border-bottom: 1px dashed var(--c-border);
}
.price__features li:last-child { border-bottom: none; }
.price__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--c-primary-soft);
  border-radius: 50%;
}
.price__features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  transform: rotate(-45deg);
}

.kurban-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--c-primary);
}
.kurban-note p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  flex: 1;
}
.kurban-note strong { color: var(--c-text); }

/* =========================================================
   FAALİYET KARTLARI
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary);
}

.card__visual {
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--c-primary);
}
.card__visual--water {
  background: linear-gradient(135deg, #e3f4fb 0%, #d4ebf6 100%);
  color: #1d6fa5;
}
.card__visual--medrese {
  background: linear-gradient(135deg, var(--c-primary-soft) 0%, #f5e0e6 100%);
  color: var(--c-primary);
}
.card__visual--food {
  background: linear-gradient(135deg, #faf2dc 0%, #f4e6c2 100%);
  color: #a08540;
}

.card h3 {
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 600;
}
.card p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  flex-grow: 1;
}
.card p strong { color: var(--c-text); }
.card p em { color: var(--c-primary); font-style: italic; }

.card__pricing {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.card__pricing strong { color: var(--c-primary); font-weight: 700; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: gap var(--transition);
}
.card__link:hover { gap: 14px; }

/* =========================================================
   QUOTE BLOCK (Ayet)
   ========================================================= */
.quote-block {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #1c0a10 0%, #3a0d1d 50%, #5a1228 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.quote-block__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='white' stroke-width='1'><circle cx='60' cy='60' r='50'/><circle cx='60' cy='60' r='30'/><path d='M60 10v100M10 60h100M22 22l76 76M98 22L22 98'/></g></svg>");
  background-size: 240px 240px;
}
.quote-block__arabic {
  font-family: 'Amiri', 'Noto Naskh Arabic', serif;
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 30px;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.quote-block__text {
  font-family: var(--f-display);
  font-size: clamp(22px, 3.2vw, 36px);
  font-style: italic;
  line-height: 1.5;
  max-width: 880px;
  margin: 0 auto 18px;
  font-weight: 500;
}
.quote-block__source {
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin: 0;
}

/* =========================================================
   TIMELINE / SÜREÇ
   ========================================================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-gold) 50%, var(--c-primary) 100%);
  opacity: 0.2;
  z-index: 0;
}

.timeline__step {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  text-align: center;
  z-index: 1;
  transition: all var(--transition);
}
.timeline__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-primary);
}
.timeline__num {
  display: inline-flex;
  width: 64px;
  height: 64px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(158, 16, 48, 0.3);
}
.timeline__step h3 {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0;
}
.timeline__step p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.timeline__step p strong { color: var(--c-text); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item[open] {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--c-primary);
  border-bottom: 2px solid var(--c-primary);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-right: 8px;
}
.faq__item[open] summary::after {
  transform: rotate(-135deg);
}
.faq__body {
  padding: 0 28px 24px;
}
.faq__body p {
  margin: 0;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq__body strong { color: var(--c-text); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #6e0a22 0%, #9e1030 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='white' stroke-width='1'><path d='M40 4l36 36-36 36L4 40z'/><circle cx='40' cy='40' r='18'/></g></svg>");
  background-size: 160px 160px;
}
.cta-final__inner {
  position: relative;
  max-width: 820px;
}
.cta-final__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 0 0 16px;
}
.cta-final__title {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 0 0 22px;
  font-weight: 600;
  line-height: 1.1;
}
.cta-final__title em { color: #ffd9a8; font-style: italic; }
.cta-final__lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  opacity: 0.92;
  max-width: 680px;
  margin: 0 auto 36px;
}
.cta-final__hint {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1a0a10;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.footer__logo strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer__logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__brand p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer__col h4 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd9a8;
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-primary-light);
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__slogan {
  font-style: italic;
  color: var(--c-gold-soft);
  margin: 0;
}
.footer__bottom-inner p { margin: 0; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-wa);
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}
.float-wa:hover {
  background: var(--c-wa-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  border: 2px solid var(--c-wa);
  opacity: 0.5;
  animation: pulse 2.4s infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { opacity: 0.5; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* =========================================================
   KURBAN VIDEO SECTION
   ========================================================= */
.section--video {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}

.video-section__pattern {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, var(--c-primary-soft) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section--video > .container {
  position: relative;
  z-index: 1;
}

.section--video .section__head {
  margin-bottom: 48px;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  background: #0a0a0a;
  box-shadow:
    0 24px 60px rgba(20, 10, 15, 0.18),
    0 8px 24px rgba(158, 16, 48, 0.08);
  isolation: isolate;
}

/* Decorative gradient halo behind frame */
.video-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-lg) + 10px);
  background: linear-gradient(135deg,
    var(--c-gold-soft) 0%,
    transparent 35%,
    transparent 65%,
    var(--c-primary-soft) 100%);
  z-index: -1;
  opacity: 0.85;
}

/* Subtle gold inner border */
.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 97, 0.35);
  pointer-events: none;
  z-index: 2;
}

.video-frame__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: #000;
  display: block;
}

@media (max-width: 768px) {
  .section--video { padding: 64px 0 72px; }
  .video-frame { max-width: 320px; }
  .video-frame::before { inset: -10px; }
}

@media (max-width: 520px) {
  .video-frame { max-width: 100%; }
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .section__grid { grid-template-columns: 1fr; gap: 56px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--c-border); }

  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 48px; }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--c-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a {
    color: var(--c-text);
    padding: 14px 0;
    border-bottom: 1px solid var(--c-border);
    width: 100%;
  }
  .nav__menu a:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .prices { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-6px); }

  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .trust__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats__item { border-right: none !important; border-bottom: 1px solid var(--c-border); }
  .stats__item:last-child { border-bottom: none; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; text-align: left; }

  .float-wa span { display: none; }
  .float-wa { padding: 14px; }
}
