:root {
  --bg: #07111f;
  --bg-soft: #0d1b2d;
  --panel: rgba(15, 27, 43, 0.72);
  --panel-strong: #0f1f34;
  --surface: #f2f7fb;
  --text: #eaf2ff;
  --text-dark: #0d1623;
  --muted: #98acc5;
  --line: rgba(163, 194, 255, 0.15);
  --line-strong: rgba(163, 194, 255, 0.3);
  --accent: #6de2ff;
  --accent-deep: #1fbad6;
  --accent-warm: #ffb86c;
  --accent-green: #8ff0b3;
  --surface-clean: #f6faff;
  --surface-card: #ffffff;
  --ink-muted: #53657a;
  --shadow: 0 24px 80px rgba(1, 8, 18, 0.38);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #07111f 0%, #091525 40%, #07111f 100%);
}

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

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.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;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(4, 11, 21, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img,
.footer-logo {
  width: auto;
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
  margin-right: 1rem;
}

.site-nav .nav-mobile-action {
  display: none;
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hidden {
  display: none !important;
}

.auth-guest,
.auth-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link-pill {
  padding: 0.7rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: #d8e7fb;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.nav-link-accent {
  border-color: rgba(109, 226, 255, 0.24);
  color: #07111f;
  background: linear-gradient(135deg, rgba(109, 226, 255, 0.95), rgba(255, 184, 108, 0.88));
}

.nav-user-name {
  padding: 0.72rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #dce8fb;
  font-weight: 700;
}

.nav-logout-btn {
  cursor: pointer;
}

.site-nav a {
  color: rgba(234, 242, 255, 0.8);
  font-weight: 700;
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a.active,
.site-nav a:hover {
  color: #fff;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.nav-cta,
.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--accent), #b8f1ff);
  box-shadow: 0 14px 40px rgba(70, 217, 255, 0.2);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 0 auto 5px;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.hero-section,
.inner-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 3.5rem 0 4rem;
}

.inner-hero {
  padding: 5rem 0 2rem;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent);
}

.hero-layout,
.split-highlight,
.contact-layout,
.dual-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: start;
}

.inner-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 2rem;
  align-items: center;
}

.inner-hero-copy {
  min-width: 0;
}

.inner-hero-layout .inner-hero-copy h1 {
  max-width: 13ch;
}

.inner-hero-visual {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(1, 8, 18, 0.34);
}

.inner-hero-visual img {
  display: block;
  width: 100%;
  min-height: 340px;
  height: 100%;
  object-fit: cover;
}

.inner-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 11, 21, 0.78));
  pointer-events: none;
}

.inner-hero-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(5, 12, 22, 0.82);
  box-shadow: 0 16px 44px rgba(1, 8, 18, 0.28);
  backdrop-filter: blur(16px);
}

.inner-hero-visual figcaption span {
  display: block;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
}

.inner-hero-visual figcaption strong {
  display: block;
  margin-top: 0.3rem;
  color: #fff;
  line-height: 1.35;
}

.hero-copy h1,
.inner-hero h1,
.section h2,
.cta-panel h2,
.service-panel h2,
.solution-card h2,
.story-card h2,
.contact-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

.hero-copy h1,
.inner-hero h1 {
  max-width: 12ch;
  font-size: 5rem;
  letter-spacing: 0;
}

.lead,
.hero-copy p,
.section-heading p,
.story-card p,
.service-panel p,
.solution-card p,
.contact-card p,
.value-stack p,
.timeline-item p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  margin-top: 1.25rem;
  max-width: 64ch;
}

.eyebrow,
.section-kicker,
.card-kicker,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9efff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions,
.social-row,
.contact-list,
.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.trust-row,
.proof-strip,
.metric-strip,
.service-cards,
.value-stack,
.timeline,
.feature-matrix,
.solution-grid,
.check-grid,
.stats-band,
.pricing-grid,
.faq-grid,
.agency-grid,
.sector-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.trust-row div,
.proof-strip div,
.metric-card,
.info-card,
.timeline-item,
.matrix-card,
.solution-card,
.check-card,
.story-card,
.service-panel,
.contact-card,
.stats-band article,
.faq-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.trust-row div,
.proof-strip div {
  padding: 1rem;
  border-radius: 18px;
}

