/* ==========================================================================
   AK TAHSILAT — APPLICATION STYLES  (Warm & Corporate)
   Header, hero, sections, footer, pages, UI chrome.
   ========================================================================== */

/* SKIP LINK ---------------------------------------------------------------- */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: var(--z-toast);
  padding: 0.7rem 1.1rem; background: var(--sand-900); color: var(--text-inverse);
  border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 700;
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* --------------------------------------------------------------------------
   BRAND LOGO (real image, untouched)
   -------------------------------------------------------------------------- */
.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo__img { height: 46px; width: auto; max-width: none; }
.brand-logo--compact .brand-logo__img { height: 40px; }
.brand-logo--footer .brand-logo__img { height: 54px; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--header-h); display: flex; align-items: center;
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -16px rgba(74, 54, 40, 0.4);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
body { padding-top: var(--header-h); }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 0.1rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.25rem; white-space: nowrap;
  padding: 0.55rem 0.64rem; font-size: var(--fs-sm); font-weight: 600; color: var(--text-2);
  border-radius: var(--r-pill); transition: color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--text); background: var(--sand-100); }
.nav__link.is-active { color: var(--brand); }
.nav__caret { display: inline-flex; transition: transform var(--dur) var(--ease-out); }
.has-mega:hover .nav__caret { transform: rotate(180deg); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(760px, 90vw); padding: 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-xl);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur);
  z-index: var(--z-menu);
}
.mega::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.mega__title { font-size: var(--fs-eyebrow); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; padding-inline: 0.7rem; }
.mega__link { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.7rem; border-radius: var(--r-md); transition: background var(--dur) var(--ease-out); }
.mega__link:hover { background: var(--sand-50); }
.mega__icon { display: grid; place-items: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); }
.mega__link-title { display: block; font-weight: 700; font-size: var(--fs-sm); color: var(--text); }
.mega__link-desc { display: block; font-size: var(--fs-xs); color: var(--text-muted); }
.mega__cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; padding: 1.1rem 1.3rem; background: var(--bg-warm); border-radius: var(--r-lg); }
.mega__cta-title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h4); }
.mega__cta-desc { font-size: var(--fs-xs); color: var(--text-muted); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav { flex-shrink: 0; }   /* never shrink below the menu's own width (would clip İletişim) */
.site-header__panel, .site-header__demo { display: none; }

.hamburger { display: inline-grid; place-items: center; gap: 5px; width: 46px; height: 46px; border-radius: 14px; }
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--text); transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out); }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Inline desktop nav only appears when all 8 menu items + logo + CTAs truly fit.
   Below this, the hamburger drawer (which lists every item incl. İletişim) is used. */
@media (min-width: 1200px) {
  .nav { display: block; }
  .hamburger { display: none; }
  .site-header__panel { display: inline-flex; }
}

/* MOBILE MENU -------------------------------------------------------------- */
.mobile-menu { position: fixed; inset: 0; z-index: var(--z-overlay); visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(41, 34, 25, 0.42); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; transition: opacity var(--dur) var(--ease-out); }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(370px, 88vw);
  display: flex; flex-direction: column; padding: 1.4rem;
  background: var(--bg); border-left: 1px solid var(--border); box-shadow: var(--shadow-xl);
  transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out); overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mobile-menu__list { display: grid; gap: 0.2rem; margin-bottom: 1.5rem; }
