/* =====================================================================
 * Otto — AI Yönetici Asistanı pillar sayfası
 * Katman AO · 2026.9
 * Prefix: .otto-* — sitewide yüklü, izole
 * Light-only (dark media query YASAK)
 * ===================================================================== */

:root {
  --ot-ink:        #0F1220;
  --ot-ink-2:      #363A55;
  --ot-mute:       #6B6F87;
  --ot-mist:       #F5F6FB;
  --ot-mist-2:     #ECEEF8;
  --ot-line:       rgba(15, 18, 32, 0.09);
  --ot-line-hi:    rgba(15, 18, 32, 0.14);
  --ot-primary:    #4B5EE8;
  --ot-primary-hi: #6E7FF3;
  --ot-primary-lo: #E6E9FE;
  --ot-accent:     #E8A24B;
  --ot-accent-hi:  #F4B968;
  --ot-glass:      rgba(255, 255, 255, 0.68);
  --ot-shadow-sm:  0 1px 2px rgba(15, 18, 32, 0.06), 0 2px 6px rgba(15, 18, 32, 0.04);
  --ot-shadow-md:  0 4px 14px rgba(15, 18, 32, 0.08), 0 12px 40px rgba(15, 18, 32, 0.06);
  --ot-shadow-lg:  0 8px 30px rgba(15, 18, 32, 0.10), 0 30px 60px rgba(75, 94, 232, 0.14);
  --ot-radius-sm:  10px;
  --ot-radius-md:  16px;
  --ot-radius-lg:  22px;
  --ot-radius-xl:  28px;
}

/* ============================ COMMON ============================ */
.otto-hero,
.otto-claim,
.otto-steps,
.otto-caps,
.otto-vs,
.otto-faq,
.otto-cta {
  padding: 88px 0;
}
@media (max-width: 780px) {
  .otto-hero,
  .otto-claim,
  .otto-steps,
  .otto-caps,
  .otto-vs,
  .otto-faq,
  .otto-cta {
    padding: 56px 0;
  }
}

.otto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--ot-primary-lo);
  color: var(--ot-primary);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(75, 94, 232, 0.14);
}
.otto-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--ot-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(75, 94, 232, 0.18);
  animation: otto-pulse 2s ease-in-out infinite;
}
@keyframes otto-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(75, 94, 232, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(75, 94, 232, 0.06); }
}

.otto-eyebrow {
  display: inline-block;
  color: var(--ot-primary);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.otto-accent {
  color: var(--ot-primary);
  font-style: normal;
  background: linear-gradient(135deg, var(--ot-primary) 0%, #7E63EE 60%, var(--ot-accent) 120%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.otto-sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.otto-sec-head__title {
  font-family: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--ot-ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.otto-sec-head__lead {
  font-size: 17px;
  color: var(--ot-mute);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

.otto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.otto-btn svg {
  width: 16px;
  height: 16px;
}
.otto-btn--primary {
  background: linear-gradient(135deg, var(--ot-primary) 0%, #6870F1 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(75, 94, 232, 0.34);
}
.otto-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(75, 94, 232, 0.42);
}
.otto-btn--ghost {
  background: #fff;
  color: var(--ot-ink);
  border-color: var(--ot-line-hi);
}
.otto-btn--ghost:hover {
  border-color: var(--ot-primary);
  color: var(--ot-primary);
}

/* ============================ HERO ============================ */
.otto-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FCFCFF 0%, var(--ot-mist) 100%);
}
.otto-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.otto-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.otto-hero__blob--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(75, 94, 232, 0.22) 0%, transparent 70%);
  top: -100px;
  left: -80px;
}
.otto-hero__blob--2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232, 162, 75, 0.18) 0%, transparent 70%);
  bottom: -160px;
  right: -120px;
}

.otto-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .otto-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.otto-hero__title {
  font-family: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--ot-ink);
  margin: 20px 0 20px;
  text-wrap: balance;
}
.otto-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ot-ink-2);
  margin: 0 0 32px;
  max-width: 560px;
  text-wrap: pretty;
}
.otto-hero__lead strong {
  color: var(--ot-ink);
  font-weight: 600;
}

