:root {
  --navy-950: #041a35;
  --navy-900: #072449;
  --navy-800: #0b376c;
  --blue-700: #0b63b6;
  --blue-600: #1178d3;
  --red-700: #c30e18;
  --red-600: #e51b23;
  --red-500: #f23035;
  --gold-500: #f7b914;
  --gold-400: #ffd642;
  --gold-100: #fff6cf;
  --white: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef3f8;
  --ink: #142033;
  --muted: #5d6a7b;
  --border: #dbe3ed;
  --success: #147a4a;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(4, 26, 53, 0.08);
  --shadow-md: 0 18px 50px rgba(4, 26, 53, 0.15);
  --shadow-lg: 0 26px 70px rgba(4, 26, 53, 0.22);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section.alt { background: var(--surface); }
.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(17, 120, 211, .28), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(229, 27, 35, .24), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.announcement {
  background: linear-gradient(90deg, var(--red-700), var(--red-500));
  color: var(--white);
  font-size: .92rem;
}
.announcement .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
}
.announcement strong { color: var(--gold-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(219,227,237,.85);
  backdrop-filter: blur(12px);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-name { font-size: 1.06rem; font-weight: 900; color: var(--navy-950); }
.brand-tagline { font-size: .74rem; color: var(--muted); margin-top: .2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .6rem .78rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy-900);
  font-size: .94rem;
  font-weight: 750;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--blue-700);
  background: #edf6ff;
}
.nav-links .pay-link {
  margin-left: .45rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  box-shadow: 0 8px 20px rgba(229,27,35,.2);
}
.nav-links .pay-link:hover,
.nav-links .pay-link:focus-visible,
.nav-links .pay-link[aria-current="page"] {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-950);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  overflow: hidden;
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    linear-gradient(105deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 46%, rgba(238,246,255,.92) 100%),
    radial-gradient(circle at 88% 24%, rgba(247,185,20,.25), transparent 35%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -38%;
  width: 56vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 90px solid rgba(11,99,182,.06);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  align-items: center;
  gap: 4rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--red-700);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--gold-500);
}
h1, h2, h3, h4 { margin-top: 0; color: var(--navy-950); line-height: 1.12; }
h1 { margin-bottom: 1.25rem; font-size: clamp(2.65rem, 5.3vw, 5.1rem); letter-spacing: -.055em; }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3.8vw, 3.35rem); letter-spacing: -.04em; }
h3 { margin-bottom: .65rem; font-size: 1.25rem; }
.hero h1 .accent { color: var(--red-600); }
.hero-lead { max-width: 670px; margin: 0 0 1.8rem; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 4px solid rgba(17,120,211,.22); outline-offset: 2px; }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--red-700), var(--red-500)); box-shadow: 0 12px 28px rgba(229,27,35,.24); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(229,27,35,.3); }
.button-secondary { color: var(--navy-950); background: var(--white); border-color: var(--border); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: #b8c7d9; }
.button-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); box-shadow: 0 12px 28px rgba(247,185,20,.22); }
.button-small { min-height: 42px; padding: .62rem .9rem; font-size: .9rem; }
.button[aria-disabled="true"], .button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.trust-row { display: flex; flex-wrap: wrap; gap: 1.2rem; color: var(--navy-800); font-size: .9rem; font-weight: 760; }
.trust-row span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-row span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: .76rem;
}
.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}
.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.logo-stage::before {
  inset: 7% 2% 7% 2%;
  background: linear-gradient(145deg, #fff, #e9f3ff);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11,99,182,.08);
}
.logo-stage::after {
  width: 74%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(247,185,20,.32), transparent 68%);
  filter: blur(10px);
}
.logo-stage img { position: relative; z-index: 1; width: min(88%, 470px); filter: drop-shadow(0 22px 20px rgba(4,26,53,.22)); }