.mobile-menu__link { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.1rem; border-radius: var(--r-md); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--text); transition: background var(--dur) var(--ease-out); }
.mobile-menu__link svg { color: var(--text-muted); transition: transform var(--dur) var(--ease-out); }
.mobile-menu__link:hover { background: var(--sand-100); }
.mobile-menu__link:hover svg { transform: translate(2px, -2px); color: var(--brand); }
.mobile-menu__link.is-active { color: var(--brand); }
.mobile-menu__actions { display: grid; gap: 0.6rem; margin-top: auto; }
.mobile-menu__foot { display: grid; gap: 0.6rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.mobile-menu__foot a { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-2); }
.mobile-menu__foot svg { color: var(--brand); }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(2.5rem, 1rem + 6vw, 5rem) clamp(3.5rem, 2rem + 5vw, 6.5rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(42% 50% at 82% 6%, rgba(222, 27, 34, 0.07), transparent 60%),
    radial-gradient(40% 48% at 96% 40%, rgba(198, 101, 61, 0.10), transparent 62%),
    radial-gradient(50% 55% at 8% 4%, rgba(240, 231, 216, 0.7), transparent 65%),
    radial-gradient(rgba(94, 74, 54, 0.05) 1.3px, transparent 1.3px);
  background-size: auto, auto, auto, 30px 30px;
  -webkit-mask-image: radial-gradient(130% 100% at 60% 0%, #000 45%, transparent 82%);
  mask-image: radial-gradient(130% 100% at 60% 0%, #000 45%, transparent 82%);
}
/* connection-node decorations flanking the centered text */
.hero__deco { position: absolute; z-index: 0; top: 12%; width: 300px; height: 300px; opacity: 0.20; pointer-events: none; color: var(--brand); display: none; }
.hero__deco svg { width: 100%; height: 100%; }
.hero__deco path { fill: none; }
.hero__deco circle { fill: currentColor; }
.hero__deco--l { left: -1%; }
.hero__deco--r { right: -1%; }
@media (min-width: 1024px) { .hero__deco { display: block; } }
.hero__glow { z-index: 0; }
.hero__glow--1 { position: absolute; width: 560px; height: 560px; top: -160px; right: -120px; border-radius: 50%; filter: blur(90px); opacity: 0.5; background: radial-gradient(circle, var(--brand-glow), transparent 70%); }
.hero__glow--2 { position: absolute; width: 460px; height: 460px; bottom: -200px; left: -140px; border-radius: 50%; filter: blur(90px); opacity: 0.5; background: radial-gradient(circle, rgba(198,101,61,0.16), transparent 70%); }
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }

/* --- Hero banner slider --- */
.hero-slider { position: relative; z-index: 1; }
.hero-slider__viewport { overflow: hidden; }
.hero-slider__track { display: flex; transition: transform 0.7s var(--ease-out); }
.hero-slide { min-width: 100%; }
.hero-slide__grid { display: grid; gap: clamp(2.25rem, 6vw, 4rem); align-items: center; }
.hero-slide__content { align-self: center; }
.hero-slider__controls { display: flex; align-items: center; justify-content: center; gap: 1.75rem; margin-top: clamp(2rem, 4vw, 3rem); }
.hero-slider__dots { display: flex; align-items: center; gap: 0.5rem; }
.hero-slider__dot { width: 9px; height: 9px; padding: 0; border-radius: 999px; background: var(--border-strong); border: 0; cursor: pointer; transition: width var(--dur) var(--ease-out), background var(--dur) var(--ease-out); }
.hero-slider__dot:hover { background: var(--sand-400); }
.hero-slider__dot.is-active { width: 30px; background: var(--brand); }
.hero-slider__arrows { display: flex; gap: 0.5rem; }
.hero-slider__arrow { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text); transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.hero-slider__arrow:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ak-icon.flip { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) { .hero-slider__track { transition: none; } }
@media (min-width: 1024px) { .hero-slide__grid { grid-template-columns: 1.05fr 0.95fr; } }

/* Text-only centered hero */
.hero--text { text-align: center; }
.hero-slide__inner { max-width: 940px; margin-inline: auto; text-align: center; padding-block: clamp(1rem, 3vw, 2.75rem); }
.hero--text .hero__title { margin-top: 1.5rem; }
.hero--text .hero__lead { margin: 1.6rem auto 0; max-width: 60ch; }
.hero--text .hero__actions { justify-content: center; margin-top: 2.25rem; }
.hero--text .hero__trust { justify-content: center; margin-top: 2rem; }
.hero-slider--text .hero-slider__controls { margin-top: clamp(2.25rem, 4vw, 3.25rem); }
.hero__eyebrow { }
.hero__title { margin-top: 1.4rem; }
.hero__title-accent { display: block; color: var(--brand); }
.hero__lead { margin-top: 1.5rem; }
.hero__lead strong { color: var(--text); font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--fs-sm); color: var(--text-2); font-weight: 500; }
.hero__trust svg { color: var(--success); }

.hero__rating { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero__rating-avatars { display: flex; }
.hero__rating-avatars span { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--bg); margin-left: -13px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: #fff; box-shadow: var(--shadow-sm); }
.hero__rating-avatars span:first-child { margin-left: 0; }
.hero__rating-stars { display: flex; gap: 2px; color: #E8A23D; margin-bottom: 2px; }
.hero__rating-text { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.35; }
.hero__rating-text strong { display: block; color: var(--text); font-weight: 700; font-size: var(--fs-body); }

.hero__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.hero__stat { background: var(--surface); padding: 1.6rem 1.35rem; text-align: center; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.hero__stat-value { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.7rem); letter-spacing: -0.02em; color: var(--text); }
.hero__stat-label { display: block; margin-top: 0.35rem; font-size: var(--fs-xs); color: var(--text-muted); }

/* Hero product preview */
.hero__visual { position: relative; }
.hero-dash { position: relative; z-index: 2; padding: 1.35rem; border-radius: var(--r-2xl); box-shadow: var(--shadow-xl); border: 1px solid var(--border); background: var(--surface); }
.hero-dash__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.hero-dash__title { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h4); }
.hero-dash__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }
.hero-dash__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.1rem; }
.hero-dash__stat { padding: 1rem; background: var(--surface-tint); border-radius: var(--r-md); }
.hero-dash__stat-label { display: block; font-size: var(--fs-xs); color: var(--text-muted); }
.hero-dash__stat-value { display: block; margin-top: 0.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; letter-spacing: -0.02em; color: var(--text); }
.hero-dash__stat-trend { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.4rem; font-size: var(--fs-xs); font-weight: 700; }
.hero-dash__stat-trend.up { color: var(--success); }
.hero-dash__chart { padding: 1rem; background: var(--surface-tint); border-radius: var(--r-md); margin-bottom: 1.1rem; }
.hero-dash__chart-head { display: flex; justify-content: space-between; font-size: var(--fs-xs); font-weight: 700; color: var(--text-2); margin-bottom: 0.6rem; }
.hero-dash__spark { width: 100%; height: 72px; }
.hero-dash__line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: dash 2s var(--ease-out) forwards 0.4s; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.hero-dash__banks { display: grid; gap: 0.6rem; }
.hero-dash__bank { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 0.8rem; font-size: var(--fs-xs); color: var(--text-2); font-weight: 600; }
.hero-dash__bank-bar { height: 9px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--red-400)); width: var(--w); transform-origin: left; animation: growBar 1.2s var(--ease-out) forwards; }
@keyframes growBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-float { position: absolute; z-index: 3; display: none; }
.hero-float--1 { top: 40%; left: -8%; }
.hero-float--2 { bottom: 6%; left: -7%; align-items: center; gap: 0.75rem; padding: 0.85rem 1.05rem; }
.hero-float--3 { top: -3%; right: -6%; }
.hero-float.badge { background: var(--surface); box-shadow: var(--shadow-lg); border-color: var(--border); }
.hero-float.card { box-shadow: var(--shadow-lg); }
.hero-float__icon { display: inline-flex; color: var(--success); }
.hero-float__title { font-weight: 700; font-size: var(--fs-sm); }
.hero-float__sub { font-size: var(--fs-xs); color: var(--text-muted); }
.hero-float__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 55%, transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 55%, transparent); } 70% { box-shadow: 0 0 0 11px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* --------------------------------------------------------------------------
   MARQUEE (logos)
   -------------------------------------------------------------------------- */
.logos__label { text-align: center; font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1.85rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; gap: 0.75rem; padding-right: 0.75rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   SECTION HEADING
   -------------------------------------------------------------------------- */
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { margin-inline: auto; }
.section-heading__title { margin-top: 1.1rem; }
.section-heading--center .section-heading__title::after {
  content: ""; display: block; width: 62px; height: 4px; margin: 1.4rem auto 0;
  border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--clay-500));
}
.section-heading__sub { margin-top: 1.4rem; }

