/* Vienerp — kurumsal tanıtım sitesi */

:root {
  --bg: #f1f4f8;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --primary: #1e3a5f;
  --primary-hover: #152a45;
  /* logo.png üzerinden örneklenen açık vurgu — CTA gradient uç rengi */
  --logo-light: #7adcfe;
  --accent: #0284c7;
  --accent-soft: rgba(2, 132, 199, 0.1);
  --success: #059669;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 32px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 4px 8px rgba(15, 23, 42, 0.04), 0 24px 48px rgba(15, 23, 42, 0.09);
  --header-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
  --container: 1120px;
  /* Hero CTA: tüm kırılımlarda metin bloğu ile aynı hat */
  --hero-copy-max: 36rem;
  --hero-cta-gap-row: 0.65rem;
  --hero-cta-gap-col: 0.75rem;
  --hero-trust-pad-top: 0.35rem;
  --hero-trust-gap: 0.4rem;
  --hero-trust-fs: 0.8125rem;
  --hero-btn-fs: 0.9375rem;
  --hero-btn-pad-y: 0.75rem;
  --hero-btn-pad-x: 1.2rem;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 400;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.skip-link:focus {
  left: max(1rem, env(safe-area-inset-left, 0px));
  top: max(1rem, env(safe-area-inset-top, 0px));
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(2, 132, 199, 0.18);
  color: var(--text);
}

h1,
h2,
h3,
.logo-text,
.eyebrow,
.section-eyebrow {
  font-family: var(--font-display);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(clamp(1rem, 4vw + 0.25rem, 1.5rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1rem, 4vw + 0.25rem, 1.5rem), env(safe-area-inset-right, 0px));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem;
}

.header-trailing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.header-trailing .lang-switch {
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}

.lang-btn {
  margin: 0;
  padding: 0.4rem 0.65rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.is-active {
  background: var(--primary);
  color: #fff;
}

.lang-btn:hover:not(.is-active) {
  background: #f1f5f9;
  color: var(--text);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  object-fit: contain;
}

.logo-footer .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle:hover {
  border-color: #94a3b8;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: linear-gradient(90deg, #1e3a5f 0%, #2d6a94 100%);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 999px;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(180deg, #254a73 0%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06), 0 8px 20px rgba(30, 58, 95, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2d5685 0%, var(--primary-hover) 100%);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.08), 0 12px 28px rgba(30, 58, 95, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn-ghost:hover {
  background: #fafbfc;
  border-color: #cbd5e1;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  background: #f1f5f9;
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 3rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 65% at 15% -10%, rgba(2, 132, 199, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 15%, rgba(30, 58, 95, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #e8eef5 0%, var(--bg) 52%, var(--bg) 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "intro visual"
    "actions visual"
    "trust visual";
  column-gap: 2.25rem;
  row-gap: 1rem;
  align-items: start;
}

.hero-grid > * {
  min-width: 0;
}

.hero-grid > .hero-intro {
  grid-area: intro;
  position: relative;
  z-index: 2;
}

.hero-grid > .hero-visual {
  grid-area: visual;
  z-index: 1;
}

.hero-grid > .hero-actions {
  grid-area: actions;
  position: relative;
  z-index: 2;
}

.hero-grid > .hero-trust {
  grid-area: trust;
  position: relative;
  z-index: 2;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
}

.hero-intro .eyebrow {
  margin: 0;
}

.hero-intro .hero-title {
  margin: 0;
}

.hero-intro .lead {
  margin: 0;
  max-width: min(100%, var(--hero-copy-max));
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0369a1;
}

.hero-title {
  font-size: clamp(2.05rem, 1.1rem + 3.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #071422;
}

.lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #64748b;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hero-cta-gap-row) var(--hero-cta-gap-col);
  margin: 0;
  width: 100%;
  max-width: min(100%, var(--hero-copy-max));
  align-self: start;
  justify-self: start;
}

.hero-actions .btn {
  width: 100%;
  min-width: 0;
  font-size: var(--hero-btn-fs);
  padding: var(--hero-btn-pad-y) var(--hero-btn-pad-x);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--hero-trust-gap);
  margin: 0;
  padding: var(--hero-trust-pad-top) 0 0;
  list-style: none;
  font-size: var(--hero-trust-fs);
  color: #64748b;
  width: 100%;
  max-width: min(100%, var(--hero-copy-max));
  align-self: start;
  justify-self: start;
}

.hero-trust li {
  position: relative;
  padding-left: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.45;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.15);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: min(100%, 440px);
  min-height: 260px;
  justify-self: end;
}

.hero-visual-ring {
  position: absolute;
  inset: 6% 0 10% 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.07) 0%, rgba(30, 58, 95, 0.04) 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  z-index: 0;
  pointer-events: none;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.hero-card-main {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.mock-dots span:nth-child(1) {
  background: #fb7185;
}

.mock-dots span:nth-child(2) {
  background: #fbbf24;
}

.mock-dots span:nth-child(3) {
  background: #34d399;
}

.mock-url {
  flex: 1;
  min-width: 0;
  padding: 0.35rem 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.mock-url span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-body {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem 1.5rem;
}

.mock-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mock-stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mock-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.1;
}

.mock-trend {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}

.mock-trend--up {
  color: var(--success);
  background: rgba(5, 150, 105, 0.1);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 104px;
  padding: 0.5rem 0.25rem 0;
  border-top: 1px solid #f1f5f9;
}

.mock-chart .bar {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 55%, #0369a1 100%);
  opacity: 0.92;
  box-shadow: 0 -2px 8px rgba(2, 132, 199, 0.15);
}

.mock-chart .b1 {
  height: 40%;
}

.mock-chart .b2 {
  height: 65%;
}

.mock-chart .b3 {
  height: 50%;
}

.mock-chart .b4 {
  height: 85%;
}

.mock-chart .b5 {
  height: 55%;
}

.hero-card-float {
  position: absolute;
  right: 0;
  bottom: 1.25rem;
  z-index: 2;
  padding: 1rem 2.25rem 1rem 1.35rem;
  max-width: 210px;
  animation: floaty 5s ease-in-out infinite;
  border-left: 3px solid var(--accent);
}

.float-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.25);
}

.hero-card-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.hero-card-float span:last-of-type {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Logos strip / sektörler */
.logos-strip {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  background: radial-gradient(ellipse 95% 70% at 50% 0%, rgba(122, 220, 254, 0.14) 0%, transparent 58%);
}

.logos-inner {
  text-align: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.logos-head {
  margin-bottom: 1.75rem;
}

.logos-title {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.logos-lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.sectors-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.25rem 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sector-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.sector-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(122, 220, 254, 0.2) 0%, rgba(2, 132, 199, 0.08) 100%);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.18);
  flex-shrink: 0;
}

.sector-icon svg {
  flex-shrink: 0;
}

.sector-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}

