/* ============================================================
   RANDEVU SAATI — Premium SaaS Landing Page Styles
   ============================================================ */

:root {
  color-scheme: light;

  /* Colors */
  --ink: #142236;
  --ink-strong: #071421;
  --muted: #657486;
  --muted-strong: #3e4f62;
  --surface: #ffffff;
  --surface-soft: #f7fbf9;
  --surface-mist: #edf7f3;
  --line: #dce9e4;
  --line-strong: #bcd8cf;
  --mint: #8fcfc1;
  --mint-strong: #2d7b70;
  --mint-dark: #1d5d55;
  --blue: #1477f2;
  --red: #ff4266;
  --green: #18ad79;
  --orange: #ff8a1f;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Text sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.08rem;
  --text-xl: 1.22rem;
  --text-2xl: clamp(1.6rem, 2.4vw, 2rem);
  --text-3xl: clamp(2rem, 3vw, 2.72rem);
  --text-4xl: clamp(2.2rem, 3.2vw, 3rem);

  /* Radius & Shadows */
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 20, 33, 0.13);
  --soft-shadow: 0 14px 34px rgba(7, 20, 33, 0.08);

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 420ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout */
  --header-height: 74px;
}

/* ============================================================
   Reset & Base
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfdfb 0%, #ffffff 38%, #f6fbf8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.is-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

/* ============================================================
   Keyframe Animations
   ============================================================ */

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes reveal-down {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes bar-rise {
  from {
    transform: scaleY(0.08);
  }

  to {
    transform: scaleY(1);
  }
}

/* ============================================================
   Skip Link
   ============================================================ */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 90;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink-strong);
  font-weight: 850;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ============================================================
   Site Header
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(220, 233, 228, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  animation: reveal-down 520ms ease both;
  transition: border-bottom-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(188, 216, 207, 0.6);
  box-shadow: 0 4px 24px rgba(7, 20, 33, 0.06);
}

/* ============================================================
   Flex Containers (shared)
   ============================================================ */

.brand-mark,
.nav-links,
.header-actions,
.hero-actions,
.hero-assurance,
.hero-proof,
.billing-toggle,
.pricing-assurance,
.final-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

/* ============================================================
   Brand Mark
   ============================================================ */

.brand-mark {
  gap: 10px;
  min-width: max-content;
  color: var(--ink-strong);
  font-weight: 950;
  text-decoration: none;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
}

/* ============================================================
   Nav Links
   ============================================================ */