/* --------------------------------------------------------------------------
   WHAT IS
   -------------------------------------------------------------------------- */
.what-is__grid { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
.what-is__list { display: grid; gap: 1rem; margin-top: 2.2rem; }
.what-is__list li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--text-2); }
.what-is__list strong { color: var(--text); font-weight: 700; }
.what-is__check { display: grid; place-items: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 9px; background: var(--success-soft); color: var(--success); margin-top: 1px; }
.what-is a.link-arrow { margin-top: 2rem; }
.what-is__cards { position: relative; display: grid; gap: 1.1rem; }
.what-is__card-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: var(--fs-sm); margin-bottom: 1rem; }
.what-is__card-tag--no { color: var(--brand); }
.what-is__card-tag--yes { color: var(--success); }
.what-is__card ul { display: grid; gap: 0.65rem; }
.what-is__card li { position: relative; padding-left: 1.5rem; font-size: var(--fs-sm); color: var(--text-2); }
.what-is__card li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 2px; border-radius: 2px; background: currentColor; opacity: 0.4; }
.what-is__card--no { border-left: 3px solid var(--brand); }
.what-is__card--yes { border-left: 3px solid var(--success); }
.what-is__badge { display: flex; align-items: center; gap: 0.85rem; padding: 1.1rem 1.3rem; position: absolute; right: -10px; bottom: -28px; z-index: 3; box-shadow: var(--shadow-lg); }
.what-is__badge-title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h4); }
.what-is__badge-sub { font-size: var(--fs-xs); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   TIMELINE (how it works)
   -------------------------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 1.4rem; }
.timeline__progress { display: none; }
.timeline__item { display: flex; gap: 1.35rem; align-items: stretch; }
.timeline__marker { position: relative; display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline__icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); color: var(--brand); box-shadow: var(--shadow-sm); z-index: 1; }
.timeline__num { position: absolute; top: -8px; right: -8px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 0.7rem; font-weight: 800; font-family: var(--font-sans); box-shadow: var(--shadow-brand); }
.timeline__body { flex: 1; }
.timeline__title { margin-bottom: 0.4rem; }

/* --------------------------------------------------------------------------
   ADVANTAGES
   -------------------------------------------------------------------------- */
.advantages__grid { grid-template-columns: 1fr; }
.advantages__card { display: flex; flex-direction: column; }
.advantages__title { margin: 1.3rem 0 0.55rem; }

/* --------------------------------------------------------------------------
   FEATURES BENTO
   -------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.bento__cell { display: flex; flex-direction: column; }
.bento__title { margin: 1.15rem 0 0.55rem; }
.bento__cell--feature { gap: 1.75rem; background: var(--bg-warm); border-color: var(--border-strong); }
.bento__feature-text .icon-box { margin-bottom: 1.2rem; }
.bento__feature-text h3 { margin-bottom: 0.7rem; }
.bento__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.2rem; }
.bento__feature-visual { display: flex; justify-content: center; }

.pay-mock { width: 100%; max-width: 320px; padding: 1.35rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
.pay-mock__head { display: flex; align-items: center; gap: 0.45rem; font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: 1rem; }
.pay-mock__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.pay-mock__amount { font-family: var(--font-display); font-weight: 600; font-size: 2.1rem; letter-spacing: -0.02em; margin-bottom: 1.1rem; color: var(--text); }
.pay-mock__amount span { font-size: 1.1rem; color: var(--text-muted); }
.pay-mock__field { position: relative; height: 46px; border-radius: 12px; background: var(--surface-tint); border: 1px solid var(--border-strong); margin-bottom: 0.65rem; display: flex; align-items: center; padding-inline: 1rem; }
.pay-mock__ph { font-size: var(--fs-sm); color: var(--text-muted); }
.pay-mock__brand { position: absolute; right: 1rem; width: 32px; height: 21px; border-radius: 5px; background: linear-gradient(120deg, var(--brand), var(--red-400)); }
.pay-mock__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.pay-mock__field--sm { margin-bottom: 1rem; }
.pay-mock__btn { display: flex; align-items: center; justify-content: center; gap: 0.45rem; height: 48px; border-radius: 12px; font-size: var(--fs-sm); font-weight: 700; color: #fff; background: var(--brand); box-shadow: var(--shadow-brand); }

/* --------------------------------------------------------------------------
   PARTNERS
   -------------------------------------------------------------------------- */
