﻿:root {
  color-scheme: light;
  --bg: #f8f7fc;
  --surface: #ffffff;
  --text: #131625;
  --muted: #5f687b;
  --line: #e4e7f1;
  --primary: #1f4ed8;
  --primary-dark: #173ca8;
  --brand-purple: #c080e0;
  --brand-purple-dark: #8a54b8;
  --brand-purple-soft: #f4ecff;
  --turquoise: #23c7f5;
  --success: #15ba72;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 10px 24px rgba(19, 24, 44, 0.08);
  --shadow-md: 0 24px 48px rgba(83, 65, 140, 0.18);
  --shadow-lg: 0 30px 64px rgba(36, 54, 117, 0.23);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  line-height: 1.64;
  background:
    radial-gradient(960px 600px at 88% -140px, rgba(192, 128, 224, 0.24), transparent 58%),
    radial-gradient(820px 520px at -12% -150px, rgba(31, 78, 216, 0.15), transparent 56%),
    radial-gradient(900px 420px at 50% 120%, rgba(35, 199, 245, 0.1), transparent 55%),
    var(--bg);
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.17;
  background-image: radial-gradient(rgba(20, 20, 36, 0.09) 1px, transparent 1px);
  background-size: 4px 4px;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 199, 245, 0.22), rgba(35, 199, 245, 0));
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 70;
  background: rgba(255, 255, 255, 0.35);
}

#scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--brand-purple-dark));
  transition: width 0.1s linear;
}

.announcement-bar {
  border-bottom: 1px solid #d9e2ff;
  background: linear-gradient(120deg, #0f1d43, #1f4ed8 58%, #7e50b3);
  color: #fff;
}

.announcement-content {
  min-height: 46px;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.58rem 0;
}

.announcement-content p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.announcement-content span {
  display: inline-flex;
  margin-right: 0.36rem;
  padding: 0.16rem 0.46rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
}

.announcement-content a {
  flex-shrink: 0;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.announcement-content a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.section {
  padding: 4.7rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(192, 128, 224, 0.08), rgba(31, 78, 216, 0.03));
}

.section-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.section-title {
  margin: 0.7rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.66rem, 5.6vw, 2.46rem);
  line-height: 1.18;
  max-width: 23ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(228, 231, 241, 0.9);
  background: rgba(248, 247, 252, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(17, 22, 42, 0.04);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 0.94rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  max-width: 180px;
  line-height: 1.2;
}

.menu-toggle {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 11px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  background: #131625;
}

.main-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 1rem 1rem;
  box-shadow: var(--shadow-sm);
}

.main-nav.is-open {
  display: grid;
  gap: 0.7rem;
}

.main-nav a {
  font-weight: 600;
  color: #242a3f;
}

.main-nav a.is-active {
  color: var(--primary);
}

.btn {
  --btn-bg: #fff;
  --btn-color: #12162b;
  min-height: 48px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(16, 20, 38, 0.17);
}

.btn:focus-visible {
  outline: 3px solid rgba(192, 128, 224, 0.58);
  outline-offset: 2px;
}

.btn-primary {
  --btn-bg: linear-gradient(128deg, var(--primary), var(--brand-purple-dark));
  --btn-color: #fff;
}

.btn-secondary {
  --btn-bg: #f2eaff;
  --btn-color: var(--brand-purple-dark);
  border-color: #ddc8ef;
}

.btn-outline {
  --btn-bg: #fff;
  --btn-color: var(--primary);
  border-color: #cfd8ff;
}

.btn-sm {
  min-height: 40px;
  padding: 0.58rem 0.85rem;
  font-size: 0.86rem;
}

.btn-block {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 5.3rem 0 4.2rem;
}

.hero-gradient-orb {
  position: absolute;
  right: -100px;
  top: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 128, 224, 0.34), rgba(192, 128, 224, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 0.92rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 7vw, 3.15rem);
  line-height: 1.07;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 63ch;
  font-size: 1rem;
}

.hero-chips {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.hero-chips span {
  padding: 0.32rem 0.66rem;
  border-radius: 999px;
  border: 1px solid #dfcbee;
  background: #f7f0ff;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-purple-dark);
}

.hero-proof {
  margin: 0.95rem 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-purple-dark);
}

.hero-trust-row {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  width: fit-content;
  border: 1px solid #d9e0f5;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(33, 47, 90, 0.08);
}

.trust-pill i {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.trust-pill span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #303f65;
}

