:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f8fc;
  --card: rgba(11, 18, 32, 0.03);
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);
  --muted-2: rgba(11, 18, 32, 0.58);
  --border: rgba(11, 18, 32, 0.12);
  --primary: #b91c1c;
  --primary-2: #dc2626;
  --shadow: 0 18px 60px rgba(11, 18, 32, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: linear-gradient(180deg, #ffffff, #f3f4f6 55%, #ffffff);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
}

.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  display: block;
}

.brand-logo {
  width: auto;
  height: 56px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(11, 18, 32, 0.18));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(185, 28, 28, 1), rgba(220, 38, 38, 1));
  box-shadow: 0 10px 35px rgba(185, 28, 28, 0.22);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text {
  display: none;
}

.brand-title { font-weight: 750; }
.brand-subtitle { font-size: 13px; color: var(--muted-2); }

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.nav-link:hover {
  background: rgba(11, 18, 32, 0.04);
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
  background: rgba(11, 18, 32, 0.06);
}

.nav-cta.active {
  filter: brightness(1.03);
}

.nav-link {
  transition: background 160ms ease, color 160ms ease;
}

.nav-link.active {
  background: rgba(11, 18, 32, 0.05);
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.nav-cta {
  border-radius: 999px;
  padding-left: 16px;
  padding-right: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(11, 18, 32, 0.03);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(11, 18, 32, 0.75);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 650;
}

.btn:hover {
  background: rgba(11, 18, 32, 0.03);
}

.btn-primary {
  background: var(--primary);
  border: 1px solid rgba(185, 28, 28, 0.28);
  box-shadow: 0 16px 40px rgba(185, 28, 28, 0.18);
  color: #ffffff;
}

.btn-primary:hover {
  background: #991b1b;
}

 .btn:disabled,
 .btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
 }

.btn-ghost {
  background: rgba(11, 18, 32, 0.02);
  border: 1px solid rgba(11, 18, 32, 0.10);
}

.btn-ghost:hover {
  background: rgba(11, 18, 32, 0.04);
}

.btn-block { width: 100%; }

