:root {
  color-scheme: light;
  --brand-soft: #CAE8F3;
  --brand-soft-rgb: 202, 232, 243;
  --bg: #f8fcfe;
  --surface: #ffffff;
  --surface-soft: #edf8fc;
  --ink: #06111f;
  --muted: #475569;
  --line: rgba(6, 17, 31, 0.11);
  --line-strong: rgba(6, 17, 31, 0.2);
  --accent: #2563eb;
  --accent-rgb: 37, 99, 235;
  --accent-dark: #123f95;
  --mint: #3aa8c2;
  --amber: #c57c14;
  --coral: #c8473f;
  --shadow: 0 22px 70px rgba(6, 17, 31, 0.12);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(var(--brand-soft-rgb), 0.78), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, rgba(var(--brand-soft-rgb), 0.42) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 118px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(6, 17, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 17, 31, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(6, 17, 31, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.site-header.header-scrolled {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(6, 17, 31, 0.12);
  transform: translateY(-2px);
}

.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-width: max-content;
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark-image {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(6, 17, 31, 0.08);
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(6, 17, 31, 0.11);
}

.brand-logo {
  width: clamp(112px, 12vw, 150px);
  height: auto;
  mix-blend-mode: multiply;
  transform: translateY(1px);
}

.brand-logo-main {
  width: clamp(118px, 12vw, 158px);
  height: auto;
  mix-blend-mode: multiply;
}

.mobile-menu-toggle,
.mobile-nav-cta {
  display: none;
}

.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(6, 17, 31, 0.08);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-premium);
}

.mobile-menu-toggle span + span {
  margin-top: 4px;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.main-nav a,
.site-footer nav a {
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.main-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-premium);
}

.main-nav a:hover,
.site-footer nav a:hover {
  background: rgba(var(--brand-soft-rgb), 0.62);
  color: var(--ink);
}

.main-nav a:hover::after,
.site-footer nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  min-width: max-content;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 760;
  box-shadow: 0 12px 26px rgba(6, 17, 31, 0.16);
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    background 260ms ease;
}

.header-cta:hover {
  background: #07192d;
  box-shadow: 0 18px 38px rgba(6, 17, 31, 0.22);
  transform: translateY(-2px) scale(1.015);
}

.header-cta:active {
  transform: translateY(0) scale(0.985);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: 58px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.25vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

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

.hero-copy .eyebrow,
.hero-copy h1,
.hero-subtitle,
.hero-text,
.hero-actions,
.trust-line {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 820ms var(--ease-premium) forwards;
}

.hero-copy .eyebrow {
  animation-delay: 80ms;
}

.hero-copy h1 {
  animation-delay: 160ms;
}

.hero-subtitle {
  animation-delay: 300ms;
}

.hero-text {
  animation-delay: 420ms;
}

.hero-actions {
  animation-delay: 540ms;
}

.trust-line {
  animation-delay: 650ms;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 14px;
  color: #1f2f46;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

.hero-text,
.section-heading p,
.contact-layout > div > p,
.credibility-copy p,
.final-panel p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.1;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    border-color 260ms ease,
    background 260ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.24) 42%,
    transparent 72%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-70%);
  transition:
    opacity 260ms ease,
    transform 520ms var(--ease-premium);
}

.button:hover {
  transform: translateY(-2px) scale(1.015);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(70%);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(var(--accent-rgb), 0.24);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(var(--accent-rgb), 0.34);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(var(--accent-rgb), 0.26);
  background: rgba(var(--brand-soft-rgb), 0.52);
  box-shadow: 0 16px 34px rgba(6, 17, 31, 0.12);
}

.trust-line {
  margin-top: 18px;
  color: #465162;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  opacity: 0;
  transform: translateY(18px);
}

.float-animation {
  animation:
    heroReveal 920ms var(--ease-premium) 380ms forwards,
    mockupFloat 8.5s ease-in-out 1400ms infinite;
}

.glow-animation::before,
.glow-animation::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  filter: blur(34px);
  opacity: 0.45;
  transform: translateZ(0);
  animation: glowDrift 10s ease-in-out infinite;
}

.glow-animation::before {
  top: 48px;
  right: 58px;
  width: 280px;
  height: 280px;
  background: rgba(var(--brand-soft-rgb), 0.86);
}