.page-hero {
  padding: 4.5rem 0 3.7rem;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(17,120,211,.4), transparent 36%),
    radial-gradient(circle at 90% 24%, rgba(229,27,35,.35), transparent 35%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { max-width: 760px; margin: 0; color: #dce9f8; font-size: 1.12rem; }
.breadcrumbs { margin-bottom: 1rem; color: #b9cce2; font-size: .9rem; }
.breadcrumbs a { color: var(--white); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.section-heading { max-width: 760px; margin-bottom: 2.2rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.06rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.15rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #c5d6e9; }
.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 145px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(17,120,211,.06);
}
.service-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  box-shadow: 0 10px 24px rgba(11,99,182,.18);
}
.service-icon svg { width: 27px; height: 27px; }
.service-card:nth-child(3n+2) .service-icon { background: linear-gradient(135deg, var(--red-700), var(--red-500)); }
.service-card:nth-child(3n+3) .service-icon { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); }
.service-card p { margin: 0 0 1rem; color: var(--muted); }
.text-link { color: var(--blue-700); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.feature-card { padding: 1.5rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.feature-number { color: var(--red-600); font-size: 2rem; font-weight: 950; letter-spacing: -.04em; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  box-shadow: var(--shadow-sm);
}
.stat { padding: 1.6rem; background: var(--white); text-align: center; }
.stat strong { display: block; color: var(--navy-950); font-size: clamp(1.8rem, 4vw, 2.75rem); line-height: 1; }
.stat span { display: block; margin-top: .55rem; color: var(--muted); font-weight: 700; }

.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 3rem; align-items: center; }
.media-card {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 20%, rgba(247,185,20,.28), transparent 32%),
    linear-gradient(145deg, var(--navy-900), var(--blue-700));
  box-shadow: var(--shadow-lg);
}
.media-card img { max-height: 370px; filter: drop-shadow(0 18px 16px rgba(0,0,0,.3)); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05rem;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: .75rem;
  font-weight: 900;
}

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; counter-reset: process; }
.process-step { position: relative; padding: 1.35rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); counter-increment: process; }
.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--red-600);
  font-size: 1.6rem;
  font-weight: 950;
}
.process-step p { margin-bottom: 0; color: var(--muted); }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(247,185,20,.24), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--blue-700));
  box-shadow: var(--shadow-lg);
}
.cta-panel h2 { color: var(--white); margin-bottom: .7rem; }
.cta-panel p { margin: 0; color: #d8e8f8; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }

.form-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: 2rem; align-items: start; }
.form-card, .info-card, .payment-card, .content-card {
  padding: 1.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy-950); font-weight: 800; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  min-height: 49px;
  padding: .75rem .85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd7e5;
  border-radius: 10px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(17,120,211,.12); }