.hero {
  position: relative;
  padding: 56px 0 36px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.hero {
  background: transparent;
}

.hero-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-media {
  position: relative;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background:
    radial-gradient(700px 380px at 40% 10%, rgba(185, 28, 28, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  padding: 16px;
  box-shadow: 0 26px 70px rgba(11, 18, 32, 0.16);
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(420px 240px at 65% 35%, rgba(185, 28, 28, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-media-plain {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.hero-media-plain::after {
  display: none;
}

.hero-media-plain img {
  border-radius: 0;
  filter: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 18px 36px rgba(11, 18, 32, 0.22));
}

.hero-media-round {
  width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
}

.hero-media-round img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 999px;
  background: transparent;
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.03);
  border: 1px solid rgba(11, 18, 32, 0.10);
  color: var(--muted);
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.02em;
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.hero .lead {
  max-width: 56ch;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.badge {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 14px 35px rgba(11, 18, 32, 0.08);
}

.badge-title { font-weight: 750; }
.badge-title { color: var(--primary); }
.badge-text { color: var(--muted); font-size: 13px; margin-top: 4px; }

.hero-card {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.helper {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.hero-wave {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.03));
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.section {
  padding: 42px 0;
}

.section-alt {
  background: rgba(11, 18, 32, 0.02);
  border-top: 1px solid rgba(11, 18, 32, 0.06);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.section-alt {
  background:
    radial-gradient(950px 380px at 10% 10%, rgba(185, 28, 28, 0.08), transparent 60%),
    rgba(11, 18, 32, 0.02);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 { margin: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  transition: transform 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
}

.card {
  box-shadow: 0 18px 45px rgba(11, 18, 32, 0.10);
}

.card:hover {
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.14);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(185, 28, 28, 0.12);
  border: 1px solid rgba(185, 28, 28, 0.24);
  font-weight: 800;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.panel {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.check {
  display: flex;
  gap: 10px;
}

.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-top: 6px;
  flex: 0 0 auto;
}

.check-title { font-weight: 700; }
.check-text { color: var(--muted); font-size: 14px; margin-top: 2px; }

.about-title {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.about-copy p {
  margin: 0 0 12px;
}

.about-stats {
  padding-top: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(11, 18, 32, 0.08);
}

.stat-value {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.stat-label {
  margin-top: 4px;
  color: rgba(11, 18, 32, 0.60);
  font-size: 13px;
}

.about-actions {
  margin-top: 14px;
}

.about-hero {
  position: relative;
  padding: 58px 0 84px;
  color: #1a1200;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(255, 255, 255, 0.32), transparent 55%),
    linear-gradient(135deg, #b91c1c, #dc2626);
}

.about-hero-inner {
  text-align: center;
}

.about-hero-title {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 64px);
  letter-spacing: 0.02em;
  font-weight: 900;
}

.about-hero-subtitle {
  margin: 10px 0 0;
  opacity: 0.95;
  font-weight: 650;
}

.about-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.about-card-section {
  padding-top: 0;
  margin-top: 0;
  padding-top: 22px;
}

.about-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 36px 90px rgba(11, 18, 32, 0.20);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.about-card-inner {
  display: block;
  padding: 34px 34px;
}

.about-heading {
  text-align: center;
  margin-bottom: 18px;
}

.about-page-title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.02em;
}

.about-page-subtitle {
  margin: 10px 0 0;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.68);
}

.about-card-media {
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background:
    radial-gradient(700px 360px at 30% 0%, rgba(185, 28, 28, 0.08), transparent 60%),
    rgba(11, 18, 32, 0.02);
  padding: 14px;
}

.about-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.about-card-content p {
  margin: 0 0 12px;
}

.about-card-content {
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

.about-block {
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(11, 18, 32, 0.02);
}

.about-block + .about-block {
  margin-top: 14px;
}

.about-kicker {
  margin: 0 0 18px;
  color: rgba(161, 98, 7, 0.95);
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.about-card-section .btn-primary {
  background: var(--primary);
  border: 1px solid rgba(185, 28, 28, 0.28);
  box-shadow: 0 16px 40px rgba(185, 28, 28, 0.18);
}

.about-card-section .btn-primary:hover {
  background: #991b1b;
}

.about-kicker-spaced {
  margin-top: 18px;
}

.about-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.page-hero {
  padding: 42px 0 18px;
}

 .contact-page .section {
  padding-top: 18px;
  padding-bottom: 22px;
 }

 .contact-page h1 {
  margin-top: 0;
 }

 .contact-page .container {
  width: min(1020px, calc(100% - 32px));
 }

.contact-hero-card {
  border: 1px solid rgba(185, 28, 28, 0.22);
  background: rgba(255, 255, 255, 0.70);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.06);
 }

 .contact-hero-card h1 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 4.2vw, 46px);
 }

 .contact-intro {
  margin: 14px 0 16px;
  max-width: 60ch;
  color: rgba(11, 18, 32, 0.65);
  line-height: 1.6;
 }

 .contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: start;
 }

 .contact-card {
  border: 1px solid rgba(185, 28, 28, 0.22);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.06);
 }

 .contact-page .form {
  margin-top: 0;
 }

 .contact-page .field .label {
  color: rgba(11, 18, 32, 0.55);
 }

 .contact-page input,
 .contact-page select,
 .contact-page textarea {
  border-radius: 14px;
  border: 1px solid rgba(185, 28, 28, 0.22);
  background: rgba(255, 255, 255, 0.98);
}

 .contact-page input:focus,
 .contact-page select:focus,
 .contact-page textarea:focus {
  border-color: rgba(220, 38, 38, 0.70);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.18);
 }

 .contact-btn {
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  color: #ffffff;
  font-weight: 750;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.18);
 }

 .contact-btn:hover {
  filter: brightness(1.03);
 }

 .contact-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.55);
 }

 .contact-details h2 {
  margin-top: 4px;
 }

 .contact-details-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  color: rgba(11, 18, 32, 0.72);
 }

 .contact-details-row span {
  font-weight: 750;
  color: rgba(11, 18, 32, 0.70);
 }

 .contact-details-row a {
  color: rgba(11, 18, 32, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
 }

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.page-hero-media {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 26px;
  padding: 8px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 22px;
}

.page-hero-media-round {
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
}

.page-hero-media-round img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 999px;
  background: transparent;
}

.page-hero h1 {
  margin: 0 0 10px;
}

.page-hero-actions { margin-top: 14px; }

.services-page .page-hero {
  padding: 28px 0 10px;
}

.services-page .page-hero-inner {
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.services-page .page-hero-media {
  padding: 4px;
}

.services-page .page-hero-media img {
  max-height: 260px;
}

.services-page .page-hero-media-round {
  width: min(320px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.services-page .page-hero-media-round img {
  aspect-ratio: auto;
}

.services-page .section {
  padding: 26px 0;
}

.services-page .service-list {
  gap: 12px;
}

.services-page .service-card {
  padding: 18px 16px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  text-align: center;
  padding: 22px 18px;
  border-radius: 12px;
  border: 2px solid rgba(185, 28, 28, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(11, 18, 32, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(11, 18, 32, 0.12);
  border-color: rgba(185, 28, 28, 0.28);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(185, 28, 28, 0.18);
  background: rgba(185, 28, 28, 0.06);
  color: rgba(185, 28, 28, 0.95);
  font-weight: 900;
}

.service-card .pricing-list {
  text-align: left;
}

.service-item h2 { margin: 0 0 8px; font-size: 18px; }

.testimonials-wrap {
  border: 1px solid rgba(11, 18, 32, 0.10);
  border-radius: 26px;
  padding: 26px;
  background:
    radial-gradient(900px 380px at 10% 10%, rgba(255, 203, 92, 0.22), transparent 55%),
    radial-gradient(900px 380px at 95% 0%, rgba(255, 120, 97, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 18px;
}

.testimonials-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(185, 28, 28, 0.08);
  color: rgba(185, 28, 28, 0.95);
  font-weight: 750;
  font-size: 13px;
}

.testimonials-title {
  margin: 12px 0 6px;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.testimonials-link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(185, 28, 28, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-grid {
  margin-top: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 56px 12px 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  height: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: rgba(11, 18, 32, 0.16);
  border-radius: 999px;
}

.t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: rgba(11, 18, 32, 0.85);
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.t-nav:hover {
  background: rgba(255, 255, 255, 1);
}

.t-next {
  right: 10px;
}

.t-card {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 16px;
  scroll-snap-align: start;
}

.t-stars {
  color: rgba(245, 158, 11, 0.95);
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 8px;
}

.t-quote {
  margin: 0;
  color: rgba(11, 18, 32, 0.78);
  line-height: 1.65;
}

.t-divider {
  height: 1px;
  background: rgba(11, 18, 32, 0.10);
  margin: 14px 0;
}

.t-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.t-name {
  font-weight: 800;
}

.t-service {
  color: rgba(11, 18, 32, 0.55);
  font-size: 13px;
}

.pricing-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
}

.pricing-title {
  font-weight: 650;
}

.pricing-price {
  font-weight: 800;
  color: rgba(185, 28, 28, 0.95);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.label {
  font-size: 13px;
  color: var(--muted);
}

.req { color: rgba(255, 190, 190, 0.95); }

input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.18);
}

.mini-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.form-success {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: rgba(11, 18, 32, 0.9);
}

.fineprint {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 12px;
}

.contact-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-box {
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 14px;
}

.info-title { font-size: 13px; color: var(--muted); }
.info-text { margin-top: 6px; font-weight: 650; }

.site-footer {
  border-top: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.footer-brand { font-weight: 750; margin-bottom: 4px; }

.footer-links {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.footer-links a:hover { color: var(--text); }

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-grid { grid-auto-columns: minmax(280px, 86%); }
  .stats-grid { grid-template-columns: 1fr; }
  .about-card-inner { padding: 26px 20px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }

  .brand-logo-wrap {
    display: block;
  }

  .brand-logo {
    width: auto;
    height: 48px;
  }

  .nav {
    position: absolute;
    right: 16px;
    top: 88px;
    width: min(320px, calc(100% - 32px));
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 18, 32, 0.95);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open { display: flex; }

  .nav-link { padding: 12px 12px; }
  .nav-cta { width: 100%; }

  .hero-badges { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