.nav-links {
  justify-content: center;
  gap: 2px;
  color: #34475b;
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-links a,
.header-action,
.primary-action,
.secondary-action,
.plan-action {
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.nav-links a {
  padding: 10px 12px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--mint-dark);
  background: var(--surface-mist);
  outline: none;
}

.nav-links a.is-active {
  color: var(--mint-dark);
  background: var(--surface-mist);
}

/* ============================================================
   Header Actions
   ============================================================ */

.header-actions {
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-strong);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-action,
.primary-action {
  color: #fff;
  background: var(--ink-strong);
  box-shadow: 0 12px 26px rgba(7, 20, 33, 0.16);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 14px;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff6970 0%, #ff525d 100%);
  box-shadow: 0 14px 28px rgba(255, 82, 93, 0.2);
}

.header-action:hover,
.header-action:focus-visible,
.primary-action:hover,
.primary-action:focus-visible {
  background: var(--mint-dark);
  outline: none;
}

.header-action:hover,
.header-action:focus-visible {
  background: linear-gradient(135deg, #ff5864 0%, #ed4050 100%);
}

/* ============================================================
   WhatsApp Float
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 58;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 13px;
  border-radius: 999px;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 18px 42px rgba(7, 20, 33, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.72) inset;
  font-weight: 950;
  text-decoration: none;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  animation: reveal-up 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 420ms both;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-float span {
  font-size: 0.94rem;
  line-height: 1;
  white-space: nowrap;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #16a34a;
  outline: none;
  transform: translateY(-2px);
}

.whatsapp-float[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

@supports (bottom: max(0px)) {
  .whatsapp-float {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero,
.section-inner {
  width: min(1272px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 646px;
  display: grid;
  grid-template-columns: minmax(440px, 480px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: calc(var(--header-height) + 6px) 0 16px;
}

.hero::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  content: "";
  background:
    radial-gradient(ellipse 34% 62% at 61% 58%, rgba(143, 207, 193, 0.2) 0%, rgba(143, 207, 193, 0.1) 47%, rgba(143, 207, 193, 0) 72%),
    radial-gradient(circle at 75% 24%, rgba(255, 164, 143, 0) 0 132px, rgba(255, 164, 143, 0.12) 133px 137px, rgba(255, 164, 143, 0) 138px),
    radial-gradient(ellipse 11% 34% at 101% 69%, rgba(122, 159, 80, 0.13) 0%, rgba(122, 159, 80, 0.05) 58%, rgba(122, 159, 80, 0) 70%),
    #fff;
}

.hero::after {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  content: "";
  background:
    radial-gradient(ellipse 9% 24% at 99% 50%, rgba(101, 145, 58, 0.1) 0%, rgba(101, 145, 58, 0) 72%),
    radial-gradient(ellipse 8% 20% at 96% 86%, rgba(139, 174, 91, 0.1) 0%, rgba(139, 174, 91, 0) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, #fbfdfb 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.compact-head h2,
.section-heading h2,
.panel-copy h2,
.final-layout h2,
.modal-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 480px;
  font-size: clamp(2.55rem, 3vw, 3rem);
  line-height: 1.08;
}

.hero-lead,
.compact-head p,
.section-heading p:not(.eyebrow),
.panel-copy p,
.value-row p,
.flow-steps p,
.plan-copy,
.pricing-card li,
.final-layout p,
.site-footer p,
.setup-steps small,
.faq-list p {
  color: var(--muted);
}

.hero-lead {
  max-width: 470px;
  margin: 20px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.hero-actions .primary-action {
  min-height: 44px;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #ff6970 0%, #ff525d 100%);
  box-shadow: 0 14px 26px rgba(255, 82, 93, 0.18);
}

.hero-actions .primary-action:hover,
.hero-actions .primary-action:focus-visible {
  background: linear-gradient(135deg, #ff5864 0%, #ed4050 100%);
}

.primary-action.light {
  color: var(--ink-strong);
  background: #fff;
}

.secondary-action {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: var(--mint-strong);
  color: var(--mint-dark);
  outline: none;
}

.secondary-action.inverted {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.hero-actions .secondary-action {
  min-height: 44px;
  min-width: 164px;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 14px;
  border-color: rgba(143, 207, 193, 0.76);
  color: var(--ink-strong);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(7, 20, 33, 0.04);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--mint-dark);
}

.hero-assurance {
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 18px 0 0;
  padding: 0;
  color: #4f5d6a;
  font-size: 0.78rem;
  font-weight: 850;
  list-style: none;
}

.hero-assurance li {
  position: relative;
  padding-left: 21px;
  line-height: 1.3;
}

.hero-assurance li::before,
.hero-assurance li::after {
  position: absolute;
  content: "";
}

.hero-assurance li::before {
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(45, 123, 112, 0.58);
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
}

.hero-assurance li::after {
  left: 5px;
  top: 50%;
  width: 4px;
  height: 7px;
  border-right: 1.7px solid var(--mint-strong);
  border-bottom: 1.7px solid var(--mint-strong);
  transform: translateY(-62%) rotate(45deg);
}

/* Hero Proof Stats */

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-proof article {
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(219, 229, 226, 0.92);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(7, 20, 33, 0.05);
}

.hero-proof img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-proof strong {
  color: var(--ink-strong);
  font-size: 0.74rem;
  line-height: 1.22;
}

.hero-proof strong span {
  display: block;
  margin-top: 2px;
  color: inherit;
  font-size: inherit;
}

/* Hero Entry Animations (subtler) */

.hero-copy .eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.hero-proof,
.hero-product {
  animation: reveal-up 580ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  animation-delay: 70ms;
}

.hero-lead {
  animation-delay: 140ms;
}

.hero-actions {
  animation-delay: 210ms;
}

.hero-proof {
  animation-delay: 280ms;
}

.hero-product {
  animation-delay: 180ms;
}

/* ============================================================
   Hero Product Scene
   ============================================================ */

.hero-product {
  position: relative;
  isolation: isolate;
  min-height: 550px;
  overflow: visible;
}

.hero-product::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 0;
  width: min(430px, 61%);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12) 45%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(135deg, rgba(143, 207, 193, 0.36), rgba(237, 247, 243, 0.16));
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: 44px 8px 70px 178px;
  z-index: 1;
  border: 1px dashed rgba(143, 207, 193, 0.48);
  border-radius: 50%;
  pointer-events: none;
}

