/* ============================================================
   BENGİ ÇİĞDEM HUKUK & DANIŞMANLIK
   Tasarım sistemi v2 — Cleo akışı, yeşil/sarı/bej palet
   ============================================================ */

:root {
  --bg: #f4efe3;            /* açık bej zemin */
  --bg-soft: #faf6ec;
  --card: #fffdf6;          /* krem kart */
  --ink: #11301f;           /* koyu yeşil metin (Cleo'daki koyu kahve rolü) */
  --ink-soft: rgba(17, 48, 31, 0.62);
  --green-deep: #0b231a;    /* en koyu yeşil */
  --green-900: #102e21;
  --green-800: #17402d;
  --green-700: #1f5239;
  --green-acc: #2e7d57;
  --yellow: #f2c94c;
  --yellow-soft: #e8c96a;   /* başlık 2. satır vurgusu */
  --yellow-pale: #f7e9bd;

  --r-xl: 28px;             /* dev band kartlar */
  --r-lg: 22px;
  --r-md: 16px;
  --r-pill: 999px;

  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --pad-band: 12px;         /* band kartların kenar boşluğu */
  --container: 1280px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ------------------------------------------------------------
   Tipografi — Cleo: ince (300) grotesk, büyük, sıkı satır arası
   ------------------------------------------------------------ */
h1, h2, h3 { font-weight: 300; letter-spacing: -0.015em; line-height: 1.12; }

.h-display { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.h-section { font-size: clamp(2rem, 3.4vw, 2.85rem); }   /* ~45px */
.h-card    { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-weight: 500; letter-spacing: 0; }

/* İki satırlı ortalanmış başlık; 2. satır soluk vurgu (Cleo tarzı) */
.h-stack { text-align: center; }
.h-stack .line2 { display: block; color: var(--yellow-soft); transition: color 1s ease; }

/* Mono kicker: ■ ETIKET */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.92;
}
.kicker::before { content: "■"; font-size: 0.55em; transform: translateY(-1px); }

/* ------------------------------------------------------------
   Butonlar — yumuşak hap (Cleo'nun soft pill'i)
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(11, 35, 26, 0.10), 0 8px 22px rgba(11, 35, 26, 0.08),
              inset 0 -2px 6px rgba(11, 35, 26, 0.05), inset 0 1px 0 #fff;
  transition: transform 0.45s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(11,35,26,0.10), 0 14px 30px rgba(11,35,26,0.14), inset 0 -2px 6px rgba(11,35,26,0.05), inset 0 1px 0 #fff; }
.btn:active { transform: translateY(0) scale(0.985); }

.btn-yellow { background: var(--yellow); color: var(--green-deep); box-shadow: 0 1px 2px rgba(11,35,26,0.12), 0 10px 24px rgba(242,201,76,0.35), inset 0 1px 0 rgba(255,255,255,0.55); }
.btn-dark {
  background: rgba(11, 35, 26, 0.5);
  color: #fdfbf2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(253, 251, 242, 0.18);
}
.btn-dark:hover { background: rgba(11, 35, 26, 0.68); }

/* ------------------------------------------------------------
   Header — Cleo: sabit, şeffaf başlar; kaydırınca zemin alır
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header.scrolled {
  background: rgba(244, 239, 227, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(17, 48, 31, 0.08);
  padding: 12px 28px;
}

/* Hero üstündeyken (koyu zemin) açık renk */
.site-header.on-dark:not(.scrolled) { color: #f4efe3; }
.site-header.on-dark:not(.scrolled) .nav-links a { color: rgba(244, 239, 227, 0.85); }
.site-header.on-dark:not(.scrolled) .nav-links a:hover,
.site-header.on-dark:not(.scrolled) .nav-links a.active { color: #fff; }
.site-header.on-dark:not(.scrolled) .brand-badge { background: rgba(244, 239, 227, 0.14); color: #f4efe3; box-shadow: inset 0 0 0 1px rgba(244,239,227,0.35); }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 500; letter-spacing: -0.01em; }
.brand-badge {
  padding: 9px 16px;
  border-radius: 14px 22px 22px 14px;   /* Cleo balon hissi */
  background: var(--green-deep);
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, color 0.3s ease;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.15; font-size: 0.92rem; }
.brand-name small { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.6; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.nav-links a:hover { opacity: 1; background: rgba(17, 48, 31, 0.07); }
.nav-links a.active { opacity: 1; background: rgba(17, 48, 31, 0.1); }

.header-right { display: flex; align-items: center; gap: 10px; }
.header-right .btn { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--green-deep);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 16px; height: 2px; background: var(--bg); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 78px 12px auto 12px;
  z-index: 999;
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 30px 70px rgba(11, 35, 26, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { padding: 13px 16px; border-radius: var(--r-md); font-weight: 500; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg); }
.mobile-menu .btn { margin-top: 10px; }

/* ------------------------------------------------------------
   Hero — tam ekran koyu yeşil "bulut" zemini + çizilen logo
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  background: var(--green-deep);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero .b1 { width: 60vw; height: 60vw; background: #1d5038; top: -22%; left: -12%; }
.hero .b2 { width: 48vw; height: 48vw; background: #0e3a27; bottom: -20%; right: -10%; animation-delay: -6s; }
.hero .b3 { width: 34vw; height: 34vw; background: rgba(242, 201, 76, 0.16); top: 30%; right: 18%; animation-delay: -12s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vw, -4vh) scale(1.15); }
}

.hero-mark { position: relative; z-index: 2; text-align: center; color: var(--bg); }
.hero-mark svg { width: 132px; height: auto; display: block; margin: 0 auto; }
.hero-mark .draw {
  fill: none;
  stroke: rgba(244, 239, 227, 0.9);
  stroke-width: 2.5;
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: draw 2.6s var(--ease-out) forwards 0.3s;
}
.hero-mark text {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.06em;
  fill: var(--bg);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.6s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

.hero-tag {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 239, 227, 0.65);
  opacity: 0;
  animation: fadeIn 1s ease forwards 2.1s;
}
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(244, 239, 227, 0.55);
  font-size: 1.2rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ------------------------------------------------------------
   Intro — ortalanmış başlık + alt metin + hap buton (Cleo #2)
   ------------------------------------------------------------ */
.intro {
  padding: 130px 24px 150px;
  text-align: center;
}
.intro h1, .intro h2 { margin-bottom: 18px; }
.intro p {
  max-width: 460px;
  margin: 0 auto 34px;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ------------------------------------------------------------
   Services Carousel
   ------------------------------------------------------------ */
.services-carousel {
  padding: 100px 0 80px;
  margin-bottom: var(--pad-band);
  background: var(--green-deep);
  color: #f6f2e7;
  position: relative;
  overflow: visible;
}
.services-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(242, 201, 76, 0.1), transparent 60%),
    radial-gradient(700px 500px at 10% 95%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}
.services-carousel-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.services-carousel-header .kicker { margin-bottom: 16px; display: inline-flex; color: var(--yellow); }
.services-carousel-header .kicker::before { color: var(--yellow); }
.services-carousel-header h2 { color: #f6f2e7; }
.services-carousel-header .line2 { color: var(--yellow-soft); }
.services-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px max(calc((100vw - 300px) / 2), 24px) 30px;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}
.services-track::-webkit-scrollbar { display: none; }
.service-slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(244, 239, 227, 0.08);
  border: 1px solid rgba(244, 239, 227, 0.12);
  border-radius: var(--r-lg);
  padding: 30px 24px 28px;
  color: #f6f2e7;
  transition: transform 0.5s var(--ease-out), background 0.3s ease, box-shadow 0.3s ease;
  max-width: 280px;
}
.service-slide:hover {
  transform: translateY(-6px);
  background: rgba(244, 239, 227, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}
.service-slide-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.service-slide h3 {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}
.service-slide p {
  font-size: 0.88rem;
  color: rgba(246, 242, 231, 0.72);
  line-height: 1.55;
}
.services-carousel-footer {
  text-align: center;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------
   Band kart — kenarlardan 12px içeride dev yuvarlatılmış medya kartı
   ------------------------------------------------------------ */
.band { padding: 0 var(--pad-band); margin-bottom: var(--pad-band); }
.band-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  color: #f6f2e7;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  padding: 56px;
}
.band-card .kicker { margin-bottom: 22px; }
.band-card h2 { max-width: 680px; }

/* zemin degrade varyantları */
.bg-forest  { background: linear-gradient(168deg, #355c43 0%, #17402d 38%, #0b231a 100%); }
.bg-meadow  { background: linear-gradient(155deg, #6d8c5a 0%, #2e5b3e 45%, #0f2f1f 100%); }
.bg-dusk    { background: linear-gradient(160deg, #1c4a33 0%, #0b231a 55%, #08180f 100%); }
.bg-sunlit  { background: linear-gradient(150deg, #d8c27a 0%, #8a8a4f 35%, #2e5b3e 75%, #14402c 100%); }

/* banda ışık dokusu */
.band-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(242, 201, 76, 0.16), transparent 60%),
    radial-gradient(700px 500px at 10% 95%, rgba(255, 255, 255, 0.07), transparent 60%);
  pointer-events: none;
}
.band-card > * { position: relative; z-index: 1; }

.band-card .band-bottom { margin-top: auto; max-width: 420px; }
.band-card .band-bottom h3 { font-size: 1.12rem; font-weight: 500; margin-bottom: 10px; }
.band-card .band-bottom p { font-size: 0.92rem; color: rgba(246, 242, 231, 0.78); }
.band-card .btn { align-self: flex-start; margin-top: 26px; }

/* hero band içi yüzen sohbet kartları (telefon mockup yerine) */
.chat-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.chat-col { display: flex; flex-direction: column; gap: 14px; width: min(380px, 72%); }
.chat-bubble {
  padding: 16px 20px;
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 253, 246, 0.96);
  color: var(--ink);
  font-size: 0.9rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease-out);
}
.chat-bubble.me {
  border-radius: 18px 18px 6px 18px;
  background: var(--yellow);
  color: var(--green-deep);
  align-self: flex-end;
  max-width: 86%;
}
.chat-bubble .src { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.55; }
.in-view .chat-bubble { opacity: 1; transform: none; }
.in-view .chat-bubble:nth-child(1) { transition-delay: 0.1s; }
.in-view .chat-bubble:nth-child(2) { transition-delay: 0.45s; }
.in-view .chat-bubble:nth-child(3) { transition-delay: 0.85s; }

/* ------------------------------------------------------------
   Duo grid — iki yarım band kart (Cleo #3)
   ------------------------------------------------------------ */
.duo { padding: 0 var(--pad-band); margin-bottom: var(--pad-band); display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad-band); }
.duo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  color: #f6f2e7;
  padding-bottom: 56px;
}
.duo-card h3 { font-size: 1.12rem; font-weight: 500; margin-bottom: 10px; }
.duo-card p { font-size: 0.92rem; max-width: 380px; color: rgba(246, 242, 231, 0.8); }
.duo-card .glyph {
  position: absolute;
  top: 38px; right: 42px;
  font-size: 4rem;
  opacity: 0.85;
  transform: rotate(6deg);
  transition: transform 0.6s var(--ease-out);
}
.duo-card:hover .glyph { transform: rotate(-3deg) scale(1.1); }
.duo-card.light { color: var(--green-deep); }
.duo-card.light p { color: rgba(11, 35, 26, 0.7); }
.bg-haze   { background: linear-gradient(165deg, #f2c94c 0%, #e3ba58 40%, #b89b4a 100%); }
.bg-pines  { background: linear-gradient(165deg, #2f6a48 0%, #1b4631 55%, #0b231a 100%); }

.duo-btn {
  align-self: flex-start;
  margin-top: 20px;
}
.duo-btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
}

/* ------------------------------------------------------------
   Ara başlık bölümü (Cleo #4: iki satır, 2. satır soluk)
   ------------------------------------------------------------ */
.statement { padding: 150px 24px; }

/* ------------------------------------------------------------
   Split — sol medya kartı / sağ metin (Cleo "Smart mind")
   ------------------------------------------------------------ */
.split { padding: 0 var(--pad-band); margin-bottom: var(--pad-band); display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; }
.split-media {
  border-radius: var(--r-xl);
  min-height: 78vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.split-media .doc-card {
  width: min(420px, 80%);
  background: var(--card);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
  transform: rotate(-2.5deg);
}
.split-media .doc-card .dc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; }
.split-media .doc-card .dc-line { height: 9px; border-radius: 5px; background: rgba(17, 48, 31, 0.1); margin-bottom: 9px; }
.split-media .doc-card .dc-line.w60 { width: 60%; }
.split-media .doc-card .dc-line.w80 { width: 80%; }
.split-media .doc-card .dc-stamp {
  margin-top: 18px;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  border: 1.5px solid var(--green-700);
  border-radius: 8px;
  padding: 6px 10px;
  transform: rotate(-4deg);
}
.split-copy { padding-right: 56px; }
.split-copy h2 { margin-bottom: 16px; }
.split-copy p { color: var(--ink-soft); font-size: 0.97rem; max-width: 380px; margin-bottom: 30px; }

/* ------------------------------------------------------------
   Tabs bölümü (Cleo: Save / Cleo Card / Debt)
   ------------------------------------------------------------ */
.tabs-section { padding: 40px var(--pad-band) 40px; margin-bottom: var(--pad-band); display: grid; grid-template-columns: 0.9fr 1.5fr; gap: 48px; align-items: center; }
.tabs-copy { padding-left: clamp(16px, 6vw, 120px); }
.tabs-copy .kicker { margin-bottom: 18px; color: var(--green-700); }
.tabs-copy h2 { margin-bottom: 16px; }
.tabs-copy p { color: var(--ink-soft); max-width: 360px; margin-bottom: 30px; font-size: 0.97rem; }

.tabs-media {
  position: relative;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  min-height: 80vh;
  overflow: hidden;
  color: #f6f2e7;
}
.tabs-media .tab-panels { position: absolute; inset: 0; }
.tab-panel {
  position: absolute;
  inset: 0;
  padding: 110px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.tab-panel.active { opacity: 1; pointer-events: auto; }
.tab-panel h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 300; margin-bottom: 12px; max-width: 420px; }
.tab-panel p { max-width: 420px; color: rgba(246, 242, 231, 0.82); font-size: 0.95rem; }
.tab-panel ul { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.tab-panel ul li { font-size: 0.9rem; display: flex; gap: 10px; align-items: baseline; color: rgba(246,242,231,0.9); }
.tab-panel ul li::before { content: "✓"; color: var(--yellow); font-weight: 600; }

.seg-bar {
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  padding: 5px;
  border-radius: var(--r-pill);
  background: rgba(11, 35, 26, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(246, 242, 231, 0.14);
}
.seg-bar button {
  border: none;
  background: transparent;
  color: rgba(246, 242, 231, 0.8);
  padding: 10px 26px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}
.seg-bar button.active { background: var(--green-deep); color: #fff; }

/* ------------------------------------------------------------
   Yorum karoseli — ortadaki kart aktif (Cleo "internet has spoken")
   ------------------------------------------------------------ */
.quotes-head { padding: 140px 24px 26px; text-align: center; }
.car-nav { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.car-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(17, 48, 31, 0.22);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ease-out);
  box-shadow: 0 4px 12px rgba(11, 35, 26, 0.08);
}
.car-btn:hover { background: var(--green-deep); color: var(--yellow); transform: scale(1.08); }

.quotes-wrap { padding-bottom: 150px; }
.quotes-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px max(calc((100vw - 660px) / 2), 24px) 40px;
  scrollbar-width: none;
}
.quotes-track::-webkit-scrollbar { display: none; }

.quote-card {
  flex: 0 0 min(660px, 86vw);
  scroll-snap-align: center;
  background: var(--card);
  border-radius: 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  box-shadow: 0 18px 50px rgba(11, 35, 26, 0.10);
  transform: scale(0.93);
  opacity: 0.65;
  transition: transform 0.55s var(--ease-out), opacity 0.45s ease;
}
.quote-card.is-center { transform: scale(1); opacity: 1; }

.quote-portrait {
  border-radius: 20px;
  min-height: 250px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 25%, #2f6a48, #0e2c1d 75%);
}
.quote-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 239, 227, 0.28) 1.1px, transparent 1.3px);
  background-size: 7px 7px;            /* Cleo'nun noktalı (halftone) portre dokusu */
  mask-image: radial-gradient(circle at 50% 42%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 30%, transparent 72%);
}
.quote-portrait span {
  position: relative;
  font-weight: 300;
  font-size: 3rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
}
.quote-body { display: flex; flex-direction: column; justify-content: center; padding-right: 8px; }
.quote-body blockquote { font-size: 1.02rem; line-height: 1.5; font-weight: 400; }
.quote-body blockquote::before { content: ""; }
.quote-body blockquote::after { content: ""; }
.quote-src {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------
   Özellik karoseli — kenar kartları perspektifli (Cleo's Features)
   ------------------------------------------------------------ */
.features { padding: 60px 0 130px; overflow: hidden; }
.features .kicker { margin-left: max(calc((100vw - var(--container)) / 2 + 32px), 32px); margin-bottom: 30px; display: inline-flex; }
.features-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px max(calc((100vw - 480px) / 2), 24px) 40px;
  scrollbar-width: none;
  perspective: 1200px;
}
.features-track::-webkit-scrollbar { display: none; }
.feature-card {
  flex: 0 0 min(480px, 84vw);
  scroll-snap-align: center;
  border-radius: 26px;
  min-height: 480px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f6f2e7;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), opacity 0.4s ease;
  transform: rotateY(0deg) scale(0.97);
  opacity: 0.85;
}
.feature-card.tilt-l { transform: rotateY(10deg) scale(0.94); }
.feature-card.tilt-r { transform: rotateY(-10deg) scale(0.94); }
.feature-card.is-center { transform: none; opacity: 1; }
.feature-card .num {
  position: absolute;
  top: 28px; left: 30px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.feature-card .big-ico { font-size: 3.2rem; margin-bottom: auto; padding-top: 40px; }
.feature-card p { font-size: 0.95rem; color: rgba(246, 242, 231, 0.88); }
.feature-card p strong { color: #fff; font-weight: 600; }

/* ------------------------------------------------------------
   Video/duyuru kartları (Cleo "New features just dropped")
   ------------------------------------------------------------ */
.notice-head { padding: 130px 24px 60px; }
.notice-grid { padding: 0 var(--pad-band); margin-bottom: var(--pad-band); display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad-band); }
.notice-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 14px 40px rgba(11, 35, 26, 0.08);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.notice-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(11, 35, 26, 0.14); }
.notice-media {
  min-height: 320px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  color: var(--yellow);
}
.notice-meta { padding: 22px 26px 28px; text-align: center; }
.notice-meta h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 4px; }
.notice-meta p { font-size: 0.88rem; color: var(--ink-soft); }

/* ------------------------------------------------------------
   Haber hap kartları (Cleo in the news)
   ------------------------------------------------------------ */
.news-head { padding: 120px 24px 50px; text-align: center; }
.news-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px max(calc((100vw - 900px) / 2), 24px) 60px;
  scrollbar-width: none;
}
.news-track::-webkit-scrollbar { display: none; }
.news-pill {
  flex: 0 0 min(860px, 88vw);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: center;
  padding: 44px 56px;
  border-radius: 120px;
  background: linear-gradient(120deg, var(--card) 0%, var(--yellow-pale) 100%);
  box-shadow: 0 10px 34px rgba(11, 35, 26, 0.07);
  transition: transform 0.5s var(--ease-out);
}
.news-pill:nth-child(even) { background: linear-gradient(120deg, var(--card) 0%, #ddebd6 100%); }
.news-pill:hover { transform: translateY(-4px); }
.news-pill .date { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.news-pill h3 { font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 400; line-height: 1.3; }

/* ------------------------------------------------------------
   SSS — sohbet balonu akordeon (Cleo FAQs)
   ------------------------------------------------------------ */
.faq-section { padding: 60px var(--pad-band) 40px; }
.faq-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #efe9da 0%, #f4efe3 100%);
  border-radius: 56px;
  padding: clamp(36px, 6vw, 90px);
}
.faq-shell .h-section { margin-bottom: 46px; }
.faq-thread { max-width: 640px; }
.faq-item { margin-bottom: 16px; }
.faq-q {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: none;
  background: var(--card);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11, 35, 26, 0.08), inset 0 1px 0 #fff;
  transition: transform 0.35s var(--ease-out), box-shadow 0.3s ease;
}
.faq-q:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(11, 35, 26, 0.12), inset 0 1px 0 #fff; }
.faq-q .pm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: transform 0.4s var(--ease-out), background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--green-deep); color: var(--yellow); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-a-inner {
  margin-top: 12px;
  background: rgba(17, 48, 31, 0.07);
  border-radius: 22px 22px 22px 6px;
  padding: 20px 24px;
  font-size: 0.92rem;
  color: rgba(17, 48, 31, 0.85);
}

/* ------------------------------------------------------------
   CTA — başlık + butonlar + eğik kart (Cleo QR bölümü)
   ------------------------------------------------------------ */
.cta-final { padding: 130px 32px 150px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; max-width: var(--container); margin: 0 auto; }
.cta-final h2 { margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-card {
  width: 280px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 36px 80px rgba(11, 35, 26, 0.22);
  transform: rotate(7deg);
  transition: transform 0.6s var(--ease-out);
}
.cta-card:hover { transform: rotate(2deg) scale(1.03); }
.cta-card .cc-brand { font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.cta-card .cc-sub { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.55; margin-bottom: 20px; }
.cta-card .cc-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 9px 0; border-top: 1px solid rgba(17, 48, 31, 0.1); }
.cta-card .cc-row span:last-child { font-weight: 600; }
.cta-card .cc-foot { margin-top: 18px; background: var(--green-deep); color: var(--yellow); border-radius: 12px; text-align: center; font-size: 0.78rem; font-weight: 600; padding: 10px; }

/* ------------------------------------------------------------
   Footer — koyu yuvarlatılmış kart + alt bar (Cleo footer)
   ------------------------------------------------------------ */
.site-footer { padding: 0 var(--pad-band) 0; }
.footer-card {
  background: var(--green-deep);
  color: #efe9da;
  border-radius: 44px;
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
.footer-brand .brand-badge { display: inline-block; margin-bottom: 20px; background: rgba(244, 239, 227, 0.1); color: var(--yellow); box-shadow: inset 0 0 0 1px rgba(244, 239, 227, 0.18); }
.footer-brand .tagline { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 300; max-width: 320px; line-height: 1.3; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; align-content: start; }
.footer-col h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 16px; color: #fff; }
.footer-col a, .footer-col p { display: block; font-size: 0.88rem; color: rgba(239, 233, 218, 0.72); padding: 4px 0; line-height: 1.6; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 16px 26px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-social { display: flex; gap: 16px; font-size: 0.82rem; }
.footer-social a { opacity: 0.7; transition: opacity 0.25s ease; }
.footer-social a:hover { opacity: 1; }

/* ------------------------------------------------------------
   Alt sayfalar
   ------------------------------------------------------------ */
.page-hero {
  padding: 170px 32px 90px;
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero .kicker { color: var(--green-700); margin-bottom: 20px; }
.page-hero h1 { max-width: 760px; }
.page-hero p.lead { margin-top: 22px; max-width: 540px; color: var(--ink-soft); font-size: 1.02rem; }

/* hizmet kartları grid */
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 26px rgba(11, 35, 26, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(11, 35, 26, 0.12); }
.service-card .sc-ico {
  width: 50px; height: 50px;
  border-radius: 16px;
  background: var(--green-deep);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--ink-soft); flex: 1; }

/* ekip */
.team-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.team-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(11, 35, 26, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(11, 35, 26, 0.12); }
.team-avatar {
  width: 104px; height: 104px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--yellow);
  background: radial-gradient(circle at 32% 28%, #2f6a48, #0e2c1d 78%);
  position: relative;
  overflow: hidden;
}
.team-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 239, 227, 0.25) 1px, transparent 1.2px);
  background-size: 6px 6px;
}
.team-avatar span { position: relative; }
.team-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.team-avatar.has-photo::before { display: none; }
.team-card h3 { font-size: 1.08rem; font-weight: 500; margin-bottom: 6px; }
.team-card .role { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--bg); border-radius: var(--r-pill); padding: 6px 13px; margin-bottom: 14px; color: var(--ink-soft); }
.team-card p { font-size: 0.88rem; color: var(--ink-soft); }
/* kurucu avukat: üstte, tek ve büyük */
.team-founder {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 18px;
}
.team-founder .team-card {
  max-width: 460px;
  margin: 0 auto;
  padding: 52px 36px 44px;
}
.team-founder .team-avatar { width: 150px; height: 150px; font-size: 2.7rem; margin-bottom: 24px; }
.team-founder .team-card h3 { font-size: 1.4rem; }
.team-founder .team-card .role { font-size: 0.7rem; padding: 7px 16px; }

/* değerler */
.values-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card { background: var(--card); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: 0 8px 26px rgba(11, 35, 26, 0.06); }
.value-card .vc-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--yellow); display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 6px; }
.value-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* iletişim */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
  align-items: start;
}
.contact-info {
  background: var(--green-deep);
  color: #efe9da;
  border-radius: var(--r-xl);
  padding: 42px 36px;
  position: sticky;
  top: 100px;
}
.contact-info h3 { font-weight: 300; font-size: 1.6rem; margin-bottom: 24px; }
.ci-line { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(239, 233, 218, 0.14); }
.ci-line .ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px; background: var(--yellow); color: var(--green-deep); display: grid; place-items: center; }
.ci-line .lbl { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.6; }
.ci-line .val { font-size: 0.92rem; font-weight: 500; }

.contact-form { background: var(--card); border-radius: var(--r-xl); padding: 42px 36px; box-shadow: 0 14px 40px rgba(11, 35, 26, 0.08); }
.contact-form h3 { font-weight: 300; font-size: 1.6rem; margin-bottom: 6px; }
.contact-form .sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(17, 48, 31, 0.14);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(31, 82, 57, 0.12);
}
.form-note { font-size: 0.74rem; color: var(--ink-soft); margin-top: 12px; }

