/* OtelAdisyon — oteladisyon.com marketing */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #073866;
  --navy-dark:  #052847;
  --navy-mid:   #0c5a9e;
  --navy-light: #1a6dad;
  --blue-50:    #EFF6FF;
  --blue-100:   #DBEAFE;
  --blue-200:   #BFDBFE;
  --accent:     #2563EB;
  --accent-h:   #1D4ED8;
  --slate-950:  #020617;
  --slate-900:  #0F172A;
  --slate-800:  #1E293B;
  --slate-700:  #334155;
  --slate-600:  #475569;
  --slate-500:  #64748B;
  --slate-400:  #94A3B8;
  --slate-300:  #CBD5E1;
  --slate-200:  #E2E8F0;
  --slate-100:  #F1F5F9;
  --slate-50:   #F8FAFC;
  --green:      #16A34A;
  --green-bg:   #DCFCE7;
  --orange:     #F97316;
  --orange-bg:  #FFEDD5;
  --white:      #FFFFFF;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --shadow: 0 4px 24px rgba(5, 40, 71, 0.08);
  --shadow-lg: 0 20px 50px rgba(5, 40, 71, 0.14);
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 10px 16px; background: var(--navy); color: white;
  font-weight: 700; border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.skip-link:focus { left: 16px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  padding: 12px 22px; border-radius: var(--r);
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 4px 14px rgba(37,99,235,.35); }
.btn-primary:hover { background: var(--accent-h); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent; color: var(--slate-700);
  border: 1.5px solid var(--slate-300);
}
.btn-outline:hover { border-color: var(--slate-500); background: var(--slate-50); }
.btn-ghost { background: transparent; color: var(--navy); padding: 12px 0; }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--slate-100); }
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
  padding: 4px 12px; border-radius: 100px;
}
.badge-blue { background: var(--blue-100); color: var(--navy); }
.badge-green { background: var(--green-bg); color: #15803D; }

.section-label {
  font-size: 12px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  color: var(--slate-900); line-height: 1.15; letter-spacing: -.6px;
}
.section-subtitle {
  font-size: 17px; color: var(--slate-500);
  margin-top: 14px; max-width: 580px; line-height: 1.65;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
section { scroll-margin-top: calc(var(--nav-h) + 12px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--slate-600);
  text-decoration: none; padding: 8px 12px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--navy); background: var(--blue-50); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: var(--r-sm);
  align-items: center; justify-content: center; color: var(--slate-700);
  font-size: 20px;
}
.mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 210;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; transition: opacity .25s;
}
.mobile-drawer.open { display: flex; opacity: 1; }
.mobile-panel {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 24px;
}
.mobile-panel a {
  font-size: 22px; font-weight: 700; color: var(--slate-800);
  text-decoration: none;
}
.mobile-panel a:hover { color: var(--navy); }
.mobile-panel .btn { margin-top: 8px; font-size: 16px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-toggle { flex-direction: column; gap: 5px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-700); border-radius: 2px; transition: all .2s;
}

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Hero (dark centered — bunungibi UX) ── */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  text-align: center; color: white;
  background: linear-gradient(160deg, #062d54 0%, var(--navy-dark) 45%, #0a1628 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb--1 {
  top: -15%; right: -8%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,.14) 0%, transparent 70%);
}
.hero-orb--2 {
  bottom: -25%; left: -6%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-badges {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 10px 18px; border-radius: 100px;
  font-size: 15px; font-weight: 700; backdrop-filter: blur(6px);
}
.hero-badge i { font-size: 14px; opacity: .9; }
.hero-title {
  font-size: clamp(32px, 5.5vw, 54px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 18px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #93C5FD 0%, #34D399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.7;
  margin: 0 auto 32px; max-width: 720px;
}
.hero-desc-em { color: rgba(255,255,255,.95); font-weight: 800; }
.hero-cta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; align-items: center;
}
.btn-hero {
  background: white; color: var(--navy);
  padding: 16px 32px; font-size: 17px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 28px;
  margin-top: 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55);
}
.trust-item i { color: #86EFAC; font-size: 14px; }

/* Glass mockup */
.hero-mockup {
  margin-top: 56px; max-width: 920px; margin-left: auto; margin-right: auto;
}
.mockup-frame {
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg);
  padding: 12px; backdrop-filter: blur(10px);
  box-shadow: 0 32px 64px rgba(0,0,0,.4);
}
.mockup-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: rgba(255,255,255,.06);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }
.mockup-url {
  margin-left: 10px; flex: 1; max-width: 280px;
  background: rgba(255,255,255,.08); border-radius: 6px;
  padding: 5px 14px; font-size: 12px; color: rgba(255,255,255,.5); text-align: left;
}
.mockup-body {
  background: #0f172a; border-radius: 0 0 var(--r-sm) var(--r-sm);
  padding: 20px; min-height: 300px;
  display: grid; grid-template-columns: 168px 1fr; gap: 14px; text-align: left;
}
.mockup-side { display: flex; flex-direction: column; gap: 4px; }
.mockup-side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.42);
}
.mockup-side-item i { width: 16px; text-align: center; font-size: 13px; }
.mockup-side-item.active {
  background: rgba(37,99,235,.22); color: #93C5FD;
}
.mockup-main { display: flex; flex-direction: column; gap: 12px; }
.mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mockup-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm); padding: 14px;
}
.mockup-stat label {
  font-size: 10px; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 4px;
}
.mockup-stat strong { font-size: 22px; font-weight: 800; color: white; }
.mockup-stat strong.green { color: #34D399; }
.mockup-stat strong.blue { color: #93C5FD; }
.mockup-chart {
  flex: 1; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06); border-radius: var(--r-sm);
  padding: 14px; display: flex; flex-direction: column;
}
.mockup-chart-title {
  font-size: 11px; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px;
}
.mockup-bars { display: flex; align-items: flex-end; gap: 6px; flex: 1; min-height: 100px; }
.mockup-bar {
  flex: 1; border-radius: 4px 4px 0 0; min-height: 16px;
}
.mockup-bar:nth-child(odd) { background: var(--accent); opacity: .75; }
.mockup-bar:nth-child(even) { background: #10B981; opacity: .55; }

/* Promise strip */
.promise-strip {
  padding: 56px 24px;
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
  border-bottom: 1px solid var(--slate-200);
}
.promise-head { text-align: center; margin-bottom: 32px; }
.promise-kicker {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.promise-title {
  font-size: clamp(24px, 4vw, 32px); font-weight: 900;
  color: var(--navy); letter-spacing: -.5px; line-height: 1.2;
}
.promise-grid {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px; max-width: 960px; margin: 0 auto;
}
.promise-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; background: white;
  border: 1px solid var(--slate-200); border-radius: var(--r-lg);
  font-size: 14px; font-weight: 600; color: var(--slate-700);
  line-height: 1.45; box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.promise-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: #FEF2F2; color: #DC2626;
  border-radius: 10px; font-size: 13px;
}
@media (max-width: 560px) {
  .promise-grid { grid-template-columns: 1fr; }
}
.promise-foot {
  text-align: center; margin: 32px auto 0; max-width: 640px;
  font-size: 15px; font-weight: 500; color: var(--slate-600);
  line-height: 1.7;
}
.promise-foot-icon {
  display: block; margin-bottom: 12px;
  font-size: 22px; color: var(--accent);
}
.promise-foot strong { color: var(--navy); font-weight: 800; }

@media (max-width: 768px) {
  .hero { padding-bottom: 56px; }
  .hero-desc { font-size: 16px; }
  .mockup-body { grid-template-columns: 1fr; min-height: auto; }
  .mockup-side { display: none; }
  .hero-mockup { margin-top: 40px; }
}
@media (max-width: 480px) {
  .mockup-stats { grid-template-columns: 1fr; }
}

/* ── Feature grid (bunungibi cards) ── */
/* ── Var / Yok ── */
.varyon { padding: 96px 0; background: var(--slate-50); }
.varyon-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
.varyon-col {
  border-radius: var(--r-lg); padding: 36px 32px;
  border: 1px solid var(--slate-200);
}
.varyon-col--var { background: white; }
.varyon-col--yok {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border-color: transparent; color: white;
  padding: 40px 36px;
}
.varyon-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 24px;
}
.varyon-col--var .varyon-head { color: var(--green); }
.varyon-col--yok .varyon-head {
  color: var(--blue-200);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.varyon-col--yok .varyon-head i { font-size: 18px; }
.varyon-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.varyon-col--yok ul { gap: 16px; }
.varyon-col--var ul li {
  font-size: 15px; font-weight: 600; color: var(--slate-700);
  padding-left: 22px; position: relative;
}
.varyon-col--var ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 900;
}
.varyon-col--yok ul li {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  padding-left: 28px;
  position: relative;
  line-height: 1.45;
}
.varyon-col--yok ul li::before {
  content: '✕'; position: absolute; left: 0;
  color: #FCA5A5; font-weight: 900;
  font-size: 17px;
  top: 2px;
}
.vy-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: var(--blue-100); color: var(--navy);
  padding: 2px 8px; border-radius: 100px; vertical-align: middle; margin-left: 6px;
}
@media (max-width: 700px) {
  .varyon-grid { grid-template-columns: 1fr; }
  .varyon-col--yok ul li { font-size: 17px; }
}

