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

::selection {
  background-color: var(--color-dark);
  color: var(--color-white);
}

:root {
  --color-dark: #222222;
  --color-ink: #333333;
  --color-text: #888;
  --color-gray: #5f5f5f;
  --color-light-gray: #e8e8e8;
  --color-border: #ececec;
  --color-white: #ffffff;
  --color-badge-bg: #f1f1f1;
  --color-card-border: #f7f7f7;
  --color-green: #22c55e;
  --color-accent: #f4661f;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cursor-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 28 28"><path d="M7.4 2.2L7.4 21.8L12.2 16.6L17.6 25.4L20.6 23.6L15.4 15.0L22.0 14.0L7.4 2.2Z" fill="%23333333" stroke="%23ffffff" stroke-width="1.4" stroke-linejoin="round"/></svg>') 5 1, auto;
  --cursor-hand: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path d="M9 2.5c-.83 0-1.5.67-1.5 1.5v6.2L6.1 8.9C5.5 8.3 4.6 8.3 4 8.9c-.6.6-.6 1.5 0 2.1l3.5 4.4c.66.83 1.66 1.3 2.72 1.3H14c1.66 0 3-1.34 3-3v-4.3c0-.72-.58-1.3-1.3-1.3-.2 0-.4.05-.58.13-.1-.6-.62-1.06-1.24-1.06-.28 0-.54.09-.75.24-.16-.5-.62-.86-1.17-.86-.24 0-.46.07-.65.19V4c0-.83-.67-1.5-1.5-1.5z" fill="%23333333" stroke="%23ffffff" stroke-width="1.2" stroke-linejoin="round"/></svg>') 7 2, pointer;
  --cursor-text: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="18" viewBox="0 0 14 18"><path d="M3.5 2.5h3M7.5 2.5h3M7 2.5v13M3.5 15.5h3M7.5 15.5h3" fill="none" stroke="%23ffffff" stroke-width="2.6" stroke-linecap="round"/><path d="M3.5 2.5h3M7.5 2.5h3M7 2.5v13M3.5 15.5h3M7.5 15.5h3" fill="none" stroke="%23333333" stroke-width="1.35" stroke-linecap="round"/></svg>') 7 9, text;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  font-synthesis: none;
}


html {
  cursor: var(--cursor-arrow);
}

a,
button,
[role="button"],
summary,
.faq-q,
.navbar-toggle {
  cursor: var(--cursor-hand);
}


.click-ripple {
  position: fixed;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  border: 2px solid rgba(34, 34, 34, 0.45);
  pointer-events: none;
  z-index: 99999;
  animation: click-ripple 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes click-ripple {
  0% {
    transform: scale(0.35);
    opacity: 0.75;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@media (hover: none),
(pointer: coarse) {
  :root {
    --cursor-arrow: auto;
    --cursor-hand: pointer;
    --cursor-text: text;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 100;
  padding: 0 16px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(5px);
  background-color: rgb(255, 255, 255);
  border-radius: 100px;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
  padding: 10px 12px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 6px 0 10px;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.navbar-logo:hover {
  opacity: 0.7;
}

.navbar-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.navbar-divider {
  width: 1px;
  height: 22px;
  background: var(--color-border);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-links a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink);
  padding: 8px 10px;
  border-radius: 100px;
  transition: color 0.15s ease;
}

.navbar-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f1f1f1;
  border-radius: 100px;
  z-index: -1;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.15s ease;
}

.navbar-links a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 36px;
}

.navbar-actions .btn {
  padding: 10px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  padding: 10px 18px;
  white-space: nowrap;
  transition: all 0.15s ease;
  cursor: var(--cursor-hand);
}

.btn i {
  font-size: 17px;
  line-height: 1;
}

.btn-lg i {
  font-size: 19px;
}

.btn-dark {
  background: #222;
  color: var(--color-white);
  font-weight: 600;
}

.btn-dark:hover {
  opacity: 0.7;
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
}

.btn-accent:hover {
  opacity: 0.7;
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: inset 0 0 0 1px var(--color-light-gray);
}

.btn-outline:hover {
  background: var(--color-light-gray);
}

.btn-lg {
  font-size: 14px;
  padding: 14px 24px;
}

.btn-arrow {
  width: 16px;
  height: 16px;
}

.btn .btn-tip {
  font-size: 15px;
  line-height: 1;
  margin-left: -2px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  position: relative;
  top: 1px;
  transition: none;
}

.btn-lg .btn-tip {
  font-size: 16px;
}

.btn:hover .btn-tip {
  transform: none;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 196px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-badge-bg);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 18px;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.badge-text {
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  text-transform: uppercase;
}

.hero-title {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--color-ink);
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-perks {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  width: 100%;
  max-width: 1060px;
}

.hero-perk {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.hero-perk-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--color-light-gray) 20%, var(--color-light-gray) 80%, transparent);
}

