:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-muted: #eef3f9;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --border: rgba(15, 23, 42, 0.08);
  --ink: #14213d;
  --muted: #66718a;
  --brand: #0055a4;
  --brand-strong: #083865;
  --brand-soft: #e7f0fb;
  --accent: #2d5a27;
  --accent-soft: #e5f1df;
  --cyan-soft: #e2f3f5;
  --peach-soft: #fde8dc;
  --violet-soft: #ece7ff;
  --rose-soft: #fde8f1;
  --sand-soft: #f7ecd8;
  --gradient-hero:
    linear-gradient(115deg, rgba(8, 56, 101, 0.96) 0%, rgba(0, 85, 164, 0.88) 46%, rgba(45, 90, 39, 0.76) 100%);
  --gradient-band: linear-gradient(90deg, #0a4f96 0%, #0a65b3 52%, #2d5a27 100%);
  --shadow-soft: 0 20px 54px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 26px 74px rgba(15, 23, 42, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id],
article[id] {
  scroll-margin-top: 104px;
}

#iletisim,
#contact {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 85, 164, 0.34);
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: 10px;
  z-index: 120;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(8, 56, 101, 0.28);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.scroll-helper {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 85, 164, 0.94), rgba(10, 116, 164, 0.94));
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(8, 56, 101, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.scroll-helper.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-helper:hover,
.scroll-helper:focus-visible {
  background: linear-gradient(180deg, rgba(0, 76, 147, 0.98), rgba(7, 101, 145, 0.98));
  box-shadow: 0 24px 50px rgba(8, 56, 101, 0.32);
}

.scroll-helper svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 180ms ease;
}

.scroll-helper.is-top svg {
  transform: rotate(180deg);
}