/* ── Stats ── */
.stats { padding: 56px 0; background: var(--navy-dark); color: white; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-num { font-size: clamp(32px, 4vw, 44px); font-weight: 900; letter-spacing: -1px; }
.stat-num span { font-size: .55em; font-weight: 700; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 6px; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Segments ── */
.segments { padding: 96px 0; }
.seg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.seg-card {
  padding: 28px 24px; border-radius: var(--r-lg);
  border: 1px solid var(--slate-200); background: white;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.seg-card:hover {
  border-color: var(--blue-200); box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.seg-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--blue-50); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.seg-card h3 { font-size: 17px; font-weight: 800; color: var(--slate-900); margin-bottom: 8px; }
.seg-card p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }
@media (max-width: 800px) { .seg-grid { grid-template-columns: 1fr; } }


/* ── Pricing ── */
.pricing { padding: 96px 0; }
.pricing-quick {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 720px; margin: 36px auto 0;
}
.pricing-quick-item {
  text-align: center; padding: 18px 14px;
  background: white; border: 1.5px solid var(--slate-200);
  border-radius: var(--r-lg);
}
.pricing-quick-item--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--blue-50), white);
  box-shadow: var(--shadow-md);
}
.pricing-quick-rooms {
  display: block; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--slate-500); margin-bottom: 6px;
}
.pricing-quick-price {
  font-size: 20px; font-weight: 900; color: var(--slate-900); line-height: 1.2;
}
.pricing-quick-price small {
  font-size: 13px; font-weight: 700; color: var(--slate-500);
}
.pricing-mode-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px; flex-wrap: wrap;
}
.pricing-mode-tab {
  padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid var(--slate-200); background: white;
  font-size: 14px; font-weight: 700; color: var(--slate-600);
  cursor: pointer; transition: all .15s;
}
.pricing-mode-tab:hover { border-color: var(--accent); color: var(--navy); }
.pricing-mode-tab.active {
  background: var(--navy); border-color: var(--navy); color: white;
}
.pricing-mode-panel { margin-top: 8px; }
.pricing-mode-panel[hidden] { display: none !important; }
.pricing-addon-bar {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-top: 28px; padding: 24px 28px;
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 55%, var(--blue-50) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--r-xl);
  max-width: 960px;
  margin-left: auto; margin-right: auto;
  box-shadow: 0 12px 32px rgba(7, 56, 102, .12);
}
.pricing-addon-bar-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: white;
  border-radius: 14px; font-size: 24px;
}
.pricing-addon-bar-body { flex: 1; min-width: 220px; }
.pricing-addon-bar-badge {
  display: inline-block; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--navy); background: white;
  border: 1px solid var(--accent);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 8px;
}
.pricing-addon-bar-title {
  display: block; font-size: 20px; font-weight: 900;
  color: var(--slate-900); line-height: 1.25; margin-bottom: 6px;
}
.pricing-addon-bar-desc {
  font-size: 14px; color: var(--slate-600); line-height: 1.5; margin: 0;
}
.pricing-addon-bar-side {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 12px; flex-shrink: 0;
}
.pricing-addon-bar-price {
  font-size: 32px; font-weight: 900; color: var(--navy);
  line-height: 1.15; letter-spacing: -1px;
  white-space: nowrap;
}
.pricing-addon-bar-price small {
  font-size: 16px; font-weight: 700; color: var(--slate-500); letter-spacing: 0;
}
.pricing-addon-bar-price .price-annual-hint {
  display: block;
  white-space: normal;
  margin: 4px 0 0;
  text-align: right;
}
.pricing-addon-bar-price .price-annual-hint[hidden] {
  display: none !important;
}
.pricing-addon-bar-cta {
  min-width: 180px; justify-content: center;
  font-size: 15px; padding: 14px 22px;
}
@media (max-width: 700px) {
  .pricing-addon-bar { padding: 20px; gap: 16px; }
  .pricing-addon-bar-side {
    width: 100%; align-items: stretch; text-align: center;
  }
  .pricing-addon-bar-price { font-size: 28px; }
  .pricing-addon-bar-price .price-annual-hint { text-align: center; }
  .pricing-addon-bar-cta { width: 100%; }
}
.price-card--simple .btn-block { margin-top: 20px; }
.price-package-note {
  font-size: 13px; font-weight: 800; color: var(--green);
  margin: 6px 0 10px; line-height: 1.35;
}
.price-tagline {
  font-size: 14px; color: var(--slate-600); margin: 0 0 16px; line-height: 1.45;
}
.price-feats--short { margin-bottom: 12px; }
.price-feats--short li { font-size: 14px; }
.price-details {
  margin-bottom: 4px; border-top: 1px solid var(--slate-100); padding-top: 10px;
}
.price-details summary {
  font-size: 13px; font-weight: 700; color: var(--accent);
  cursor: pointer; list-style: none; margin-bottom: 10px;
}
.price-details summary::-webkit-details-marker { display: none; }
.price-details summary::after { content: ' ▾'; font-size: 11px; }
.price-details[open] summary::after { content: ' ▴'; }
.price-details .price-feats { margin-bottom: 8px; }
.price-excludes {
  font-size: 12px; color: var(--slate-500); margin: 12px 0 0;
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.4;
}
.price-excludes i { color: var(--accent); margin-top: 2px; }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 32px; flex-wrap: wrap;
}
.pricing-toggle span { font-size: 14px; font-weight: 600; color: var(--slate-500); }
.pricing-toggle span.active { color: var(--slate-900); }
.toggle-switch {
  width: 52px; height: 28px; border-radius: 100px;
  background: var(--slate-300); border: none; cursor: pointer;
  position: relative; transition: background .2s;
}
.toggle-switch.on { background: var(--accent); }
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%; background: white;
  transition: transform .2s; box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.toggle-switch.on::after { transform: translateX(24px); }
