:root {
  --bg: #050b18;
  --bg-2: #071123;
  --bg-3: #0b1730;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(148, 174, 255, 0.18);
  --line-strong: rgba(148, 174, 255, 0.32);
  --text: #f7f9ff;
  --text-dark: #071124;
  --muted: #9eaccb;
  --muted-dark: #5b6577;
  --blue: #2d6bff;
  --blue-2: #7aa5ff;
  --cyan: #29d5ff;
  --purple: #8a72ff;
  --green: #28d889;
  --orange: #ff9f1c;
  --white: #ffffff;
  --soft: #f5f8ff;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-blue: 0 24px 80px rgba(45, 107, 255, 0.28);
  --shadow-soft: 0 20px 70px rgba(11, 23, 48, 0.12);
  --container: 1180px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(45, 107, 255, 0.18), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(138, 114, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #050b18 0%, #071226 100%);
}

.section-soft {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  color: var(--text-dark);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(5, 11, 24, 0.76);
  border-bottom: 1px solid rgba(148, 174, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(5, 11, 24, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand-fallback {
  display: none;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(148, 174, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.desktop-nav a {
  color: #c5d0ec;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
  background: rgba(45, 107, 255, 0.22);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 174, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.045);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #7890bd;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
}

.lang-btn.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2d6bff, #6a7cff);
  color: #fff;
  box-shadow: 0 14px 36px rgba(45, 107, 255, 0.34);
}

.btn-secondary {
  color: #e9efff;
  border-color: rgba(148, 174, 255, 0.22);
  background: rgba(255, 255, 255, 0.065);
}

.btn-dark {
  color: #fff;
  background: #071124;
  box-shadow: 0 16px 34px rgba(7, 17, 36, 0.2);
}

.btn-warm {
  color: #fff;
  background: linear-gradient(135deg, #ffb22f, #ff7a00);
  box-shadow: 0 18px 42px rgba(255, 145, 15, 0.28);
}

.btn-outline-blue {
  color: #1f5dff;
  border-color: rgba(45, 107, 255, 0.24);
  background: rgba(45, 107, 255, 0.06);
}

.btn-lg {
  min-height: 52px;
  padding: 14px 22px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(148, 174, 255, 0.18);
  cursor: pointer;
  place-items: center;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  margin: 3px auto;
  transition: 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 14px auto 14px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

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

.mobile-menu nav {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(8, 16, 34, 0.96);
  border: 1px solid rgba(148, 174, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.mobile-menu a:not(.btn) {
  padding: 14px 16px;
  border-radius: 16px;
  color: #dce5fb;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 82px) 0 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 auto 0;
  height: 240px;
  background-image: linear-gradient(rgba(148, 174, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 174, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.78fr);
  gap: 58px;
  align-items: center;
  min-height: 640px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(45, 107, 255, 0.28);
  background: rgba(45, 107, 255, 0.11);
  color: #8fbcff;
  font-weight: 900;
  font-size: 14px;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49a6ff;
  box-shadow: 0 0 18px rgba(73, 166, 255, 0.85);
}

.hero h1,
.section-heading h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.hero h1 {
  font-size: clamp(48px, 7.4vw, 108px);
  max-width: 840px;
  margin-bottom: 24px;
}

.hero h1::selection,
.section-heading h2::selection {
  background: rgba(45, 107, 255, 0.35);
}

.hero h1 span,
.gradient-text {
  background: linear-gradient(135deg, #ffffff 12%, #8dbaff 58%, #5868ff 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: #b6c2de;
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof div {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(148, 174, 255, 0.16);
}

.hero-proof strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-proof span {
  color: #99a9ca;
  font-size: 13px;
  line-height: 1.4;
}

.hero-product {
  position: relative;
  min-height: 560px;
}

.product-glow {
  position: absolute;
  inset: 14% 0 auto 10%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 107, 255, 0.36), transparent 66%);
  filter: blur(10px);
  opacity: 0.9;
}

.suite-card {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(15, 32, 66, 0.92), rgba(8, 16, 34, 0.92));
  border: 1px solid rgba(148, 174, 255, 0.24);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}

.suite-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
  pointer-events: none;
}

.suite-top,
.suite-tabs,
.suite-preview {
  position: relative;
  z-index: 2;
}

.suite-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

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

.suite-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #2d6bff, #8a72ff);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(45, 107, 255, 0.26);
}

.suite-brand strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.suite-brand span {
  color: #8292b5;
  font-size: 14px;
}

.status-pill {
  color: #b7ffdf;
  border: 1px solid rgba(40, 216, 137, 0.35);
  background: rgba(40, 216, 137, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
}

.suite-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(148, 174, 255, 0.14);
  margin-bottom: 22px;
}

.suite-tab {
  border: 0;
  color: #9aa8c7;
  background: transparent;
  border-radius: 16px;
  padding: 14px 12px;
  cursor: pointer;
  font-weight: 900;
}

.suite-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #2d6bff, #5d80ff);
  box-shadow: 0 14px 30px rgba(45, 107, 255, 0.28);
}

.suite-preview {
  min-height: 360px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(148, 174, 255, 0.18);
  background: rgba(5, 11, 24, 0.58);
  overflow: hidden;
}

.browser-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}

.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6f7d98;
}

.preview-hero {
  position: relative;
  padding: 18px 0 30px;
}

.preview-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -50px;
  width: 230px;
  height: 190px;
  border-radius: 44px;
  transform: rotate(14deg);
  background: linear-gradient(135deg, rgba(45, 107, 255, 0.88), rgba(138, 114, 255, 0.5));
}

.mock-badge {
  display: inline-flex;
  color: #a7c7ff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(45, 107, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.preview-hero h3 {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  max-width: 330px;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.preview-hero p {
  position: relative;
  z-index: 2;
  max-width: 320px;
  color: #99a9ca;
  line-height: 1.7;
}

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

.preview-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(148, 174, 255, 0.14);
}

.preview-card b {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.preview-card span {
  color: #90a0c0;
  font-size: 12px;
}

.floating-stat {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 6px;
  min-width: 150px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 174, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.floating-stat span {
  color: #99a9ca;
  font-size: 13px;
}

.floating-stat b {
  font-size: 24px;
}

.stat-a {
  left: -26px;
  bottom: 90px;
}

.stat-b {
  right: 6px;
  top: 78px;
}

.category-strip {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 8px;
}

.category-strip span {
  border: 1px solid rgba(148, 174, 255, 0.15);
  background: rgba(255, 255, 255, 0.055);
  color: #aebbe0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
}

.services,
.website-section,
.pricing-section,
.faq-section {
  background: #fff;
  color: var(--text-dark);
  padding: 110px 0;
}

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

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  color: inherit;
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 20px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.8;
}

.section-dark .section-heading p:not(.section-kicker) {
  color: #aab7d6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 30px;
  background: #f8faff;
  border: 1px solid #e4ebfb;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(45, 107, 255, 0.3);
  box-shadow: 0 28px 80px rgba(11, 23, 48, 0.15);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef4ff, #e8ecff);
  color: #1f5dff;
  font-size: 25px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted-dark);
  line-height: 1.75;
}

.workflow {
  padding: 110px 0;
}

.workflow-grid,
.panel-grid,
.why-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.step {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5ebfa;
  box-shadow: var(--shadow-soft);
}

.step b {
  display: inline-flex;
  color: #2d6bff;
  background: #eff4ff;
  padding: 9px 11px;
  border-radius: 13px;
  margin-bottom: 22px;
}

.step h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted-dark);
  line-height: 1.65;
}