.otto-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.otto-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--ot-mute);
  font-size: 13.5px;
  padding-top: 28px;
  border-top: 1px solid var(--ot-line);
}
.otto-hero__trust strong {
  color: var(--ot-ink);
  font-weight: 600;
}

/* ============================ PANEL MOCKUP ============================ */
.otto-hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.otto-panel {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: var(--ot-radius-xl);
  box-shadow: var(--ot-shadow-lg);
  border: 1px solid var(--ot-line);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.otto-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ot-primary), #7E63EE 50%, var(--ot-accent));
  border-radius: var(--ot-radius-xl) var(--ot-radius-xl) 0 0;
}

.otto-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--ot-line);
  margin-bottom: 16px;
}
.otto-panel__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.otto-panel__logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ot-primary) 0%, #7E63EE 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(75, 94, 232, 0.36);
}
.otto-panel__crumbs {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.otto-panel__crumbs-eyebrow {
  font-size: 10.5px;
  color: var(--ot-mute);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.otto-panel__crumbs strong {
  font-size: 14px;
  color: var(--ot-ink);
  font-weight: 600;
}
.otto-panel__score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}
.otto-panel__score-num {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ot-primary);
  letter-spacing: -0.02em;
}
.otto-panel__score-label {
  font-size: 10.5px;
  color: var(--ot-mute);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.otto-panel__log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}

.otto-msg {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 88%;
  animation: otto-msg-in 400ms ease both;
}
.otto-msg strong {
  font-weight: 600;
}
.otto-msg--ai {
  background: var(--ot-mist);
  color: var(--ot-ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  border: 1px solid var(--ot-line);
}
.otto-msg--me {
  background: linear-gradient(135deg, var(--ot-primary) 0%, #6E75EE 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
@keyframes otto-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.otto-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 0 12px;
  border-top: 1px dashed var(--ot-line);
  margin-top: 14px;
}
.otto-panel__chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ot-mist);
  color: var(--ot-ink-2);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--ot-line);
  cursor: default;
  transition: all 150ms;
}
.otto-panel__chip:hover {
  background: var(--ot-primary-lo);
  color: var(--ot-primary);
  border-color: rgba(75, 94, 232, 0.24);
}

.otto-panel__composer {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 8px 8px 14px;
  background: var(--ot-mist);
  border-radius: 999px;
  border: 1px solid var(--ot-line);
  margin-bottom: 10px;
}
.otto-panel__inp {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13.5px;
  color: var(--ot-ink);
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.otto-panel__inp::placeholder {
  color: var(--ot-mute);
}
.otto-panel__send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ot-primary), #7E63EE);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(75, 94, 232, 0.32);
}
.otto-panel__send svg {
  width: 14px;
  height: 14px;
}

.otto-panel__note {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ot-mute);
  text-align: center;
  padding: 4px 6px 0;
}
.otto-panel__note strong {
  color: var(--ot-ink-2);
  font-weight: 600;
}

/* ============================ RAKIPSIZ ============================ */
.otto-claim {
  background: #fff;
}
.otto-claim__card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F8F9FE 0%, #FEF9F1 100%);
  border: 1px solid var(--ot-line);
  border-radius: var(--ot-radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.otto-claim__card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 162, 75, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.otto-claim__eyebrow {
  margin-bottom: 12px;
}
.otto-claim__text {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.45;
  color: var(--ot-ink);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}
.otto-claim__text strong {
  color: var(--ot-primary);
  font-weight: 700;
}
.otto-claim__accent {
  display: block;
  margin-top: 14px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ot-mute);
  font-weight: 500;
}
@media (max-width: 640px) {
  .otto-claim__card { padding: 32px 22px; }
}