.partners__tabs { display: flex; justify-content: center; margin-bottom: 2.2rem; }
.tab__count { display: inline-grid; place-items: center; min-width: 22px; height: 20px; padding-inline: 6px; margin-left: 0.4rem; border-radius: 999px; font-size: 0.68rem; font-weight: 800; background: var(--brand-soft); color: var(--brand); }
.tab.is-active .tab__count { background: rgba(255,255,255,0.25); color: #fff; }
.partners__panel { display: none; }
.partners__panel.is-active { display: block; animation: fadeUp 0.5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.partners__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.brand-chip--tile { justify-content: flex-start; padding: 1.1rem 1.2rem; }
.partners__note { margin-top: 2.2rem; }
.partners__note em { color: var(--text-2); font-style: italic; }

/* --------------------------------------------------------------------------
   SCREENS / BROWSER / PANEL MOCK
   -------------------------------------------------------------------------- */
.screens__stage { display: grid; gap: 2.2rem; }
.browser { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-xl); }
.browser__bar { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1.1rem; background: var(--surface-tint); border-bottom: 1px solid var(--border); }
.browser__dots { display: flex; gap: 0.4rem; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; }
.browser__dots i:nth-child(1) { background: #FF5F57; }
.browser__dots i:nth-child(2) { background: #FEBC2E; }
.browser__dots i:nth-child(3) { background: #28C840; }
.browser__url { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 1rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: var(--fs-xs); color: var(--text-muted); }
.browser__url svg { color: var(--success); }

/* Real screenshot inside the browser frame */
.browser__img { display: block; width: 100%; height: auto; }
.browser--hero { border-radius: var(--r-2xl); box-shadow: var(--shadow-xl); }

/* Screens showcase — large, full-width real screenshots with tabs */
.screens__switch { display: flex; justify-content: center; margin-bottom: 2.2rem; }
.screens__tabs { flex-wrap: wrap; justify-content: center; max-width: 100%; }
.screens__showcase { max-width: 1120px; margin: 0 auto; }
.screens__browser { box-shadow: var(--shadow-xl); }
.screens__frame { position: relative; aspect-ratio: 2000 / 1000; background: var(--sand-100); }
.screens__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transition: opacity 0.55s var(--ease-out); }
.screens__img.is-active { opacity: 1; }
.screens__caption { text-align: center; margin-top: 1.6rem; font-size: var(--fs-sm); color: var(--text-muted); }
.screens__cap { display: none; }
.screens__cap.is-active { display: inline; }
.screens__cap strong { color: var(--text); font-weight: 800; }
.screens__item { cursor: pointer; }
.screens__item:hover:not(.is-active) { background: var(--surface); border-color: var(--border); box-shadow: var(--shadow-xs); }

.panel-mock { display: grid; grid-template-columns: 1fr; background: var(--bg-subtle); }
.panel-mock__side { display: none; }
.panel-mock__main { padding: 1.2rem; }
.panel-mock__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.panel-mock__title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.panel-mock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.1rem; }
.panel-mock__card { padding: 0.9rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }
.panel-mock__card span { font-size: 0.66rem; color: var(--text-muted); }
.panel-mock__card b { display: block; margin-top: 0.25rem; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: -0.02em; }
.panel-mock__card i { display: inline-flex; align-items: center; gap: 0.2rem; margin-top: 0.3rem; font-size: 0.62rem; font-style: normal; font-weight: 700; }
.panel-mock__card i.up { color: var(--success); }
.panel-mock__row { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.panel-mock__chart, .panel-mock__donut-wrap { padding: 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }
.panel-mock__chart-head { font-size: 0.72rem; font-weight: 700; color: var(--text-2); margin-bottom: 0.8rem; }
.panel-mock__bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 110px; }
.panel-mock__bar { flex: 1; height: var(--h); border-radius: 7px 7px 4px 4px; background: linear-gradient(180deg, var(--red-400), var(--brand)); transform-origin: bottom; animation: growBar 1s var(--ease-out) both; }
.panel-mock__donut-wrap { display: flex; flex-direction: column; align-items: center; }
.panel-mock__donut { width: 120px; height: 120px; border-radius: 50%; background: conic-gradient(var(--brand) 0 46%, #1E64FF 46% 74%, var(--success) 74% 100%); -webkit-mask: radial-gradient(circle 38px at center, transparent 98%, #000 100%); mask: radial-gradient(circle 38px at center, transparent 98%, #000 100%); margin: 0.4rem 0 0.9rem; }
.panel-mock__legend { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.panel-mock__legend span { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; color: var(--text-2); }
.panel-mock__legend i { width: 9px; height: 9px; border-radius: 3px; }

.screens__list { display: grid; gap: 0.6rem; }
.screens__item { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.15rem 1.3rem; border-radius: var(--r-lg); border: 1px solid transparent; transition: all var(--dur) var(--ease-out); }
.screens__item.is-active { background: var(--surface); border-color: var(--border); box-shadow: var(--shadow-sm); }
.screens__num { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--brand); flex-shrink: 0; }
.screens__item-title { font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-h4); color: var(--text); }
.screens__item-text { margin-top: 0.2rem; }

/* --------------------------------------------------------------------------
   PACKAGES
   -------------------------------------------------------------------------- */
.packages__grid { grid-template-columns: 1fr; align-items: start; }
.package { position: relative; padding: 2.2rem 1.9rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.package:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.package--featured { background: var(--sand-900); border-color: transparent; box-shadow: var(--shadow-xl); color: var(--sand-100); }
.package--featured .package__name, .package--featured .package__amount { color: #fff; }
.package--featured .package__tagline, .package--featured .package__period, .package--featured .package__features li { color: var(--sand-300); }
.package--featured .package__check { background: rgba(255,255,255,0.12); color: #fff; }
.package__ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 1rem; border-radius: 999px; background: var(--brand); color: #fff; font-size: var(--fs-xs); font-weight: 800; box-shadow: var(--shadow-brand); }
.package__name { margin-bottom: 0.35rem; }
.package__tagline { font-size: var(--fs-sm); }
.package__price { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.4rem 0 1.6rem; }
.package__amount { font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; letter-spacing: -0.02em; color: var(--text); }
.package__period { font-size: var(--fs-sm); color: var(--text-muted); }
.package__features { display: grid; gap: 0.8rem; margin-top: 1.9rem; }
.package__features li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: var(--fs-sm); color: var(--text-2); }
.package__check { display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; width: 21px; height: 21px; border-radius: 7px; background: var(--brand-soft); color: var(--brand); }
.packages__foot { margin-top: 2.8rem; }

/* Installment highlight banner */
.packages__installment {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.85rem; text-align: center;
  max-width: 700px; margin: 0 auto clamp(2.25rem, 4vw, 3.25rem);
  padding: 1rem 1.5rem;
  background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 13%, transparent);
  border-radius: var(--r-lg);
}
.packages__installment-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--surface); color: var(--brand); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.packages__installment p { font-size: var(--fs-sm); color: var(--text-2); }
.packages__installment strong { color: var(--brand-strong); font-weight: 800; }

/* Per-card installment note */
.package__installment { display: flex; align-items: center; gap: 0.45rem; font-size: var(--fs-xs); color: var(--text-2); margin: -0.6rem 0 1.4rem; }
.package__installment svg { color: var(--brand); flex-shrink: 0; }
.package__installment strong { color: var(--text); font-weight: 700; }
.package--featured .package__installment { color: var(--sand-300); }
.package--featured .package__installment svg { color: var(--red-300); }
.package--featured .package__installment strong { color: #fff; }

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials__grid { grid-template-columns: 1fr; }
.testimonial { display: flex; flex-direction: column; gap: 1.2rem; }
.testimonial__stars { display: flex; gap: 0.15rem; color: #E8A23D; }
.testimonial__quote { font-family: var(--font-sans); font-weight: 500; font-size: 1.12rem; line-height: 1.6; color: var(--text); }
.testimonial__author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.testimonial__name { display: block; font-weight: 700; font-size: var(--fs-sm); }
.testimonial__role { display: block; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq__grid { display: grid; gap: 2.5rem; align-items: start; }
.faq__contact { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding: 1.4rem; background: var(--bg-warm); border-color: var(--border-strong); }
.faq__contact-title { font-weight: 700; margin-bottom: 0.2rem; }

/* --------------------------------------------------------------------------
   BLOG
   -------------------------------------------------------------------------- */
.blog__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.8rem; }
.blog__head .section-heading { margin-bottom: 0; }
.blog__all { align-self: flex-start; }
.blog__grid { grid-template-columns: 1fr; }
.blog-card { padding: 0; overflow: hidden; }
.blog-card__cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: grid; place-items: center; background: radial-gradient(120% 120% at 20% 0%, color-mix(in srgb, var(--brand) 20%, transparent), transparent 55%), linear-gradient(135deg, var(--sand-800), var(--sand-900)); }
.blog-card__cover-mark { color: rgba(255,255,255,0.35); }
.blog-card__cat { position: absolute; top: 1rem; left: 1rem; background: var(--surface); }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }
.blog-card__title { margin-bottom: 0.6rem; transition: color var(--dur) var(--ease-out); }
.blog-card:hover .blog-card__title { color: var(--brand); }
.blog-card__more { margin-top: 1.1rem; }

/* References */
.refs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.ref-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; padding: clamp(1.5rem, 3vw, 2.25rem); }
.ref-card__logo { min-height: 62px; display: grid; place-items: center; margin-bottom: 0.4rem; }
.ref-card__logo img { max-height: 62px; max-width: 170px; object-fit: contain; }
.ref-card__mono { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 15px; background: var(--brand-soft); color: var(--brand); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.ref-card__name { font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-h4); color: var(--text); }
.ref-card__person { display: inline-flex; align-items: center; gap: 0.35rem; }
@media (min-width: 640px) { .refs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .refs-grid { grid-template-columns: repeat(4, 1fr); } }

/* Blog search */
.blog-search { display: flex; gap: 0.6rem; max-width: 520px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.blog-search__input { flex: 1; position: relative; }
.blog-search__input input { width: 100%; padding: 0.9rem 1.1rem 0.9rem 2.9rem; font-size: var(--fs-sm); background: var(--surface); border: 1.5px solid var(--border-strong); border-radius: var(--r-pill); color: var(--text); transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.blog-search__input input:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }
.blog-search__input svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.blog-search__meta { text-align: center; margin-bottom: 2rem; color: var(--text-muted); font-size: var(--fs-sm); }
.blog-search__meta a { color: var(--brand); font-weight: 600; }

/* --------------------------------------------------------------------------
   FOOTER (warm light)
   -------------------------------------------------------------------------- */
.site-footer { position: relative; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: 2.5rem; background: var(--bg-warm); overflow: hidden; }
.site-footer__glow { position: absolute; width: 700px; height: 400px; top: -220px; left: 50%; transform: translateX(-50%); border-radius: 50%; filter: blur(90px); opacity: 0.4; background: radial-gradient(circle, var(--brand-glow), transparent 70%); }
.site-footer > .container { position: relative; z-index: 1; }
.site-footer__cta { display: grid; gap: 1.75rem; padding: clamp(2rem, 4vw, 3.5rem); margin-bottom: clamp(3rem, 6vw, 4.5rem); background: var(--surface); box-shadow: var(--shadow-md); border-color: transparent; }
.site-footer__cta .h2 { margin: 0.9rem 0 0.75rem; }
.site-footer__cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.site-footer__main { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-strong); }
.site-footer__tagline { margin-top: 1.2rem; color: var(--text-2); font-size: var(--fs-sm); }
.site-footer__social { display: flex; gap: 0.5rem; margin-top: 1.4rem; }
.site-footer__social-link { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--surface); border: 1px solid var(--border); color: var(--text-2); transition: all var(--dur) var(--ease-out); }
.site-footer__social-link:hover:not(.is-disabled) { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.site-footer__social-link.is-disabled { opacity: 0.4; }
.site-footer__col-title { font-family: var(--font-sans); font-weight: 800; font-size: var(--fs-sm); margin-bottom: 1.1rem; color: var(--text); }
.site-footer__col ul { display: grid; gap: 0.75rem; }
.site-footer__col a, .site-footer__contact span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-2); transition: color var(--dur) var(--ease-out); }
.site-footer__col a:hover { color: var(--brand); }
.site-footer__contact svg { color: var(--brand); flex-shrink: 0; }
.site-footer__contact li { margin-bottom: 0.75rem; }
.site-footer__bar { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 2rem; font-size: var(--fs-xs); color: var(--text-muted); }
.site-footer__note { max-width: 62ch; }