.sector-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .logos-lead {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sector-card:hover {
    transform: none;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.03em;
  color: #0c1a2e;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.2rem;
}

.pricing-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #0c1a2e;
}

.pricing-price {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-card .check-list li {
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
}

.pricing-card--featured {
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: 0 14px 36px rgba(2, 132, 199, 0.12);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.6rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0369a1;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.pricing-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.section-platform {
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(122, 220, 254, 0.08) 0%, transparent 60%);
}

.platform-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.platform-intro-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  box-shadow: var(--shadow);
}

.platform-intro-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: #0c1a2e;
}

.platform-intro-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.platform-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.platform-module-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.platform-module-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #0c1a2e;
}

.platform-module-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.platform-module-card--wide {
  grid-column: 1 / -1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.14);
  line-height: 0;
}

.feature-icon svg {
  flex-shrink: 0;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.split-copy > p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-card {
  padding: 1.35rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.panel-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.panel-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.steps li {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: #0369a1;
  font-weight: 700;
  border-radius: 10px;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
}

.steps p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.cta-band {
  padding: 3.25rem 0;
  background: linear-gradient(
    135deg,
    #152a45 0%,
    var(--primary) 38%,
    #2d6a94 66%,
    #4eb8e8 88%,
    var(--logo-light) 100%
  );
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
  font-size: 1rem;
}

.cta-band .btn-light:hover {
  color: var(--primary-hover);
}

/* Contact */
.contact-section {
  position: relative;
  background: radial-gradient(ellipse 90% 55% at 15% 20%, rgba(122, 220, 254, 0.1) 0%, transparent 55%), var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.contact-copy {
  max-width: 26rem;
}

.contact-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.contact-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0c1a2e;
}

.contact-lead {
  margin: 0 0 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-channels {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.contact-channel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-channel-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(122, 220, 254, 0.22) 0%, rgba(2, 132, 199, 0.1) 100%);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.contact-channel-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-channel-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-channel-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  overflow-wrap: anywhere;
}

.contact-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.contact-bullets li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-bullets li:last-child {
  margin-bottom: 0;
}

.contact-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.12);
}