.glow-animation::after {
  right: 250px;
  bottom: 40px;
  width: 220px;
  height: 220px;
  background: rgba(var(--accent-rgb), 0.16);
  animation-delay: -3.8s;
}

.desktop-window,
.mobile-window,
.form-preview {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium),
    border-color 420ms ease;
}

.hero-visual:hover .desktop-window {
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 32px 88px rgba(6, 17, 31, 0.16);
  transform: translateY(-3px);
}

.hero-visual:hover .mobile-window {
  transform: translateY(-6px) rotate(-1deg);
}

.hero-visual:hover .form-preview {
  transform: translateY(-5px) rotate(0.4deg);
}

.desktop-window {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: min(100%, 620px);
  overflow: hidden;
  border-radius: 18px;
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 254, 0.94);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4dbe6;
}

.window-bar span:nth-child(1) {
  background: #ef786f;
}

.window-bar span:nth-child(2) {
  background: #f1bd57;
}

.window-bar span:nth-child(3) {
  background: #52c78f;
}

.mock-home {
  padding: 26px;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  min-height: 206px;
  padding: 28px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.92), rgba(var(--accent-rgb), 0.08)),
    #f8fbff;
}

.mock-hero p {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-hero h2 {
  max-width: 350px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1;
}

.mock-hero a,
.mock-contact span,
.phone-card button,
.form-preview button {
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 760;
}

.mock-hero a {
  padding: 10px 12px;
}

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

.mock-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.mock-grid span,
.service-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--accent), var(--mint));
}

.mock-grid h3 {
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.mock-grid p,
.mock-contact p,
.form-preview p,
.phone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.mock-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.mock-contact strong {
  font-size: 0.92rem;
}

.mock-contact span {
  padding: 7px 10px;
  background: rgba(var(--brand-soft-rgb), 0.92);
  color: var(--accent-dark);
}

.mobile-window {
  position: absolute;
  right: 34px;
  top: 0;
  width: 176px;
  padding: 12px;
  border-radius: 28px;
  background: #111827;
}

.phone-speaker {
  width: 44px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-card {
  min-height: 304px;
  padding: 18px 14px;
  border-radius: 18px;
  background: #ffffff;
}

.phone-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.28rem;
  line-height: 1.05;
}

.phone-card span {
  display: block;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #e9f6fb;
}

.phone-card button {
  width: 100%;
  margin-top: 12px;
  padding: 10px 6px;
  border: 0;
}

.form-preview {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 238px;
  padding: 18px;
  border-radius: 16px;
}

.form-preview p {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 780;
}

.form-preview label {
  display: block;
  margin: 10px 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
}

.form-preview span {
  display: block;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfe;
}

.form-preview .tall {
  height: 62px;
}

.form-preview button {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 900px;
}

.section-subtitle {
  margin-top: -6px;
  color: #303847;
  font-size: 1.24rem;
  font-weight: 720;
}

.comparison-grid,
.primary-offers,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-card,
.pillar-grid article,
.service-grid article,
.process-grid article,
.benefit-grid article,
.trust-card-grid article,
.offer-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(6, 17, 31, 0.07);
}

.premium-hover {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    transform 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    border-color 360ms ease,
    background 360ms ease;
  will-change: transform;
}

.premium-hover::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.82), rgba(var(--accent-rgb), 0.12)),
    transparent;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.premium-hover:hover {
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow:
    0 22px 58px rgba(6, 17, 31, 0.12),
    0 0 0 1px rgba(var(--accent-rgb), 0.04);
  transform: translate3d(0, -6px, 0);
}

.premium-hover:hover::before {
  opacity: 1;
}

.comparison-card {
  padding: 32px;
}

.comparison-card h3 {
  font-size: 1.6rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 26px;
}

li + li {
  margin-top: 11px;
}

li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.comparison-card.muted li::before {
  background: #a6afbc;
}

.comparison-card.premium {
  border-color: rgba(var(--accent-rgb), 0.24);
  background:
    linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.74), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pillar-grid article,
.service-grid article,
.process-grid article {
  padding: 22px;
}

.pillar-grid span,
.process-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 820;
}

