/* ---------- Rehber-specific styles ---------- */

.rehber-top {
  background: var(--bg);
  padding-top: 112px;
  padding-bottom: clamp(48px, 8vw, 80px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 40px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.back-link:hover { color: var(--terra); gap: 12px; }

.rehber-top__eyebrow {
  margin-bottom: 16px;
  display: inline-block;
}

.rehber-top h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin: 0 0 20px;
  max-width: 720px;
}

.rehber-top h1 em { font-style: italic; color: var(--terra); }

.rehber-top__sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Price card ---------- */
.price-section {
  background: var(--bg);
  padding-top: 24px;
}

.price-card {
  background: var(--green);
  color: #fff;
  padding: clamp(36px, 7vw, 64px) clamp(28px, 6vw, 56px);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.price-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 96, 58, 0.22), transparent 70%);
  pointer-events: none;
}

.price-card__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8B89F;
  margin-bottom: 24px;
  display: block;
}

.price-card__amount {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  margin: 0 0 8px;
}

.price-card__amount sup {
  font-size: 0.45em;
  font-weight: 400;
  font-style: italic;
  vertical-align: super;
  color: #E8B89F;
  margin-left: 6px;
}

.price-card__currency {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.6em;
  font-weight: 400;
  color: #E8B89F;
  margin-left: 8px;
}

.price-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 32px 0;
  border: 0;
}

.price-card__lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
}

.price-card__line-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card__line-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: #fff;
}

.price-card__note {
  margin-top: 28px;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  line-height: 1.5;
}

/* Bonus / kampanya row inside price card */
.price-card__bonus {
  margin-top: 24px;
  background: rgba(192, 96, 58, 0.18);
  border-left: 3px solid var(--terra);
  padding: 16px 18px;
  border-radius: 2px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.price-card__bonus-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.price-card__bonus-body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.price-card__bonus-body strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
}

.price-card__id {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.price-card__id strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* ---------- Accessories grid ---------- */
.accessories {
  background: var(--bg);
}

.accessories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.acc {
  background: var(--sand);
  padding: 26px 26px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--terra);
  transition: transform 0.25s ease;
}

.acc:hover { transform: translateY(-2px); }

.acc__name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.acc__desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.acc__spec {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 4px;
}

@media (min-width: 700px) {
  .accessories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .accessories__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Section heads ---------- */
.sec-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: left;
}

.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }

.sec-head__eyebrow { margin-bottom: 16px; display: inline-block; }

.sec-head h2 {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--green-deep);
  margin: 0 0 16px;
}

.sec-head h2 em { font-style: italic; color: var(--terra); }

.sec-head p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  max-width: 580px;
}

.sec-head--center p { margin-left: auto; margin-right: auto; }

/* ---------- Comparison ---------- */
.compare {
  background: var(--sand);
}

.compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(var(--pad) * -1);
  padding: 0 var(--pad);
  scrollbar-width: thin;
}

.compare__table {
  min-width: 600px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.compare__table th,
.compare__table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.45;
  border-bottom: 1px solid var(--rule);
}

.compare__table thead th {
  background: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.compare__table thead th.tm7 {
  background: var(--green);
  color: #fff;
  position: relative;
}

.compare__table thead th.tm7::before {
  content: "Önerimiz";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #E8B89F;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.15em;
}

.compare__table tbody th {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  width: 38%;
}

.compare__table td.tm7 {
  background: rgba(27, 79, 58, 0.05);
  color: var(--green-deep);
  font-weight: 500;
  border-left: 2px solid var(--green);
}

.compare__table td.alt {
  color: var(--ink-soft);
}

.compare__table tr:last-child th,
.compare__table tr:last-child td {
  border-bottom: none;
}

.check-yes,
.check-no,
.check-partial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
}

.check-yes::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.check-no::before {
  content: "—";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rule);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.check-partial::before {
  content: "~";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--terra);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
}

.compare__hint {
  display: none;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-top: 12px;
}

.compare__note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 700px) {
  .compare__hint { display: block; }
}

/* ---------- Steps ---------- */
.steps {
  background: var(--bg);
}

.steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step__body { padding-top: 4px; }

.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 10px;
  line-height: 1.2;
}

.step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.step__warning {
  margin-top: 16px;
  background: var(--terra);
  color: #fff;
  padding: 18px 22px;
  border-radius: 3px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}

.step__warning-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  font-style: normal;
  margin-top: 1px;
}

.step__warning strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--sand);
}

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

.faq__item {
  border-bottom: 1px solid rgba(27, 79, 58, 0.15);
}

.faq__item:first-child { border-top: 1px solid rgba(27, 79, 58, 0.15); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.35;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}

.faq__q:hover { color: var(--terra); }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--green-deep);
  position: relative;
  margin-top: 4px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--green-deep);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 12px; }

.faq__item.is-open .faq__icon {
  background: var(--terra);
  border-color: var(--terra);
  transform: rotate(180deg);
}

.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
  background: #fff;
}

.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__a-inner {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 92%;
}

/* ---------- Closing CTA ---------- */
.closing {
  background: var(--green);
  color: #fff;
  text-align: center;
}

.closing__inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing .eyebrow { color: #E8B89F; margin-bottom: 18px; }

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 48px);
  color: #fff;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 16px;
}

.closing p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin: 0 0 32px;
  line-height: 1.55;
}

.closing .btn--terra {
  font-size: 16px;
}