.contact-form {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  padding: 1.75rem 1.75rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-lg);
}

.contact-form::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(122, 220, 254, 0.9) 100%);
  opacity: 0.9;
}

.contact-form-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.contact-form-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}

.contact-form-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.field-required > span::after {
  content: " *";
  color: #dc2626;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.25rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-field input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.consent-field a {
  font-weight: 600;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-note a {
  font-weight: 600;
}

.form-note--success {
  color: #047857 !important;
}

.form-note--error {
  color: #b91c1c !important;
}

/* Yasal */
.legal-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(122, 220, 254, 0.06) 0%, rgba(241, 244, 248, 0) 45%),
    var(--surface);
}

.legal-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #2d6a94 45%, var(--logo-light) 100%);
  opacity: 0.9;
}

.legal-container {
  max-width: 1040px;
}

.legal-hero {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.legal-hero h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0c1a2e;
  line-height: 1.15;
}

.legal-lead {
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 36rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.legal-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.4rem 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.legal-card::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(122, 220, 254, 0.85) 100%);
  opacity: 0.85;
}

.legal-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.legal-accordion-item > .legal-card-head {
  list-style: none;
  cursor: pointer;
  margin: 0;
  position: relative;
  padding-right: 1.75rem;
}

.legal-accordion-item > .legal-card-head::-webkit-details-marker {
  display: none;
}

.legal-accordion-item > .legal-card-head::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.2rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #64748b;
  transition: transform 0.2s ease, color 0.2s ease;
}

.legal-accordion-item[open] > .legal-card-head::after {
  content: "−";
  color: #0c1a2e;
}

.legal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(122, 220, 254, 0.22) 0%, rgba(2, 132, 199, 0.1) 100%);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.legal-icon svg {
  flex-shrink: 0;
}

.legal-card h3 {
  margin: 0;
  padding-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0c1a2e;
  line-height: 1.3;
}

.legal-card > p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-card-note {
  margin: 0 !important;
  padding: 0.75rem 0.85rem;
  font-size: 0.8125rem !important;
  line-height: 1.55 !important;
  color: #475569 !important;
  background: rgba(241, 245, 249, 0.85);
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.legal-card-note strong {
  color: #334155;
  font-weight: 600;
}

.legal-card a {
  font-weight: 600;
}

@media (max-width: 720px) {
  .legal-hero {
    max-width: none;
    text-align: center;
  }

  .legal-lead {
    max-width: none;
  }

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

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 0.9rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
  padding: 1rem 1rem 0.9rem;
}

.cookie-banner-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}