.product-phone {
  position: absolute;
  left: 72px;
  top: 50%;
  z-index: 5;
  width: min(270px, 42%);
  max-width: 276px;
  transform: translateY(-50%);
  filter: drop-shadow(0 26px 42px rgba(7, 20, 33, 0.18));
}

.product-phone img {
  width: 100%;
  height: auto;
}

/* ============================================================
   Hero Floating Cards
   ============================================================ */

.hero-float-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(188, 216, 207, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(7, 20, 33, 0.12);
  backdrop-filter: blur(18px);
}

.stat-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 16px;
}

.stat-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.stat-card span,
.appointment-card span,
.timeline-card-head span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.stat-card strong,
.appointment-card strong,
.timeline-card-head strong {
  display: block;
  color: var(--ink-strong);
}

.stat-card strong {
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card small,
.appointment-card small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.stat-card > i {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint-dark);
  background: rgba(143, 207, 193, 0.28);
  font-style: normal;
  font-weight: 950;
}

.stat-today {
  left: 356px;
  top: 42px;
  width: 170px;
  min-height: 154px;
  background: rgba(237, 247, 243, 0.82);
}

.stat-revenue {
  right: -18px;
  top: 112px;
  width: 220px;
  min-height: 134px;
  border-color: rgba(255, 168, 133, 0.34);
  background: rgba(255, 246, 242, 0.88);
}

.stat-revenue > i {
  color: #ff6f5e;
  background: rgba(255, 111, 94, 0.12);
}

.appointment-card {
  left: 386px;
  top: 220px;
  width: 238px;
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 9px;
  gap: 13px;
  align-items: start;
  padding: 17px 18px;
}

.appointment-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.appointment-card strong {
  margin-top: 4px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.appointment-card em {
  margin-left: 6px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
}

.appointment-card > i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--mint-strong);
}

.timeline-card {
  left: 386px;
  bottom: 0;
  width: 328px;
  min-width: 0;
  padding: 16px 18px 18px;
}

.timeline-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.timeline-card-head span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 12px;
  margin-top: 14px;
}

.timeline-grid time {
  min-height: 30px;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 850;
}

.timeline-grid div {
  min-height: 30px;
  border-top: 1px solid rgba(188, 216, 207, 0.44);
  background-image: linear-gradient(90deg, rgba(188, 216, 207, 0.28) 1px, transparent 1px);
  background-size: 34px 100%;
}

.timeline-grid .bar {
  display: block;
  height: 22px;
  margin-top: 4px;
  padding: 3px 10px;
  overflow: hidden;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bar-green {
  width: 76%;
  margin-left: 9%;
  color: #24715d;
  background: rgba(143, 207, 143, 0.28);
}

.bar-purple {
  width: 72%;
  margin-left: 22%;
  color: #7e55c7;
  background: rgba(169, 128, 232, 0.28);
}

.bar-red {
  width: 64%;
  margin-left: 8%;
  color: #f05c58;
  background: rgba(255, 122, 111, 0.22);
}

.bar-blue {
  width: 62%;
  margin-left: 32%;
  color: #477cc4;
  background: rgba(109, 166, 231, 0.26);
}

.timeline-grid b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 1px;
  background: #ff5965;
}

.hero-spark {
  position: absolute;
  right: -18px;
  top: 42px;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff6f5e;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(255, 111, 94, 0.18), 0 0 0 10px rgba(143, 207, 193, 0.12);
  font-size: 1.58rem;
  font-weight: 950;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: 88px 0;
  scroll-margin-top: var(--header-height);
}

.section-white,
.section-setup,
.section-faq {
  background: #fff;
}