.pillar-grid p,
.service-grid p,
.process-grid p,
.offer-card p {
  color: var(--muted);
}

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

.service-grid article {
  min-height: 236px;
}

.service-icon {
  background:
    linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.98), rgba(var(--accent-rgb), 0.13));
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  position: relative;
  overflow: hidden;
}

.process-grid article::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  color: rgba(var(--accent-rgb), 0.08);
  font-size: 9rem;
  font-weight: 850;
  line-height: 1;
  content: attr(data-index);
}

.credibility-panel,
.final-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 18%, rgba(var(--brand-soft-rgb), 0.18), transparent 32%),
    linear-gradient(135deg, rgba(6, 17, 31, 0.97), rgba(20, 37, 58, 0.95)),
    #111827;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.credibility-panel .eyebrow,
.final-panel .eyebrow {
  color: var(--brand-soft);
}

.credibility-panel p,
.final-panel p {
  color: rgba(255, 255, 255, 0.74);
}

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

.trust-card-grid article {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.trust-card-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.primary-offers {
  align-items: stretch;
  margin-bottom: 34px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
}

.offer-card.flagship {
  border-color: rgba(var(--accent-rgb), 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--brand-soft-rgb), 0.94), transparent 40%),
    linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.46), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: 0 28px 80px rgba(var(--accent-rgb), 0.14);
}

.offer-card.secondary {
  margin-top: 18px;
}

.offer-topline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.offer-topline p {
  margin: 0;
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 820;
}

.offer-topline span,
.card-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(var(--brand-soft-rgb), 0.86);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 790;
}

.offer-description {
  max-width: 540px;
  margin-bottom: 26px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  margin-bottom: 10px;
}