.trust-row strong,
.proof-strip strong,
.metric-card strong,
.stats-band strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.trust-row span,
.proof-strip span,
.metric-card span,
.stats-band span {
  color: var(--muted);
}

.glass-card,
.info-card,
.timeline-item,
.matrix-card,
.solution-card,
.story-card,
.service-panel,
.contact-card,
.stats-band article,
.faq-card {
  backdrop-filter: blur(18px);
  border-radius: 24px;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.site-preview-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(109, 226, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(109, 226, 255, 0.14), rgba(255, 184, 108, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.hero-visual-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(109, 226, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.hero-visual-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 12, 23, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(1, 8, 18, 0.35);
}

.hero-visual-overlay span {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hero-visual-overlay strong {
  color: #fff;
  font-size: 1.05rem;
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-warm);
}

.preview-topbar span:nth-child(2) {
  background: var(--accent);
}

.preview-topbar span:nth-child(3) {
  background: #8ff0b3;
}

.preview-topbar strong {
  margin-left: auto;
  color: #dff5ff;
  font-size: 0.9rem;
}

.preview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
}

.preview-copy span,
.preview-price span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-copy strong,
.preview-price strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.preview-copy small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.preview-price {
  min-width: 112px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.42);
  text-align: center;
}

.preview-price strong {
  color: var(--accent-warm);
  font-size: 1.35rem;
}

.preview-lines {
  display: grid;
  gap: 0.55rem;
  padding: 0 1.25rem 1.25rem;
}

.preview-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-lines span:nth-child(2) {
  width: 72%;
}

.preview-lines span:nth-child(3) {
  width: 46%;
}

.status-card {
  padding: 1.4rem;
}

.conversion-card {
  border: 1px solid rgba(109, 226, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-dot {
  font-weight: 700;
  color: var(--accent-warm);
}

.status-card h2 {
  font-size: 2rem;
  margin-top: 1rem;
}

.status-card p {
  margin-top: 0.9rem;
}

.signal-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.signal-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #d9e9ff;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 5px rgba(109, 226, 255, 0.08);
}

.compact li {
  color: var(--muted);
}

.owned-items-list li {
  display: grid;
  gap: 0.2rem;
}

.owned-items-list strong {
  color: #fff;
}

.owned-items-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.delivery-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.delivery-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  color: #d9e9ff;
  line-height: 1.55;
}

.delivery-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109, 226, 255, 0.18), rgba(255, 184, 108, 0.2));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.metric-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 1.1rem;
}

.section {
  padding: 2rem 0 4.75rem;
  scroll-margin-top: 96px;
}

.pricing-meta {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}

.pricing-section {
  padding-top: 0;
}

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

.pricing-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.pricing-card h3 {
  font-size: 2.25rem;
  line-height: 1.08;
  margin: 0;
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #dff4ff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-total {
  color: var(--accent-warm);
  font-size: 1rem;
}