.shell {
  width: min(100% - 32px, var(--page-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.topbar-gradient {
  backdrop-filter: none;
  background: var(--gradient-band);
  border-bottom: none;
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 14px 34px rgba(0, 85, 164, 0.24);
}

.brand-mark.brand-mark-logo {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.94rem;
}

.topbar-gradient .brand-mark {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.topbar-gradient .brand-mark.brand-mark-logo {
  background: transparent;
  border: none;
}

.topbar-gradient .brand-name,
.topbar-gradient .brand-tag,
.topbar-gradient .nav-links a {
  color: #ffffff;
}

.topbar-gradient .brand-tag {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.nav-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.lang-pill {
  min-width: 46px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.lang-pill:hover,
.lang-pill:focus-visible {
  transform: translateY(-1px);
}

.language-switch .lang-pill:focus,
.language-switch .lang-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.topbar:not(.topbar-gradient) .language-switch .lang-pill:focus,
.topbar:not(.topbar-gradient) .language-switch .lang-pill:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.16);
}

.lang-pill.is-active {
  background: #ffffff;
  color: var(--brand-strong);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.nav-links a {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px);
}

.topbar .nav-links a:hover,
.topbar .nav-links a:focus-visible {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink);
}

.topbar-gradient .nav-links a:hover,
.topbar-gradient .nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.topbar-gradient .language-switch {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.topbar-gradient .lang-pill {
  color: rgba(255, 255, 255, 0.82);
}

.topbar-gradient .lang-pill.is-active {
  background: #ffffff;
  color: var(--brand);
}

.button {
  min-height: 58px;
  padding: 16px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.button-brand {
  background: var(--brand-strong);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 56, 101, 0.22);
}

.button-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.topbar:not(.topbar-gradient) .button-ghost,
.contact-band .button-ghost {
  color: #ffffff;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--gradient-hero);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 138px 138px;
  opacity: 0.16;
  mix-blend-mode: soft-light;
}

.landing-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: 920px;
  height: 320px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(40px);
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.hero-mini,
.section-chip,
.hero-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-hero h1,
.section-title h2,
.faq-copy h2,
.contact-copy h2,
.process-step h3,
.landing-card h3,
.feature-media-item h3,
.testimonial-card strong,
.legal-card h1,
.legal-section h2 {
  letter-spacing: -0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 85, 164, 0.08);
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.landing-hero h1 {
  margin: 20px auto 18px;
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
  font-weight: 800;
}

.landing-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 38px;
}

.section-title.centered {
  text-align: center;
}

.section-title h2,
.faq-copy h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
}

.section-title p,
.faq-copy p,
.contact-copy p,
.landing-card p,
.feature-media-item p,
.process-step p,
.testimonial-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.feature-card-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.landing-card,
.testimonial-card,
.legal-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.landing-card,
.testimonial-card,
.info-card {
  padding: 34px 30px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.18;
  font-weight: 800;
}

.info-card p {
  margin: 0;
}

.icon-blob,
.feature-icon,
.step-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-weight: 800;
}

.icon-blob {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.icon-blob.blue {
  background: var(--brand-soft);
  color: var(--brand);
}

.icon-blob.green {
  background: var(--accent-soft);
  color: var(--accent);
}

.icon-blob.cyan {
  background: var(--cyan-soft);
  color: #21737c;
}

.landing-card h3 {
  margin: 0 0 14px;
  font-size: 1.62rem;
  line-height: 1.15;
  font-weight: 800;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.feature-column {
  display: grid;
  gap: 18px;
}

.feature-media-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-icon {
  width: 72px;
  height: 72px;
  font-size: 1.35rem;
}

.feature-icon.peach {
  background: var(--peach-soft);
  color: #b95d1a;
}

.feature-icon.violet {
  background: var(--violet-soft);
  color: #6a54d6;
}

.feature-icon.mint {
  background: var(--accent-soft);
  color: var(--accent);
}

.feature-icon.soft-blue {
  background: var(--brand-soft);
  color: var(--brand);
}

.feature-icon.sand {
  background: var(--sand-soft);
  color: #8b651c;
}

.feature-icon.rose {
  background: var(--rose-soft);
  color: #b24874;
}

.feature-media-item h3 {
  margin: 4px 0 8px;
  font-size: 1.6rem;
  line-height: 1.12;
  font-weight: 800;
}

.showcase-phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  background: linear-gradient(180deg, #0d1a2a 0%, #15253a 100%);
  box-shadow: var(--shadow-strong);
}

.phone-shell-home {
  max-width: 360px;
}

.phone-shell-screen,
.phone-shell-faq {
  max-width: 340px;
}

.phone-notch {
  width: 112px;
  height: 24px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.phone-screen {
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 34%, #fefefe 100%);
}

.app-topline,
.faq-screen-top {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}

.app-topline span,
.faq-screen-top span {
  color: var(--muted);
  font-size: 0.86rem;
}

.app-topline strong,
.faq-screen-top strong {
  font-size: 1.24rem;
}

.app-topline em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

.app-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.app-summary-card,
.app-surface-card,
.faq-screen-card,
.demo-panel,
.demo-hero-card,
.app-shot {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
}

.app-summary-card {
  padding: 16px;
}

.app-summary-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.app-summary-card strong {
  font-size: 1.7rem;
}

.app-surface-card {
  padding: 16px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.app-surface-card span,
.faq-screen-card span,
.demo-header span,
.demo-hero-card span,
.demo-panel p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.app-surface-card strong,
.faq-screen-card strong,
.demo-header strong,
.demo-hero-card strong,
.demo-panel strong {
  display: block;
  margin-bottom: 4px;
}

.app-surface-card b {
  font-size: 0.94rem;
  color: var(--brand-strong);
}

.app-surface-card.accent,
.faq-screen-card.accent {
  background: linear-gradient(135deg, rgba(0, 85, 164, 0.12), rgba(45, 90, 39, 0.1));
}

.app-activity-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.app-activity-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.app-activity-item strong {
  display: block;
  margin-bottom: 4px;
}

.app-activity-item span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 6px rgba(0, 85, 164, 0.08);
  flex: 0 0 12px;
}

.workflow-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 24px 18px 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  right: -22px;
  width: 44px;
  border-top: 2px dashed rgba(0, 85, 164, 0.32);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
  font-size: 1.12rem;
}

.step-icon {
  min-height: 42px;
  padding: 8px 16px;
  margin-bottom: 16px;
  background: rgba(0, 85, 164, 0.06);
  color: var(--brand-strong);
  font-size: 0.9rem;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.16;
  font-weight: 800;
}

.screens-stage {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(280px, 360px) minmax(200px, 240px);
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.app-shot {
  min-height: 270px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.shot-label {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 85, 164, 0.08);
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.app-shot strong {
  display: block;
  margin: 16px 0 14px;
  font-size: 1.34rem;
  line-height: 1.16;
}

.shot-bars {
  display: grid;
  gap: 12px;
}

.shot-bars span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 85, 164, 0.18), rgba(45, 90, 39, 0.24));
}

.shot-bar-48 {
  width: 48%;
}

.shot-bar-72 {
  width: 72%;
}

.shot-bar-84 {
  width: 84%;
}

.app-shot ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.screen-demo {
  min-height: 530px;
}

.demo-header {
  margin-bottom: 18px;
}

.demo-hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.demo-hero-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.26), rgba(0, 85, 164, 0.12));
}