.price-row strong {
  font-size: clamp(2.4rem, 5vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.price-row span {
  color: var(--muted);
  font-weight: 720;
}

.small-note {
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 0.95rem;
  font-weight: 720;
}

.offer-card ul {
  margin-bottom: 28px;
}

.offer-card .button {
  width: fit-content;
  margin-top: auto;
}

.offer-trust {
  margin: 18px 0 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article {
  min-height: 112px;
  padding: 24px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
}

.final-panel {
  grid-template-columns: 1.08fr 0.62fr auto;
  align-items: center;
}

.final-panel h2 {
  max-width: 820px;
}

.final-panel ul {
  color: rgba(255, 255, 255, 0.82);
}

.final-panel li::before {
  background: var(--brand-soft);
}

.final-panel .button {
  min-width: 215px;
}

.closing-text {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 8px 0 0;
  font-weight: 650;
}

.contact-layout {
  align-items: start;
}

.contact-layout h2 {
  max-width: 620px;
}

.contact-info {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.contact-info p {
  margin: 0;
  color: var(--muted);
}

.contact-info p + p {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  padding: clamp(22px, 4vw, 32px);
}

.contact-form label {
  margin-bottom: -6px;
  color: #323b4b;
  font-size: 0.86rem;
  font-weight: 760;
}

.optional-label {
  color: var(--muted);
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.58);
  box-shadow: 0 0 0 4px rgba(var(--brand-soft-rgb), 0.72);
}

.contact-form input:disabled {
  background: rgba(var(--brand-soft-rgb), 0.46);
  color: var(--muted);
  cursor: not-allowed;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: rgba(200, 71, 63, 0.65);
}

.checkbox-field {
  grid-column: 1 / -1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: -2px 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 5px;
  accent-color: var(--accent);
  flex: 0 0 18px;
}

.contact-form label[for="message"],
.contact-form textarea,
.form-status,
.contact-form button {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #0b6d55;
}

.form-status.is-error {
  color: var(--coral);
}

.contact-form button {
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 780ms var(--ease-premium),
    filter 780ms var(--ease-premium),
    transform 780ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.reveal-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal.reveal-visible.premium-hover:hover {
  transform: translate3d(0, -6px, 0);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mockupFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes glowDrift {
  0%,
  100% {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.58;
    transform: translate3d(-12px, 10px, 0) scale(1.06);
  }
}

@media (max-width: 1020px) {
  .hero,
  .comparison-grid,
  .primary-offers,
  .contact-layout,
  .credibility-panel,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 76px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(2.45rem, 7.4vw, 4.2rem);
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 620px;
    margin: 0 auto;
  }

  .desktop-window {
    left: 0;
    right: auto;
  }

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

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

  .offer-card.secondary {
    margin-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > p {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    padding: 8px;
    border-radius: 12px;
  }

  .brand-logo-main {
    width: clamp(104px, 34vw, 132px);
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-top: 0 solid transparent;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 320ms var(--ease-premium),
      opacity 220ms ease,
      padding 320ms var(--ease-premium),
      border-color 220ms ease,
      transform 320ms var(--ease-premium);
  }

  .site-header.nav-open .main-nav {
    max-height: 430px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 44px;
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    background: var(--ink);
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(6, 17, 31, 0.14);
  }

  .mobile-nav-cta::after {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(2.05rem, 8.7vw, 2.62rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.06;
  }

  h3 {
    font-size: 1.16rem;
  }

  .hero-subtitle,
  .hero-text,
  .section-heading p,
  .contact-layout > div > p,
  .credibility-copy p,
  .final-panel p {
    font-size: 0.96rem;
  }

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

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .trust-line {
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .hero-visual {
    width: min(100%, 440px);
    min-height: 0;
    margin-top: 10px;
    padding-top: clamp(54px, 15vw, 70px);
  }

  .desktop-window {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    border-radius: 14px;
  }

  .mock-home {
    padding: 16px;
  }

  .mock-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 14px;
    padding: 20px;
    padding-right: clamp(112px, 37vw, 156px);
  }

  .mock-hero h2 {
    max-width: 100%;
    font-size: clamp(1.32rem, 7vw, 1.82rem);
  }

  .mock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mock-grid article {
    min-width: 0;
    padding: 10px;
  }

  .mock-grid span {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
  }

  .mock-grid h3 {
    font-size: 0.76rem;
  }

  .mock-grid p {
    font-size: 0.62rem;
  }

  .mobile-window {
    right: 10px;
    top: 0;
    width: min(136px, 36vw);
    padding: 9px;
    border-radius: 22px;
  }

  .phone-speaker {
    width: 34px;
    margin-bottom: 9px;
  }

  .phone-card {
    min-height: 218px;
    padding: 14px 10px;
    border-radius: 15px;
  }

  .phone-card strong {
    margin-bottom: 12px;
    font-size: clamp(0.98rem, 4.2vw, 1.14rem);
  }

  .phone-card span {
    height: 34px;
  }

  .phone-card button {
    min-height: 34px;
    margin-top: 8px;
    padding: 8px 5px;
    font-size: 0.68rem;
  }

  .form-preview {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .pillar-grid,
  .service-grid,
  .process-grid,
  .trust-card-grid,
  .benefit-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .offer-card,
  .credibility-panel,
  .final-panel,
  .contact-form {
    padding: 22px;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-info a,
  .site-footer a {
    overflow-wrap: anywhere;
  }

  .offer-topline,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row strong {
    font-size: clamp(2.4rem, 13vw, 3.15rem);
  }

  .benefit-grid article {
    min-height: auto;
  }

  .premium-hover:hover,
  .motion-ready .reveal.reveal-visible.premium-hover:hover {
    transform: translate3d(0, -3px, 0);
  }

  .float-animation {
    animation:
      heroReveal 780ms var(--ease-premium) 260ms forwards,
      mockupFloat 10s ease-in-out 1200ms infinite;
  }

  .glow-animation::before,
  .glow-animation::after {
    filter: blur(24px);
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .hero {
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(1.92rem, 8.4vw, 2.28rem);
  }

  .hero-subtitle,
  .hero-text {
    font-size: 0.94rem;
  }

  .hero-visual {
    width: 100%;
    padding-top: 58px;
  }

  .mobile-window {
    right: 8px;
    width: min(124px, 35vw);
  }

  .phone-card {
    min-height: 200px;
  }

  .mock-home {
    padding: 14px;
  }

  .mock-hero {
    padding: 18px;
    padding-right: clamp(108px, 37vw, 132px);
  }

  .mock-contact {
    gap: 10px;
  }

  .form-preview {
    padding: 15px;
  }
}

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

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

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-subtitle,
  .hero-text,
  .hero-actions,
  .trust-line,
  .hero-visual,
  .motion-ready .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