.save-badge {
  font-size: 11px; font-weight: 800; color: #15803D;
  background: var(--green-bg); padding: 4px 10px; border-radius: 100px;
}
.price-grid {
  display: grid; gap: 22px;
  margin-top: 32px; align-items: start;
}
.price-grid--otel {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px; margin-left: auto; margin-right: auto;
}
.price-grid--addons {
  grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
  justify-content: center;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.price-grid--pos {
  grid-template-columns: minmax(260px, 380px);
  justify-content: center;
  margin-top: 24px;
}
.price-group-label {
  text-align: center; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--slate-400); margin-top: 40px;
}
.price-group-label:first-of-type { margin-top: 48px; }
.price-card {
  border: 1.5px solid var(--slate-200); border-radius: var(--r-xl);
  padding: 32px 26px; background: white; position: relative;
}
.price-card.featured {
  border-color: var(--accent); background: linear-gradient(180deg, var(--blue-50) 0%, white 120px);
  box-shadow: var(--shadow-lg);
}
.price-card .ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 100px;
}
.price-tier { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--slate-500); }
.price-rooms {
  font-size: 13px; font-weight: 700; color: var(--slate-700);
  margin-top: 6px;
}
.price-card.featured .price-tier { color: var(--accent); }
.price-amount {
  font-size: 44px; font-weight: 900; color: var(--slate-900);
  letter-spacing: -2px; margin: 10px 0 4px; line-height: 1.15;
  white-space: nowrap;
}
.price-amount--text { font-size: 28px; letter-spacing: -.5px; white-space: normal; }
.price-vat {
  font-size: 14px; font-weight: 800; color: var(--slate-500);
  letter-spacing: 0; white-space: nowrap;
  margin-left: 4px;
}
.price-annual-hint {
  display: block;
  font-size: 13px; font-weight: 700; color: var(--accent);
  margin: 0 0 6px; line-height: 1.3;
}
.price-annual-hint[hidden] {
  display: none !important;
}
.price-yearly-note {
  font-size: 12px; color: var(--green); font-weight: 600;
  margin: 0 0 8px; line-height: 1.4;
}
.price-yearly-note strong { font-weight: 800; }
.price-amount small { font-size: 16px; font-weight: 600; color: var(--slate-500); letter-spacing: 0; }
.price-desc { font-size: 13px; color: var(--slate-500); margin-bottom: 20px; line-height: 1.5; }
.price-hr { border: none; border-top: 1px solid var(--slate-200); margin: 18px 0; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-feats li {
  display: flex; gap: 10px; font-size: 13px; color: var(--slate-700); line-height: 1.45;
}
.price-feats i { color: var(--green); margin-top: 2px; flex-shrink: 0; font-size: 12px; }
.price-feats li.off { color: var(--slate-400); }
.price-feats li.off i { color: var(--slate-300); }
.price-note { text-align: center; font-size: 13px; color: var(--slate-400); margin-top: 24px; }
.price-feats li.addon-feat { color: var(--navy); font-weight: 600; }
.price-feats li.addon-feat i { color: var(--accent); }
.price-card--addon { border-style: dashed; }
.price-card--addon .price-amount { font-size: 36px; }
.price-card--addon .price-amount small.addon-plus {
  font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: 0;
}
@media (max-width: 900px) {
  .price-grid--otel { grid-template-columns: 1fr; }
  .pricing-quick { grid-template-columns: 1fr; max-width: 320px; }
}
@media (max-width: 860px) {
  .price-grid--otel,
  .price-grid--pos { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ── Testimonials ── */
.testimonials { padding: 0 0 96px; background: var(--slate-50); }
.channel-band {
  width: 100%;
  padding: 48px 0 40px;
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--nav-h) + 12px);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.channel-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}
.channel-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.channel-block {
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.testi-card {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--r-lg); padding: 26px;
}
.testi-stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-quote { font-size: 14px; color: var(--slate-700); line-height: 1.65; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-100); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.testi-name { font-size: 13px; font-weight: 800; }
.testi-role { font-size: 11px; color: var(--slate-400); }
.live-ref-head { margin-top: 0; }
.live-ref {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 28px; padding: 22px 28px;
  max-width: 420px; margin-left: auto; margin-right: auto;
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--r-xl); box-shadow: 0 4px 16px rgba(15,23,42,.06);
}
.live-ref-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; flex-shrink: 0;
}
.live-ref-name { font-size: 17px; font-weight: 800; color: var(--slate-900); }
.live-ref-loc { font-size: 14px; color: var(--slate-500); margin-top: 2px; }
.channel-block-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.channel-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue-200); margin-bottom: 10px;
}
.channel-block-title {
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 900; color: var(--white); margin: 0 0 8px;
}
.channel-block-sub {
  font-size: 15px; color: rgba(255, 255, 255, .82); line-height: 1.6; margin: 0;
}
.channel-grid {
  list-style: none; margin: 0 auto; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 12px; width: 100%; max-width: 100%;
}
.channel-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; min-height: 92px; padding: 14px 10px;
  flex: 0 0 calc(50% - 6px); width: calc(50% - 6px); max-width: 148px;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--r-lg); transition: border-color .2s, box-shadow .2s, transform .2s;
}
.channel-item--long {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.channel-item--long span { font-size: 10px; line-height: 1.35; max-width: 220px; }
.channel-item:hover {
  border-color: var(--blue-200);
  box-shadow: 0 6px 18px rgba(7,56,102,.08);
  transform: translateY(-2px);
}
.channel-item img {
  display: block; width: 40px; height: 40px; object-fit: contain;
}
.channel-item span {
  font-size: 11px; font-weight: 700; color: var(--slate-600); text-align: center; line-height: 1.3;
}
.channel-note {
  margin: 22px auto 0; max-width: 640px;
  text-align: center; font-size: 13px; color: rgba(255, 255, 255, .72);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.channel-note i { color: var(--blue-200); }
@media (max-width: 960px) {
  .channel-duo { grid-template-columns: 1fr; gap: 40px; }
  .channel-item { flex: 0 0 calc(33.333% - 8px); width: calc(33.333% - 8px); max-width: 148px; }
  .channel-item--long { flex: 0 0 calc(50% - 6px); width: calc(50% - 6px); max-width: 148px; }
}
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
  .channel-band { padding: 36px 0 28px; margin-bottom: 40px; }
  .channel-grid { max-width: 100%; gap: 10px; }
  .channel-item,
  .channel-item--long { flex: 0 0 calc(50% - 5px); width: calc(50% - 5px); max-width: none; min-height: 84px; padding: 12px 8px; }
}

/* ── Bu Kadar Kolay ── */
.easy-flow {
  padding: 96px 0;
  background: var(--white);
}
.easy-flow-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.easy-flow-story {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.easy-flow-story p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-600);
  margin: 0;
}
.easy-flow-story strong { color: var(--slate-800); }
.easy-flow-em { color: var(--green); }
.easy-flow-tagline {
  margin-top: 8px !important;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--navy) !important;
  font-size: 17px !important;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.easy-flow-tagline i { color: var(--green); font-size: 18px; }