.section-flow {
  background:
    linear-gradient(180deg, #f7fbf9, #edf7f3);
}

.section-overview {
  padding: 30px 0 52px;
  border-top: 1px solid rgba(220, 233, 228, 0.78);
  background: #fff;
}

.section-panel {
  color: #edf8f5;
  background:
    linear-gradient(135deg, #071421, #12383e 52%, #1d5d55);
}

.section-pricing {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.22)),
    url("./assets/marketing/pricing-background.png") center / cover no-repeat,
    linear-gradient(180deg, #ffffff, #f7fbf9);
}

.section-final {
  color: #fff;
  background: var(--ink-strong);
}

/* ============================================================
   Section Headings
   ============================================================ */

.compact-head {
  max-width: 790px;
  margin-bottom: 30px;
}

.compact-head h2,
.section-heading h2,
.panel-copy h2,
.final-layout h2,
.modal-copy h2 {
  font-size: clamp(2rem, 3.28vw, 3.02rem);
  line-height: 1.08;
}

.section-heading {
  max-width: 720px;
}

.section-heading p:not(.eyebrow),
.panel-copy p {
  margin: var(--space-md) 0 0;
  font-size: 1.02rem;
}

/* ============================================================
   Overview Band (Neden + Nasıl Çalışır)
   ============================================================ */

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.overview-block {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.workflow-block {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.overview-heading {
  margin-bottom: 12px;
}

.overview-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 9px;
  color: var(--ink-strong);
  font-size: 1.24rem;
  line-height: 1.14;
}

.overview-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint-strong);
}

.overview-cards,
.workflow-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.overview-cards article,
.workflow-cards article {
  position: relative;
  min-width: 0;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(247, 251, 249, 0.76));
  box-shadow: 0 12px 28px rgba(7, 20, 33, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.overview-cards article:nth-child(1) {
  background: linear-gradient(135deg, rgba(143, 207, 193, 0.16), #fff 64%);
}

.overview-cards article:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 105, 112, 0.1), #fff 64%);
}

.overview-cards article:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.12), #fff 64%);
}

.overview-cards img,
.workflow-cards img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 12px;
}

.overview-cards h3,
.workflow-cards h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 0.95rem;
  line-height: 1.18;
}

.overview-cards p,
.workflow-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.workflow-cards article {
  min-height: 154px;
  text-align: center;
}

.workflow-cards article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  z-index: 2;
  color: #8998a7;
  font-size: 1.1rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.workflow-cards span {
  position: absolute;
  left: 14px;
  top: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint-dark);
  background: rgba(143, 207, 193, 0.26);
  font-size: 0.78rem;
  font-weight: 950;
}

.workflow-cards img {
  margin: 6px auto 14px;
}

@media (hover: hover) {
  .overview-cards article:hover,
  .workflow-cards article:hover {
    transform: translateY(-3px);
    border-color: var(--mint);
    box-shadow: 0 18px 40px rgba(7, 20, 33, 0.1);
  }
}

/* ============================================================
   Value Row (Neden Section)
   ============================================================ */

.value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.value-row article,
.flow-steps article {
  min-height: 214px;
  padding: var(--space-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff, #f9fcfa);
  box-shadow: var(--soft-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.value-row span,
.flow-steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--mint-dark);
  border: 1px solid var(--line-strong);
  background: var(--surface-mist);
  font-weight: 950;
}

.value-row h3,
.flow-steps h3,
.pricing-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: var(--text-xl);
  line-height: 1.18;
}

.value-row p,
.flow-steps p {
  margin: 11px 0 0;
}

/* Value Row hover — desktop only */
@media (hover: hover) {
  .value-row article:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(7, 20, 33, 0.12);
    border-color: var(--mint);
  }
}

/* ============================================================
   Flow Section (Müşteri Akışı)
   ============================================================ */

.flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.flow-board {
  display: grid;
  gap: var(--space-md);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flow-steps article {
  min-height: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
}

/* Flow steps hover — desktop only */
@media (hover: hover) {
  .flow-steps article:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(7, 20, 33, 0.12);
    border-color: var(--mint);
  }
}

/* ============================================================
   Mini Screens (Flow)
   ============================================================ */

.mini-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(188, 216, 207, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 249, 0.94));
  box-shadow: 0 18px 48px rgba(7, 20, 33, 0.07);
}

.mini-screens button {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.mini-screens button:hover,
.mini-screens button:focus-visible {
  border-color: var(--mint-strong);
  outline: none;
}

.mini-screens img {
  width: 88px;
  height: 168px;
  object-fit: contain;
  overflow: hidden;
  border-radius: 12px;
  filter: drop-shadow(0 12px 20px rgba(7, 20, 33, 0.12));
}

.mini-screens span {
  min-width: 0;
  color: var(--ink-strong);
  font-size: 0.94rem;
  font-weight: 950;
  text-align: left;
}

/* ============================================================
   Panel Section (İşletme Paneli)
   ============================================================ */

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(500px, 1fr);
  gap: 44px;
  align-items: center;
}