/* --------------------------------------------------------------------------
   TOAST / COOKIE / TO-TOP
   -------------------------------------------------------------------------- */
.toast { position: fixed; top: calc(var(--header-h) + 12px); left: 50%; transform: translateX(-50%) translateY(-16px); z-index: var(--z-toast); display: flex; align-items: center; gap: 0.7rem; max-width: 92vw; padding: 0.95rem 1.15rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); font-size: var(--fs-sm); opacity: 0; transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast__icon { display: inline-flex; }
.toast--ok .toast__icon { color: var(--success); }
.toast--err .toast__icon { color: var(--brand); }
.toast__close { display: inline-flex; color: var(--text-muted); margin-left: 0.25rem; }

.cookie { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: var(--z-toast); width: min(680px, 92vw); padding: 1.2rem 1.35rem; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-xl); }
.cookie[hidden] { display: none; }
.cookie__inner { display: flex; flex-direction: column; gap: 1rem; }
.cookie p { display: flex; align-items: flex-start; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-2); }
.cookie svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.cookie a { color: var(--brand); font-weight: 700; }
.cookie__actions { display: flex; gap: 0.6rem; justify-content: flex-end; }

.to-top { position: fixed; right: 20px; bottom: 20px; z-index: var(--z-header); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: var(--sand-900); color: var(--text-inverse); box-shadow: var(--shadow-lg); transform: rotate(180deg) translateY(16px); opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out); }
.to-top.is-show { opacity: 1; pointer-events: auto; transform: rotate(180deg) translateY(0); }
.to-top:hover { background: var(--brand); }