/* ------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .chat-bubble { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .split, .tabs-section { grid-template-columns: 1fr; }
  .split-copy { padding: 40px 24px 0; }
  .tabs-copy { padding: 0 24px 30px; }
  .tabs-media { border-radius: var(--r-xl); min-height: 70vh; }
  .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-links, .header-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .duo { grid-template-columns: 1fr; }
  .duo-card { min-height: 60vh; }
  .band-card { padding: 34px 26px; min-height: 76vh; }
  .notice-grid { grid-template-columns: 1fr; }
  .quote-card { grid-template-columns: 1fr; }
  .quote-portrait { min-height: 190px; }
  .cta-final { grid-template-columns: 1fr; justify-items: start; }
  .cta-card { transform: rotate(4deg); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .services-grid, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .news-pill { grid-template-columns: 1fr; padding: 34px 40px; border-radius: 48px; gap: 10px; }
  .seg-bar button { padding: 9px 16px; font-size: 0.8rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .service-slide { flex: 0 0 min(280px, 80vw); }
  .services-carousel { padding: 60px 0 50px; }
  .services-track { padding: 10px max(calc((100vw - 300px) / 2), 16px) 30px; }
}

/* ============================================================
   TEMA GEÇİŞİ — Yeşil/Sarı  ↔  Haki Yeşil + Bordo + Açık Gri
   ============================================================ */