.hero-cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
}

.hero-cta-center {
  justify-content: center;
}

.hero-visual {
  position: relative;
}

.hero-dashboard-frame {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-dashboard-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  max-width: 240px;
  border: 1px solid rgba(228, 231, 241, 0.82);
  border-radius: 13px;
  padding: 0.65rem 0.72rem;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease;
}

.hero-floating-card i {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.hero-floating-card strong {
  font-size: 0.85rem;
  display: block;
}

.hero-floating-card span {
  font-size: 0.76rem;
  color: var(--muted);
}

.hero-floating-card-a {
  left: -8px;
  bottom: 56px;
}

.hero-floating-card-b {
  right: -8px;
  top: 22px;
}

.trust-bar {
  padding: 0.4rem 0 2.2rem;
}

.trust-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.trust-grid article {
  display: grid;
  gap: 0.2rem;
}

.trust-grid strong {
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.logo-marquee-section {
  padding: 0 0 1rem;
}

.logo-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.logo-marquee-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.72rem 1rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.logo-marquee-track span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3f4860;
  white-space: nowrap;
}

.bento-section {
  padding-top: 3.2rem;
}

.bento-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

.bento-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.12rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: -80% -20% auto;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(31, 78, 216, 0.17), rgba(192, 128, 224, 0.14));
  filter: blur(24px);
}

.bento-main h3,
.bento-stack h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.bento-main p,
.bento-main li,
.bento-note {
  color: var(--muted);
}

.bento-main ul {
  margin: 0.72rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.35rem;
}