.section-panel .eyebrow {
  color: #9ce6d9;
}

.section-panel h2 {
  color: #fff;
}

.section-panel p {
  color: #bfd7d3;
}

.panel-feature-list {
  display: grid;
  gap: 10px;
  margin-top: var(--space-lg);
}

.panel-feature-list article {
  padding: 14px;
  border: 1px solid rgba(156, 230, 217, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
  .panel-feature-list article:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(156, 230, 217, 0.32);
  }
}

.panel-feature-list strong,
.panel-feature-list span {
  display: block;
}

.panel-feature-list strong {
  color: #fff;
}

.panel-feature-list span {
  margin-top: 2px;
  color: #bfd7d3;
  font-size: 0.92rem;
}

/* Admin Dashboard — glassmorphism */
.admin-dashboard {
  padding: 20px;
  border: 1px solid rgba(156, 230, 217, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: var(--space-md);
}

.dash-header span,
.dash-side span {
  display: block;
  color: #9ce6d9;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dash-header strong,
.dash-side strong,
.dash-metrics strong {
  color: #fff;
}

.dash-header button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(156, 230, 217, 0.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: background var(--transition-fast);
}

@media (hover: hover) {
  .dash-header button:hover {
    background: rgba(255, 255, 255, 0.14);
  }
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dash-metrics span,
.dash-metrics small {
  display: block;
  color: #9ce6d9;
  font-size: 0.78rem;
  font-weight: 900;
}

.dash-metrics div,
.dash-side div {
  padding: 14px;
  border: 1px solid rgba(156, 230, 217, 0.18);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.dash-metrics strong {
  display: block;
  margin: 2px 0;
  font-size: var(--text-xl);
}

.dash-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 12px;
  margin-top: 12px;
}

.dash-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-sm);
  padding: 14px;
  border: 1px solid rgba(156, 230, 217, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.dash-calendar span {
  display: grid;
  place-items: center;
  min-height: 34px;
  color: #dff8f4;
  font-size: 0.78rem;
  font-weight: 950;
}

.dash-calendar i {
  min-height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.dash-calendar .is-busy {
  background: linear-gradient(135deg, #9ce6d9, #4aa99a);
}

.dash-calendar .is-closed {
  background: rgba(255, 220, 163, 0.46);
}

.dash-side {
  display: grid;
  gap: 10px;
}

/* ============================================================
   Setup Section (Kurulum)
   ============================================================ */

.setup-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.setup-showcase {
  display: grid;
  gap: 12px;
}

.launch-card {
  min-height: auto;
  display: grid;
  align-content: center;
  gap: var(--space-md);
  overflow: hidden;
  padding: var(--space-xl);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #071421, #12383e 58%, #1d5d55);
  box-shadow: 0 24px 64px rgba(7, 20, 33, 0.16);
}

.launch-card .eyebrow {
  margin-bottom: 0;
  color: #9ce6d9;
}

.launch-card strong {
  max-width: 430px;
  color: #fff;
  font-size: clamp(1.65rem, 2.3vw, 2.22rem);
  line-height: 1.08;
}

.launch-card p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: #c8dfdc;
  font-size: var(--text-base);
}

.setup-progress {
  display: grid;
  gap: 9px;
  margin-top: 6px;
}

.setup-progress span {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.setup-progress i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9ce6d9, #ffffff);
}

.setup-progress small {
  color: #dff8f4;
  font-weight: 900;
}

.setup-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.setup-mini-grid div {
  padding: var(--space-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 20, 33, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

@media (hover: hover) {
  .setup-mini-grid div:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(7, 20, 33, 0.1);
    border-color: var(--mint);
  }
}

.setup-mini-grid span,
.setup-mini-grid strong,
.setup-mini-grid small {
  display: block;
}

.setup-mini-grid span {
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.setup-mini-grid strong {
  margin-top: var(--space-xs);
  color: var(--ink-strong);
}

.setup-mini-grid small {
  margin-top: 2px;
  color: var(--muted);
}

.setup-steps {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.setup-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 20, 33, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

@media (hover: hover) {
  .setup-steps li:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(7, 20, 33, 0.08);
    border-color: var(--mint);
  }
}

.setup-steps span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--mint-dark);
  border: 1px solid var(--line-strong);
  background: var(--surface-mist);
  font-weight: 950;
}

.setup-steps strong,
.setup-steps small {
  display: block;
}

.setup-steps strong {
  color: var(--ink-strong);
}

/* ============================================================
   Pricing Section
   ============================================================ */

.pricing-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.pricing-head .section-heading {
  max-width: 780px;
  margin-bottom: 0;
}

.section-pricing .section-inner {
  width: min(1220px, calc(100% - 48px));
}

.pricing-head .eyebrow {
  margin-bottom: 8px;
}

.pricing-head h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.08rem);
  line-height: 1.06;
}

.pricing-head p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
}

.billing-toggle {
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.billing-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 0;
  border-radius: var(--radius);
  color: #44566b;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.billing-button span {
  display: inline-block;
  margin-left: 6px;
  color: var(--mint-dark);
  font-size: 0.78rem;
}

.billing-button.is-active {
  color: #fff;
  background: var(--ink-strong);
}

.billing-button.is-active span {
  color: #bff5ec;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding-top: 14px;
}

.pricing-card {
  position: relative;
  --plan-color: var(--mint-dark);
  --plan-soft: rgba(143, 207, 193, 0.18);
  --plan-border: rgba(45, 123, 112, 0.42);
  --plan-shadow: rgba(7, 20, 33, 0.1);
  --plan-rule: rgba(45, 123, 112, 0.54);
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--plan-border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--plan-soft), rgba(255, 255, 255, 0.8) 44%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(7, 20, 33, 0.09), 0 12px 28px var(--plan-shadow);
  backdrop-filter: blur(12px);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.pricing-card.is-featured {
  border-width: 2px;
  box-shadow: 0 22px 54px rgba(20, 119, 242, 0.13);
}

@media (hover: hover) {
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(7, 20, 33, 0.14);
  }
}