/* ============================ 3 ADIM ============================ */
.otto-steps {
  background: var(--ot-mist);
}
.otto-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .otto-steps__grid { grid-template-columns: 1fr; }
}
.otto-step {
  background: #fff;
  border: 1px solid var(--ot-line);
  border-radius: var(--ot-radius-md);
  padding: 28px 26px;
  position: relative;
  transition: transform 180ms, box-shadow 180ms;
}
.otto-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--ot-shadow-md);
}
.otto-step__num {
  display: inline-block;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ot-primary);
  background: var(--ot-primary-lo);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.otto-step h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ot-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.otto-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ot-mute);
  margin: 0;
}
.otto-step p em {
  font-style: normal;
  background: var(--ot-primary-lo);
  color: var(--ot-primary);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.otto-step strong { color: var(--ot-ink); font-weight: 600; }

/* ============================ 6 YETENEK ============================ */
.otto-caps {
  background: #fff;
}
.otto-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .otto-caps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .otto-caps__grid { grid-template-columns: 1fr; }
}

.otto-cap {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFF 100%);
  border: 1px solid var(--ot-line);
  border-radius: var(--ot-radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 180ms, box-shadow 180ms, border-color 180ms;
  position: relative;
}
.otto-cap:hover {
  transform: translateY(-3px);
  box-shadow: var(--ot-shadow-md);
  border-color: rgba(75, 94, 232, 0.20);
}
.otto-cap__ic {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}
.otto-cap h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ot-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.otto-cap p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ot-mute);
  margin: 0;
  flex: 1;
}
.otto-cap strong { color: var(--ot-ink); font-weight: 600; }
.otto-cap__egs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--ot-line);
}
.otto-cap__eg {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
  color: var(--ot-ink-2);
  background: var(--ot-mist);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--ot-line);
}
.otto-cap__eg--star {
  background: linear-gradient(135deg, var(--ot-primary-lo) 0%, #FEF3E1 100%);
  color: var(--ot-primary);
  font-weight: 600;
  border-color: rgba(75, 94, 232, 0.18);
}

/* Highlight card (Menümü mükemmelleştir) */
.otto-cap--hero {
  background: linear-gradient(135deg, #EEF0FE 0%, #FEF6E9 100%);
  border-color: rgba(75, 94, 232, 0.18);
  position: relative;
}
.otto-cap--hero::before {
  content: 'STAR';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ot-accent);
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(232, 162, 75, 0.28);
}

/* ============================ AURA vs OTTO ============================ */
.otto-vs {
  background: var(--ot-mist);
}
.otto-vs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 42px;
}
@media (max-width: 780px) {
  .otto-vs__grid { grid-template-columns: 1fr; }
}
.otto-vs__card {
  background: #fff;
  border: 1px solid var(--ot-line);
  border-radius: var(--ot-radius-lg);
  padding: 32px 30px;
  position: relative;
  transition: transform 180ms;
}
.otto-vs__card:hover { transform: translateY(-2px); }
.otto-vs__card--otto {
  border-top: 4px solid var(--ot-primary);
}
.otto-vs__card--aura {
  border-top: 4px solid #A855F7;
}
.otto-vs__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.otto-vs__card--otto .otto-vs__eyebrow {
  color: var(--ot-primary);
  background: var(--ot-primary-lo);
}
.otto-vs__card--aura .otto-vs__eyebrow {
  color: #A855F7;
  background: #F4EBFE;
}
.otto-vs__card h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ot-ink);
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.otto-vs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.otto-vs__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--ot-ink-2);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--ot-line);
}
.otto-vs__list li:last-child { border-bottom: none; }
.otto-vs__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.otto-vs__card--otto .otto-vs__list li::before { background: var(--ot-primary); }
.otto-vs__card--aura .otto-vs__list li::before { background: #A855F7; }
.otto-vs__who {
  display: block;
  padding: 12px 14px;
  background: var(--ot-mist);
  border-radius: var(--ot-radius-sm);
  font-size: 13.5px;
  color: var(--ot-mute);
  border: 1px solid var(--ot-line);
}
.otto-vs__who strong { color: var(--ot-ink); font-weight: 600; }
.otto-vs__link {
  display: inline-block;
  margin-top: 14px;
  color: #A855F7;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 150ms;
}
.otto-vs__link:hover { transform: translateX(3px); }

.otto-vs__team {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 26px 24px;
  background: #fff;
  border: 1px dashed var(--ot-line-hi);
  border-radius: var(--ot-radius-md);
}
.otto-vs__team-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ot-mute);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
}
.otto-vs__team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.otto-vs__team-chip {
  padding: 8px 16px;
  background: var(--ot-mist);
  color: var(--ot-ink-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--ot-line);
}
.otto-vs__team-chip--otto {
  background: var(--ot-primary-lo);
  color: var(--ot-primary);
  font-weight: 600;
  border-color: rgba(75, 94, 232, 0.20);
}
.otto-vs__team-chip--aura {
  background: #F4EBFE;
  color: #A855F7;
  font-weight: 600;
  border-color: rgba(168, 85, 247, 0.20);
}