.hero-perk-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-border), 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}

.hero-perk-icon i {
  font-size: 19px;
  color: var(--color-ink);
}

.hero-perk-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.hero-perk-text {
  max-width: 260px;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
}

.proof-avatars img+img {
  margin-left: -12px;
}

.proof-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.proof-stars {
  display: flex;
  align-items: center;
  color: #f5b301;
}

.proof-stars svg {
  width: 15px;
  height: 15px;
}

.proof-score {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.proof-label {
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--color-gray);
}

.marquee-section {
  padding: 64px 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  --card-gap: 14px;
  display: flex;
  gap: var(--card-gap);
  width: max-content;
  animation: marquee-scroll 90s linear infinite;
  will-change: transform;
}

.marquee-card {
  width: min(720px, 55vw);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1.5px solid #dcdcdc;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--card-gap) / 2));
  }
}

.marquee-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid #dcdcdc;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.marquee-more svg {
  width: 15px;
  height: 15px;
  color: currentColor;
}

.marquee-more:hover {
  color: var(--color-ink);
  background-color: var(--color-badge-bg);
  border-color: var(--color-badge-bg);
}

.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 128px 24px 0;
  overflow-anchor: none;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-badge {
  margin-bottom: 18px;
}

.section-title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin-bottom: 0;
}

.section-subtitle {
  max-width: 440px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--color-text);
}


.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1040px;
  margin: 44px auto 0;
}

.bento-card {
  background: #f6f6f6;
  border-radius: 28px;
  padding: 44px 40px 48px;
  display: flex;
  flex-direction: column;
}

.bento-visual {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  overflow-anchor: none;
}


.bento-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  text-align: center;
}

.bento-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, #d7d7d7 22%, #d7d7d7 78%, transparent);
  margin: 16px auto;
}

.bento-text {
  max-width: 400px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-align: center;
}


.bars {
  display: flex;
  align-items: stretch;
  gap: 15px;
  height: 340px;
}

.bar-col {
  width: 112px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.bar-price {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #16161c;
  text-align: center;
  padding: 19px 0 18px;
  white-space: nowrap;
}

.bar {
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
}

.bar-dark {
  background: #24242e;
}

.bar-blue {
  background: var(--color-accent);
}

.bar-label {
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: #d3d3d8;
  white-space: nowrap;
}

.bar-blue .bar-label {
  color: var(--color-white);
}

.bar-logo {
  height: 27px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}


.receipt {
  width: 100%;
  max-width: 400px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 28px 30px;
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #16161c;
  margin-bottom: 22px;
}

.receipt-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.receipt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--color-gray);
  padding: 10px 0;
}

.r-check {
  width: 14px;
  height: 14px;
  color: var(--color-green);
  flex-shrink: 0;
}

.r-fill {
  flex: 1;
  border-bottom: 1px dotted #dcdcdc;
}

.r-val {
  color: #16161c;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px dashed #e0e0e0;
  margin-top: 16px;
  padding-top: 20px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #16161c;
}

.r-zero {
  font-size: 15px;
  color: var(--color-green);
}


.terminal {
  width: 100%;
  max-width: 430px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 22px 24px 26px;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  color: #16161c;
  margin-bottom: 28px;
}

.terminal-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.fill-wrap {
  position: relative;
  width: 188px;
  height: 188px;
  margin: 0 auto;
}

.donut {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f1f1f1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.45s ease;
}

.donut::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--p, 0) * 1%);
  background: var(--color-green);
  transition: height 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.donut.donut-reset::before {
  transition: none;
}

.donut-inner {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 17px;
  color: #b4b4b4;
}

.donut-num {
  transition: opacity 0.3s ease;
}

.donut-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 30px;
  height: 30px;
  color: var(--color-green);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.terminal.live .donut-num {
  opacity: 0;
}

.terminal.live .donut-check {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


.terminal-foot {
  position: relative;
  height: 15px;
  margin-top: 26px;
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
}

.foot-updating,
.foot-published {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: opacity 0.35s ease;
}

.foot-updating {
  color: #b4b4b4;
  opacity: 1;
}

.foot-published {
  color: var(--color-ink);
  opacity: 0;
}

.terminal.live .foot-updating {
  opacity: 0;
}

.terminal.live .foot-published {
  opacity: 1;
}

.terminal-foot svg {
  width: 14px;
  height: 14px;
}


.notif-widget {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.notif-widget::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: calc(50% - 34px);
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(37, 211, 102, 0.26), rgba(37, 211, 102, 0));
  filter: blur(18px);
  z-index: 0;
  transition: opacity 0.6s ease;
}