.easy-flow-visual {
  display: flex;
  justify-content: center;
  padding: 8px;
  background: linear-gradient(145deg, var(--blue-50) 0%, #fff 45%, var(--slate-50) 100%);
  border-radius: var(--r-xl);
  border: 1px solid var(--blue-100);
}
.easy-flow-illustration {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  border-radius: calc(var(--r-xl) - 4px);
}
@media (max-width: 900px) {
  .easy-flow-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .easy-flow-visual { order: -1; }
  .easy-flow-illustration { max-width: 440px; }
}

/* ── Signup ── */
.signup {
  padding: 96px 0;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: white;
}
.signup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.signup .section-title { color: white; }
.signup .section-subtitle { color: rgba(255,255,255,.7); }
.signup-form {
  background: white; border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--shadow-lg);
}
.signup-form h3 { font-size: 18px; font-weight: 800; color: var(--slate-900); margin-bottom: 6px; }
.signup-form > p { font-size: 13px; color: var(--slate-500); margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--slate-600); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--slate-200);
  border-radius: var(--r-sm); font-family: inherit; font-size: 15px;
  color: var(--slate-800); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-note { font-size: 11px; color: var(--slate-400); margin-top: 12px; text-align: center; }
.signup-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.signup-perks span { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.signup-perks i { color: #86EFAC; }
.signup-contact {
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; gap: 12px;
}
.signup-contact p {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 0; font-size: 14px; color: rgba(255,255,255,.88); line-height: 1.55;
}
.signup-contact i {
  color: var(--blue-200); margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center;
}
.signup-contact a { color: #fff; font-weight: 700; text-decoration: none; }
.signup-contact a:hover { text-decoration: underline; }
@media (max-width: 860px) { .signup-grid { grid-template-columns: 1fr; } }

/* ── Footer ── */
.footer {
  background: var(--slate-950); color: var(--slate-400);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo img { height: 30px; filter: brightness(0) invert(1); opacity: .9; }
.footer-tag { font-size: 13px; margin-top: 14px; max-width: 240px; line-height: 1.65; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-size: 13px; color: var(--slate-400); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.footer-contact a:hover { color: white; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: var(--slate-500); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--slate-500); text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px;
}
.footer-bottom a { color: var(--slate-600); text-decoration: none; }
.footer-bottom a:hover { color: white; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Sticky mobile CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--slate-200); box-shadow: 0 -4px 20px rgba(5,40,71,.08);
}
.sticky-cta .btn { flex: 1; }
.sticky-cta-inner { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; }
@media (max-width: 640px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 185;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--accent));
  box-shadow: 0 8px 24px rgba(7, 56, 102, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, visibility .25s, transform .25s, box-shadow .2s;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  box-shadow: 0 12px 28px rgba(7, 56, 102, .36);
  transform: translateY(-2px);
}
.scroll-top.is-visible:hover { transform: translateY(-2px); }
.scroll-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.scroll-top i { font-size: 16px; }
@media (max-width: 640px) {
  .scroll-top {
    right: 16px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }
}