/* ============================ FAQ ============================ */
.otto-faq {
  background: #fff;
}
.otto-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.otto-faq__item {
  border: 1px solid var(--ot-line);
  border-radius: var(--ot-radius-md);
  background: #fff;
  overflow: hidden;
  transition: border-color 180ms;
}
.otto-faq__item[open] {
  border-color: rgba(75, 94, 232, 0.25);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 100%);
}
.otto-faq__q {
  padding: 20px 24px;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ot-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 60px;
  letter-spacing: -0.005em;
}
.otto-faq__q::-webkit-details-marker { display: none; }
.otto-faq__q::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--ot-primary);
  font-weight: 400;
  transition: transform 180ms;
}
.otto-faq__item[open] .otto-faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}
.otto-faq__a {
  padding: 0 24px 22px;
  color: var(--ot-ink-2);
  font-size: 15.5px;
  line-height: 1.62;
}
.otto-faq__a b,
.otto-faq__a strong {
  color: var(--ot-ink);
  font-weight: 600;
}
.otto-faq__a em {
  font-style: normal;
  background: var(--ot-primary-lo);
  color: var(--ot-primary);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 14.5px;
  font-weight: 500;
}

/* ============================ FINAL CTA ============================ */
.otto-cta {
  background: linear-gradient(180deg, var(--ot-mist) 0%, #FEFCF8 100%);
}
.otto-cta__card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0F1220 0%, #1E2244 55%, #2E1F4E 100%);
  border-radius: var(--ot-radius-xl);
  box-shadow: var(--ot-shadow-lg);
  position: relative;
  overflow: hidden;
}
.otto-cta__card::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(75, 94, 232, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}
.otto-cta__card::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(232, 162, 75, 0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.otto-cta__title {
  position: relative;
  z-index: 1;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.otto-cta__card .otto-accent {
  background: linear-gradient(135deg, var(--ot-primary-hi) 0%, var(--ot-accent-hi) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.otto-cta__lead {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.otto-cta__row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.otto-cta__row .otto-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.otto-cta__row .otto-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
@media (max-width: 640px) {
  .otto-cta__card { padding: 44px 26px; }
}

/* =====================================================================
 * wa-caps — /whatsapp-asistani sayfasındaki yeni yetenek grid
 * Katman AO · 2026.9 — Otto ile aynı motor vurgusu
 * ===================================================================== */
.wa-caps {
  padding: 72px 0 56px;
}
.wa-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 44px auto 0;
}
@media (max-width: 980px) {
  .wa-caps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wa-caps__grid { grid-template-columns: 1fr; }
}

.wa-caps__card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFF 100%);
  border: 1px solid var(--ot-line, rgba(15, 18, 32, 0.09));
  border-radius: 20px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 180ms, box-shadow 180ms, border-color 180ms;
}
.wa-caps__card:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 94, 232, 0.20);
  box-shadow: 0 4px 14px rgba(15, 18, 32, 0.08), 0 12px 40px rgba(15, 18, 32, 0.06);
}
.wa-caps__ic {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 4px;
}
.wa-caps__card h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ot-ink, #0F1220);
  margin: 0;
  letter-spacing: -0.01em;
}
.wa-caps__card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ot-mute, #6B6F87);
  margin: 0;
  flex: 1;
}
.wa-caps__card strong {
  color: var(--ot-ink, #0F1220);
  font-weight: 600;
}
.wa-caps__egs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--ot-line, rgba(15, 18, 32, 0.09));
}
.wa-caps__eg {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
  color: var(--ot-ink-2, #363A55);
  background: var(--ot-mist, #F5F6FB);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--ot-line, rgba(15, 18, 32, 0.09));
}

.wa-caps__engine {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, #EEF0FE 0%, #FEF6E9 100%);
  border: 1px solid rgba(75, 94, 232, 0.16);
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.wa-caps__engine-body {
  flex: 1;
}
.wa-caps__engine-eyebrow {
  display: inline-block;
  color: #4B5EE8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wa-caps__engine-title {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--ot-ink, #0F1220);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.wa-caps__engine-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ot-ink-2, #363A55);
  margin: 0;
}
.wa-caps__engine-desc strong { color: var(--ot-ink, #0F1220); font-weight: 600; }
.wa-caps__engine-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4B5EE8, #6E7FF3);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(75, 94, 232, 0.32);
  transition: transform 180ms, box-shadow 180ms;
  flex-shrink: 0;
  white-space: nowrap;
}
.wa-caps__engine-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(75, 94, 232, 0.42);
}
.wa-caps__engine-cta svg { width: 14px; height: 14px; }
@media (max-width: 780px) {
  .wa-caps__engine {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .wa-caps__engine-cta { align-self: stretch; justify-content: center; }
}

/* =====================================================================
 * home-wa-hero__otto-link — Ana sayfa WhatsApp hero altında Otto teaser
 * Katman AO · 2026.9
 * ===================================================================== */
.home-wa-hero__otto-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, rgba(75, 94, 232, 0.08), rgba(232, 162, 75, 0.08));
  border: 1px solid rgba(75, 94, 232, 0.24);
  border-radius: 14px;
  text-decoration: none;
  color: #0F1220;
  transition: transform 180ms, box-shadow 180ms, border-color 180ms;
  max-width: 100%;
}
.home-wa-hero__otto-link:hover {
  transform: translateY(-1px);
  border-color: rgba(75, 94, 232, 0.44);
  box-shadow: 0 10px 28px rgba(75, 94, 232, 0.18);
}
.home-wa-hero__otto-badge {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #fff;
  background: linear-gradient(135deg, #4B5EE8, #E8A24B);
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.home-wa-hero__otto-copy {
  font-size: 14px;
  line-height: 1.4;
  color: #363A55;
}
.home-wa-hero__otto-copy strong {
  color: #0F1220;
  font-weight: 700;
  display: block;
  margin-bottom: 1px;
}
.home-wa-hero__otto-link svg {
  color: #4B5EE8;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .home-wa-hero__otto-link { padding: 10px 14px 10px 12px; gap: 10px; }
  .home-wa-hero__otto-copy { font-size: 13px; }
}

/* =====================================================================
 * creator-next__card--otto — /qr-menu-olustur import sonrası Otto vurgu
 * Grid 4 kolonu kaplayan hero kart
 * ===================================================================== */
.creator-next__card--otto {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0F1220 0%, #1E2244 55%, #2E1F4E 100%);
  color: #EAECFA;
  border-color: rgba(75, 94, 232, 0.35);
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 2.6vw, 2.2rem) clamp(1.6rem, 2.6vw, 2.4rem);
  box-shadow: 0 10px 30px rgba(15, 18, 32, 0.14);
}
.creator-next__card--otto::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(75, 94, 232, 0.32) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.creator-next__card--otto::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232, 162, 75, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.creator-next__card--otto:hover {
  border-color: rgba(75, 94, 232, 0.55);
  box-shadow: 0 20px 44px rgba(75, 94, 232, 0.28);
  transform: translateY(-3px);
}
.creator-next__card--otto h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem) !important;
  font-weight: 800 !important;
  color: #F5F6FB !important;
  letter-spacing: -0.015em;
  margin-bottom: 10px !important;
}
.creator-next__card--otto p {
  position: relative;
  z-index: 1;
  color: #B7BAD1 !important;
  font-size: 0.95rem !important;
  line-height: 1.6;
  max-width: 720px;
}
.creator-next__num--otto {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(135deg, #4B5EE8, #E8A24B);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.creator-next__cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  color: #6E7FF3;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 150ms;
}
.creator-next__card--otto:hover .creator-next__cta { transform: translateX(3px); }