/* --------------------------------------------------------------------------
   INNER PAGE HERO + PROSE + STATE
   -------------------------------------------------------------------------- */
.page-hero { position: relative; padding-block: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(90% 90% at 80% 0%, var(--surface-tint), transparent 60%); }
.page-hero > .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--brand); }
.page-hero__title { margin: 1.1rem 0 0.85rem; }
.page-hero__sub { margin-top: 0.5rem; }

.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: var(--fs-h3); margin-top: 2.75rem; }
.prose h3 { font-size: var(--fs-h4); margin-top: 2rem; }
.prose p, .prose li { color: var(--text-2); }
.prose ul { display: grid; gap: 0.6rem; padding-left: 1.2rem; list-style: disc; }
.prose a { color: var(--brand); font-weight: 600; }
.prose .lead { color: var(--text); }

.state-page { min-height: 66vh; display: grid; place-items: center; text-align: center; padding: 3rem 0; }
.state-page__code { font-family: var(--font-display); font-weight: 600; font-size: clamp(4.5rem, 12vw, 9rem); line-height: 1; letter-spacing: -0.03em; color: var(--brand); }
.state-page__title { margin: 1rem 0 0.75rem; }
.state-page .btn { margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   CONTACT / DEMO / BLOG SINGLE
   -------------------------------------------------------------------------- */
.contact__grid { display: grid; gap: 2rem; align-items: start; }
.contact__cards { display: grid; grid-template-columns: 1fr; gap: 0.8rem; margin-bottom: 1rem; }
.contact__card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.3rem; }
.contact__card-label { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: 0.15rem; }
.contact__card-value { font-weight: 700; font-size: var(--fs-sm); color: var(--text); white-space: nowrap; }
.contact__card-value--sm { font-weight: 500; font-size: var(--fs-xs); color: var(--text-2); line-height: 1.5; white-space: normal; }
.contact__map { height: 280px; padding: 0; overflow: hidden; }
.contact__map iframe { width: 100%; height: 100%; }
.contact__form-title { margin-bottom: 0.4rem; }
.contact__form-sub { margin-bottom: 1.6rem; }
.contact__form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.contact__form-grid + .field { margin-top: 1rem; }
.contact__kvkk { margin: 1.35rem 0; }