.plan-basic {
  --plan-color: #ff3155;
  --plan-soft: rgba(255, 49, 85, 0.18);
  --plan-border: rgba(255, 49, 85, 0.4);
  --plan-shadow: rgba(255, 49, 85, 0.14);
  --plan-rule: rgba(255, 49, 85, 0.55);
}

.plan-growth {
  --plan-color: #14a978;
  --plan-soft: rgba(20, 169, 120, 0.18);
  --plan-border: rgba(20, 169, 120, 0.4);
  --plan-shadow: rgba(20, 169, 120, 0.14);
  --plan-rule: rgba(20, 169, 120, 0.56);
}

.plan-pro {
  --plan-color: #1477f2;
  --plan-soft: rgba(20, 119, 242, 0.18);
  --plan-border: rgba(20, 119, 242, 0.62);
  --plan-shadow: rgba(20, 119, 242, 0.18);
  --plan-rule: rgba(20, 119, 242, 0.68);
}

.plan-plus {
  --plan-color: #ff8612;
  --plan-soft: rgba(255, 134, 18, 0.19);
  --plan-border: rgba(255, 134, 18, 0.44);
  --plan-shadow: rgba(255, 134, 18, 0.16);
  --plan-rule: rgba(255, 134, 18, 0.6);
}

.plan-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: var(--plan-color);
  background: var(--plan-soft);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.62), 0 10px 24px var(--plan-shadow);
}

.plan-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.plan-badge {
  position: absolute;
  top: -17px;
  right: 50%;
  transform: translateX(50%);
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--plan-color);
  box-shadow: 0 12px 28px var(--plan-shadow);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-label {
  width: max-content;
  max-width: 100%;
  margin: 10px auto 0;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--plan-color);
  background: var(--plan-soft);
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
}

.pricing-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: var(--text-xl);
  line-height: 1.1;
  text-align: center;
}

.plan-copy {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--plan-rule);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.58;
  text-align: center;
}

