/* ==========================================================
   OnxFlow Landing — Custom Styles
   Base: Tailwind (CDN) + these custom component styles
   ========================================================== */

:root {
  --brand-700: #1D4ED8;
  --brand-600: #2348E0;
  --brand-500: #3B66F0;
  --brand-200: #BCD1FD;
  --brand-100: #DBE6FE;
  --brand-50:  #EFF4FF;
  --ink-950: #05070F;
  --ink-900: #0A0D1C;
  --ink-800: #141729;
  --ink-700: #1E2238;
  --ink-500: #4A4F6A;
  --ink-400: #6F7593;
  --ink-300: #A9AEC4;
  --ink-200: #D6DAE8;
  --ink-100: #EBEDF5;
  --ink-50:  #F6F7FB;
  --emerald: #10B981;
  --amber: #F59E0B;
  --cyan: #06B6D4;
  --rose: #F43F5E;
}

html { scroll-behavior: smooth; }
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
body { font-family: 'Figtree', ui-sans-serif, system-ui, sans-serif; }

/* ===== Hero Background Mesh ===== */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%,  rgba(29,78,216,.10), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 30%, rgba(6,182,212,.08), transparent 60%),
    linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 60%);
}
.bg-grid {
  background-image:
    linear-gradient(to right, rgba(15,30,82,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,30,82,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 85%);
}
.bg-grid-dark {
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .625rem 1.125rem; border-radius: 10px;
  background: linear-gradient(180deg, #2348E0, #1A3DA8);
  color: #fff; font-weight: 700; font-family: 'Manrope', sans-serif;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 8px 24px -8px rgba(29,78,216,.55), 0 2px 6px -2px rgba(29,78,216,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.07); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 14px 32px -10px rgba(29,78,216,.65); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .625rem 1.125rem; border-radius: 10px;
  background: #fff; color: var(--ink-800);
  border: 1px solid var(--ink-200); font-weight: 700; font-family: 'Manrope', sans-serif;
  box-shadow: 0 1px 2px rgba(15,30,82,.05);
  transition: all .2s ease;
}
.btn-ghost:hover { border-color: var(--brand-200); color: var(--brand-700); transform: translateY(-1px); box-shadow: 0 4px 14px -6px rgba(29,78,216,.25); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.125rem; border-radius: 10px;
  background: #fff; color: var(--ink-800);
  border: 1.5px solid var(--ink-200); font-weight: 700; font-family: 'Manrope', sans-serif;
  transition: all .2s ease;
}
.btn-outline:hover { border-color: var(--brand-700); color: var(--brand-700); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.125rem; border-radius: 10px;
  background: #fff; color: var(--ink-900);
  font-weight: 700; font-family: 'Manrope', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  transition: all .2s ease;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -8px rgba(0,0,0,.25); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.125rem; border-radius: 10px;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.18); font-weight: 700; font-family: 'Manrope', sans-serif;
  backdrop-filter: blur(10px);
  transition: all .2s ease;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); }

.btn-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .6rem; border-radius: 7px;
  font-size: 11px; font-weight: 600; color: var(--ink-500);
  background: var(--ink-50); border: 1px solid var(--ink-100);
  transition: all .15s ease;
}
.btn-chip:hover { background: var(--ink-100); color: var(--ink-800); }

.btn-chip-primary {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .6rem; border-radius: 7px;
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--brand-700); border: 1px solid var(--brand-700);
}

/* ===== Mobile nav link ===== */
.mobile-link {
  padding: .75rem 1rem; border-radius: 10px;
  font-weight: 600; color: var(--ink-700);
  transition: all .15s ease;
}
.mobile-link:hover { background: var(--ink-50); color: var(--brand-700); }

/* ===== Navbar shadow on scroll ===== */
#navbar.scrolled { box-shadow: 0 4px 24px -8px rgba(15,30,82,.08); border-bottom-color: var(--ink-100); }

/* Dashboard image wrap — real OnxFlow screenshot embedded inside frame */
.dashboard-image-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.dashboard-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.dashboard-image-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