.demo__grid { display: grid; gap: 2rem; align-items: start; }
.demo__benefits { display: grid; gap: 1.2rem; margin-bottom: 1.6rem; }
.demo__benefit { display: flex; align-items: flex-start; gap: 1rem; }
.demo__benefit-title { font-weight: 700; color: var(--text); }
.demo__trust { padding: 1.6rem; background: var(--bg-warm); border-color: var(--border-strong); }
.demo__trust-quote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; margin: 0.85rem 0 0.5rem; color: var(--text); }
.demo__form h2 { margin-bottom: 0.4rem; }
.demo__form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.demo__form-grid + .field { margin-top: 1rem; }
.demo__recaptcha { display: flex; align-items: center; gap: 0.5rem; margin: 1.35rem 0; padding: 0.95rem 1.15rem; background: var(--success-soft); border-radius: var(--r-md); color: var(--text-2); }
.demo__recaptcha svg { color: var(--success); }

.blog-single__meta { display: flex; gap: 0.5rem; }
.blog-single__body { padding-top: 2.2rem; }
.blog-single__cover { aspect-ratio: 16 / 9; border-radius: var(--r-2xl); display: grid; place-items: center; margin-bottom: 2.75rem; background: radial-gradient(120% 120% at 20% 0%, color-mix(in srgb, var(--brand) 20%, transparent), transparent 55%), linear-gradient(135deg, var(--sand-800), var(--sand-900)); color: rgba(255,255,255,0.35); }
.blog-single__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.35rem; margin-top: 2.75rem; padding: 1.9rem; background: var(--bg-warm); border-color: var(--border-strong); }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--feature { grid-column: span 2; flex-direction: row; align-items: center; }
  .bento__feature-text, .bento__feature-visual { flex: 1; }
  .advantages__grid, .testimonials__grid, .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .cookie__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie__actions { flex-shrink: 0; }
  .site-footer__bar { flex-direction: row; align-items: center; justify-content: space-between; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .contact__form-grid, .demo__form-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .site-header__demo { display: inline-flex; }
  .site-footer__main { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.15fr; gap: 2.25rem; }
  .site-footer__brand { grid-column: auto; }
  .advantages__grid { grid-template-columns: repeat(3, 1fr); }
  .partners__grid { grid-template-columns: repeat(4, 1fr); }
  .packages__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: repeat(3, 1fr); }
  .faq__grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
  .blog__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.6rem; }
  .timeline__item { flex-direction: column; }
  .timeline__marker { flex-direction: row; width: 100%; }
  .site-footer__cta { grid-template-columns: 1.4fr 1fr; align-items: center; }
  .site-footer__cta-actions { justify-content: flex-end; }
}

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .what-is__grid { grid-template-columns: 1.05fr 0.95fr; }
  .screens__stage { grid-template-columns: 1.5fr 1fr; align-items: center; }
  .panel-mock { grid-template-columns: 190px 1fr; }
  .panel-mock__side { display: block; padding: 1.15rem; background: var(--sand-900); }
  .panel-mock__row { grid-template-columns: 1.4fr 1fr; }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento__cell--feature { grid-column: span 3; }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; }
  .demo__grid { grid-template-columns: 0.82fr 1.18fr; }
}

@media (min-width: 1024px) {
  .hero-float { display: inline-flex; }
  .hero-float--2 { display: flex; }
}
@media (min-width: 1200px) {
  .hero-float--1 { left: -11%; }
  .hero-float--2 { left: -13%; }
  .hero-float--3 { right: -9%; }
}

@media (min-width: 900px) {
  .timeline::before { content: ""; position: absolute; top: 31px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px); z-index: 0; }
}

