:root {
  --bg: #050b14;
  --bg-2: #07111f;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.115);
  --border: rgba(255, 255, 255, 0.16);
  --text: #eef5ff;
  --muted: #9eb2d3;
  --soft: #c7d5ef;
  --brand: #44f1c9;
  --brand-2: #5d7cff;
  --brand-3: #b65cff;
  --warning: #ffd275;
  --success: #53e2a5;
  --danger: #ff7171;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(68, 241, 201, 0.20), transparent 36rem),
    radial-gradient(circle at 85% 12%, rgba(93, 124, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 75% 80%, rgba(182, 92, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #050b14 0%, #07111f 52%, #050b14 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.07), transparent 22rem);
  opacity: .8;
}

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

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

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

button { cursor: pointer; }

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  background: #fff;
  color: #07111f;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 99;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(20px);
  background: rgba(5, 11, 20, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 192px;
}
.logo img { width: 190px; height: auto; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--soft);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
}

.nav-cta {
  margin-left: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}
.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 54%, var(--brand-3));
  box-shadow: 0 18px 38px rgba(93, 124, 255, 0.24);
}
.btn-primary:hover { box-shadow: 0 22px 46px rgba(93, 124, 255, 0.34); }
.btn-secondary {
  background: rgba(255,255,255,.07);
  color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,.11); }
.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  padding: 80px 0 58px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(68, 241, 201, .28);
  background: rgba(68, 241, 201, .08);
  border-radius: 999px;
  color: #dffdf7;
  font-weight: 800;
  font-size: .88rem;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 rgba(83, 226, 165, 0.65);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(83, 226, 165, .55); }
  70% { box-shadow: 0 0 0 12px rgba(83, 226, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(83, 226, 165, 0); }
}

h1, h2, h3, h4, p { margin-top: 0; }
.hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: .9;
  letter-spacing: -0.08em;
}
.gradient-text {
  background: linear-gradient(135deg, #fff, #caf8ef 36%, #90a4ff 70%, #f3cdff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 700px;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  color: var(--soft);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: .9rem;
}
.trust-pill svg { flex: 0 0 auto; }

.hero-panel {
  position: relative;
  min-height: 620px;
}
.device-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 16px;
}
.window-dots { display: flex; gap: 7px; }
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}
.dashboard {
  border-radius: 24px;
  background: #06101d;
  border: 1px solid rgba(255,255,255,.12);
  min-height: 450px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.dashboard::before {
  content: "";
  position: absolute;
  inset: -120px -60px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(68, 241, 201, .36), transparent 65%);
}
.dashboard-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.dashboard-title { font-size: 1.24rem; font-weight: 900; }
.dashboard-sub { color: var(--muted); font-size: .92rem; }
.chart-card {
  position: relative;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.13);
  margin-bottom: 16px;
}
.bars { display: flex; align-items: end; gap: 10px; height: 150px; }
.bar {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  min-height: 34px;
  background: linear-gradient(180deg, rgba(68,241,201,.92), rgba(93,124,255,.54));
  box-shadow: 0 10px 28px rgba(68,241,201,.12);
  transform-origin: bottom;
  animation: grow .9s both ease;
}
.bar:nth-child(2) { animation-delay: .08s; }
.bar:nth-child(3) { animation-delay: .16s; }
.bar:nth-child(4) { animation-delay: .24s; }
.bar:nth-child(5) { animation-delay: .32s; }
.bar:nth-child(6) { animation-delay: .40s; }
@keyframes grow { from { transform: scaleY(.2); opacity: .45; } to { transform: scaleY(1); opacity: 1; } }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mini-card {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
}
.mini-card strong { display: block; font-size: 1.3rem; letter-spacing: -0.04em; }
.mini-card span { color: var(--muted); font-size: .9rem; }
.floating-badge {
  position: absolute;
  right: -20px;
  bottom: 70px;
  width: min(280px, 80%);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6, 16, 29, .78);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.badge-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06101d;
  font-weight: 900;
}
.floating-badge strong { display: block; line-height: 1.2; }
.floating-badge span { color: var(--muted); font-size: .9rem; }