.cookie-banner-text {
  margin: 0 0 0.6rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.cookie-banner-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-banner-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.cookie-banner-msg {
  margin: 0.4rem 0 0;
  min-height: 1.1rem;
  font-size: 0.75rem;
  color: #b91c1c;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer-brand .logo {
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 960px) {
  :root {
    --hero-cta-gap-row: 0.55rem;
    --hero-cta-gap-col: 0.6rem;
    --hero-trust-pad-top: 0.28rem;
    --hero-trust-gap: 0.38rem;
    --hero-trust-fs: 0.75rem;
    --hero-btn-fs: 0.875rem;
    --hero-btn-pad-y: 0.65rem;
    --hero-btn-pad-x: 0.85rem;
  }

  .hero {
    padding: 2rem 0 2.25rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    grid-template-areas:
      "intro visual"
      "actions visual"
      "trust visual";
    column-gap: 0.5rem;
    row-gap: 0.75rem;
    align-items: start;
  }

  .hero-intro {
    gap: 0.45rem;
    align-self: center;
  }

  .hero-intro .eyebrow {
    align-self: center;
    text-align: center;
    width: 100%;
  }

  .hero-intro .hero-title {
    text-align: left;
    font-size: clamp(1.3rem, 3.5vw + 0.55rem, 1.95rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .hero-intro .lead {
    text-align: left;
    padding-top: 0.1rem;
  }

  .hero-grid > .hero-visual {
    max-width: none;
    width: 100%;
    min-height: 0;
    margin: 0;
    justify-self: stretch;
    align-self: center;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-actions .btn-primary {
    box-shadow: 0 2px 6px rgba(30, 58, 95, 0.2);
  }

  .hero-actions .btn-ghost {
    box-shadow: none;
  }

  .hero-grid > .hero-trust {
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .hero-trust li {
    padding-left: 1.15rem;
  }

  .hero-visual-ring {
    inset: 4% 0 8% 0;
  }

  .mock-body {
    padding: 0.85rem 0.75rem 1.1rem;
  }

  .mock-value {
    font-size: clamp(1.35rem, 4vw, 1.65rem);
  }

  .mock-chart {
    height: 76px;
  }

  .hero-card-float {
    max-width: min(200px, 92%);
    padding: 0.75rem 1.35rem 0.75rem 1rem;
    bottom: 0.65rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .platform-intro,
  .platform-modules {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    z-index: 202;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 0.6rem);
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: auto;
    width: min(92vw, 360px);
    max-height: calc(100vh - var(--header-h) - 1.4rem);
    z-index: 150;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px) saturate(1.1);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.24);
    overflow-y: auto;
    transform: translateX(calc(100% + 1rem));
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(1.5px);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.78rem 0.9rem;
    font-size: 0.98rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #334155;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list a:hover {
    color: var(--primary);
    border-color: #cbd5e1;
    text-decoration: none;
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(1.5rem, 5.5vw + 0.45rem, 2.1rem);
  }

  .lead {
    font-size: 0.9375rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 2.25rem;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 2.5rem 0;
  }

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

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }

  .mock-body {
    padding: 1rem 1rem 1.25rem;
  }

  .mock-value {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }

  .mock-chart {
    height: 88px;
    gap: 6px;
  }

  .hero-card-float {
    max-width: min(210px, calc(100% - 0.5rem));
    padding: 0.85rem 1.75rem 0.85rem 1.1rem;
  }
}

@media (max-width: 540px) {
  :root {
    --header-h: 64px;
  }

  .logo {
    font-size: 1.125rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .hero {
    padding: 1.5rem 0 1.75rem;
  }

  .hero-grid {
    gap: 0.85rem;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .mock-chrome {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
  }

  .mock-url {
    font-size: 0.625rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 380px) {
  :root {
    --hero-cta-gap-row: 0.5rem;
    --hero-cta-gap-col: 0;
    --hero-btn-fs: 0.875rem;
    --hero-btn-pad-y: 0.7rem;
    --hero-btn-pad-x: 1.05rem;
  }

  .hero-title {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 0.6875rem;
  }

  .hero-grid > .hero-actions {
    grid-template-columns: 1fr;
    max-width: min(100%, var(--hero-copy-max));
  }

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

  .hero-visual {
    min-height: 200px;
  }

  .mock-chart {
    height: 72px;
  }

  .hero-card-float {
    font-size: 0.8125rem;
    bottom: 0.85rem;
  }

  .hero-card-float strong {
    font-size: 0.875rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.7rem 1.1rem;
  }

  .hero-actions .btn {
    font-size: var(--hero-btn-fs);
    padding: var(--hero-btn-pad-y) var(--hero-btn-pad-x);
  }
}

@media (max-width: 360px) {
  :root {
    --hero-copy-max: 22.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "actions"
      "trust";
    row-gap: 0.65rem;
    column-gap: 0;
  }

  .hero-intro {
    align-items: center;
    text-align: center;
  }

  .hero-intro .hero-title {
    text-align: center;
  }

  .hero-intro .lead {
    text-align: center;
  }

  .hero-grid > .hero-actions,
  .hero-grid > .hero-trust {
    justify-self: center;
  }

  .hero-grid > .hero-visual {
    justify-self: center;
    max-width: min(100%, 17.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-card-float {
    animation: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .contact-channel:hover {
    transform: none;
  }
}