.help-text { margin: .35rem 0 0; color: var(--muted); font-size: .82rem; }
.required { color: var(--red-600); }
.form-status { display: none; margin: 1rem 0 0; padding: .85rem 1rem; border-radius: 10px; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status.success { color: #0b5b37; background: #e6f6ee; border: 1px solid #bfe8d1; }
.form-status.error { color: #8a1c16; background: #fff0ef; border: 1px solid #f1c4c0; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 1rem; }
.contact-list li { display: grid; grid-template-columns: 42px 1fr; gap: .75rem; align-items: start; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--blue-600)); }
.contact-list strong { display: block; color: var(--navy-950); }
.contact-list span, .contact-list a { color: var(--muted); text-decoration: none; }
.contact-list a:hover { color: var(--blue-700); text-decoration: underline; }
.map-placeholder { min-height: 250px; display: grid; place-items: center; padding: 1.5rem; border-radius: var(--radius); border: 1px dashed #b7c6d8; color: var(--muted); background: var(--surface); text-align: center; }

.payment-intro { max-width: 800px; margin-bottom: 2rem; }
.payment-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.payment-card { display: flex; flex-direction: column; }
.payment-card .provider-badge { align-self: flex-start; margin-bottom: 1rem; padding: .35rem .65rem; border-radius: 999px; color: var(--navy-950); background: var(--gold-100); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.payment-card p { color: var(--muted); }
.payment-card .button { margin-top: auto; }
.payment-summary { margin: 1.5rem 0; padding: 1.2rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.payment-summary dl { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: .55rem 1rem; }
.payment-summary dt { color: var(--muted); }
.payment-summary dd { margin: 0; color: var(--navy-950); font-weight: 850; }
.secure-note { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1rem; padding: .9rem 1rem; border-left: 4px solid var(--success); background: #eefaf4; color: #285c45; border-radius: 8px; }

.faq-list { display: grid; gap: .8rem; }
details { border: 1px solid var(--border); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); }
summary { cursor: pointer; padding: 1rem 1.1rem; color: var(--navy-950); font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--blue-700); font-size: 1.35rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding: 0 1.1rem 1.1rem; margin: 0; color: var(--muted); }

.prose { max-width: 850px; }
.prose h2 { margin-top: 2.4rem; font-size: 1.7rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--blue-700); }

.site-footer { color: #cad8e8; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, minmax(0,.75fr)); gap: 2rem; padding: 4rem 0 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand img { width: 64px; }
.footer-brand strong { color: var(--white); font-size: 1.05rem; }
.footer-copy { max-width: 380px; color: #adbed2; }
.footer-heading { color: var(--white); margin-bottom: .8rem; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a { color: #adbed2; text-decoration: none; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,.1); color: #91a7c0; font-size: .86rem; }
.footer-bottom a { color: #bfd1e4; }

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.notice { padding: 1rem; border-radius: 12px; border: 1px solid #f3d583; background: #fff9e9; color: #72510a; }
.error-page { min-height: 65vh; display: grid; place-items: center; text-align: center; padding: 4rem 1rem; }
.error-code { color: var(--red-600); font-size: clamp(4rem, 14vw, 9rem); font-weight: 950; line-height: .8; letter-spacing: -.08em; }

.editor-shell { min-height: 100vh; padding: 2rem 0 4rem; background: var(--surface); }
.editor-toolbar { position: sticky; top: 0; z-index: 5; display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1rem; margin-bottom: 1.5rem; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.editor-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.editor-section { padding: 1.25rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); }
.editor-section h2 { font-size: 1.3rem; }
.editor-service { display: grid; grid-template-columns: 1fr 2fr; gap: .75rem; padding: .8rem 0; border-top: 1px solid var(--border); }
.editor-service:first-of-type { border-top: 0; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: .75rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-links .pay-link { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .logo-stage { min-height: 390px; }
  .service-grid, .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .payment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .section { padding: 3.8rem 0; }
  .hero { padding: 4rem 0 3.3rem; }
  .hero-grid { gap: 1.5rem; }
  .hero-actions .button { width: 100%; }
  .logo-stage { min-height: 330px; }
  .logo-stage::before { inset: 4%; }
  .service-grid, .feature-grid, .stats, .split, .form-layout, .form-grid, .cta-panel, .editor-grid { grid-template-columns: 1fr; }
  .stats { gap: 1px; }
  .cta-actions { justify-content: stretch; }
  .cta-actions .button { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .brand-tagline { display: none; }
  .brand-name { max-width: 180px; }
  .editor-toolbar { position: static; flex-direction: column; align-items: stretch; }
  .editor-service { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .announcement .container { font-size: .8rem; }
  .navbar { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .brand-name { font-size: .98rem; }
  h1 { font-size: 2.55rem; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .cta-panel, .form-card, .info-card, .payment-card, .content-card { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .announcement, .site-header, .site-footer, .back-to-top, .hero-actions, .cta-panel { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 1rem 0; }
  .page-hero { color: #000; background: #fff; }
  .page-hero h1 { color: #000; }
  .form-card, .info-card, .payment-card, .content-card { box-shadow: none; }
}