/* ===== Hero Right Visual: Akış Yığını ===== */
.flow-stack-stage {
  position: relative;
  width: 100%;
  height: 520px;
  perspective: 1400px;
}
.flow-stack-scene {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(-22deg) rotateZ(4deg);
  animation: flowStackFloat 8s ease-in-out infinite;
}
@keyframes flowStackFloat {
  0%, 100% { transform: rotateX(18deg) rotateY(-22deg) rotateZ(4deg) translateY(0); }
  50%      { transform: rotateX(16deg) rotateY(-20deg) rotateZ(3deg) translateY(-12px); }
}
.flow-stack-bg-plane {
  position: absolute;
  top: 80px; left: 80px;
  width: 260px; height: 320px;
  border-radius: 16px;
  background: linear-gradient(160deg, #EFF4FF, rgba(6,182,212,.08));
  border: 1px solid #DBE6FE;
  transform: translateZ(-80px);
  opacity: .6;
}
.flow-card {
  position: absolute;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--ink-100);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 20px 40px -15px rgba(15,30,82,.22),
    0 8px 16px -8px rgba(29,78,216,.15);
  transform-style: preserve-3d;
}
.flow-card-1 { top: 30px;  left: 40px;  transform: translateZ(120px); }
.flow-card-2 { top: 150px; left: 80px;  transform: translateZ(60px); }
.flow-card-3 { top: 270px; left: 120px; transform: translateZ(0px); }
.flow-card-active {
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 0 0 2px rgba(59,102,240,.3),
    0 24px 48px -12px rgba(29,78,216,.35),
    0 10px 20px -8px rgba(29,78,216,.25);
}

/* Dashed connector lines */
.flow-link {
  position: absolute;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--brand-500) 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flowLinkDash 1s linear infinite;
  transform-style: preserve-3d;
}
@keyframes flowLinkDash {
  to { background-position: 0 10px; }
}
.flow-link-1 { top: 115px; left: 180px; height: 40px; transform: translateZ(90px) rotateZ(5deg); }
.flow-link-2 { top: 235px; left: 220px; height: 40px; transform: translateZ(30px) rotateZ(5deg); }

/* Floating badges */
.flow-badge {
  position: absolute;
  display: flex; align-items: center; gap: .5rem;
  background: #fff;
  border-radius: 12px;
  padding: .6rem .8rem;
  border: 1px solid var(--ink-100);
  box-shadow: 0 12px 24px -10px rgba(15,30,82,.2);
  transform-style: preserve-3d;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.flow-badge-1 {
  top: 10px; right: 10px;
  transform: translateZ(180px);
  border-color: #A7F3D0;
  background: #ECFDF5;
  animation: flowBadge1 3.5s ease-in-out infinite;
}
.flow-badge-2 {
  bottom: 40px; right: 0;
  transform: translateZ(140px);
  animation: flowBadge2 4s ease-in-out infinite;
}
@keyframes flowBadge1 {
  0%, 100% { transform: translateZ(180px) translateY(0); }
  50%      { transform: translateZ(180px) translateY(-8px); }
}
@keyframes flowBadge2 {
  0%, 100% { transform: translateZ(140px) translateY(0); }
  50%      { transform: translateZ(140px) translateY(-10px); }
}

/* Mobile: disable 3D stuff for clean fallback */
@media (max-width: 1023px) {
  .flow-stack-stage { height: 480px; max-width: 100%; overflow: hidden; }
  .flow-stack-scene {
    transform: rotateX(12deg) rotateY(-14deg) rotateZ(2deg);
    animation: none;
  }
  .flow-card-1 { left: 20px; }
  .flow-card-2 { left: 50px; }
  .flow-card-3 { left: 80px; }
  .flow-badge-1, .flow-badge-2 { display: none; }
}
@media (max-width: 640px) {
  .flow-stack-stage { height: 440px; max-width: 100%; overflow: hidden; }
  .flow-card { width: 240px; padding: .85rem .95rem; }
  .flow-card-1 { top: 20px; left: 0; }
  .flow-card-2 { top: 130px; left: 25px; }
  .flow-card-3 { top: 240px; left: 50px; }
}

/* Mobil: floating cards (hero dashboard yanındaki) ve overflow yapan tüm elementleri sınırla */
@media (max-width: 1023px) {
  .floating-card-1, .floating-card-2 { display: none !important; }
  .dashboard-frame { transform: none; }
  /* Dekoratif blob'lar mobilde dışarı taşmasın */
  section .absolute[class*="bg-brand-200"],
  section .absolute[class*="bg-accent-cyan"],
  section .absolute[class*="bg-brand-500"] {
    max-width: 100vw;
  }
}

/* ===== Hero Dashboard Frame ===== */
.dashboard-frame {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--ink-100);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 40px 80px -30px rgba(15,30,82,.25),
    0 10px 30px -10px rgba(29,78,216,.15);
  overflow: hidden;
  transform: perspective(1200px) rotateX(2deg);
  transition: transform .6s ease;
}
.dashboard-frame:hover { transform: perspective(1200px) rotateX(0deg); }

/* Sidebar items */
.sidebar-item {
  display: flex; align-items: center; gap: .55rem;
  padding: .45rem .6rem; border-radius: 7px;
  font-size: 12px; font-weight: 600; color: var(--ink-500);
  text-align: left; transition: all .15s ease;
}
.sidebar-item:hover { background: var(--ink-100); color: var(--ink-800); }
.sidebar-item.active {
  background: var(--brand-100); color: var(--brand-700);
}