.notif-widget.expanded::before {
  opacity: 0;
}

.notifs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notif {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 22px;
  padding: 19px 22px;
  transform-origin: top center;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.notif:nth-child(1) {
  z-index: 3;
}

.notif:nth-child(2) {
  z-index: 2;
}

.notif:nth-child(3) {
  z-index: 1;
}

.notif-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #25d366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-icon i {
  font-size: 26px;
  line-height: 1;
}

.notif-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  padding: 2px 5px;
  border-radius: 8px;
  background: #24242e;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--color-white);
  font-size: 9.5px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.15s ease;
}

.see-all {
  position: absolute;
  top: calc(50% + 86px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #16161c;
  transition: opacity 0.4s ease 1s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.see-all.pressed {
  transform: translateX(-50%) scale(0.9);
}

.see-cursor {
  position: absolute;
  top: calc(50% + 106px);
  left: calc(50% + 14px);
  z-index: 5;
  width: 26px;
  height: 26px;
  opacity: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3px;
}

.notif-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #16161c;
}

.notif-time {
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  color: #9a9a9a;
}

.notif-text {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-text);
  max-width: 250px;
}


.bento-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card.in-view {
  opacity: 1;
  transform: translateY(0);
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bar {
  transform: scaleY(0);
  transform-origin: bottom;
}

.bar-label,
.bar-price,
.bar-logo {
  opacity: 0;
}

.in-view .bar {
  animation: bar-grow 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.in-view .bar-label,
.in-view .bar-price,
.in-view .bar-logo {
  animation: fade-in 0.6s ease forwards;
}

.bar-col:nth-child(1) .bar {
  animation-delay: 0.15s;
}

.bar-col:nth-child(2) .bar {
  animation-delay: 0.35s;
}

.bar-col:nth-child(3) .bar {
  animation-delay: 0.55s;
}

.bar-col:nth-child(1) .bar-price,
.bar-col:nth-child(1) .bar-label {
  animation-delay: 0.7s;
}

.bar-col:nth-child(2) .bar-price,
.bar-col:nth-child(2) .bar-label {
  animation-delay: 0.85s;
}

.bar-col:nth-child(3) .bar-price,
.bar-col:nth-child(3) .bar-label,
.bar-col:nth-child(3) .bar-logo {
  animation-delay: 1s;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.receipt-body {
  overflow: hidden;
  height: 200px;
}

.receipt-row,
.receipt-total {
  opacity: 0;
}

.in-view .receipt-body {
  animation: receipt-clip 8s ease-in-out infinite;
}

.in-view .receipt-row:nth-child(1) {
  animation: rline-1 8s ease infinite;
}

.in-view .receipt-row:nth-child(2) {
  animation: rline-2 8s ease infinite;
}

.in-view .receipt-row:nth-child(3) {
  animation: rline-3 8s ease infinite;
}

.in-view .receipt-row:nth-child(4) {
  animation: rline-4 8s ease infinite;
}

.in-view .receipt-total {
  animation: rline-5 8s ease infinite;
}

@keyframes receipt-clip {

  0%,
  8% {
    clip-path: inset(0 0 100% 0);
  }

  42%,
  68% {
    clip-path: inset(0 0 0 0);
  }

  88%,
  100% {
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes rline-1 {

  0%,
  12% {
    opacity: 0;
    transform: translateY(10px);
  }

  20%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }

  85%,
  100% {
    opacity: 0;
  }
}

@keyframes rline-2 {

  0%,
  18% {
    opacity: 0;
    transform: translateY(10px);
  }

  26%,
  77% {
    opacity: 1;
    transform: translateY(0);
  }

  82%,
  100% {
    opacity: 0;
  }
}

@keyframes rline-3 {

  0%,
  24% {
    opacity: 0;
    transform: translateY(10px);
  }

  32%,
  74% {
    opacity: 1;
    transform: translateY(0);
  }

  79%,
  100% {
    opacity: 0;
  }
}

@keyframes rline-4 {

  0%,
  30% {
    opacity: 0;
    transform: translateY(10px);
  }

  38%,
  71% {
    opacity: 1;
    transform: translateY(0);
  }

  76%,
  100% {
    opacity: 0;
  }
}

@keyframes rline-5 {

  0%,
  36% {
    opacity: 0;
    transform: translateY(10px);
  }

  44%,
  68% {
    opacity: 1;
    transform: translateY(0);
  }

  73%,
  100% {
    opacity: 0;
  }
}

.terminal-head,
.terminal-foot {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fill-wrap {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.in-view .terminal-head {
  opacity: 1;
  transition-delay: 0.2s;
}

.in-view .fill-wrap {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.35s;
}

.in-view .terminal-foot {
  opacity: 1;
  transition-delay: 0.65s;
}


.notif {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.in-view .notif {
  opacity: 1;
  transition-delay: 0.25s;
}

.notif-widget:not(.expanded) .notif:nth-child(1) {
  transform: translateY(calc(100% + 16px));
}

.notif-widget:not(.expanded) .notif:nth-child(2) {
  transform: translateY(15px) scale(0.955);
}

.notif-widget:not(.expanded) .notif:nth-child(3) {
  transform: translateY(calc(-100% + 14px)) scale(0.91);
}

.notif-widget.expanded .notif {
  transform: translateY(0) scale(1);
}

.notif-widget.expanded .notif:nth-child(2) {
  transition-delay: 0.06s;
}

.notif-widget.expanded .notif:nth-child(3) {
  transition-delay: 0.12s;
}

.notif-widget.expanded .notif-badge {
  opacity: 0;
}

.see-all {
  opacity: 1;
}

.notif-widget.expanded .see-all {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.notif-widget.cycle .see-cursor {
  animation: cursor-in 1.1s ease-out 0.7s forwards;
}

.notif-widget.expanded .see-cursor {
  transition: opacity 0.4s ease 0.15s;
  opacity: 0 !important;
}

@keyframes cursor-in {
  0% {
    opacity: 0;
    transform: translate(72px, 64px);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}




.reviews {
  padding: 0 0 128px;
}

.reviews .section-head {
  padding: 0 24px;
}

.reviews-marquee {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 6px 0 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.reviews-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.reviews-track-a {
  animation: reviews-scroll 60s linear infinite;
}

.reviews-track-b {
  animation: reviews-scroll 72s linear infinite reverse;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.review-card {
  width: 400px;
  flex-shrink: 0;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 22px;
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f5b301;
}

.review-stars svg {
  width: 15px;
  height: 15px;
}

.review-text {
  font-size: 14.5px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #3b3b3b;
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-border);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.review-role {
  font-size: 12.5px;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-weight: 500;
}


.projects-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 180px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 24px 128px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 14px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1.5px solid #dcdcdc;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  line-height: 0;
}

.project-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-thumb img {
  transform: scale(1.05);
}

.project-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}

.project-name svg {
  width: 15px;
  height: 15px;
  color: var(--color-gray);
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.project-card:hover .project-name svg {
  color: var(--color-accent);
}

.navbar-links a.active {
  font-weight: 500;
}

.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 128px 24px 0;
}

.pricing-title {
  max-width: 600px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1140px;
  margin: 44px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  border-radius: 30px;
  padding: 10px;
}

.price-card-popular {
  background: #f6f6f6;
}

.price-card-popular .price-btn {
  background: var(--color-accent);
}

.price-card-popular .price-btn:hover {
  opacity: 0.7;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -32%);
  z-index: 3;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-head {
  background: var(--color-white);
  border-radius: 22px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.price-head h3 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.price-head p {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-weight: 500;
  min-height: 58px;
}

.price-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px 26px 26px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.price-eta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #3b3b3b;
}

.price-eta svg {
  width: 21px;
  height: 21px;
  color: var(--color-ink);
  flex-shrink: 0;
}

.price-value {
  display: inline-flex;
  align-items: baseline;
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  line-height: 1;
}

.price-currency {
  font: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: inherit;
}

.price-alt {
  font-size: 26px;
}

.price-note {
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  font-weight: 500;
}

.price-sub-note {
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  font-weight: 500;
  margin-top: -18px;
  margin-bottom: 24px;
}

.price-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
}

.price-sep {
  height: 1px;
  background: #e7e7e7;
  margin: 28px 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: #3b3b3b;
  font-weight: 500;
}

.p-ico {
  width: 21px;
  height: 21px;
  color: var(--color-ink);
  flex-shrink: 0;
}

.p-ico-green {
  color: var(--color-green);
}

.price-features li.price-feature-gift {
  align-items: flex-start;
}

.price-feature-gift-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-feature-gift-text .gift-label {
  color: var(--color-green);
}

.price-features li.price-feature-gift .p-ico-green {
  margin-top: 2px;
}


.btn-light {
  background: var(--color-white);
  color: var(--color-ink);
}

.btn-light:hover {
  opacity: 0.85;
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}


.addons {
  max-width: 1040px;
  margin: 28px auto 0;
}

.addons-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.addons-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

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

.addon-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f6f6f6;
  border-radius: 22px;
  padding: 24px 24px 26px;
}

.addon-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.addon-price {
  display: inline-flex;
  align-items: baseline;
  background: var(--color-white);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  box-shadow: inset 0 0 0 1px var(--color-border), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.addon-price small {
  font-size: 11.5px;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  font-weight: 500;
  margin-left: 1px;
}

.addon-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  flex-shrink: 0;
}

.addon-ico svg {
  width: 20px;
  height: 20px;
}

.addon-card h4 {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.addon-card p {
  font-size: 13.5px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-weight: 500;
}

.pricing-note {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  font-weight: 500;
}


.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 128px 24px 0;
}

.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: var(--cursor-hand);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  text-align: left;
  transition: opacity 0.2s ease;
}

.faq-q:hover {
  opacity: 0.55;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a>p {
  overflow: hidden;
  margin: 0;
  padding: 0 4px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  transition: padding 0.35s ease;
}

.faq-item.open .faq-a>p {
  padding: 0 4px 26px;
}


.standards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 128px 24px 0;
  overflow-anchor: none;
}

.std-grid {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1040px;
  margin-top: 44px;
}

.std-card {
  grid-column: span 2;
  padding: 30px 26px 34px;
}

.std-card:nth-child(4) {
  grid-column: span 3;
}

.std-card:nth-child(5),
.std-card.std-span {
  grid-column: span 3;
}

.std-card .bento-visual {
  height: 280px;
  margin-bottom: 18px;
  overflow: hidden;
}

.std-card:nth-child(-n+3) .bento-visual {
  height: 226px;
  margin-bottom: 28px;
}

.std-card .bento-title {
  font-size: 18px;
}

.std-card .bento-text {
  font-size: 13.5px;
}

/* -- Hızlı açılış: tarayıcı mockup -- */
.speed-widget {
  width: 100%;
  max-width: 280px;
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
}

.speed-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e2e2;
}

.sc-url {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  background: #f3f3f3;
  border-radius: 999px;
  padding: 4px 11px;
}

.sc-url i {
  font-size: 11px;
  color: var(--color-green);
}

.speed-progress {
  height: 3px;
}

.speed-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-green);
  opacity: 0;
}

.play .speed-progress span {
  animation: speed-load 2s cubic-bezier(0.45, 0, 0.2, 1) 0.4s forwards;
}

@keyframes speed-load {
  0% {
    width: 0;
    opacity: 1;
  }

  18% {
    width: 24%;
  }

  42% {
    width: 41%;
  }

  68% {
    width: 78%;
  }

  90% {
    width: 100%;
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

.speed-body {
  padding: 12px 13px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sk-row {
  display: flex;
  gap: 8px;
}

.sk {
  background: #efefef;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(12px);
}

.sk-hero {
  height: 36px;
}

.sk-half {
  flex: 1;
  height: 26px;
}

.sk-line {
  height: 8px;
  border-radius: 4px;
}

.sk-short {
  width: 55%;
}

.play .sk {
  animation: sk-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.play .sk-hero { animation-delay: 1s; }
.play .sk-half:nth-child(1) { animation-delay: 1.3s; }
.play .sk-half:nth-child(2) { animation-delay: 1.5s; }
.play .sk-line { animation-delay: 1.75s; }
.play .sk-short { animation-delay: 1.95s; }

@keyframes sk-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.speed-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 14px 14px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 999px;
  padding: 7px 13px;
  box-shadow: inset 0 0 0 1px var(--color-border), 0 1px 2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(10px);
}

.speed-stamp i {
  font-size: 14px;
  color: var(--color-green);
}

.play .speed-stamp {
  animation: sk-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 2.7s forwards;
}

.play .speed-stamp i {
  animation: stamp-bolt 1.6s ease 3.4s infinite;
}

@keyframes stamp-bolt {
  0%, 100% {
    transform: scale(1);
  }

  18% {
    transform: scale(1.35);
  }

  36% {
    transform: scale(1);
  }
}

/* -- Mobil: telefon mockup -- */
.phone-widget {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 168px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 26px;
  padding: 28px 13px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.03) 0px 8px 12px -4px;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 7px;
  border-radius: 999px;
  background: #e6e6e6;
}

.ph {
  background: #f3f3f3;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(14px);
}

.ph-nav {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.ph-logo {
  width: 32px;
  height: 7px;
  border-radius: 999px;
  background: #dcdcdc;
}

.ph-menu {
  width: 14px;
  height: 7px;
  border-radius: 999px;
  background: #e2e2e2;
}

.ph-hero {
  height: 68px;
}

.ph-row {
  display: flex;
  gap: 8px;
}

.ph-card {
  flex: 1;
  height: 40px;
}

.ph-cta {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: var(--color-white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
}

.play .ph {
  animation: sk-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.play .ph-nav { animation-delay: 0.5s; }
.play .ph-hero { animation-delay: 0.85s; }
.play .ph-row .ph-card:nth-child(1) { animation-delay: 1.2s; }
.play .ph-row .ph-card:nth-child(2) { animation-delay: 1.4s; }

.play .ph-cta {
  animation: sk-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards, ph-cta-pulse 2.4s ease 3s infinite;
}

@keyframes ph-cta-pulse {
  0%, 100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.06);
  }

  24% {
    transform: scale(1);
  }
}

/* -- Net yönlendirme: buton + imleç -- */
.guide-widget {
  width: 100%;
  max-width: 280px;
}

.guide-page {
  position: relative;
  background: var(--color-white);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gl {
  background: #efefef;
  border-radius: 6px;
  opacity: 0;
}

.gl-line {
  width: 78%;
  height: 11px;
}

.gl-short {
  width: 52%;
}

.play .gl {
  animation: fade-in 0.9s ease forwards;
}

.play .gl-line { animation-delay: 0.45s; }
.play .gl-short { animation-delay: 0.65s; }

.guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  background: #25d366;
  color: var(--color-white);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 12px 20px;
  opacity: 0;
  transform: translateY(10px);
}

.guide-btn i {
  font-size: 16px;
}

.play .guide-btn {
  animation:
    sk-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards,
    guide-press 0.5s ease 3.4s;
}

@keyframes guide-press {
  0%, 100% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.92);
  }
}

.guide-toast {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 999px;
  padding: 7px 13px;
  box-shadow: inset 0 0 0 1px var(--color-border), 0 1px 2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(10px);
}

.guide-toast i {
  font-size: 13px;
  color: var(--color-green);
}

.play .guide-toast {
  animation: sk-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 4s forwards;
}

.guide-cursor {
  position: absolute;
  bottom: 46px;
  left: 58%;
  width: 24px;
  height: 24px;
  opacity: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.play .guide-cursor {
  animation: guide-cursor-in 2s ease-in-out 1.6s forwards;
}

@keyframes guide-cursor-in {
  0% {
    opacity: 0;
    transform: translate(85px, 75px);
  }

  30% {
    opacity: 1;
    transform: translate(40px, 34px);
  }

  60% {
    opacity: 1;
    transform: translate(4px, 3px);
  }

  78% {
    transform: translate(0, 0) scale(0.85);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* -- Güven: yorum kartı + SSL -- */
.trust-widget {
  width: 100%;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.trust-card {
  width: 100%;
  background: var(--color-white);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.02) 0px 1px 1px 0.5px,
    rgba(0, 0, 0, 0.02) 0px 3px 3px 1.5px,
    rgba(0, 0, 0, 0.02) 0px 6px 6px -3px,
    rgba(0, 0, 0, 0.02) 0px 12px 12px -6px;
  padding: 22px 22px 20px;
  opacity: 0;
  transform: translateY(14px);
}

.play .trust-card {
  animation: sk-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.trust-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.trust-stars svg {
  width: 16px;
  height: 16px;
  color: #f5b301;
  opacity: 0;
  transform: scale(0.3);
}

.play .trust-stars svg {
  animation: star-pop 0.55s cubic-bezier(0.34, 1.5, 0.64, 1) forwards;
}

.play .trust-stars svg:nth-child(1) { animation-delay: 1.2s; }
.play .trust-stars svg:nth-child(2) { animation-delay: 1.4s; }
.play .trust-stars svg:nth-child(3) { animation-delay: 1.6s; }
.play .trust-stars svg:nth-child(4) { animation-delay: 1.8s; }
.play .trust-stars svg:nth-child(5) { animation-delay: 2s; }

@keyframes star-pop {
  60% {
    opacity: 1;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.trust-quote {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.trust-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #24242e;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
}

.trust-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.trust-role {
  font-size: 11.5px;
  color: var(--color-text);
}

.trust-ssl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 999px;
  padding: 7px 13px;
  box-shadow: inset 0 0 0 1px var(--color-border), 0 1px 2px rgba(0, 0, 0, 0.05);
  opacity: 1;
}

.trust-ssl i {
  font-size: 14px;
  color: var(--color-green);
  flex-shrink: 0;
}

.trust-ssl-text {
  display: inline-block;
  min-width: 1ch;
  white-space: nowrap;
}

.trust-ssl-text.typing::after {
  content: "";
  display: inline-block;
  width: 1.5px;
  height: 0.9em;
  margin-left: 2px;
  vertical-align: -1px;
  background: var(--color-ink);
  animation: caret-blink 0.7s steps(1) infinite;
}

/* -- Google: arama sonucu -- */
.serp-widget {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.serp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(12px);
  min-height: 46px;
}

.play .serp-bar {
  animation: sk-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.serp-bar i {
  font-size: 15px;
  color: var(--color-gray);
  flex-shrink: 0;
}

.serp-query {
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  font-weight: 500;
  white-space: nowrap;
}

.serp-caret {
  width: 1.5px;
  height: 14px;
  background: var(--color-ink);
  border-radius: 1px;
  opacity: 0;
  flex-shrink: 0;
}

.serp-caret.on {
  opacity: 1;
  animation: caret-blink 0.7s steps(1) infinite;
}

@keyframes caret-blink {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }
}

.serp-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.serp-row {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 12px 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(10px);
}

.serp-ready .serp-row:nth-child(1) {
  animation: sk-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.serp-ready .serp-row:nth-child(2) {
  animation: sk-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.serp-ready .serp-row:nth-child(3) {
  animation: sk-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

.serp-you {
  box-shadow: 0 0 0 1.5px #222, 0 2px 6px rgba(0, 0, 0, 0.06);
}

.serp-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #222;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.serp-rank-dim {
  background: #f0f0f0;
  color: var(--color-gray);
  font-weight: 500;
}

.serp-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.serp-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.serp-url {
  font-size: 11.5px;
  letter-spacing: -0.01em;
  color: var(--color-gray);
}

.serp-sk {
  display: block;
  background: #efefef;
  border-radius: 5px;
}

.serp-sk-name {
  width: 130px;
  height: 10px;
}

.serp-sk-url {
  width: 90px;
  height: 8px;
}

.serp-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 999px;
  padding: 4px 11px;
  opacity: 0;
  transform: scale(0.6);
}

.serp-ready .serp-pill {
  animation: star-pop 0.5s cubic-bezier(0.34, 1.5, 0.64, 1) 0.35s forwards;
}

@media (max-width: 900px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .std-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .std-card,
  .std-card:nth-child(4),
  .std-card:nth-child(5) {
    grid-column: span 1;
  }
}

.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 128px 24px 120px;
}

.cta-card {
  background: #222;
  border-radius: 36px;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 22px;
}

.cta-badge .badge-text {
  color: #c9c9d4;
}

.cta-title {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 18px;
}

.cta-text {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.cta-buttons .btn i {
  font-size: 19px;
}


.footer {
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-toup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-dark);
  color: var(--color-white);
  transition: opacity 0.15s ease;
}

.footer-toup:hover {
  opacity: 0.7;
}

.footer-toup svg {
  width: 18px;
  height: 18px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-bottom: 8px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-heading {
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
  overflow: hidden;
  user-select: none;
}

.footer-brand-word {
  display: block;
  font-size: clamp(56px, 14vw, 190px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.85;
  white-space: nowrap;
  color: var(--color-ink);
  margin-bottom: -0.16em;
}

.footer-brand-word i {
  font-style: normal;
  color: var(--color-accent);
}

.footer-brand span {
  transform: translateY(55%);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.footer-brand.in-view span {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .footer-brand span {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--color-gray);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-badge-bg);
  color: var(--color-ink);
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: var(--color-badge-bg);
  border: none;
  border-radius: 50%;
  cursor: var(--cursor-hand);
  flex-shrink: 0;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.15s ease;
}

.menu-open .navbar-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .navbar-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow:
    rgba(0, 0, 0, 0.04) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.06) 0px 12px 32px -8px;
  padding: 12px;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  padding: 13px 16px;
  border-radius: 14px;
  transition: background-color 0.15s ease;
}

.mobile-menu-links a:hover {
  background-color: var(--color-badge-bg);
}

.mobile-menu-cta {
  width: 100%;
  padding: 13px 16px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px 0 14px;
  border: 1px solid rgba(18, 140, 82, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: #1fa855;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  background: #178f47;
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.985);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(31, 168, 85, 0.35);
  outline-offset: 3px;
}

.whatsapp-float i {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-perks {
    margin-top: 56px;
  }

  .hero-perk {
    padding: 0 18px;
  }

  .marquee-track {
    --card-gap: 14px;
  }

  .marquee-card {
    width: min(80vw, 600px);
    border-radius: 12px;
  }

  .section-title {
    font-size: 38px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .bento-visual {
    height: 340px;
  }

  .bars {
    height: 270px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
    margin-top: 40px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-hero {
    padding-top: 150px;
  }

  .addons {
    margin: 28px auto 0;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-card {
    padding: 60px 24px;
    border-radius: 30px;
  }

  .footer-brand {
    margin: 24px 0 0;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {

  .navbar-wrapper {
    top: 12px;
  }

  .navbar-links,
  .navbar-divider,
  .navbar-actions {
    display: none;
  }

  .navbar {
    width: 100%;
    justify-content: space-between;
    padding: 8px 8px 8px 16px;
  }

  .navbar-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    padding-top: 152px;
    padding-bottom: 32px;
  }

  .marquee-section {
    padding-top: 48px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    padding: 0 8px;
  }

  .hero-subtitle br,
  .section-title br,
  .cta-title br {
    display: none;
  }

  .hero-perks {
    flex-direction: column;
    gap: 28px;
    margin-top: 44px;
  }

  .hero-perk-divider {
    width: min(160px, 60%);
    height: 1px;
    align-self: center;
    background: linear-gradient(to right, transparent, var(--color-light-gray) 20%, var(--color-light-gray) 80%, transparent);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-social-proof {
    margin-top: 40px;
  }

  .marquee-card {
    width: 90vw;
    border-radius: 10px;
  }

  .features,
  .standards,
  .pricing,
  .faq {
    padding: 80px 16px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .bento-card {
    border-radius: 22px;
    padding: 28px 22px 34px;
  }

  .bento-visual {
    height: 320px;
    margin-bottom: 28px;
  }

  .price-card {
    border-radius: 26px;
    padding: 8px;
  }

  .price-head {
    padding: 24px 22px 26px;
  }

  .price-body {
    padding: 26px 18px 20px;
  }

  .pricing {
    padding: 80px 16px 0;
  }

  .reviews {
    padding: 0 0 96px;
  }

  .addons {
    margin: 24px auto 0;
  }

  .addons-title {
    font-size: 14px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .addon-card {
    padding: 20px 20px 22px;
  }

  .addon-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .addon-card h4 {
    font-size: 14.5px;
  }

  .addon-card p {
    font-size: 12.5px;
  }

  .addon-price {
    font-size: 12.5px;
  }

  .review-card {
    width: 320px;
    padding: 20px 20px 18px;
  }

  .review-text {
    font-size: 14px;
  }

  .cta {
    padding: 80px 16px 96px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .bars {
    height: 260px;
    gap: 11px;
  }

  .bar-col {
    width: 88px;
    border-radius: 16px;
  }

  .bar-price {
    font-size: 13px;
    padding: 13px 0 12px;
  }

  .bar {
    border-radius: 16px;
    padding-bottom: 15px;
  }

  .bar-label {
    font-size: 10px;
  }

  .fill-wrap {
    width: 156px;
    height: 156px;
  }

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

  .whatsapp-float span {
    display: none;
  }

  .faq {
    padding: 80px 16px 0;
  }

  .faq-q {
    font-size: 15px;
    padding: 20px 2px;
  }

  .faq-a>p {
    padding: 0 2px;
    font-size: 14px;
  }

  .faq-item.open .faq-a>p {
    padding: 0 2px 20px;
  }

  .cta {
    padding: 80px 16px 96px;
  }

  .cta-card {
    padding: 48px 20px;
    border-radius: 26px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-inner {
    padding: 40px 20px 32px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}


.sector {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.sector-intro p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.sector-intro p:last-child {
  margin-bottom: 0;
}

.sector-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.sector-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-ink);
}

.sector-list li i {
  color: var(--color-green);
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}

.sector-demo {
  max-width: 900px;
  margin: 64px auto 0;
  padding: 0 24px;
  text-align: center;
}

.sector-demo-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.04) 0px 12px 28px -12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-demo-card:hover {
  transform: translateY(-4px);
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.08) 0px 18px 36px -14px;
}

.sector-demo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.sector-demo-cap {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--color-text);
}

@media (max-width: 640px) {
  .sector-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


.sector-links {
  max-width: 800px;
  margin: 44px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sector-links a {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--color-badge-bg);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-ink);
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.sector-links a:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}


.turbo-progress-bar {
  background-color: var(--color-accent) !important;
  height: 3px !important;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-white);
  transform: translateY(-100%);
  will-change: transform;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition img {
  width: 128px;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition.is-covering,
.page-transition.is-leaving {
  pointer-events: auto;
}

.page-transition.is-covering {
  transform: translateY(0);
  transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition.is-covering img {
  opacity: 1;
  transition: opacity 0.35s ease 0.12s;
}

.page-transition.is-leaving {
  transform: translateY(100%);
  transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
}

.not-found {
  max-width: 1280px;
  margin: 0 auto;
  padding: 180px 24px 120px;
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found-code {
  font-family: "Geist Mono", "SF Mono", Consolas, monospace;
  font-size: clamp(96px, 18vw, 160px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--color-badge-bg);
  margin: 8px 0 12px;
  user-select: none;
  pointer-events: none;
}

.not-found .section-title {
  margin-bottom: 16px;
}

.not-found .hero-subtitle {
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .not-found {
    padding: 150px 20px 80px;
    min-height: calc(100vh - 180px);
  }

  .not-found .section-title br,
  .not-found .hero-subtitle br {
    display: none;
  }

  .not-found .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .not-found .hero-buttons .btn {
    width: 100%;
  }
}