/* Üstteki geçiş tuşu (header) */
.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: var(--r-pill);
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-switch:hover { opacity: 1; transform: translateY(-1px); }
.theme-switch .ts-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}
.theme-switch .ts-green { background: #1f5239; }
.theme-switch .ts-bordo { background: #8a1f2d; }
/* varsayılan (yeşil) tema: yeşil nokta halkalı */
.theme-switch .ts-green { box-shadow: 0 0 0 2px currentColor, inset 0 0 0 1px rgba(0, 0, 0, 0.18); }
.theme-bordo .theme-switch .ts-green { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18); }
.theme-bordo .theme-switch .ts-bordo { box-shadow: 0 0 0 2px currentColor, inset 0 0 0 1px rgba(0, 0, 0, 0.18); }

@media (max-width: 600px) {
  .theme-switch { padding: 5px 7px; gap: 5px; }
  .theme-switch .ts-dot { width: 11px; height: 11px; }
}

/* ---- Bordo paleti: kök değişkenleri ez ---- */
.theme-bordo {
  --bg: #ecebe9;            /* açık gri zemin */
  --bg-soft: #f4f3f1;
  --card: #fcfbfa;          /* açık gri-krem kart */
  --ink: #33121a;           /* koyu bordo metin */
  --ink-soft: rgba(51, 18, 26, 0.62);
  --green-deep: #3a0e16;    /* en koyu bordo (koyu zeminler) */
  --green-900: #4a121c;
  --green-800: #6a1c27;
  --green-700: #8a1f2d;
  --green-acc: #a8434f;
  --yellow: #8a1f2d;        /* bordo aksan (dolgu) */
  --yellow-soft: #a8434f;   /* yumuşak bordo (başlık 2. satır vurgusu) */
  --yellow-pale: #ecd9dc;   /* soluk bordo */
}

/* Sabit kodlanmış yeşil gradyanlar → bordo eşdeğerleri */
.theme-bordo .bg-forest { background: linear-gradient(168deg, #7c2836 0%, #6a1c27 38%, #3a0e16 100%); }
.theme-bordo .bg-pines  { background: linear-gradient(165deg, #8f2b3a 0%, #641a24 55%, #3a0e16 100%); }
.theme-bordo .bg-dusk   { background: linear-gradient(160deg, #6a1c27 0%, #3a0e16 55%, #26080d 100%); }
.theme-bordo .bg-sunlit { background: linear-gradient(150deg, #d9a1a8 0%, #b05561 35%, #8a1f2d 75%, #4f1620 100%); }
.theme-bordo .hero .b1 { background: #7c2331; }
.theme-bordo .hero .b2 { background: #4a121c; }
.theme-bordo .hero .b3 { background: rgba(231, 185, 191, 0.18); }
.theme-bordo .quote-portrait { background: radial-gradient(circle at 30% 25%, #8f2b3a, #3a0e16 75%); }
.theme-bordo .team-avatar { background: radial-gradient(circle at 32% 28%, #8f2b3a, #3a0e16 78%); }

/* Açık zeminli bordo dolgularda metni aydınlat */
.theme-bordo .btn-yellow {
  color: #fbf3f4;
  box-shadow: 0 1px 2px rgba(11, 35, 26, 0.12), 0 10px 24px rgba(138, 31, 45, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.theme-bordo .chat-bubble.me { color: #fbf3f4; }
.theme-bordo .ci-line .ico { color: #fbf3f4; }

/* Koyu yeşil zemindeki aksan metinlerini açık/nötr tona çek (kontrast için) */
.theme-bordo .cta-card .cc-foot,
.theme-bordo .service-card .sc-ico,
.theme-bordo .team-avatar,
.theme-bordo .quote-portrait span,
.theme-bordo .notice-media,
.theme-bordo .footer-brand .brand-badge { color: #efe4e0; }
.theme-bordo .footer-col a:hover { color: #e7b9bf; }
.theme-bordo .car-btn:hover { color: #efe4e0; }
.theme-bordo .faq-item.open .faq-q .pm { color: #efe4e0; }

/* Golden 'haze' kartı → bordo gradyan; .light metnini de aydınlat */
.theme-bordo .bg-haze { background: linear-gradient(165deg, #9a2738 0%, #76202c 55%, #4f1620 100%); }
/* Açık yeşil 'meadow' gradyanı → bordo gradyan */
.theme-bordo .bg-meadow { background: linear-gradient(155deg, #a8434f 0%, #8a1f2d 45%, #3f1119 100%); }
.theme-bordo .duo-card.bg-haze.light { color: #f6e9ea; }
.theme-bordo .duo-card.bg-haze.light p { color: rgba(246, 233, 234, 0.82); }

/* CTA bölümü alt cümlesi */
.cta-lead { max-width: 34ch; margin-top: 14px; color: var(--ink-soft); font-size: 1.02rem; }

/* ============================================================
   KÖŞELİ / SERT TASARIM — tüm radiuslar kaldırıldı
   ============================================================ */
:root { --r-xl: 0; --r-lg: 0; --r-md: 0; --r-pill: 0; }
*, *::before, *::after { border-radius: 0 !important; }