.pricing-assurance {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pricing-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce9fb;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.pricing-assurance i {
  color: var(--accent);
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.faq-card {
  padding: 1.35rem;
}

.faq-card i {
  color: var(--accent);
  font-size: 1.4rem;
}

.faq-card h3 {
  margin: 1rem 0 0.65rem;
  color: #fff;
  font-size: 1.05rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ecommerce-note,
.auth-strip,
.auth-card,
.app-solution-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ecommerce-note,
.auth-strip {
  margin-top: 1.4rem;
  padding: 1.5rem;
  border-radius: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.ecommerce-note h3,
.auth-teaser h2,
.auth-card h2 {
  margin: 0.6rem 0 0;
  font-family: "Space Grotesk", sans-serif;
}

.ecommerce-note p,
.auth-teaser p,
.form-feedback {
  color: var(--muted);
  line-height: 1.7;
}

.auth-page-grid,
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.app-solution-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.app-solution-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.app-solution-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.app-solution-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.18rem;
}

.app-solution-card p {
  color: var(--muted);
  line-height: 1.72;
}

.app-solution-card span {
  display: block;
  margin-top: 1rem;
  color: #dce9fb;
  font-size: 0.95rem;
  font-weight: 700;
}

.auth-card {
  padding: 1.6rem;
  border-radius: 24px;
}

.form-feedback {
  min-height: 1.5rem;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(7, 17, 31, 0.46)),
    #081220;
}

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

.section-heading h2 {
  margin-top: 0.7rem;
  font-size: 2.8rem;
}

.agency-section,
.process-section {
  color: var(--text-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.98)),
    var(--surface-clean);
}

.agency-section .section-heading p,
.process-section .section-heading p,
.agency-card p,
.process-card p {
  color: var(--ink-muted);
}

.agency-section .section-kicker,
.process-section .section-kicker {
  border-color: rgba(13, 22, 35, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #12324c;
}

.agency-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.agency-card,
.process-card {
  padding: 1.35rem;
  border: 1px solid rgba(13, 22, 35, 0.1);
  border-radius: 22px;
  background: var(--surface-card);
  box-shadow: 0 18px 52px rgba(11, 31, 54, 0.1);
}

.agency-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #07111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  font-size: 1.35rem;
}

.agency-card span,
.sector-card span {
  display: block;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agency-card h3,
.sector-card h3,
.process-card h3 {
  margin: 0.65rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
}

.agency-card h3,
.process-card h3 {
  color: var(--text-dark);
}

.sector-section {
  background: linear-gradient(180deg, #0a1626 0%, #07111f 100%);
}

.sector-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.sector-card {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid rgba(163, 194, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.sector-card span {
  margin-top: 0;
  color: var(--accent-green);
}

.sector-card h3 {
  color: #fff;
}

.sector-card p {
  color: var(--muted);
  line-height: 1.7;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #07111f;
  background: linear-gradient(135deg, var(--accent-green), var(--accent));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.service-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.info-card,
.matrix-card,
.check-card {
  padding: 1.5rem;
}

.info-card i,
.matrix-card i,
.check-card i {
  font-size: 1.45rem;
  color: var(--accent);
}

.info-card h3,
.matrix-card h3,
.timeline-item h3,
.value-stack h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.1rem;
}

.split-highlight {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.value-stack article {
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.value-stack strong,
.timeline-item span,
.service-panel-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109, 226, 255, 0.18), rgba(255, 184, 108, 0.2));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.timeline-item {
  padding: 1.35rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.7rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 34, 56, 0.94), rgba(10, 23, 39, 0.88)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.story-card,
.solution-card,
.contact-card {
  padding: 1.6rem;
}

.story-card.accent {
  background: linear-gradient(180deg, rgba(109, 226, 255, 0.12), rgba(255, 184, 108, 0.08));
}

.feature-matrix,
.check-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.stats-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-band article {
  padding: 1.35rem;
}

.stacked-services {
  display: grid;
  gap: 1rem;
}

.service-panel {
  padding: 1.4rem;
}

.service-panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.service-panel h2 {
  font-size: 1.8rem;
}

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

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.95rem 1rem;
  color: #fff;
}

.contact-form option {
  color: #111;
}

.legal-consent,
.legal-form-note {
  margin: 0.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.legal-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  accent-color: var(--accent);
}

.legal-consent a,
.legal-form-note a,
.legal-content a,
.legal-aside a {
  color: var(--accent);
  font-weight: 800;
}

.contact-list {
  margin: 1.2rem 0;
  flex-direction: column;
  align-items: flex-start;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #dcedff;
}

.game-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4rem;
}

.game-shell {
  display: grid;
  gap: 1rem;
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.08fr) minmax(240px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.game-info-panel,
.game-stage-card,
.game-mission-card,
.ad-slot,
.reward-dialog {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.game-info-panel,
.game-stage-card,
.game-mission-card {
  border-radius: 24px;
}

.game-info-panel {
  padding: 1.35rem;
}

.game-info-panel h1,
.game-mission-card h2,
.reward-dialog h2 {
  margin: 0.75rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}

.game-info-panel h1 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.game-info-panel p,
.game-mission-card p,
.game-note p,
.reward-dialog p {
  color: var(--muted);
  line-height: 1.68;
}

.game-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.25rem 0;
}

.game-stat-grid div {
  min-height: 84px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.game-stat-grid span,
.ad-slot span,
.game-stage-top span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-stat-grid strong {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.game-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.game-actions .btn {
  gap: 0.4rem;
}

.game-note {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(109, 226, 255, 0.18);
  border-radius: 18px;
  background: rgba(109, 226, 255, 0.07);
}

.game-note strong {
  color: #fff;
}

.game-stage-card {
  padding: 0.85rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 680px;
}

.game-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0.25rem 0.7rem;
}

.game-stage-top span:last-child {
  color: var(--accent-warm);
}

#hazirRunnerGame {
  width: 100%;
  height: min(68vh, 620px);
  min-height: 470px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #06111f;
  touch-action: none;
}

.touch-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding-top: 0.75rem;
}

.touch-controls button {
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.touch-controls i {
  font-size: 1.35rem;
}

.game-side-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.ad-slot {
  min-height: 90px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  gap: 0.2rem;
  padding: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(109, 226, 255, 0.1), rgba(255, 184, 108, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.ad-slot strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.ad-slot-wide {
  min-height: 96px;
}

.ad-slot-box {
  min-height: 250px;
}

.game-mission-card {
  padding: 1.15rem;
}

.mission-progress {
  margin-top: 1rem;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mission-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transition: width 0.24s ease;
}

#missionProgressText {
  display: block;
  margin-top: 0.55rem;
  color: #fff;
}

.reward-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 8, 15, 0.76);
  backdrop-filter: blur(14px);
}

.reward-dialog {
  width: min(460px, 100%);
  padding: 1.4rem;
  border-radius: 24px;
}

.reward-countdown {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 1.1rem 0;
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.site-footer {
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 1.25rem;
  align-items: start;
}

.footer-layout p,
.footer-links a,
.footer-contact a,
.footer-bottom p {
  color: var(--muted);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  padding-top: 1rem;
}

.legal-hero .lead {
  max-width: 74ch;
}

.legal-section {
  padding-top: 1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.legal-aside,
.legal-content {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 22px;
}

.legal-aside strong {
  color: #fff;
}

.legal-aside span {
  color: var(--muted);
}

.legal-content {
  padding: 1.8rem;
  border-radius: 24px;
}

.legal-content h2 {
  margin: 1.8rem 0 0.7rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li,
.legal-table {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-reset-btn {
  margin-top: 0.8rem;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  box-sizing: border-box;
  width: min(1040px, calc(100% - 2rem));
  max-width: calc(100vw - 2rem);
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(4, 11, 21, 0.96);
  box-shadow: 0 22px 70px rgba(1, 8, 18, 0.42);
  backdrop-filter: blur(18px);
}

.cookie-consent strong {
  display: block;
  color: #fff;
}

.cookie-consent p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cookie-consent a {
  color: var(--accent);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.35s,
    transform 0.35s;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

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

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

  .reveal {
    transform: none;
    transition: none;
  }

  .reveal.in-view {
    transform: none;
  }

  .nav-cta:hover,
  .btn:hover {
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .service-cards,
  .feature-matrix,
  .check-grid,
  .pricing-grid,
  .app-solution-grid,
  .faq-grid,
  .proof-strip,
  .agency-grid,
  .sector-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout,
  .inner-hero-layout,
  .split-highlight,
  .solution-grid,
  .timeline,
  .footer-layout,
  .ecommerce-note,
  .auth-strip,
  .auth-page-grid,
  .panel-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .game-layout {
    grid-template-columns: 1fr;
  }

  .game-stage-card {
    min-height: auto;
  }

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

  .ad-slot-box {
    min-height: 180px;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav-cta {
    display: none;
  }

  .nav-account {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    margin: 0;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.97);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-mobile-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    color: #dce9fb;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav .nav-mobile-whatsapp {
    color: #07111f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  }

  .trust-row,
  .proof-strip,
  .dual-grid,
  .contact-layout,
  .stats-band,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .inner-hero h1 {
    max-width: 100%;
    font-size: 3.35rem;
  }

  .section-heading h2 {
    font-size: 2.3rem;
  }

  .status-card h2 {
    font-size: 1.8rem;
  }

  .game-hero {
    padding-top: 1.2rem;
  }

  .game-stat-grid,
  .game-side-stack {
    grid-template-columns: 1fr;
  }

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

  #hazirRunnerGame {
    height: min(62vh, 560px);
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.55rem;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(4, 11, 21, 0.92);
    box-shadow: 0 18px 50px rgba(1, 8, 18, 0.34);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 0;
    min-height: 46px;
    border-radius: 12px;
    color: #07111f;
    font-size: 0.95rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #b8f1ff);
  }

  .mobile-sticky-cta a:last-child {
    background: linear-gradient(135deg, var(--accent-warm), #ffe0b4);
  }

  .cookie-consent {
    bottom: 5.9rem;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .service-cards,
  .feature-matrix,
  .check-grid,
  .pricing-grid,
  .app-solution-grid,
  .faq-grid,
  .proof-strip,
  .agency-grid,
  .sector-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.5rem 0 3.5rem;
  }

  .hero-section {
    padding-top: 4rem;
  }

  .hero-copy h1,
  .inner-hero h1 {
    font-size: 2.1rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .pricing-card h3 {
    font-size: 1.95rem;
  }

  .hero-visual-card,
  .hero-visual-card img,
  .inner-hero-visual,
  .inner-hero-visual img {
    min-height: 300px;
  }

  .inner-hero-visual figcaption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem;
  }

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

  .cookie-consent {
    left: 0.6rem;
    right: 0.6rem;
    width: auto;
    max-width: calc(100vw - 1.2rem);
    padding: 1rem;
  }

  .mobile-sticky-cta {
    left: 0.6rem;
    right: 0.6rem;
    gap: 0.5rem;
    padding: 0.45rem;
  }
}

/* Hazir Haber: acik tema, beyaz + kirmizi (logo dosyasi ayni kalir) */
body.news-theme {
  --news-red: #dc2626;
  --news-red-deep: #b91c1c;
  --news-red-soft: #fef2f2;
  color: #1f2937;
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.08), transparent 35%),
    radial-gradient(circle at 8% 18%, rgba(239, 68, 68, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #fffbfb 100%);
}

body.news-theme .grid-lines {
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.05) 1px, transparent 1px);
}

body.news-theme .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 38, 38, 0.12);
}

body.news-theme .site-nav a {
  color: #4b5563;
}

body.news-theme .site-nav a.active,
body.news-theme .site-nav a:hover {
  color: var(--news-red-deep);
}

body.news-theme .site-nav a.active::after {
  background: linear-gradient(90deg, var(--news-red), #f87171);
}

body.news-theme .nav-link-pill {
  color: #1f2937;
  border-color: rgba(220, 38, 38, 0.2);
  background: #ffffff;
}

body.news-theme .nav-link-accent,
body.news-theme .nav-cta,
body.news-theme .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--news-red-deep), var(--news-red));
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.22);
}

body.news-theme .btn-secondary {
  color: var(--news-red-deep);
  border-color: rgba(220, 38, 38, 0.35);
  background: #ffffff;
}

body.news-theme .hero-copy h1,
body.news-theme .inner-hero h1,
body.news-theme .section h2,
body.news-theme .cta-panel h2,
body.news-theme .service-panel h2,
body.news-theme .solution-card h2,
body.news-theme .story-card h2,
body.news-theme .contact-card h2,
body.news-theme .status-card h2 {
  color: #111827;
}

body.news-theme .lead,
body.news-theme .hero-copy p,
body.news-theme .section-heading p,
body.news-theme .story-card p,
body.news-theme .service-panel p,
body.news-theme .solution-card p,
body.news-theme .contact-card p,
body.news-theme .value-stack p,
body.news-theme .timeline-item p,
body.news-theme .cta-panel p,
body.news-theme .pricing-meta {
  color: #4b5563;
}

body.news-theme .eyebrow,
body.news-theme .section-kicker,
body.news-theme .card-kicker,
body.news-theme .status-pill {
  color: var(--news-red-deep);
  border-color: rgba(220, 38, 38, 0.22);
  background: var(--news-red-soft);
}

body.news-theme .trust-row div,
body.news-theme .metric-card,
body.news-theme .info-card,
body.news-theme .timeline-item,
body.news-theme .matrix-card,
body.news-theme .solution-card,
body.news-theme .check-card,
body.news-theme .story-card,
body.news-theme .service-panel,
body.news-theme .contact-card,
body.news-theme .stats-band article,
body.news-theme .glass-card,
body.news-theme .pricing-card,
body.news-theme .auth-card,
body.news-theme .app-solution-card {
  background: #ffffff;
  border-color: rgba(220, 38, 38, 0.12);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

body.news-theme .story-card.accent {
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.95), #ffffff);
}

body.news-theme .section-dark {
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

body.news-theme .status-dot,
body.news-theme .pricing-total,
body.news-theme .info-card i,
body.news-theme .matrix-card i,
body.news-theme .check-card i,
body.news-theme .app-solution-card i {
  color: var(--news-red);
}

body.news-theme .trust-row strong,
body.news-theme .metric-card strong,
body.news-theme .stats-band strong {
  color: #111827;
}

body.news-theme .signal-list li,
body.news-theme .compact li,
body.news-theme .trust-row span,
body.news-theme .metric-card span,
body.news-theme .stats-band span {
  color: #6b7280;
}

body.news-theme .signal-list li::before {
  background: linear-gradient(135deg, var(--news-red), #f87171);
  box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.1);
}

body.news-theme .cta-panel {
  background: linear-gradient(135deg, #ffffff, #fff5f5);
  border-color: rgba(220, 38, 38, 0.15);
}

body.news-theme .site-footer {
  border-top: 1px solid rgba(220, 38, 38, 0.12);
}

body.news-theme .footer-layout p,
body.news-theme .footer-links a,
body.news-theme .footer-contact a,
body.news-theme .footer-bottom p {
  color: #6b7280;
}

body.news-theme .footer-links a:hover,
body.news-theme .footer-contact a:hover {
  color: var(--news-red-deep);
}

body.news-theme .social-row a {
  border-color: rgba(220, 38, 38, 0.18);
  background: #ffffff;
  color: var(--news-red-deep);
}

body.news-theme .menu-toggle {
  border-color: rgba(220, 38, 38, 0.25);
  background: #ffffff;
  color: #1f2937;
}

body.news-theme .menu-toggle span {
  background: #1f2937;
}

@media (max-width: 840px) {
  body.news-theme .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(220, 38, 38, 0.15);
  }
}

.news-ad-wrap {
  padding-top: 0.5rem;
}

.news-ad-slot {
  text-align: center;
  border: 2px dashed rgba(220, 38, 38, 0.35);
  border-radius: 18px;
  background: #ffffff;
  padding: 1.1rem 1rem;
}

.news-ad-slot span {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--news-red-deep);
  background: var(--news-red-soft);
}

.news-ad-slot strong {
  display: block;
  margin-top: 0.5rem;
  color: #111827;
}

.news-ad-slot p {
  margin: 0.35rem 0 0;
  color: #6b7280;
}
