:root {
  --bg: #070a12;
  --bg-2: #0b1020;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #a7b1c5;
  --accent: #7cf2c8;
  --accent-2: #7aa7ff;
  --accent-3: #ffcf6a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 82px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(122, 167, 255, 0.22), transparent 36rem),
    radial-gradient(circle at 85% 22%, rgba(124, 242, 200, 0.14), transparent 30rem),
    linear-gradient(135deg, #05060a 0%, #0b1020 48%, #080912 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section {
  padding: 110px 0;
  position: relative;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text);
  color: #05060a;
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 999;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 24px rgba(124, 242, 200, 0.55);
}

.site-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.glow-one {
  left: -120px;
  top: 180px;
  background: var(--accent-2);
}

.glow-two {
  right: -160px;
  bottom: 140px;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  display: grid;
  align-items: center;
  background: rgba(7, 10, 18, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 18, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 242, 200, 0.28), rgba(122, 167, 255, 0.16));
  box-shadow: 0 12px 32px rgba(124, 242, 200, 0.08);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.btn-primary {
  color: #06120f;
  background: linear-gradient(135deg, var(--accent), #e6ff93);
  box-shadow: 0 18px 50px rgba(124, 242, 200, 0.18);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 24px 70px rgba(124, 242, 200, 0.25);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding-top: 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14% -20% auto auto;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent, rgba(124, 242, 200, 0.16), transparent, rgba(122, 167, 255, 0.18), transparent);
  animation: slowRotate 18s linear infinite;
  opacity: 0.75;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.065em;
  line-height: 0.96;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  max-width: 860px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dce6f7;
  font-size: 0.9rem;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1000px;
}

.visual-card {
  position: absolute;
  inset: 60px 20px auto auto;
  width: min(100%, 480px);
  min-height: 520px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 18%, rgba(124, 242, 200, 0.24), transparent 45%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.visual-card::before {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  background: rgba(122, 167, 255, 0.2);
  filter: blur(6px);
}

.visual-card::after {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -100px;
  border: 1px solid rgba(124, 242, 200, 0.2);
}

.card-topline {
  display: flex;
  gap: 8px;
}

.card-topline span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.brand-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 300px;
  text-align: center;
}

.brand-dashboard p {
  margin-bottom: 8px;
  color: #dce6f7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-dashboard strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  letter-spacing: -0.06em;
}

.pulse-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(124, 242, 200, 0.4);
  animation: pulse 2.6s ease-in-out infinite;
}

.timeline-mock {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 120px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.timeline-mock span {
  height: var(--h);
  min-height: 24px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--accent), rgba(122, 167, 255, 0.7));
  transform-origin: bottom;
  animation: barGrow 1.6s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.timeline-mock span:nth-child(2) { animation-delay: 80ms; }
.timeline-mock span:nth-child(3) { animation-delay: 160ms; }
.timeline-mock span:nth-child(4) { animation-delay: 240ms; }
.timeline-mock span:nth-child(5) { animation-delay: 320ms; }
.timeline-mock span:nth-child(6) { animation-delay: 400ms; }

.floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.chip-a {
  right: 0;
  top: 22px;
  animation: floatY 5s ease-in-out infinite;
}

.chip-b {
  left: 0;
  top: 260px;
  animation: floatY 5.8s ease-in-out infinite reverse;
}

.chip-c {
  right: 32px;
  bottom: 16px;
  animation: floatY 5.4s ease-in-out infinite;
}

.logo-strip {
  padding: 34px 0;
}

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

.mini-stat {
  min-height: 126px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

.mini-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2.1rem;
  letter-spacing: -0.05em;
}

.mini-stat small {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  max-width: 640px;
  margin-bottom: 0;
}

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

.service-card,
.step,
.testimonial-card,
.offer-card,
.showcase-panel,
.why-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(124, 242, 200, 0.12);
  filter: blur(8px);
  transition: transform 240ms ease;
}

.service-card:hover::after {
  transform: scale(1.45);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 18px;
  color: #06120f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-weight: 900;
}

.service-card h3 {
  font-size: 1.42rem;
}

.service-card p {
  min-height: 104px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
}

.service-card a::after {
  content: "→";
  transition: transform 160ms ease;
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.process {
  overflow: clip;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 48px;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-h) + 42px);
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--accent), var(--accent-2));
}

.step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #06120f;
  background: var(--text);
  font-weight: 900;
}

.step h3 {
  font-size: 1.55rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 52px;
}

.showcase-panel {
  min-height: 560px;
  padding: 24px;
  border-radius: 42px;
  transform-style: preserve-3d;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 510px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(124, 242, 200, 0.16), rgba(122, 167, 255, 0.12)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #0a1020;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: pulse 3.4s ease-in-out infinite;
}