.price {
  margin: 14px 0 0;
  color: var(--ink-strong);
  font-size: clamp(1.95rem, 2.7vw, 2.52rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.price small {
  margin-left: 5px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.plan-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto 0 0;
  padding: 10px 14px;
  color: var(--plan-color);
  border: 1px solid var(--plan-color);
  background: #fff;
  font-size: 0.94rem;
  box-shadow: none;
  transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-card.is-featured .plan-action {
  color: #fff;
  background: var(--plan-color);
  box-shadow: 0 14px 30px rgba(20, 119, 242, 0.2);
}

.plan-action:hover,
.plan-action:focus-visible {
  color: #fff;
  background: var(--plan-color);
  outline: none;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 820;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--plan-color);
  font-size: 0.65rem;
  font-weight: 950;
}

.pricing-assurance {
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: 22px;
}

.pricing-assurance span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
}

/* ============================================================
   Pricing CTA Overlay
   ============================================================ */

.pricing-cta-overlay {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 58;
  overflow: hidden;
  width: min(1080px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 111, 94, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(223, 255, 248, 0.9), rgba(255, 240, 237, 0.92)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(7, 20, 33, 0.1);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.pricing-cta-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pricing-cta-overlay::after {
  content: "↗";
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: rgba(255, 82, 93, 0.72);
  font-size: 1.58rem;
  font-weight: 950;
  line-height: 1;
}

.pricing-cta-media {
  position: relative;
  width: 72px;
  height: 72px;
}

.pricing-cta-media > img {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(7, 20, 33, 0.12);
}

.pricing-cta-media span {
  position: absolute;
  right: -8px;
  bottom: 1px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 169, 120, 0.18);
}

.pricing-cta-media span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pricing-cta-copy strong {
  display: block;
  color: var(--ink-strong);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.16;
}

.pricing-cta-copy p {
  max-width: 620px;
  margin: 5px 0 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
}

.pricing-cta-actions .primary-action,
.pricing-cta-actions .secondary-action,
.pricing-cta-actions .whatsapp-action {
  min-height: 40px;
  padding: 9px 13px;
  white-space: nowrap;
}

.pricing-cta-actions .primary-action {
  gap: 8px;
  border-radius: 12px;
}

.pricing-cta-actions .secondary-action {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
  font-weight: 950;
  text-decoration: none;
  transition: background var(--transition-fast), opacity var(--transition-fast);
}

.whatsapp-action svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-action:hover,
.whatsapp-action:focus-visible {
  background: #16a34a;
  outline: none;
}

.whatsapp-action[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

/* ============================================================
   FAQ Section
   ============================================================ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 20, 33, 0.04);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

@media (hover: hover) {
  .faq-list details:hover {
    border-color: var(--line-strong);
  }
}

.faq-list details[open] summary {
  color: var(--mint-dark);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink-strong);
  font-weight: 950;
  transition: color var(--transition-fast);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--mint-strong);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  transition: max-height 280ms ease, opacity 200ms ease;
  overflow: hidden;
}

/* ============================================================
   Final CTA Section
   ============================================================ */

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 36px;
  align-items: center;
}

.section-final .eyebrow {
  color: #9ce6d9;
}

.section-final h2 {
  color: #fff;
}

.section-final p {
  color: #bfd0dc;
}

.final-actions {
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:not(.brand-mark) {
  color: var(--mint-dark);
  font-weight: 850;
  text-decoration: none;
}

/* ============================================================
   Screen Modal
   ============================================================ */

.screen-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(7, 20, 33, 0.58);
  backdrop-filter: blur(6px);
}

.screen-modal[hidden] {
  display: none;
}

.modal-close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 3;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-strong);
  background: #fff;
  font-weight: 950;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

@media (hover: hover) {
  .modal-close:hover {
    border-color: var(--mint-strong);
    background: var(--surface-mist);
  }
}

.modal-body {
  position: relative;
  width: min(820px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 0.82fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(188, 216, 207, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 34px 90px rgba(7, 20, 33, 0.32);
}

.modal-body img {
  width: min(300px, 100%);
  max-height: calc(100dvh - 120px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 22px 58px rgba(7, 20, 33, 0.14);
}

.modal-copy p:not(.eyebrow) {
  margin: var(--space-md) 0 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

/* ============================================================
   Scroll Reveal Animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal.is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   Responsive — 1280px
   ============================================================ */

@media (min-width: 1121px) and (max-width: 1280px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 42px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-product {
    width: 100%;
    max-width: 820px;
    justify-self: center;
  }
}

/* ============================================================
   Responsive — 1120px
   ============================================================ */

@media (max-width: 1120px) {
  .hero,
  .overview-grid,
  .panel-layout,
  .flow-layout,
  .setup-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-product {
    width: 100%;
    max-width: 820px;
    justify-self: center;
    min-height: 558px;
  }

  .workflow-block {
    padding-left: 0;
    border-left: 0;
  }

  .value-row,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   Responsive — 920px
   ============================================================ */

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 0 18px;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    justify-content: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .pricing-head,
  .final-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-product {
    justify-self: center;
    max-width: 780px;
  }

  .overview-cards,
  .workflow-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-cta-overlay {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .pricing-cta-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-button {
    flex: 1;
  }

  .final-actions {
    align-items: stretch;
  }

  .final-actions a {
    width: 100%;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Responsive — 760px
   ============================================================ */

@media (max-width: 760px) {
  .flow-steps,
  .mini-screens,
  .overview-cards,
  .workflow-cards,
  .dash-metrics,
  .dash-body,
  .value-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .workflow-cards article {
    text-align: left;
  }

  .workflow-cards article:not(:last-child)::after {
    display: none;
  }

  .workflow-cards img {
    margin-right: 0;
    margin-left: 0;
  }

  .mini-screens button {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}

/* ============================================================
   Responsive — 680px
   ============================================================ */

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .site-header .brand-mark span {
    font-size: 0.94rem;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero,
  .section-inner {
    width: min(calc(100% - 32px), 1160px);
  }

  .hero {
    gap: 30px;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .hero-actions a {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    min-height: 50px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    min-height: 70px;
    padding: 10px;
  }

  .hero-proof img {
    width: 42px;
    height: 42px;
  }

  .hero-proof strong {
    font-size: 0.8rem;
  }

  .hero-product {
    display: grid;
    grid-template-columns: minmax(118px, 0.78fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: auto;
    padding: 14px;
    border: 1px solid rgba(188, 216, 207, 0.76);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 46px rgba(7, 20, 33, 0.08);
  }

  .hero-product::before {
    left: 8px;
    top: 20px;
    width: 190px;
    transform: none;
  }

  .hero-product::after,
  .hero-spark {
    display: none;
  }

  .product-phone {
    position: relative;
    left: auto;
    top: auto;
    grid-row: span 3;
    width: min(160px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .hero-float-card {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(7, 20, 33, 0.08);
  }

  .stat-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 12px;
  }

  .stat-card img {
    width: 36px;
    height: 36px;
  }

  .stat-card strong {
    font-size: 1.38rem;
  }

  .stat-card > i {
    display: none;
  }

  .appointment-card {
    grid-template-columns: 34px minmax(0, 1fr) 7px;
    gap: 10px;
    padding: 12px;
  }

  .appointment-card img {
    width: 34px;
    height: 34px;
  }

  .appointment-card strong {
    font-size: 1rem;
  }

  .appointment-card em {
    display: block;
    margin: 2px 0 0;
  }

  .timeline-card {
    grid-column: 1 / -1;
    padding: 14px;
  }

  .timeline-grid {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .setup-mini-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section-overview {
    padding: 34px 0 44px;
  }

  .compact-head h2,
  .section-heading h2,
  .panel-copy h2,
  .final-layout h2 {
    font-size: 2rem;
  }

  .dash-calendar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .setup-steps li {
    grid-template-columns: 1fr;
  }

  .setup-steps span {
    grid-row: auto;
  }

  .pricing-card {
    min-height: auto;
    padding: 22px;
  }

  .pricing-cta-overlay {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    width: min(100% - 24px, 560px);
    padding: 10px;
    text-align: left;
  }

  .pricing-cta-media {
    width: 52px;
    height: 52px;
  }

  .pricing-cta-media span {
    display: none;
  }

  .pricing-cta-copy p {
    display: none;
  }

  .pricing-cta-actions {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-cta-actions .primary-action,
  .pricing-cta-actions .secondary-action,
  .pricing-cta-actions .whatsapp-action {
    flex: 1 1 auto;
  }

  .plan-badge {
    position: static;
    transform: none;
    width: max-content;
    margin: 0 auto 12px;
  }

  .plan-copy {
    min-height: 0;
  }

  .footer-inner {
    display: grid;
  }

  .modal-body {
    gap: 20px;
    padding: 54px 18px 22px;
  }

  .modal-body img {
    width: min(100%, 220px);
  }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */

@media (max-width: 480px) {
  .site-header .brand-mark span {
    display: none;
  }

  .hero-product {
    grid-template-columns: 1fr;
  }

  .product-phone {
    grid-row: auto;
    width: min(176px, 58%);
  }

  .timeline-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   Responsive — 380px
   ============================================================ */

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.78rem;
  }

  .mini-screens button {
    grid-template-columns: 64px 1fr;
    align-items: center;
  }

  .mini-screens img {
    width: 64px;
    height: 124px;
  }
}

/* ============================================================
   Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .product-phone {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