.section {
  padding: 82px 0;
}
.section-sm { padding: 54px 0; }
.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}
.kicker {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}
.section-header p,
.policy-copy p,
.page-lead {
  color: var(--soft);
  font-size: 1.06rem;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cloud-item {
  min-height: 84px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  color: var(--soft);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 18px 52px rgba(0,0,0,.18);
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 306px;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 0%, rgba(68, 241, 201, .12), transparent 40%);
  pointer-events: none;
}
.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #07111f;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  margin-bottom: 22px;
  box-shadow: 0 16px 34px rgba(68, 241, 201, .16);
}
.service-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.service-card p { color: var(--soft); }
.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  color: var(--muted);
  margin-top: 9px;
  display: flex;
  gap: 10px;
}
.clean-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-step {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  padding: 24px;
}
.step-number {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(68,241,201,.12);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--muted); margin-bottom: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 530px;
}
.price-card.featured {
  transform: translateY(-14px);
  border-color: rgba(68,241,201,.38);
  box-shadow: 0 34px 80px rgba(68, 241, 201, .12);
}
.label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(68,241,201,.12);
  color: #dffdf7;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 14px;
}
.price-card h3 { font-size: 1.42rem; margin-bottom: 8px; }
.price {
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
  margin: 16px 0;
}
.price small {
  font-size: .96rem;
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 700;
}
.price-card p { color: var(--soft); }
.price-card .clean-list { margin-bottom: 24px; }
.price-card .btn { margin-top: auto; }

.compliance-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
  gap: 26px;
  align-items: stretch;
  border-radius: 36px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(68,241,201,.14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.048));
  box-shadow: var(--shadow);
}
.business-panel {
  background: rgba(5, 11, 20, .42);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 24px;
}
.details-list { display: grid; gap: 13px; margin-top: 20px; }
.detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 13px;
}
.detail-row:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-row span { color: var(--muted); }
.detail-row strong { color: var(--text); }
.copy-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.copy-btn {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--soft);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: .78rem;
  font-weight: 800;
}
.compliance-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.three-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.point {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  padding: 18px;
}
.point strong { display: block; margin-bottom: 4px; }
.point span { color: var(--muted); }

.payment-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-radius: 34px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(93,124,255,.18), transparent 34%),
    rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-icon {
  min-width: 78px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--soft);
  font-weight: 900;
  font-size: .86rem;
}
.notice {
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 210, 117, .22);
  background: rgba(255, 210, 117, .075);
  color: #ffe6a8;
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
}
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding: 20px;
  font-weight: 900;
}
.faq-question span:last-child {
  font-size: 1.4rem;
  color: var(--brand);
}
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--soft);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}
.contact-card .clean-list li::before { content: "•"; }
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  padding: 14px;
  color: var(--soft);
  transition: background .2s ease;
}
.contact-method:hover { background: rgba(255,255,255,.09); }
.contact-method strong { color: var(--text); display: block; }
.form-card form { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field label {
  display: block;
  color: var(--soft);
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.075);
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field select option { color: #07111f; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(68,241,201,.6);
  box-shadow: 0 0 0 4px rgba(68,241,201,.1);
  background: rgba(255,255,255,.095);
}
.form-status {
  min-height: 22px;
  color: var(--soft);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.24);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, .65fr));
  gap: 34px;
}
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); max-width: 420px; }
.footer-col h4 { margin-bottom: 14px; }
.footer-col a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .92rem;
}

.page-hero {
  padding: 76px 0 44px;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: .95;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}
.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 76px;
}
.policy-nav {
  position: sticky;
  top: 104px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  padding: 16px;
}
.policy-nav a {
  display: block;
  color: var(--soft);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
}
.policy-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.policy-copy {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  padding: 34px;
}
.policy-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: 26px;
}
.policy-copy h2:first-child { margin-top: 0; }
.policy-copy ul { color: var(--soft); }
.policy-copy li { margin: 8px 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    inset: 82px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6, 16, 29, .95);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin-left: 0; }
  .hero-grid,
  .compliance-card,
  .faq-grid,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .hero-panel { min-height: auto; }
  .logo-cloud,
  .service-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-card.featured { transform: none; }
  .payment-box { grid-template-columns: 1fr; }
  .three-points { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { height: 74px; }
  .nav-links { inset-top: 74px; }
  .logo img { width: 168px; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-actions .btn,
  .section-actions .btn { width: 100%; }
  .floating-badge { position: relative; inset: auto; margin-top: 18px; width: 100%; }
  .service-grid,
  .pricing-grid,
  .process-grid,
  .logo-cloud,
  .mini-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .detail-row { grid-template-columns: 1fr; gap: 4px; }
  .policy-copy { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