.play-button {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e8ff91);
  box-shadow: 0 28px 80px rgba(124, 242, 200, 0.2);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #06120f;
}

.video-frame p {
  position: absolute;
  bottom: 26px;
  left: 26px;
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.why-copy h2 {
  max-width: 720px;
}

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

.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
}

.why-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(124, 242, 200, 0.12);
  color: var(--accent);
}

.why-item p {
  margin-bottom: 0;
}

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

.testimonial-card {
  min-height: 292px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.stars {
  margin-bottom: 22px;
  color: var(--accent-3);
  letter-spacing: 0.08em;
}

.testimonial-card p {
  color: #dbe4f2;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card small {
  margin-top: 5px;
  color: var(--muted);
}

.offer {
  padding-top: 70px;
}

.offer-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 242, 200, 0.18), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.lead-form label:nth-child(4) {
  grid-column: 1 / -1;
}

.lead-form span {
  color: #dce6f7;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form textarea {
  min-height: 116px;
  padding-block: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(124, 242, 200, 0.62);
  box-shadow: 0 0 0 4px rgba(124, 242, 200, 0.12);
}

.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.video-modal {
  width: min(92vw, 640px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #0b1020;
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 0;
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-content {
  padding: 52px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.82);
  filter: blur(12px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 720ms ease;
  transition-delay: var(--delay, 0ms);
  transform-origin: center bottom;
  will-change: opacity, transform, filter;
}

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

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.86); opacity: 0.42; }
  50% { transform: scale(1.16); opacity: 0.86; }
}

@keyframes barGrow {
  from { transform: scaleY(0.18); opacity: 0.2; }
  to { transform: scaleY(1); opacity: 1; }
}

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

@media (max-width: 1024px) {
  .section {
    padding: 84px 0;
  }

  .hero-grid,
  .process-grid,
  .showcase-grid,
  .offer-card {
    grid-template-columns: 1fr;
  }

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

  .visual-card {
    left: 50%;
    right: auto;
    translate: -50% 0;
  }

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

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 74px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    display: grid;
    justify-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(7, 10, 18, 0.95);
    box-shadow: var(--shadow);
    transform: translateY(-18px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .nav-menu a {
    padding: 14px;
  }

  .nav-cta {
    display: none;
  }

  .strip-grid,
  .service-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 58px;
  }

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

  .visual-card {
    min-height: 420px;
    width: min(100%, 420px);
  }

  .brand-dashboard {
    min-height: 220px;
  }

  .showcase-panel,
  .video-frame {
    min-height: 390px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

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

  .trust-row span {
    width: 100%;
  }

  .floating-chip {
    display: none;
  }

  .service-card,
  .step,
  .testimonial-card {
    border-radius: 24px;
  }

  .offer-card,
  .showcase-panel {
    border-radius: 30px;
  }

  .modal-content {
    padding: 44px 24px 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}


/* Arama uyumlu alt sayfalar için ek stiller — orijinal landing tasarımını değiştirmez. */
.page-hero {
  padding-top: 126px;
  padding-bottom: 64px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 6% -18% auto auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent, rgba(124, 242, 200, 0.14), transparent, rgba(122, 167, 255, 0.14), transparent);
  animation: slowRotate 20s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #dce6f7;
}

.page-hero .lead,
.article-body .lead {
  max-width: 820px;
  color: #dbe4f2;
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
}

.content-grid,
.article-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

.content-card,
.article-card,
.faq-item,
.toc-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.content-card,
.article-card,
.toc-card {
  padding: 28px;
}

.content-card h2,
.content-card h3,
.article-card h2,
.article-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.content-card p,
.article-card p {
  margin-bottom: 0;
}

.article-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.article-card small,
.post-meta {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-weight: 900;
}

.article-card a::after {
  content: "→";
  transition: transform 160ms ease;
}

.article-card:hover a::after {
  transform: translateX(4px);
}

.rich-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.rich-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.72;
}

.rich-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(124, 242, 200, 0.55);
}

.article-body {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.article-body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.article-body h3 {
  margin-top: 28px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.article-body p,
.article-body li {
  font-size: 1.05rem;
}

.article-body p + p {
  margin-top: 16px;
}

.toc-card {
  margin: 34px 0;
}

.toc-card strong {
  display: block;
  margin-bottom: 12px;
}

.toc-card a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
}

.toc-card a:hover {
  color: var(--text);
}

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

.faq-item {
  padding: 22px 24px;
}

.faq-item h3 {
  font-size: 1.15rem;
}

.faq-item p {
  margin-bottom: 0;
}

.page-cta {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .content-grid,
  .feature-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .content-grid,
  .feature-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 92px;
  }
}