.template-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.template-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 0.2s ease;
}

.template-card:hover {
  transform: translateY(-6px);
}

.template-card::before,
.template-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.template-card::before {
  background: linear-gradient(180deg, rgba(5, 11, 24, 0.05), rgba(5, 11, 24, 0.88));
}

.template-card::after {
  opacity: 0.95;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
}

.template-card.premium { background: radial-gradient(circle at 65% 18%, rgba(255, 164, 40, .45), transparent 34%), linear-gradient(135deg, #16100a, #081225); }
.template-card.clinic { background: radial-gradient(circle at 70% 18%, rgba(41, 213, 255, .35), transparent 34%), linear-gradient(135deg, #041b26, #071225); }
.template-card.law { background: radial-gradient(circle at 70% 18%, rgba(138, 114, 255, .4), transparent 34%), linear-gradient(135deg, #08101f, #17112b); }
.template-card.industrial {
  background-color: #080b10;
  background-image:
    radial-gradient(circle at 75% 16%, rgba(255, 134, 24, .38), transparent 34%),
    url("templates/nova-cnc-metal/assets/images/hero-machine.svg"),
    linear-gradient(135deg, #15191f, #05080d 72%);
  background-position: center, 122% 4%, center;
  background-size: auto, min(72%, 520px) auto, auto;
  background-repeat: no-repeat;
}

.template-card span {
  width: max-content;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  padding: 9px 12px;
  margin-bottom: auto;
  font-weight: 900;
  font-size: 13px;
}

.template-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  letter-spacing: -0.055em;
  margin-bottom: 12px;
}

.template-card p {
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 22px;
}

.template-card em {
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-cards span {
  color: #1e54d8;
  background: #eef4ff;
  border: 1px solid #dce7ff;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 900;
}

.panel-section {
  padding: 120px 0;
}

.panel-mock {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 500px;
  border-radius: 34px;
  border: 1px solid rgba(148, 174, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 18px;
  background: rgba(0,0,0,.18);
  border-right: 1px solid rgba(148, 174, 255, 0.12);
}

.mock-sidebar i,
.mock-topbar span {
  display: block;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
}

.mock-sidebar i {
  width: 42px;
  height: 42px;
}

.mock-sidebar i:first-child {
  background: linear-gradient(135deg, #2d6bff, #8a72ff);
}

.mock-main {
  padding: 24px;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.mock-topbar span {
  width: 46px;
  height: 46px;
}

.mock-topbar b {
  margin-right: auto;
}

.mock-topbar button {
  border: 1px solid rgba(40,216,137,.35);
  color: #c4ffdf;
  background: rgba(40,216,137,.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.mock-stats div,
.mock-chart,
.mock-table p {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(148, 174, 255, 0.12);
  border-radius: 20px;
}

.mock-stats div {
  padding: 18px;
}

.mock-stats span {
  color: #8f9dbc;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.mock-stats b {
  font-size: 21px;
}

.mock-chart {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  margin-bottom: 14px;
}

.mock-chart i {
  flex: 1;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #2d6bff, rgba(45,107,255,.18));
}
.mock-chart i:nth-child(1) { height: 36%; }
.mock-chart i:nth-child(2) { height: 58%; }
.mock-chart i:nth-child(3) { height: 42%; }
.mock-chart i:nth-child(4) { height: 80%; }
.mock-chart i:nth-child(5) { height: 65%; }

.mock-table {
  display: grid;
  gap: 10px;
}

.mock-table p {
  height: 54px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(148, 174, 255, 0.14);
  color: #dce5fb;
  font-weight: 800;
}

.pricing-section {
  background: linear-gradient(180deg, #071226 0%, #06101f 100%);
  color: #fff;
  padding-top: 116px;
}

.pricing-section .section-heading p:not(.section-kicker) {
  color: #aebbe0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 610px;
  padding: 34px;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #071124;
  border: 1px solid rgba(148, 174, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.price-card.featured {
  color: #fff;
  background: linear-gradient(180deg, #102247, #060a12 70%);
  border-color: rgba(45, 107, 255, 0.38);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 0%, rgba(255,159,28,.34), transparent 28%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  pointer-events: none;
}

.top-ribbon,
.soft-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  text-align: center;
  border-radius: 0 0 14px 14px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.top-ribbon {
  background: linear-gradient(135deg, #ffb22f, #ff7a00);
  color: #fff;
}

.soft-ribbon {
  background: #e7edf7;
  color: #071124;
}

.trial {
  width: max-content;
  margin-top: 26px;
  display: inline-flex;
  color: #00885b;
  background: #d8f8e9;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 12px;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  letter-spacing: -0.055em;
  margin: 18px 0 12px;
}

.price-card p {
  color: #5a667a;
  line-height: 1.65;
  min-height: 52px;
}

.price-card.featured p {
  color: #d5def2;
}

.price-row {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.price-row small {
  flex-basis: 100%;
  color: #7c8596;
  text-decoration: line-through;
  font-weight: 900;
  font-size: 18px;
}

.price-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 5.2vw, 68px);
  letter-spacing: -0.08em;
  line-height: .82;
  color: #071124;
  text-shadow: 0 2px 0 rgba(45,107,255,.18);
}

.featured .price-row strong {
  color: #fff;
  text-shadow: 0 3px 0 rgba(45,107,255,.28);
}

.price-row em {
  font-style: normal;
  font-weight: 900;
  color: #233453;
  margin-bottom: 7px;
}

.featured .price-row em {
  color: #dce5fb;
}

.price-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.price-card li {
  position: relative;
  padding-left: 34px;
  line-height: 1.55;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ddf7eb;
  color: #0dae74;
  font-size: 13px;
  font-weight: 1000;
}

.featured li::before {
  background: rgba(255,159,28,.14);
  color: #ffb12a;
  border: 1px solid rgba(255,159,28,.24);
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.why-section {
  padding: 110px 0;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e3e9f7;
  box-shadow: var(--shadow-soft);
}

.why-list b {
  color: #2d6bff;
  background: #eef4ff;
  padding: 10px 12px;
  border-radius: 14px;
}

.why-list span {
  font-weight: 900;
  line-height: 1.4;
}

.faq-grid {
  align-items: start;
}

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

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

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: #071124;
  padding: 22px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-item button i {
  font-style: normal;
  color: #2d6bff;
  font-size: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .24s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  color: var(--muted-dark);
  line-height: 1.75;
  padding: 0 22px 22px;
}

.contact-section {
  padding: 120px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(148, 174, 255, 0.14);
}

.contact-cards span {
  display: block;
  color: #8fa1c7;
  margin-bottom: 8px;
}

.contact-cards b {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(148, 174, 255, 0.18);
  box-shadow: var(--shadow-blue);
}

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

.contact-form label span {
  color: #b6c2de;
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 174, 255, 0.18);
  background: rgba(5, 11, 24, 0.48);
  color: #fff;
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(45, 107, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(45, 107, 255, 0.14);
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-status {
  min-height: 22px;
  color: #b6c2de;
  font-weight: 800;
}

.form-status.is-success { color: #91ffd0; }
.form-status.is-error { color: #ffb7b7; }

.site-footer {
  background: #040914;
  color: #dce5fb;
  padding: 64px 0 26px;
  border-top: 1px solid rgba(148, 174, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}

.footer-grid p {
  color: #899abc;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 360px;
}

.footer-grid h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer-grid a {
  display: block;
  color: #93a3c4;
  margin: 10px 0;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 40px;
  border-top: 1px solid rgba(148, 174, 255, 0.12);
  color: #8190ad;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 2px; }
  .desktop-nav a { padding: 10px 10px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }
  .desktop-nav,
  .header-cta,
  .language-switch {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: calc(var(--header-height) + 46px);
  }
  .hero-grid,
  .workflow-grid,
  .panel-grid,
  .why-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-product {
    min-height: auto;
  }
  .floating-stat {
    display: none;
  }
  .template-showcase {
    grid-template-columns: 1fr;
  }
  .template-card {
    min-height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .brand img {
    height: 38px;
  }
  .hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
  }
  .hero h1 {
    font-size: clamp(45px, 15vw, 66px);
    letter-spacing: -0.08em;
  }
  .hero-text,
  .section-heading p:not(.section-kicker) {
    font-size: 16px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }
  .suite-card {
    padding: 18px;
    border-radius: 26px;
  }
  .suite-top {
    align-items: flex-start;
  }
  .suite-tabs {
    grid-template-columns: 1fr;
  }
  .suite-preview {
    min-height: 330px;
    padding: 18px;
  }
  .preview-grid,
  .service-grid,
  .steps,
  .pricing-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .services,
  .website-section,
  .pricing-section,
  .faq-section,
  .workflow,
  .panel-section,
  .why-section,
  .contact-section {
    padding: 78px 0;
  }
  .section-heading h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .price-card {
    min-height: auto;
    padding: 30px 22px 24px;
    border-radius: 28px;
  }
  .price-row strong {
    font-size: 58px;
  }
  .panel-mock {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mock-sidebar {
    display: none;
  }
  .mock-stats {
    grid-template-columns: 1fr;
  }
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   MiniAppTR V3.1 Premium Polish
   Amaç: V3 temelini koruyup hero, fiyat kartları, mobil
   boşluklar ve tipografi dengesini daha profesyonel yapmak.
   ========================================================= */

section[id] {
  scroll-margin-top: calc(var(--header-height) + 26px);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  height: 72px;
}

.brand {
  min-width: 150px;
}

.desktop-nav {
  background: rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.hero {
  padding: calc(var(--header-height) + 72px) 0 58px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 58px;
  min-height: 610px;
}

.hero h1 {
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.068em;
  max-width: 790px;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.75;
}

.hero-proof div {
  background: rgba(255, 255, 255, 0.052);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.suite-card {
  margin-top: 0;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(45, 107, 255, 0.22);
}

.floating-stat {
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}

.category-strip {
  margin-top: 10px;
}

.section-heading h2 {
  letter-spacing: -0.062em;
  line-height: 1.01;
}

.pricing-section {
  padding-top: 140px;
  padding-bottom: 122px;
  background:
    radial-gradient(circle at 12% 0%, rgba(45,107,255,.14), transparent 30%),
    linear-gradient(180deg, #071226 0%, #06101f 100%);
}

.pricing-grid {
  gap: 22px;
  margin-top: 54px;
}

.price-card {
  min-height: 640px;
  padding: 38px 32px 30px;
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.price-card.featured {
  background: linear-gradient(180deg, #102142 0%, #080d17 74%);
}

.price-card.featured::before {
  opacity: .76;
}

.top-ribbon,
.soft-ribbon {
  min-width: 176px;
  padding: 11px 18px;
  line-height: 1.15;
  letter-spacing: .025em;
}

.trial {
  margin-top: 34px;
  font-size: 11px;
  padding: 8px 12px;
  letter-spacing: -.01em;
}

.price-card h3 {
  font-size: clamp(27px, 2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.052em;
  margin-top: 20px;
}

.price-card p {
  min-height: 58px;
  font-size: 15px;
}

.price-row {
  margin: 22px 0 28px;
  gap: 7px;
}

.price-row small {
  font-size: 16px;
  opacity: .88;
}

.price-row strong {
  font-size: clamp(48px, 4.7vw, 62px);
  letter-spacing: -0.062em;
  line-height: .9;
  text-shadow: none;
}

.featured .price-row strong {
  text-shadow: none;
}

.price-row em {
  margin-bottom: 5px;
  font-size: 15px;
}

.price-card ul {
  gap: 13px;
}

.price-card li {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 32px;
}

.price-card li::before {
  width: 21px;
  height: 21px;
  font-size: 12px;
}

.price-card .btn {
  min-height: 46px;
  box-shadow: none;
}

.contact-section {
  padding-top: 122px;
  padding-bottom: 112px;
}

.contact-form {
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
}

.footer {
  padding-top: 88px;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(50px, 6.4vw, 78px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 42px;
  }

  .price-card {
    min-height: 600px;
  }
}

@media (max-width: 980px) {
  :root { --header-height: 68px; }

  .site-header {
    height: var(--header-height);
    padding-inline: 18px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 44px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(46px, 8vw, 70px);
  }

  .pricing-section {
    padding-top: 104px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 14px);
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    max-width: 140px;
    height: 36px;
  }

  .brand-fallback {
    font-size: 19px;
  }

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

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    padding: 9px 12px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.8vw, 58px);
    line-height: .98;
    letter-spacing: -0.074em;
    margin-bottom: 22px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .hero-actions {
    margin-bottom: 30px;
  }

  .hero-proof div {
    padding: 15px 16px;
    border-radius: 18px;
  }

  .hero-product {
    margin-top: 2px;
  }

  .category-strip {
    display: none;
  }

  .services,
  .website-section,
  .pricing-section,
  .faq-section,
  .workflow,
  .panel-section,
  .why-section,
  .contact-section {
    padding: 76px 0;
  }

  .pricing-section {
    padding-top: 92px;
    padding-bottom: 86px;
  }

  .pricing-grid {
    margin-top: 36px;
    gap: 18px;
  }

  .price-card {
    padding: 32px 20px 22px;
    border-radius: 26px;
    min-height: auto;
  }

  .top-ribbon,
  .soft-ribbon {
    min-width: 158px;
    max-width: 72%;
    padding: 10px 14px;
    font-size: 12px;
  }

  .trial {
    margin-top: 28px;
  }

  .price-card h3 {
    font-size: 27px;
  }

  .price-card p {
    min-height: auto;
    font-size: 15px;
  }

  .price-row {
    margin: 20px 0 24px;
  }

  .price-row strong {
    font-size: clamp(50px, 17vw, 58px);
    letter-spacing: -0.062em;
  }

  .price-card ul {
    gap: 12px;
    margin-bottom: 24px;
  }

  .price-card li {
    font-size: 14px;
    line-height: 1.48;
  }

  .contact-section {
    padding-top: 80px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 28px;
  }
}

@media (max-width: 410px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 52px);
  }

  .btn-lg {
    min-height: 50px;
  }

  .price-row strong {
    font-size: 50px;
  }

  .price-card {
    padding-inline: 18px;
  }
}


/* V3.2 brand language + About section polish */
.desktop-nav {
  gap: 3px;
}

.desktop-nav a {
  padding-inline: 12px;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  border-top: 1px solid rgba(148, 174, 255, 0.12);
  border-bottom: 1px solid rgba(148, 174, 255, 0.12);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(122, 165, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 165, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-copy h2 {
  max-width: 760px;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

.about-copy p:not(.section-kicker) {
  max-width: 660px;
  color: #aab7d6;
  font-size: 18px;
  line-height: 1.85;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.about-points span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(148, 174, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #eaf1ff;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-visual {
  position: relative;
}

.about-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: 30px;
  top: -34px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 107, 255, 0.42), transparent 68%);
  filter: blur(18px);
  opacity: 0.9;
}

.about-card.main {
  position: relative;
  overflow: hidden;
  padding: 38px;
  min-height: 330px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    linear-gradient(rgba(122, 165, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 165, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  border: 1px solid rgba(148, 174, 255, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.about-card.main::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 107, 255, 0.9), rgba(138, 114, 255, 0.55));
  opacity: 0.72;
}

.about-card.main span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #9fc3ff;
  background: rgba(45, 107, 255, 0.18);
  border: 1px solid rgba(122, 165, 255, 0.22);
  font-weight: 900;
  font-size: 13px;
}

.about-card.main h3 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.about-card.main p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #b7c3df;
  font-size: 17px;
  line-height: 1.8;
}

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

.about-mini-grid div {
  min-height: 112px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(148, 174, 255, 0.18);
}

.about-mini-grid b {
  display: block;
  color: #7aa5ff;
  margin-bottom: 12px;
  font-size: 13px;
}

.about-mini-grid span {
  display: block;
  color: #eef4ff;
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .desktop-nav a { padding-inline: 10px; }
  .desktop-nav { gap: 1px; }
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-section {
    padding: 88px 0;
  }

  .about-copy h2 {
    font-size: clamp(36px, 9vw, 58px);
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 76px 0;
  }

  .about-copy h2 {
    letter-spacing: -0.06em;
  }

  .about-points span {
    width: 100%;
    border-radius: 18px;
    line-height: 1.45;
  }

  .about-card.main {
    padding: 26px;
    min-height: auto;
    border-radius: 28px;
  }

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

/* =========================================================
   MiniAppTR V3.3 mobile hero stability + premium balance
   Amaç: Mobilde hero başlığı ile ürün mockup'ının üst üste binmesini
   engellemek, hero metnini daha prestijli ve okunaklı göstermek.
   ========================================================= */

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero-product {
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy,
  .hero-product {
    width: 100%;
  }

  .hero-product {
    margin-top: 8px;
    min-height: 0;
  }

  .hero h1 {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 54px;
  }

  .hero-grid {
    gap: 26px;
  }

  .eyebrow {
    max-width: 100%;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(36px, 11.2vw, 48px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 15.5px;
    line-height: 1.68;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-product {
    margin-top: 6px;
  }

  .suite-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 24px;
  }

  .suite-top {
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .suite-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .suite-brand strong {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .suite-brand span {
    font-size: 12px;
  }

  .status-pill {
    padding: 7px 10px;
    font-size: 12px;
  }

  .suite-tabs {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 7px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .suite-tab {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .suite-preview {
    min-height: 260px;
    padding: 18px;
    border-radius: 22px;
  }

  .browser-dots {
    margin-bottom: 18px;
  }

  .preview-hero {
    padding: 8px 0 20px;
  }

  .preview-hero h3 {
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.045em;
    max-width: 270px;
  }

  .preview-hero p {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.55;
  }

  .preview-hero::after {
    width: 155px;
    height: 135px;
    right: -74px;
    bottom: -44px;
    border-radius: 34px;
  }

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

  .preview-card {
    padding: 13px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 410px) {
  .hero h1 {
    font-size: clamp(34px, 10.6vw, 43px);
    letter-spacing: -0.05em;
  }

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

  .suite-card {
    padding: 14px;
  }
}

/* =========================================================
   MiniAppTR V3.4 desktop suite stat fix
   Amaç: Desktop görünümde "Yeni talep 24" kartının suite tab
   butonlarının üzerine binmesini ve tıklamayı engellemesini düzeltmek.
   ========================================================= */

.floating-stat {
  pointer-events: none;
}

.stat-b {
  top: 222px;
  right: 22px;
  min-width: 132px;
  padding: 14px 16px;
  z-index: 2;
}

.suite-tabs {
  z-index: 5;
}

.suite-tab {
  position: relative;
  z-index: 6;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .stat-b {
    top: 224px;
    right: 18px;
    min-width: 118px;
    padding: 12px 14px;
  }

  .floating-stat span {
    font-size: 12px;
  }

  .floating-stat b {
    font-size: 21px;
  }
}

@media (max-width: 980px) {
  .stat-b {
    display: none;
  }
}