/* Panel mock sidebar (dark, mirrors the real admin) */
.panel-mock__brand { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 1.3rem; }
.panel-mock__logo { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 800; font-family: var(--font-sans); }
.panel-mock__nav { display: grid; gap: 0.2rem; }
.panel-mock__nav-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.58rem 0.7rem; border-radius: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.panel-mock__nav-item svg { width: 16px; height: 16px; }
.panel-mock__nav-item.is-active { background: rgba(222,27,34,0.18); color: #fff; }
.panel-mock__nav-item.is-active svg { color: var(--red-400); }

/* ==========================================================================
   PREMIUM ELEVATION — texture, depth & richer detail
   ========================================================================== */

/* Card hover accent line (brand → clay), for content cards */
.advantages__card, .timeline__body, .testimonial,
.bento__cell.card:not(.bento__cell--feature) { position: relative; overflow: hidden; }
.advantages__card::after, .timeline__body::after, .testimonial::after,
.bento__cell.card:not(.bento__cell--feature)::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; margin-inline: 24px;
  border-radius: 0 0 4px 4px; background: linear-gradient(90deg, var(--brand), var(--clay-500));
  transform: scaleX(0.25); transform-origin: left; opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.advantages__card:hover::after, .timeline__body:hover::after,
.testimonial:hover::after, .bento__cell.card:not(.bento__cell--feature):hover::after {
  transform: scaleX(1); opacity: 1;
}

/* Big index number watermark on advantage cards */
.advantages__card { padding-top: 2.4rem; }

/* Apply gradient mesh to key light sections */
.hero { background: transparent; }
.section-alt { background: transparent; }
.what-is.section-alt, .testimonials.section-alt, .partners.section-alt { position: relative; }
.what-is.section-alt { background-color: var(--bg-subtle); background-image: radial-gradient(45% 55% at 90% 0%, rgba(222,27,34,0.04), transparent 60%), radial-gradient(50% 60% at 5% 100%, rgba(198,101,61,0.05), transparent 65%); }
.testimonials.section-alt { background-color: var(--bg-subtle); background-image: radial-gradient(40% 50% at 10% 5%, rgba(198,101,61,0.05), transparent 60%); }
.partners.section-alt { background-color: var(--bg-subtle); background-image: radial-gradient(45% 55% at 85% 100%, rgba(222,27,34,0.045), transparent 60%); }

/* --------------------------------------------------------------------------
   IMPACT BAND (dark warm) — professional numbers/trust statement
   -------------------------------------------------------------------------- */
.impact { position: relative; padding-block: clamp(3.5rem, 3rem + 4vw, 6rem); }
.impact__panel {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  padding: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(222, 27, 34, 0.28), transparent 55%),
    radial-gradient(50% 120% at 0% 100%, rgba(198, 101, 61, 0.22), transparent 55%),
    linear-gradient(150deg, #2E2620, var(--sand-900));
  color: var(--sand-100);
  box-shadow: var(--shadow-xl);
}
.impact__panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
  mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
}
.impact__grid { position: relative; display: grid; gap: 2.5rem; }
.impact__intro .eyebrow { background: rgba(255,255,255,0.1); color: #fff; }
.impact__title { color: #fff; margin: 1.1rem 0 0.9rem; }
.impact__title em { color: var(--red-300); font-style: normal; }
.impact__text { color: var(--sand-300); font-size: var(--fs-lead); line-height: 1.55; max-width: 46ch; }
.impact__cta { margin-top: 1.75rem; }
.impact__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-xl); overflow: hidden; }
.impact__stat { background: rgba(20, 16, 12, 0.35); padding: 1.6rem 1.4rem; }
.impact__stat-value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem); letter-spacing: -0.02em; color: #fff; line-height: 1; }
.impact__stat-value span { color: var(--red-300); }
.impact__stat-label { display: block; margin-top: 0.55rem; font-size: var(--fs-sm); color: var(--sand-300); }

/* --------------------------------------------------------------------------
   INTEGRATIONS HUB — central AK node behind the tabs (logo motif)
   -------------------------------------------------------------------------- */
.partners { overflow: hidden; }
.partners__hub { position: relative; display: grid; place-items: center; min-height: 150px; margin-bottom: 2.5rem; }
.partners__hub-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 0; }
.partners__hub-rings span { position: absolute; border: 1px dashed var(--border-strong); border-radius: 50%; opacity: 0.6; }
.partners__hub-rings span:nth-child(1) { width: 180px; height: 180px; }
.partners__hub-rings span:nth-child(2) { width: 300px; height: 300px; opacity: 0.4; }
.partners__hub-rings span:nth-child(3) { width: 430px; height: 430px; opacity: 0.25; }
.partners__hub-node { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.4rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); font-family: var(--font-display); font-weight: 800; font-size: var(--fs-h4); }
.partners__hub-node b { color: var(--brand); }
.partners__hub-node .partners__hub-dot { width: 12px; height: 12px; border-radius: 4px; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }

@media (min-width: 600px) {
  .impact__stats { gap: 1px; }
}
@media (min-width: 900px) {
  .impact__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem; }
  .impact__stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .partners__hub-rings span:nth-child(3) { display: none; }
  .partners__hub-rings span:nth-child(2) { width: 240px; height: 240px; }
  .partners__hub-rings span:nth-child(1) { width: 150px; height: 150px; }
}