.demo-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.demo-pill-row span {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 85, 164, 0.08);
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.demo-panel {
  padding: 18px;
  min-height: 132px;
}

.testimonial-grid {
  margin-bottom: 28px;
}

.testimonial-card p {
  margin-top: 0;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.18rem;
  font-weight: 800;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-row span {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 85, 164, 0.06);
  color: var(--brand-strong);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 360px);
  gap: 34px;
  align-items: center;
}

.section-chip {
  margin-bottom: 16px;
  background: rgba(0, 85, 164, 0.08);
  color: var(--brand-strong);
}

.section-chip.light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  color: var(--muted);
  line-height: 1.78;
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    padding 180ms ease;
}

.faq-item[open] p {
  max-height: 16rem;
  padding: 0 22px 20px;
  opacity: 1;
}

.faq-device {
  display: flex;
  justify-content: center;
}

.faq-screen {
  min-height: 480px;
}

.faq-screen-card {
  padding: 16px;
  margin-bottom: 12px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.12), transparent 18%),
    var(--gradient-band);
}

.contact-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-copy,
.contact-copy p {
  color: #ffffff;
}

.contact-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-actions {
  display: grid;
  gap: 14px;
  width: min(100%, 580px);
  justify-self: end;
}

.contact-feedback {
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 0.96rem;
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
}

.contact-feedback strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-feedback.is-success {
  background: #eff8f0;
  color: #244f2a;
  border: 1px solid rgba(45, 90, 39, 0.16);
}

.contact-feedback.is-error {
  background: #fff3f0;
  color: #8a3f2d;
  border: 1px solid rgba(185, 93, 26, 0.16);
}

.contact-form-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 64px rgba(8, 56, 101, 0.18);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-field textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8a95ad;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(0, 85, 164, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 85, 164, 0.08);
  outline: none;
}

.contact-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.contact-consent label {
  cursor: pointer;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-actions .button-ghost {
  color: var(--brand-strong);
  border-color: rgba(0, 85, 164, 0.18);
  background: rgba(0, 85, 164, 0.05);
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  padding-top: 0;
}

.footer:not(.footer-gradient) {
  padding: 22px 0 34px;
  color: var(--muted);
  background: #ffffff;
}

.footer-gradient {
  background: var(--gradient-band);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 42px 0 28px;
}

.footer-lockup .brand-tag,
.footer-brand p,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-gradient .brand-name,
.footer-gradient .brand-tag,
.footer-gradient .brand-mark {
  color: #ffffff;
}

.footer-gradient .brand-mark {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.footer-gradient .brand-mark.brand-mark-logo {
  background: transparent;
  border: none;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column strong {
  font-size: 1rem;
}

.footer-column a {
  color: #ffffff;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.legal-hero {
  padding: 42px 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.legal-card {
  padding: 34px;
}

.legal-card h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 800;
  max-width: 13ch;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.62rem;
  line-height: 1.12;
  font-weight: 800;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.callout {
  background: rgba(231, 240, 251, 0.76);
  border: 1px solid rgba(0, 85, 164, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  margin: 32px 0;
  line-height: 1.72;
}

.warning-callout {
  background: rgba(229, 241, 223, 0.82);
  border-color: rgba(45, 90, 39, 0.12);
}

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

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

.js .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.js .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .fade-delay-1 {
  transition-delay: 120ms;
}

.js .fade-delay-2 {
  transition-delay: 220ms;
}

.js .fade-delay-3 {
  transition-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {
  .js .fade-in,
  .js .fade-in.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .skip-link,
  .faq-item summary::after,
  .faq-item p {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .feature-card-grid,
  .testimonial-grid,
  .workflow-row,
  .legal-links,
  .footer-grid,
  .contact-band-inner,
  .feature-showcase-grid,
  .screens-stage,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .showcase-phone-wrap,
  .faq-device {
    order: -1;
  }

  .contact-actions {
    justify-items: start;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .topbar-inner {
    padding: 12px 0;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-cluster {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 10px;
    order: 3;
    margin-left: 0;
  }

  .js .nav-cluster.is-open {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switch {
    width: fit-content;
    align-self: flex-start;
    margin-top: 4px;
  }

  .landing-hero {
    padding: 76px 0 88px;
  }

  .legal-hero {
    padding: 32px 0 28px;
  }

  .landing-hero h1 {
    max-width: none;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .scroll-helper {
    right: 14px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .landing-hero p {
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-form-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .landing-card,
  .testimonial-card,
  .info-card,
  .legal-card {
    padding: 24px;
  }

  .feature-media-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .app-summary-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding: 18px 0 28px;
  }
}