.bento-kicker {
  margin: 0;
  color: var(--brand-purple-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bento-value {
  margin: 0.38rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 0.95;
  color: #1d2b57;
}

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

.bento-image {
  padding: 0;
}

.bento-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.stack-row {
  margin-top: 0.7rem;
  border: 1px solid #d7def1;
  border-radius: 12px;
  padding: 0.58rem 0.7rem;
  background: #f9fbff;
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
}

.stack-row span {
  color: #354362;
  font-weight: 600;
}

.stack-row strong {
  color: #1b2f6f;
  font-family: "Space Grotesk", sans-serif;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.services-grid,
.plan-grid,
.diff-grid,
.process-grid,
.cases-grid,
.testimonial-grid,
.faq-grid {
  margin-top: 1.38rem;
  display: grid;
  gap: 1rem;
}

.visual-grid {
  margin-top: 1.38rem;
  display: grid;
  gap: 1rem;
}

.service-card,
.diff-card,
.process-step,
.case-card,
.testimonial-card,
.faq-item,
.pricing-panel,
.custom-pricing {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.visual-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card,
.diff-card,
.process-step,
.case-card,
.testimonial-card,
.pricing-panel,
.custom-pricing {
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after,
.diff-card::after,
.process-step::after,
.case-card::after,
.testimonial-card::after,
.pricing-panel::after,
.custom-pricing::after,
.visual-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -70px;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(35, 199, 245, 0.14), rgba(192, 128, 224, 0.14));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover,
.diff-card:hover,
.process-step:hover,
.case-card:hover,
.testimonial-card:hover,
.pricing-panel:hover,
.custom-pricing:hover,
.visual-card:hover,
.plan-card:hover,
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(32, 43, 88, 0.14);
}

.service-card:hover::after,
.diff-card:hover::after,
.process-step:hover::after,
.case-card:hover::after,
.testimonial-card:hover::after,
.pricing-panel:hover::after,
.custom-pricing:hover::after,
.visual-card:hover::after {
  opacity: 1;
}

[data-tilt] {
  will-change: transform;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-copy {
  padding: 1rem 1.05rem 1.1rem;
}

.visual-copy h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.visual-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, #ecf2ff, #f5ecff);
  border: 1px solid #d9dff6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.service-card h3,
.diff-card h3,
.process-step h3,
.case-card h3,
.testimonial-card h3,
.pricing-panel h3 {
  margin: 0.75rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
}

.service-card p,
.diff-card p,
.process-step p,
.case-card p,
.testimonial-card p {
  margin: 0.52rem 0 0;
  color: var(--muted);
}

.service-link {
  margin-top: 0.48rem;
  display: inline-block;
  color: var(--brand-purple-dark);
  font-size: 0.89rem;
  font-weight: 700;
}

.price-note {
  margin: 0.92rem 0 0;
  color: var(--brand-purple-dark);
  font-weight: 800;
}

.pricing-tabs {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pricing-tab {
  border: 1px solid #d4dcff;
  background: #fff;
  color: #324170;
  border-radius: 999px;
  padding: 0.48rem 0.86rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.pricing-tab.is-active {
  color: #fff;
  background: linear-gradient(130deg, var(--primary), var(--brand-purple-dark));
  border-color: transparent;
}

.pricing-panel {
  margin-top: 1.05rem;
}

.pricing-panel[hidden] {
  display: none;
}

.plan-grid {
  margin-top: 0.9rem;
}

.plan-card {
  border: 1px solid #dcccf1;
  border-radius: var(--radius-sm);
  background: #fcfbff;
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.price {
  margin: 0.44rem 0 0;
  font-size: 1.22rem;
  font-family: "Space Grotesk", sans-serif;
  color: #202647;
}

.price span {
  margin-left: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.plan-card ul {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.plan-card li {
  font-size: 0.89rem;
  color: #2e3447;
  padding-left: 1rem;
  position: relative;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-purple-dark);
}

.plan-card.featured {
  border-color: #bea4df;
  background: linear-gradient(170deg, rgba(31, 78, 216, 0.09), rgba(192, 128, 224, 0.16));
}

.badge {
  margin: 0 0 0.44rem;
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.56rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-purple-dark);
}

.custom-pricing {
  margin-top: 1.2rem;
  border-style: dashed;
  border-color: #bb9cdc;
  background: #fbf8ff;
}

.custom-pricing h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.custom-pricing p {
  margin: 0.52rem 0 0;
  color: #2e3348;
}

.pricing-cta {
  margin-top: 1.26rem;
  text-align: center;
}

.web-maintenance {
  margin-top: 1rem;
  border: 1px dashed #b6c5f2;
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: linear-gradient(160deg, rgba(31, 78, 216, 0.06), rgba(35, 199, 245, 0.08));
}

.maintenance-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #1e2b53;
}

.maintenance-note,
.maintenance-footnote {
  margin: 0.45rem 0 0;
  color: #46506b;
  font-size: 0.88rem;
}

.maintenance-grid {
  margin-top: 0.75rem;
}

.social-proof-grid,
.compare-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

.proof-card,
.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.proof-tag {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  background: #eef3ff;
  color: #304678;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.24rem 0.56rem;
}

.proof-card h3,
.compare-card h3 {
  margin: 0.7rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
}

.proof-card p,
.compare-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.proof-card ul,
.compare-card ul {
  margin: 0.64rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
}

.proof-card li,
.compare-card li {
  position: relative;
  padding-left: 0.95rem;
  color: #333b52;
  font-size: 0.9rem;
}

.proof-card li::before,
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.compare-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: #1f2d57;
}

.compare-footnote {
  margin: 0.8rem 0 0;
  color: #4c5775;
  font-size: 0.88rem;
}

.offer-section {
  padding-top: 1.1rem;
}

.offer-shell {
  border: 1px solid #c8d8ff;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(420px 220px at 0 0, rgba(35, 199, 245, 0.15), transparent 62%),
    linear-gradient(130deg, #f5f8ff, #f8f4ff 56%, #eef4ff);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
  text-align: center;
}

.offer-tag {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  background: #1f4ed8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.24rem 0.56rem;
}

.offer-shell h2 {
  margin: 0.8rem auto 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 4.8vw, 2rem);
  max-width: 25ch;
}

.offer-copy {
  margin: 0.65rem auto 0;
  color: #3f4d72;
  max-width: 62ch;
}

.offer-urgency {
  margin: 0.6rem 0 0;
  color: #213a7a;
  font-weight: 800;
}

.process-step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #d8c4ef;
  background: #f4ebff;
  color: var(--brand-purple-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
}

.testimonial-card p {
  font-style: italic;
}

.faq-item {
  padding: 0;
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.08rem;
  font-weight: 700;
  color: #212740;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-purple-dark);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.08rem 1rem;
  color: var(--muted);
}

.cta-band {
  background:
    radial-gradient(620px 360px at 10% 0, rgba(192, 128, 224, 0.32), transparent),
    linear-gradient(128deg, #171a47, #1f4ed8 62%, #8a54b8);
  color: #fff;
}

.cta-band-content {
  max-width: 760px;
  text-align: center;
}

.cta-band-content h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 5.2vw, 2.38rem);
}

.cta-band-content p {
  margin: 0.82rem auto 1.24rem;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.9);
}

.architecture-section {
  background:
    radial-gradient(620px 380px at 18% 12%, rgba(35, 199, 245, 0.16), transparent 52%),
    radial-gradient(620px 380px at 88% 82%, rgba(192, 128, 224, 0.24), transparent 58%),
    linear-gradient(130deg, #0f1634, #162750 55%, #212f66);
  color: #fff;
}

.architecture-section .section-label {
  color: #7cd8ff;
}

.architecture-section .section-title {
  color: #fff;
}

.architecture-grid {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.architecture-copy .section-title {
  max-width: 18ch;
}

.architecture-copy p {
  color: rgba(235, 240, 255, 0.86);
}

.architecture-list {
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.architecture-list div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.architecture-list i {
  width: 16px;
  height: 16px;
  color: #69d8ff;
}

.architecture-visual {
  position: relative;
  border: 1px solid rgba(196, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 54px rgba(4, 7, 19, 0.45);
}

.architecture-visual img {
  width: 100%;
  min-height: 320px;
  max-height: 500px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.architecture-float {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 0.6rem 0.74rem;
  background: rgba(11, 18, 46, 0.74);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.1rem;
}

.architecture-float strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.architecture-float span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
}

.architecture-float-a {
  left: 10px;
  bottom: 12px;
}

.architecture-float-b {
  right: 10px;
  top: 12px;
}

.signal-section {
  background:
    radial-gradient(560px 280px at 8% 10%, rgba(35, 199, 245, 0.16), transparent 56%),
    radial-gradient(580px 320px at 92% 85%, rgba(192, 128, 224, 0.2), transparent 60%),
    linear-gradient(128deg, #f3f8ff, #f8f3ff 56%, #f4f8ff);
}

.signal-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.signal-copy p {
  color: #3d4762;
}

.signal-list {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.58rem;
}

.signal-list div {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: #2f3c5e;
  font-weight: 600;
}

.signal-list i {
  width: 17px;
  height: 17px;
  color: #2454dc;
  margin-top: 0.12rem;
}

.signal-panel {
  border: 1px solid #d1dcfb;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(460px 220px at 0 0, rgba(35, 199, 245, 0.15), transparent 60%),
    linear-gradient(152deg, #ffffff, #f7f9ff 56%, #f6f2ff);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.signal-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  align-items: center;
}

.signal-header p {
  margin: 0;
  font-size: 0.82rem;
  color: #2e4174;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-switch {
  display: inline-flex;
  border: 1px solid #cfdbff;
  border-radius: 999px;
  padding: 0.2rem;
  background: #fff;
}

.signal-switch-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2f426f;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.42rem 0.65rem;
  cursor: pointer;
}

.signal-switch-btn.is-active {
  background: linear-gradient(135deg, #1f4ed8, #8a54b8);
  color: #fff;
}

.signal-kpis {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.62rem;
}

.signal-kpis article {
  border: 1px solid #dbe2f7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.66rem 0.72rem;
  display: grid;
  gap: 0.1rem;
}

.signal-kpis span {
  color: #536083;
  font-size: 0.75rem;
  font-weight: 700;
}

.signal-kpis strong {
  color: #1c2e63;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  line-height: 1.1;
}

.signal-chart-wrap {
  margin-top: 0.82rem;
  border: 1px solid #d6def4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.6rem;
}

#signal-chart {
  width: 100%;
  height: 250px;
}

.estimator-section {
  padding-top: 2rem;
}

.estimator-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.estimator-copy p {
  color: #3f4963;
}

.simulator-form,
.simulator-result {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.simulator-form {
  padding: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.simulator-form label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #273055;
}

.simulator-form select {
  width: 100%;
  font: inherit;
  color: #141c33;
  background: #fff;
  border: 1px solid #ced5e8;
  border-radius: 10px;
  padding: 0.77rem 0.86rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.simulator-form select:focus {
  outline: none;
  border-color: rgba(138, 84, 184, 0.62);
  box-shadow: 0 0 0 4px rgba(192, 128, 224, 0.16);
}

.sim-checkbox {
  margin-top: 0.15rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: #46506b;
}

.sim-checkbox input {
  margin-top: 0.22rem;
  accent-color: #1f4ed8;
}

.simulator-result {
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
}

.simulator-result::after {
  content: "";
  position: absolute;
  inset: auto -20% -86px;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(35, 199, 245, 0.14), rgba(192, 128, 224, 0.16));
}

.simulator-tag {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  background: #eef3ff;
  color: #304678;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.24rem 0.56rem;
}

.simulator-result h3 {
  margin: 0.75rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.simulator-metrics {
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.56rem;
}

.simulator-metrics div {
  border: 1px solid #d9e1f6;
  border-radius: 12px;
  padding: 0.64rem 0.72rem;
  background: #f9fbff;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.simulator-metrics dt {
  color: #516085;
  font-size: 0.82rem;
  font-weight: 700;
}

.simulator-metrics dd {
  margin: 0;
  color: #1e2f60;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.simulator-note {
  margin: 0.85rem 0 0.9rem;
  color: #48536f;
  font-size: 0.89rem;
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.microcopy {
  color: var(--brand-purple-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.lead-form label {
  font-size: 0.87rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  font: inherit;
  color: #141c33;
  background: #fff;
  border: 1px solid #ced5e8;
  border-radius: 10px;
  padding: 0.77rem 0.86rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(138, 84, 184, 0.62);
  box-shadow: 0 0 0 4px rgba(192, 128, 224, 0.16);
}

.form-status {
  min-height: 1.1rem;
  margin: 0.1rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #27315a;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #47536f;
  font-size: 0.83rem;
  line-height: 1.35;
  font-weight: 600;
}

.consent-check input {
  margin-top: 0.14rem;
  accent-color: var(--primary);
}

.consent-check a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recaptcha-wrap {
  margin-top: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d8e0f3;
  background: #f8fbff;
  display: grid;
  gap: 0.42rem;
}

.recaptcha-label {
  margin: 0;
  color: #223466;
  font-size: 0.83rem;
  font-weight: 700;
}

.recaptcha-note {
  margin: 0;
  color: #5e6a88;
  font-size: 0.78rem;
  line-height: 1.3;
}

.recaptcha-wrap .g-recaptcha {
  transform-origin: left top;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 65;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--success);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 30px rgba(21, 186, 114, 0.34);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 4.7rem;
  z-index: 65;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #d9c7ee;
  color: var(--brand-purple-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top i {
  width: 18px;
  height: 18px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-quickbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 64;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.mobile-quickbar a {
  text-align: center;
  padding: 0.78rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-quickbar a:first-child {
  color: #fff;
  background: linear-gradient(128deg, var(--primary), var(--brand-purple-dark));
}

.mobile-quickbar a:last-child {
  color: var(--brand-purple-dark);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 2rem 0 5.8rem;
}

.footer-content {
  display: grid;
  gap: 0.25rem;
  text-align: center;
}

.footer-content p {
  margin: 0;
  color: #424d69;
  font-size: 0.92rem;
}

.footer-content a {
  color: var(--brand-purple-dark);
}

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

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

/* Inner pages */
.inner-main {
  min-height: 60vh;
}

.page-hero {
  padding: 4.8rem 0 2.2rem;
}

.page-hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.page-title {
  margin: 0.7rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.85rem, 6.5vw, 2.9rem);
  line-height: 1.12;
  max-width: 22ch;
}

.page-subtitle {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.page-hero-image {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.inner-grid {
  display: grid;
  gap: 1rem;
}

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

.service-detail-card,
.about-card,
.case-detail-card,
.contact-side-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-detail-card,
.about-card,
.contact-side-card,
.notice-card {
  padding: 1.15rem;
}

.service-detail-card h2,
.about-card h2,
.case-detail-copy h2,
.notice-card h2,
.contact-side-card h2,
.article-layout h2,
.legal-content h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.service-detail-card p,
.about-card p,
.contact-side-card p,
.case-detail-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.service-detail-card ul,
.article-layout ul,
.legal-content ul {
  margin: 0.62rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.35rem;
}

.case-stack {
  display: grid;
  gap: 1rem;
}

.case-detail-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.case-detail-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.case-detail-copy {
  padding: 1rem 1.05rem 1.12rem;
}

.case-detail-copy p strong {
  color: #232d4b;
}

.kpi-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.kpi-strip article {
  display: grid;
  gap: 0.12rem;
}

.kpi-strip strong {
  font-size: 1.2rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary);
}

.kpi-strip span {
  color: var(--muted);
  font-size: 0.87rem;
}

.about-grid {
  display: grid;
  gap: 1rem;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card > div {
  padding: 1rem 1.05rem 1.15rem;
}

.blog-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--brand-purple-dark);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0.6rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.24;
}

.blog-card h2 a {
  color: #1f2a48;
}

.blog-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.article-layout {
  max-width: 860px;
}

.article-layout p,
.legal-content p {
  margin: 0.72rem 0 0;
  color: #364158;
}

.article-layout h2,
.legal-content h2 {
  margin-top: 1.2rem;
}

.post-meta {
  margin: 0;
  color: var(--brand-purple-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.legal-content {
  max-width: 860px;
}

.notice-card {
  margin-top: 1rem;
}

.notice-card p,
.notice-card ul {
  margin-top: 0.55rem;
  color: var(--muted);
}

.contact-page-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.contact-side-cards {
  display: grid;
  gap: 1rem;
}

.contact-quick-actions {
  margin-top: 1rem;
}

@media (max-width: 620px) {
  .announcement-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .announcement-content a {
    font-size: 0.76rem;
  }
}


.theme-toggle {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid #d6def4;
  background: #ffffff;
  color: #243157;
  padding: 0.38rem 0.64rem;
  display: inline-flex;
  margin-left: auto;
  flex-shrink: 0;
  align-items: center;
  gap: 0.42rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(20, 30, 58, 0.15);
}

.theme-toggle-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #d3dcf6;
  background: #eff4ff;
  color: #395391;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.theme-toggle-label {
  line-height: 1;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090f1f;
  --surface: #121a2f;
  --text: #e8eeff;
  --muted: #a5b2d1;
  --line: #263253;
  --primary: #67a4ff;
  --primary-dark: #4b85df;
  --brand-purple: #b987e3;
  --brand-purple-dark: #c6a6ec;
  --brand-purple-soft: #1d2543;
  --turquoise: #43d7ff;
  --shadow-sm: 0 12px 28px rgba(1, 4, 13, 0.45);
  --shadow-md: 0 24px 48px rgba(1, 4, 13, 0.52);
  --shadow-lg: 0 30px 64px rgba(1, 4, 13, 0.58);
}

[data-theme="dark"] body {
  background:
    radial-gradient(920px 560px at 88% -140px, rgba(150, 112, 224, 0.2), transparent 58%),
    radial-gradient(820px 520px at -12% -150px, rgba(84, 137, 255, 0.16), transparent 56%),
    radial-gradient(900px 420px at 50% 120%, rgba(35, 199, 245, 0.12), transparent 55%),
    var(--bg);
}

[data-theme="dark"] .announcement-bar {
  background: linear-gradient(120deg, #0a122b, #1b326b 58%, #4e3774);
  border-bottom-color: #24345e;
}

[data-theme="dark"] .site-header {
  border-bottom-color: #233050;
  background: rgba(9, 15, 31, 0.82);
}

[data-theme="dark"] .main-nav {
  background: #0f1730;
  border-bottom-color: #25345a;
}

[data-theme="dark"] .main-nav a {
  color: #d9e3ff;
}

[data-theme="dark"] .btn-secondary {
  --btn-bg: #243661;
  --btn-color: #dde8ff;
  border-color: #38508a;
}

[data-theme="dark"] .btn-outline {
  --btn-bg: transparent;
  --btn-color: #8db9ff;
  border-color: #35538f;
}

[data-theme="dark"] .hero-chips span {
  background: #1a2544;
  border-color: #344a7b;
  color: #d6e3ff;
}

[data-theme="dark"] .trust-grid,
[data-theme="dark"] .logo-marquee,
[data-theme="dark"] .service-card,
[data-theme="dark"] .diff-card,
[data-theme="dark"] .process-step,
[data-theme="dark"] .case-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .pricing-panel,
[data-theme="dark"] .custom-pricing,
[data-theme="dark"] .visual-card,
[data-theme="dark"] .bento-card,
[data-theme="dark"] .lead-form,
[data-theme="dark"] .kpi-strip,
[data-theme="dark"] .about-card,
[data-theme="dark"] .service-detail-card,
[data-theme="dark"] .case-detail-card,
[data-theme="dark"] .contact-side-card,
[data-theme="dark"] .notice-card,
[data-theme="dark"] .blog-card {
  background: #121a2f;
  border-color: #263253;
}

[data-theme="dark"] .visual-copy,
[data-theme="dark"] .case-detail-copy,
[data-theme="dark"] .blog-card > div {
  background: #121a2f;
}

[data-theme="dark"] .service-icon {
  background: linear-gradient(145deg, #19284a, #22284d);
  border-color: #365086;
}

[data-theme="dark"] .price,
[data-theme="dark"] .bento-value {
  color: #eaf1ff;
}

[data-theme="dark"] .price span,
[data-theme="dark"] .plan-card li,
[data-theme="dark"] .visual-copy p,
[data-theme="dark"] .faq-item p,
[data-theme="dark"] .contact-copy p,
[data-theme="dark"] .article-layout p,
[data-theme="dark"] .legal-content p,
[data-theme="dark"] .notice-card p,
[data-theme="dark"] .notice-card ul,
[data-theme="dark"] .logo-marquee-track span {
  color: #a8b4d3;
}

[data-theme="dark"] .service-link,
[data-theme="dark"] .footer-content a,
[data-theme="dark"] .microcopy,
[data-theme="dark"] .price-note,
[data-theme="dark"] .blog-meta {
  color: #9fc1ff;
}

[data-theme="dark"] .stack-row {
  background: #1a2544;
  border-color: #365086;
}

[data-theme="dark"] .stack-row span {
  color: #b7c7ea;
}

[data-theme="dark"] .stack-row strong {
  color: #e9f0ff;
}

[data-theme="dark"] .plan-card {
  background: #171f39;
  border-color: #314571;
}

[data-theme="dark"] .plan-card.featured {
  background: linear-gradient(170deg, rgba(77, 123, 223, 0.26), rgba(121, 84, 184, 0.24));
  border-color: #5573ad;
}

[data-theme="dark"] .proof-card,
[data-theme="dark"] .compare-card {
  background: #121a2f;
  border-color: #263253;
}

[data-theme="dark"] .proof-tag {
  background: #1f3363;
  color: #dbe8ff;
}

[data-theme="dark"] .proof-card li,
[data-theme="dark"] .compare-card li {
  color: #aec0e4;
}

[data-theme="dark"] .compare-price,
[data-theme="dark"] .offer-shell h2 {
  color: #eef3ff;
}

[data-theme="dark"] .compare-footnote,
[data-theme="dark"] .offer-copy {
  color: #a8b4d3;
}

[data-theme="dark"] .offer-shell {
  border-color: #35508a;
  background:
    radial-gradient(420px 220px at 0 0, rgba(35, 199, 245, 0.14), transparent 62%),
    linear-gradient(130deg, #101933, #18254b 56%, #1a2241);
}

[data-theme="dark"] .offer-tag {
  background: #2c61cf;
}

[data-theme="dark"] .offer-urgency {
  color: #b6d0ff;
}

[data-theme="dark"] .pricing-tab {
  background: #16213f;
  color: #b7c7e9;
  border-color: #375183;
}

[data-theme="dark"] .faq-item summary {
  color: #e7eeff;
}

[data-theme="dark"] .faq-item summary::after {
  color: #9fc1ff;
}

[data-theme="dark"] .section-soft {
  background: linear-gradient(180deg, rgba(75, 110, 187, 0.2), rgba(15, 26, 53, 0.3));
}

[data-theme="dark"] .lead-form input,
[data-theme="dark"] .lead-form select,
[data-theme="dark"] .lead-form textarea {
  background: #0d1732;
  border-color: #32476f;
  color: #e9f0ff;
}

[data-theme="dark"] .lead-form input::placeholder,
[data-theme="dark"] .lead-form textarea::placeholder {
  color: #8fa2c9;
}

[data-theme="dark"] .consent-check {
  color: #afbedc;
}

[data-theme="dark"] .consent-check a {
  color: #9fc1ff;
}

[data-theme="dark"] .recaptcha-wrap {
  border-color: #304568;
  background: #0f1b37;
}

[data-theme="dark"] .recaptcha-label {
  color: #d4e1ff;
}

[data-theme="dark"] .recaptcha-note {
  color: #9fb0d2;
}

[data-theme="dark"] .mobile-quickbar {
  background: rgba(8, 14, 29, 0.96);
  border-top-color: #26385f;
}

[data-theme="dark"] .mobile-quickbar a:last-child {
  color: #aac7ff;
}

[data-theme="dark"] .site-footer {
  background: #0d152b;
  border-top-color: #25355a;
}

[data-theme="dark"] .back-to-top {
  background: #152345;
  border-color: #365086;
  color: #d8e5ff;
}

[data-theme="dark"] .theme-toggle {
  border-color: #35508a;
  background: #15213e;
  color: #dfe8ff;
}

[data-theme="dark"] .theme-toggle-dot {
  border-color: #5778b3;
  background: #28457f;
  color: #f5f8ff;
}

[data-theme="dark"] .signal-section {
  background:
    radial-gradient(560px 280px at 8% 10%, rgba(35, 199, 245, 0.12), transparent 56%),
    radial-gradient(580px 320px at 92% 85%, rgba(150, 112, 224, 0.18), transparent 60%),
    linear-gradient(128deg, #0f1730, #141f3f 56%, #111a35);
}

[data-theme="dark"] .signal-copy p {
  color: #aab8d9;
}

[data-theme="dark"] .signal-list div {
  color: #c6d3f3;
}

[data-theme="dark"] .signal-panel {
  border-color: #2f4472;
  background:
    radial-gradient(460px 220px at 0 0, rgba(35, 199, 245, 0.14), transparent 60%),
    linear-gradient(152deg, #101a34, #111e3d 56%, #172449);
}

[data-theme="dark"] .signal-header p {
  color: #99b8f1;
}

[data-theme="dark"] .signal-switch {
  background: #101b37;
  border-color: #35508a;
}

[data-theme="dark"] .signal-switch-btn {
  color: #b8c9ed;
}

[data-theme="dark"] .signal-kpis article,
[data-theme="dark"] .signal-chart-wrap {
  background: #111b36;
  border-color: #30446f;
}

[data-theme="dark"] .signal-kpis span {
  color: #8fa6d1;
}

[data-theme="dark"] .signal-kpis strong {
  color: #edf3ff;
}

[data-theme="dark"] .simulator-form,
[data-theme="dark"] .simulator-result {
  background: #121a2f;
  border-color: #263253;
}

[data-theme="dark"] .simulator-form label {
  color: #d9e4ff;
}

[data-theme="dark"] .simulator-form select {
  background: #0d1732;
  border-color: #32476f;
  color: #e9f0ff;
}

[data-theme="dark"] .sim-checkbox {
  color: #9fb2d8;
}

[data-theme="dark"] .simulator-tag {
  background: #1f3363;
  color: #dbe8ff;
}

[data-theme="dark"] .simulator-metrics div {
  background: #172445;
  border-color: #35508a;
}

[data-theme="dark"] .simulator-metrics dt {
  color: #a5b8dd;
}

[data-theme="dark"] .simulator-metrics dd {
  color: #edf3ff;
}

[data-theme="dark"] .simulator-note {
  color: #a7b5d4;
}

@media (max-width: 420px) {
  .recaptcha-wrap .g-recaptcha {
    transform: scale(0.9);
  }
}

@media (max-width: 760px) {
  .theme-toggle-label {
    display: none;
  }

  .theme-toggle {
    min-width: 40px;
    padding: 0.38rem;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 5.2rem 0;
  }

  .brand-text {
    max-width: none;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid,
  .contact-grid,
  .page-hero-grid,
  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .signal-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-trust-row {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

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

  .services-grid,
  .cases-grid,
  .testimonial-grid,
  .visual-grid,
  .social-proof-grid,
  .compare-grid,
  .about-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .bento-main {
    grid-column: span 2;
  }

  .plan-grid,
  .process-grid,
  .diff-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-page-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.2rem;
  }

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

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

  .simulator-result {
    grid-column: span 2;
  }

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

  .floating-wa {
    bottom: 1rem;
  }

  .back-to-top {
    bottom: 4.6rem;
  }
}

@media (min-width: 1024px) {
  .nav-shell {
    min-height: 84px;
  }

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

  .hero-grid {
    gap: 2.7rem;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

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

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

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

  .bento-main {
    grid-column: span 2;
    min-height: 260px;
  }

  .bento-image {
    grid-column: span 1;
  }

  .bento-stack {
    grid-column: span 1;
  }

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

  .cases-grid,
  .testimonial-grid,
  .process-grid-3,
  .diff-grid,
  .social-proof-grid,
  .about-grid,
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .case-detail-card {
    grid-template-columns: 0.42fr 0.58fr;
  }

  .case-detail-image img {
    height: 100%;
    min-height: 260px;
  }

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

  .mobile-quickbar {
    display: none;
  }

  .architecture-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
  }

  .signal-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.5rem;
  }

  .estimator-grid {
    grid-template-columns: 0.82fr 0.9fr 0.9fr;
  }

  .simulator-result {
    grid-column: span 1;
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }

  .back-to-top {
    bottom: 5rem;
  }
}