/* Avatars */
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  border: 2px solid #fff;
}
.avatar-sm {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
}

/* Kanban */
.kanban-col {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  padding: .6rem;
  min-height: 240px;
}
.kanban-col-header {
  display: flex; align-items: center; gap: .4rem;
  font-size: 11px; font-weight: 700; color: var(--ink-600);
  text-transform: uppercase; letter-spacing: .04em;
  padding: 0 .25rem .55rem;
}
.kanban-col-header .dot {
  width: 7px; height: 7px; border-radius: 50%; display: inline-block;
}
.kanban-col-header .count {
  margin-left: auto; background: var(--ink-100); color: var(--ink-500);
  padding: 1px 6px; border-radius: 999px; font-size: 10px; letter-spacing: 0;
}

.task-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 8px;
  padding: .55rem .6rem;
  margin-bottom: .45rem;
  box-shadow: 0 1px 2px rgba(15,30,82,.05);
  cursor: grab;
  transition: transform .2s ease, box-shadow .2s ease;
}
.task-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(15,30,82,.20); }

.tag {
  display: inline-flex; align-items: center; gap: .2rem;
  padding: 1px 6px; border-radius: 5px;
  font-size: 9px; font-weight: 700; letter-spacing: .04em;
}
.tag-brand   { background: var(--brand-100); color: var(--brand-700); }
.tag-amber   { background: #FEF3C7; color: #B45309; }
.tag-rose    { background: #FFE4E6; color: #BE123C; }
.tag-emerald { background: #D1FAE5; color: #065F46; }
.tag-gray    { background: var(--ink-100); color: var(--ink-500); }

/* Floating notification cards */
.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: .75rem;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: .75rem 1rem;
  box-shadow: 0 12px 32px -10px rgba(15,30,82,.25);
  animation: floatY 4s ease-in-out infinite;
}
.floating-card-1 { top: 12%; right: -20px; animation-delay: 0s; }
.floating-card-2 { bottom: 10%; left: -20px; animation-delay: 1.2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-1 { animation: floatY 5s ease-in-out infinite; }
.float-2 { animation: floatY 5s ease-in-out infinite 1s; }
.float-3 { animation: floatY 5s ease-in-out infinite 2s; }

/* Shimmer animation */
@keyframes shimmer {
  0%  { transform: translateX(-100%); }
  100%{ transform: translateX(100%);  }
}

/* ===== Section headings ===== */
.section-kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  color: var(--brand-700); text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 999px;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 42rem;
}

/* ===== Feature cards ===== */
.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all .35s ease;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 140px at 0% 0%, rgba(29,78,216,.08), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-200);
  box-shadow: 0 20px 40px -20px rgba(29,78,216,.25), 0 8px 16px -8px rgba(15,30,82,.12);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform .3s ease;
}
.feature-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  color: var(--ink-900);
  margin-bottom: .5rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: .95rem; color: var(--ink-500); line-height: 1.6;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1rem; }
.pill {
  font-size: 10px; font-weight: 700; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--ink-50); color: var(--ink-500);
  border: 1px solid var(--ink-100);
}

.mini-feature {
  display: flex; align-items: center; gap: .75rem;
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  transition: all .25s ease;
}
.mini-feature:hover { border-color: var(--brand-200); box-shadow: 0 8px 20px -10px rgba(29,78,216,.2); }

/* ===== Step cards ===== */
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all .3s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(29,78,216,.2); }
.step-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 3.25rem;
  background: linear-gradient(180deg, var(--brand-700), var(--brand-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; line-height: 1;
  letter-spacing: -0.04em;
}
.step-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.step-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.25rem;
  color: var(--ink-900);
  margin-top: .75rem; margin-bottom: .5rem;
}
.step-desc { font-size: .95rem; color: var(--ink-500); line-height: 1.55; }
.step-list {
  margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem;
}
.step-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; color: var(--ink-700); font-weight: 600;
}

/* ===== Automation card ===== */
.automation-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px -24px rgba(15,30,82,.2);
  position: relative;
}
.auto-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem .9rem;
  border-radius: 10px;
  border: 1px solid var(--ink-100);
  background: #fff;
  transition: all .2s ease;
}
.auto-row:hover { border-color: var(--brand-200); background: var(--brand-50); }
.auto-row-trigger { border-color: var(--brand-200); background: var(--brand-50); }
.auto-badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  padding: 2px 8px; border-radius: 5px;
  background: var(--brand-700); color: #fff;
}
.auto-badge-and { background: var(--amber); }
.auto-badge-do { background: var(--emerald); }

/* ===== Report card ===== */
.report-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px -24px rgba(15,30,82,.2);
}
.chip-tab {
  font-size: 10px; font-weight: 700;
  padding: 4px 9px; border-radius: 6px;
  color: var(--ink-500);
  background: transparent;
  transition: all .15s ease;
}
.chip-tab:hover { background: var(--ink-100); }
.chip-tab.active { background: var(--ink-900); color: #fff; }

.chart-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawLine 2s ease forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* ===== Notification Event Categories ===== */
.event-category {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  transition: all .3s ease;
}
.event-category:hover {
  transform: translateY(-3px);
  border-color: var(--brand-200);
  box-shadow: 0 20px 40px -20px rgba(29,78,216,.2);
}
.event-cat-header {
  display: flex; align-items: center; gap: .75rem;
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px dashed var(--ink-100);
}
.event-list {
  display: flex; flex-direction: column; gap: .65rem;
}
.event-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: var(--ink-700);
  line-height: 1.4;
}
.prio {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  padding: 2px 6px; border-radius: 4px;
  min-width: 54px;
}
.prio-high { background: #FEE2E2; color: #B91C1C; }
.prio-mid  { background: #FEF3C7; color: #B45309; }
.prio-low  { background: var(--ink-100); color: var(--ink-500); }

.channel-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .8rem; font-weight: 600; color: var(--ink-700);
  box-shadow: 0 1px 2px rgba(15,30,82,.04);
}

/* ===== PWA devices showcase ===== */
.device-frame {
  position: relative;
  background: linear-gradient(165deg, #0F1E52, #05070F);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 30px 60px -25px rgba(15,30,82,.45);
}
.device-phone {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: .75rem;
  aspect-ratio: 9 / 16;
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
}

/* ===== Pricing ===== */
.billing-btn {
  padding: .5rem 1.25rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700;
  color: var(--ink-500); font-family: 'Manrope', sans-serif;
  transition: all .2s ease;
}
.billing-btn.active { background: #fff; color: var(--ink-900); box-shadow: 0 1px 2px rgba(15,30,82,.1); }

.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: 18px; padding: 2rem 1.75rem;
  transition: all .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(29,78,216,.15); }

.price-card-featured {
  background: linear-gradient(165deg, #1A3DA8 0%, #0A0D1C 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 30px 60px -25px rgba(29,78,216,.45), 0 10px 20px -10px rgba(15,30,82,.25);
  transform: scale(1.03);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #06B6D4, #3B66F0);
  color: #fff;
  padding: 4px 12px; border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  box-shadow: 0 8px 20px -6px rgba(6,182,212,.5);
}

.price-list { display: flex; flex-direction: column; gap: .6rem; }
.price-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .92rem; color: var(--ink-700);
}
.price-list-dark li { color: #C7D2FE; }

/* ===== Testimonials ===== */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all .3s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(15,30,82,.12); }

/* ===== FAQ ===== */
.faq-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  overflow: hidden;
  transition: all .2s ease;
}
.faq-item[open] { border-color: var(--brand-200); box-shadow: 0 10px 24px -12px rgba(29,78,216,.2); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--ink-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--ink-400); transition: transform .3s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--brand-700); }
.faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-500); line-height: 1.65; font-size: .95rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(165deg, #0F1E52 0%, #0A0D1C 100%);
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: 0 40px 80px -40px rgba(15,30,82,.5);
}
@media (min-width: 1024px) {
  .cta-banner { padding: 4.5rem 3.5rem; }
}

.mock-login {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.mock-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .9rem;
  color: #C7D2FE;
}

/* Real form inputs (CTA contact form) */
.cf-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .9rem;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  transition: all .2s ease;
}
.cf-input::placeholder {
  color: rgba(199,210,254,.5);
}
.cf-input:focus {
  outline: none;
  border-color: rgba(188,209,253,.6);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(59,102,240,.18);
}
.cf-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

/* ===== Footer ===== */
.footer-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  color: #fff; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-list a {
  font-size: .9rem; color: var(--ink-400);
  transition: color .15s ease;
}
.footer-list a:hover { color: #fff; }

.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  color: var(--ink-400); transition: all .2s ease;
}
.social-link:hover { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }

/* ===== Back to top ===== */
.to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -8px rgba(15,30,82,.35);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all .3s ease;
}
.to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--brand-700); transform: translateY(-3px); }

/* Mobil cihazlarda yukarı çık butonunu gizle */
@media (max-width: 768px) {
  .to-top { display: none !important; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .dashboard-frame { transform: none !important; }
}

/* ===== Mobile tweaks ===== */
@media (max-width: 768px) {
  .dashboard-frame { transform: none; }
  .floating-card-1, .floating-card-2 { display: none; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
}

/* ===== Text selection =====*/
::selection { background: var(--brand-700); color: #fff; }

/* ===== Smooth anchor offset for sticky navbar ===== */
section[id] { scroll-margin-top: 90px; }
