@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Serif+Display:opsz@9..40&display=swap');

:root {
  --bg: #edf2f7;
  --surface: #ffffff;
  --surface-soft: #f8fafd;
  --surface-accent: #eaf0f7;
  --ink: #0f2032;
  --muted: #516376;
  --line: #d7e0ea;
  --brand: #0e4b87;
  --brand-strong: #092f58;
  --brand-soft: #dce9f7;
  --accent: #1769af;
  --accent-soft: #8abbe6;
  --success: #2b6e4f;
  --shadow-sm: 0 10px 28px rgba(16, 32, 51, 0.05);
  --shadow-md: 0 20px 56px rgba(16, 32, 51, 0.1);
  --shadow-card: 0 12px 28px rgba(16, 32, 51, 0.07);
  --shadow-card-hover: 0 18px 36px rgba(16, 32, 51, 0.11);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --site-width: 1280px;
  --space-2xs: 8px;
  --space-xs: 14px;
  --space-sm: 20px;
  --space-md: 32px;
  --space-lg: 52px;
  --space-xl: 72px;
  --space-2xl: 96px;
  --ease-premium: cubic-bezier(0.22, 0.65, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7fafd 0%, var(--bg) 28%, #eef3f8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 30vw;
  height: 30vw;
  right: -12vw;
  top: 14vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 77, 138, 0.08) 0%, rgba(15, 77, 138, 0) 74%);
}

body::after {
  width: 20vw;
  height: 20vw;
  left: -9vw;
  bottom: 6vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 111, 185, 0.07) 0%, rgba(26, 111, 185, 0) 74%);
}

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

a {
  color: var(--brand);
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.22);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.15);
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid rgba(23, 105, 175, 0.55);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.016em;
  line-height: 1.16;
}

h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.014em;
  line-height: 1.2;
}

h3 {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.25;
}

h4 {
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.24;
}

p,
li,
label,
input,
select,
textarea,
button,
summary {
  font: inherit;
}

p {
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.74;
}

ul {
  padding-left: 1.2rem;
}

li {
  color: var(--muted);
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

main {
  display: block;
}

section {
  width: min(calc(100% - 48px), var(--site-width));
  margin: 0 auto var(--space-xl);
  position: relative;
}

main > section:first-child {
  margin-top: var(--space-md);
}

main > section + section {
  margin-top: 84px;
}

main > section + section::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.08), rgba(16, 32, 51, 0));
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
}

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

.cards-grid .service-card,
.detail-grid .detail-card,
.industries-grid .industry-card,
.testimonials-grid .quote-card,
.faq-grid .faq-item {
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
}

.cards-grid .service-card:hover,
.detail-grid .detail-card:hover,
.industries-grid .industry-card:hover,
.testimonials-grid .quote-card:hover,
.faq-grid .faq-item:hover {
  transform: translateY(-4px);
}

.cards-grid .service-card:nth-child(1),
.detail-grid .detail-card:nth-child(1),
.industries-grid .industry-card:nth-child(1),
.testimonials-grid .quote-card:nth-child(1) {
  transition-delay: 0.02s;
}

.cards-grid .service-card:nth-child(2),
.detail-grid .detail-card:nth-child(2),
.industries-grid .industry-card:nth-child(2),
.testimonials-grid .quote-card:nth-child(2) {
  transition-delay: 0.06s;
}

.cards-grid .service-card:nth-child(3),
.detail-grid .detail-card:nth-child(3),
.industries-grid .industry-card:nth-child(3),
.testimonials-grid .quote-card:nth-child(3) {
  transition-delay: 0.1s;
}

.cards-grid .service-card:nth-child(4),
.detail-grid .detail-card:nth-child(4),
.industries-grid .industry-card:nth-child(4),
.testimonials-grid .quote-card:nth-child(4) {
  transition-delay: 0.14s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 77, 138, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-header {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: 46px;
}

.section-header.compact {
  margin-bottom: var(--space-sm);
}

.section-title {
  max-width: 15ch;
}

.section-subtitle {
  max-width: 66ch;
  font-size: 1.02rem;
  line-height: 1.72;
}

.surface,
.highlight,
.hero,
.cta-band,
.testimonial-card,
.faq-item,
.contact-card,
.detail-card,
.industry-card,
.stat-card,
.info-card,
.quote-card,
.service-card,
.service-detail,
.support-note,
.footer-top,
.thanks-panel {
  background: #ffffff;
  border: 1px solid rgba(214, 222, 232, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.surface,
.highlight,
.hero,
.cta-band,
.testimonial-card,
.faq-item,
.contact-card,
.detail-card,
.industry-card,
.stat-card,
.info-card,
.quote-card,
.service-card,
.service-detail,
.support-note,
.footer-top,
.thanks-panel,
.form-shell {
  position: relative;
  overflow: hidden;
}

.surface::after,
.highlight::after,
.hero::after,
.cta-band::after,
.testimonial-card::after,
.faq-item::after,
.contact-card::after,
.detail-card::after,
.industry-card::after,
.stat-card::after,
.info-card::after,
.quote-card::after,
.service-card::after,
.service-detail::after,
.thanks-panel::after,
.form-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 77, 138, 0.12), rgba(15, 77, 138, 0));
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  backdrop-filter: blur(12px);
  background: rgba(241, 245, 250, 0.9);
  border-bottom: 1px solid rgba(16, 32, 51, 0.05);
}

.site-nav {
  width: min(calc(100% - 48px), var(--site-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 51, 0.06);
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.07);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-panel {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-links,
.nav-meta,
.button-row,
.hero-actions,
.footer-actions,
.cta-actions,
.section-actions,
.inline-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section-actions {
  margin-top: 18px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a.active {
  color: var(--brand);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: currentColor;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 4px;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
}

.lang-toggle button.active {
  color: var(--brand);
}

.lang-toggle .separator {
  color: #9aabbd;
}

.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.cta,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s var(--ease-premium), box-shadow 0.2s var(--ease-premium), border-color 0.2s var(--ease-premium), background 0.2s var(--ease-premium);
}

.button:hover,
.cta:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button-primary,
.cta,
.nav-cta-solid {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 77, 138, 0.2);
}

.button-primary:hover,
.cta:hover,
.nav-cta-solid:hover {
  background: #0c3f73;
  box-shadow: 0 12px 26px rgba(15, 77, 138, 0.25);
}

.button-secondary,
.nav-cta-ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(16, 32, 51, 0.16);
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.07);
}

.button-secondary:hover,
.nav-cta-ghost:hover {
  border-color: rgba(15, 77, 138, 0.28);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.1);
}

.hero {
  margin-top: 10px;
  padding: 80px 72px;
  overflow: hidden;
  position: relative;
  border-color: rgba(15, 77, 138, 0.14);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 253, 0.95) 70%, rgba(234, 243, 251, 0.9) 100%);
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 175, 0.12) 0%, rgba(23, 105, 175, 0) 72%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split-grid,
.contact-layout,
.detail-grid,
.service-area-grid,
.footer-grid,
.quote-grid,
.stats-grid,
.cards-grid,
.industries-grid,
.testimonials-grid,
.service-grid {
  display: grid;
  gap: var(--space-md);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 1fr);
  align-items: start;
  gap: 52px;
}

.hero-copy {
  display: grid;
  gap: 20px;
  align-content: start;
  max-width: 760px;
}

.hero-copy h1 {
  max-width: 14ch;
  text-wrap: balance;
  letter-spacing: -0.018em;
}

.hero-copy p {
  font-size: 1.06rem;
  max-width: 60ch;
}

.hero-subheadline {
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-cta-note {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: -2px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.hero-trust span {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 77, 138, 0.2);
}

.hero-support {
  display: grid;
  gap: 20px;
  align-content: start;
}

.hero-visual {
  margin: 0;
  border-radius: 20px;
  border: 1px solid rgba(15, 77, 138, 0.14);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stats {
  margin-top: 42px;
  gap: 20px;
}

.hero-card {
  padding: 34px;
  background: linear-gradient(170deg, rgba(10, 44, 79, 0.98) 0%, rgba(14, 66, 114, 0.98) 100%);
  color: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.hero-card-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(227, 238, 249, 0.9);
}

.hero-card h2,
.hero-card h3,
.hero-card p,
.hero-card li,
.hero-card a {
  color: inherit;
}

.hero-card p {
  max-width: none;
}

.hero-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.hero-list li {
  margin: 0;
  padding-left: 18px;
  position: relative;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8dc0f0;
}

.hero-actions {
  gap: 12px;
}

.hero-actions .button-primary {
  min-width: 184px;
}

.hero-actions .button-secondary {
  min-width: 184px;
}

.hero-card-actions .button {
  min-width: 150px;
}

.hero-card-actions .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #eef5fc;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.hero-card-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 20px rgba(7, 28, 52, 0.35);
}

.inline-note,
.small-note,
.meta-note,
.request-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.request-status {
  font-weight: 700;
}

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

.stat-card,
.service-card,
.industry-card,
.testimonial-card,
.info-card,
.quote-card,
.detail-card,
.contact-card,
.support-note,
.thanks-panel {
  padding: 34px;
}

.stat-card strong,
.metric {
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--brand);
}

.hero .stat-card {
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
}

.hero .stat-card strong {
  margin-bottom: 10px;
}

.hero .stat-card p {
  max-width: none;
  line-height: 1.68;
}

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

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

.service-card,
.industry-card,
.testimonial-card,
.quote-card,
.info-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 75, 135, 0.06);
  border: 1px solid rgba(15, 77, 138, 0.14);
  color: var(--brand);
}

.service-card p,
.info-card p,
.detail-card p,
.contact-card p,
.quote-card p {
  line-height: 1.65;
}

.service-card:hover,
.industry-card:hover,
.info-card:hover,
.detail-card:hover,
.stat-card:hover,
.quote-card:hover,
.contact-card:hover {
  border-color: rgba(15, 77, 138, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.request-grid .contact-card {
  display: grid;
  gap: 16px;
}

.request-grid .contact-card .button {
  width: 100%;
  justify-content: center;
}

.contact-conversion .section-title {
  max-width: 17ch;
}

.contact-conversion {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: #f8fbfe;
  border: 1px solid rgba(15, 77, 138, 0.12);
  box-shadow: var(--shadow-card);
}

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

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
}

.why-content {
  display: grid;
  gap: var(--space-sm);
}

.why-visual {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 77, 138, 0.14);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  align-self: stretch;
}

.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -2px 0 var(--space-md);
  position: sticky;
  top: 98px;
  z-index: 12;
  padding: 10px;
  border-radius: 14px;
  background: rgba(233, 239, 246, 0.9);
  backdrop-filter: blur(8px);
}

.service-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-nav a:hover {
  border-color: rgba(15, 77, 138, 0.28);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

.service-detail {
  padding: 34px;
  scroll-margin-top: 120px;
  display: grid;
  gap: 14px;
  border-color: rgba(15, 77, 138, 0.18);
}

.service-detail h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  margin-bottom: 2px;
}

.service-detail p {
  margin-bottom: 0;
}

.service-audience {
  color: var(--brand-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.service-checklist {
  display: grid;
  gap: var(--space-xs);
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.service-detail .button {
  margin-top: 8px;
}

.service-checklist li {
  position: relative;
  padding-left: 20px;
  margin: 0;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

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

.detail-card {
  display: grid;
  gap: 12px;
}

.split-grid,
.contact-layout,
.service-area-grid,
.quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-note {
  display: grid;
  gap: var(--space-xs);
  background: linear-gradient(180deg, rgba(10, 60, 109, 0.98) 0%, rgba(15, 77, 138, 0.98) 100%);
  color: #ffffff;
}

.support-note h2,
.support-note h3,
.support-note p,
.support-note li,
.support-note a {
  color: inherit;
}

.home-page .support-note h2,
.home-page .support-note h3,
.home-page .support-note p,
.home-page .support-note li,
.home-page .support-note a {
  color: #ffffff;
}

.support-note .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.cta-band {
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cta-band p {
  margin-top: 8px;
}

.final-cta {
  background: linear-gradient(180deg, rgba(11, 48, 84, 0.98) 0%, rgba(10, 42, 74, 0.98) 100%);
  border-color: rgba(15, 77, 138, 0.3);
  box-shadow: 0 18px 40px rgba(9, 41, 75, 0.22);
}

.final-cta h2,
.final-cta p {
  color: #f4f8fc;
}

.final-cta .button-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.82);
}

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

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

.quote-card {
  background: #ffffff;
  border-left: 2px solid rgba(15, 77, 138, 0.2);
}

.quote-card blockquote {
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 600;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  gap: var(--space-sm);
}

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

.faq-item summary {
  list-style: none;
  padding: 24px 26px;
  cursor: pointer;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 1.35rem;
}

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

.faq-item p {
  padding: 0 26px 26px;
}

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

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card.selected {
  border-color: rgba(15, 77, 138, 0.4);
  box-shadow: 0 20px 40px rgba(15, 77, 138, 0.15);
}

.contact-panel {
  display: grid;
  gap: var(--space-sm);
}

.form-shell {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 253, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

form {
  display: grid;
  gap: var(--space-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

label {
  display: grid;
  gap: var(--space-2xs);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 77, 138, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 77, 138, 0.1);
}

textarea {
  min-height: 190px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.service-area-grid .info-card p,
.footer-grid p,
.footer-grid li {
  max-width: none;
}

.footer {
  width: min(calc(100% - 40px), var(--site-width));
  margin: var(--space-2xl) auto var(--space-lg);
}

.footer-top {
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: var(--space-md);
  background: #f6f9fc;
  border-color: rgba(16, 32, 51, 0.08);
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.06);
}

.footer-top p {
  margin-top: 6px;
  max-width: 62ch;
  font-size: 0.95rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: var(--space-md);
}

.footer-column {
  padding: 30px;
  background: #11283d;
  border-radius: 20px;
}

.footer-column,
.footer-column h3,
.footer-column h4,
.footer-column p,
.footer-column li,
.footer-column a {
  color: #d9e5f1;
}

.footer-column h4 {
  margin-bottom: var(--space-xs);
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: var(--space-md) var(--space-2xs) 2px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-compact {
  max-width: 76ch;
  display: grid;
  gap: var(--space-sm);
}

.thanks-panel {
  padding: 34px;
  display: grid;
  gap: var(--space-sm);
}

.subtle-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-xs);
}

.nav-meta .nav-cta,
.hero-actions .button,
.cta-actions .button,
.section-actions .button,
.contact-actions .button,
.footer-actions .button {
  min-width: 176px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.subtle-list li {
  margin: 0;
  padding-left: 18px;
  position: relative;
}

.subtle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

@media (max-width: 1080px) {
  .hero-grid,
  .why-layout,
  .contact-layout,
  .split-grid,
  .detail-grid,
  .service-area-grid,
  .quote-grid,
  .service-grid,
  .footer-grid,
  .cards-grid,
  .industries-grid,
  .testimonials-grid,
  .stats-grid,
  .cards-grid-five,
  .testimonials-grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid-five .service-card:first-child {
    grid-column: auto;
  }

  .footer-top,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    max-width: 20ch;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-visual img {
    min-height: 360px;
  }

  .hero-stats {
    margin-top: 30px;
    gap: 16px;
  }

  .contact-conversion {
    padding: 32px;
  }

  .hero-copy {
    max-width: none;
  }

  .service-nav {
    position: static;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

@media (max-width: 1200px) {
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    align-items: flex-start;
    position: relative;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 22px 48px rgba(16, 32, 51, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links,
  .nav-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a.active::after,
  .nav-links a:hover::after {
    display: none;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-meta {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 860px) {
  section,
  .site-nav,
  .footer {
    width: min(calc(100% - 28px), var(--site-width));
  }

  .site-nav {
    border-radius: 28px;
    align-items: flex-start;
    position: relative;
  }

  .hero,
  .form-shell,
  .service-detail,
  .footer-top,
  .thanks-panel {
    padding: 28px;
  }

  body::before,
  body::after {
    display: none;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-grid,
  .why-layout,
  .contact-layout,
  .split-grid,
  .detail-grid,
  .service-area-grid,
  .quote-grid,
  .service-grid,
  .footer-grid,
  .cards-grid,
  .industries-grid,
  .testimonials-grid,
  .stats-grid,
  .form-grid,
  .cards-grid-five,
  .testimonials-grid-three {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: var(--space-xs) 0;
  }

  .site-nav {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-subheadline {
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .hero-trust {
    gap: 10px;
  }

  .hero-trust span {
    width: 100%;
    text-align: center;
  }

  .service-nav a {
    width: 100%;
  }

  .button,
  .cta,
  .nav-cta {
    width: auto;
  }

  .hero {
    padding: 34px 24px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-visual {
    border-radius: 18px;
  }

  .why-visual {
    border-radius: 16px;
  }

  .why-visual img {
    min-height: 260px;
    height: auto;
  }

  .hero .stat-card {
    padding: 22px;
  }

  .hero-stats {
    margin-top: 20px;
    gap: 14px;
  }

  .hero-cta-note {
    text-align: center;
  }

  .section-header {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }

  main > section + section {
    margin-top: 48px;
  }

  main > section + section::before {
    top: -24px;
    opacity: 0.6;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .cta-band,
  .footer-top,
  .form-shell,
  .thanks-panel,
  .service-detail,
  .contact-conversion {
    padding: 24px;
  }

  .nav-meta .nav-cta,
  .hero-actions .button,
  .cta-actions .button,
  .section-actions .button,
  .contact-actions .button,
  .footer-actions .button {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Homepage rewrite styles */
.home-page {
  --home-primary: #1a5cba;
  --home-primary-deep: #154a95;
  --home-accent: #e8a020;
  --home-ink: #1c2e42;
  --home-muted: #4f6275;
  --home-surface: #ffffff;
  --home-bg: #f4f8fd;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(26, 92, 186, 0.08), transparent 40%), radial-gradient(circle at 90% 0%, rgba(232, 160, 32, 0.08), transparent 36%), var(--home-bg);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--home-ink);
  letter-spacing: 0;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(26, 92, 186, 0.12);
}

.home-page .site-nav {
  border-radius: 18px;
  border-color: rgba(26, 92, 186, 0.12);
}

.home-page .nav-links a.active,
.home-page .nav-links a:hover {
  color: var(--home-primary);
}

.home-page .nav-phone {
  color: var(--home-primary);
  font-weight: 700;
  text-decoration: none;
}

.home-page .nav-phone-static {
  display: none;
}

.home-page .nav-phone:hover {
  text-decoration: underline;
}

.home-page .button-primary,
.home-page .nav-cta-solid {
  background: var(--home-accent);
  color: #1b2737;
  box-shadow: 0 10px 24px rgba(232, 160, 32, 0.3);
}

.home-page .button-primary:hover,
.home-page .nav-cta-solid:hover {
  background: #d79117;
}

.home-page .button-secondary {
  border-color: rgba(26, 92, 186, 0.26);
  color: var(--home-primary);
}

.home-page .button-secondary:hover {
  border-color: rgba(26, 92, 186, 0.5);
}

.home-page .home-hero {
  border-color: rgba(26, 92, 186, 0.12);
  padding: 64px 56px;
}

.home-page .hero-subheadline,
.home-page .hero-cta-note,
.home-page p,
.home-page li {
  color: var(--home-muted);
}

.home-page .hero-actions {
  margin-top: 22px;
}

.home-page .hero-cta-note {
  margin-top: 12px;
}

.home-page .hero-audience-intro {
  margin-top: 8px;
  font-weight: 700;
  color: var(--home-primary-deep);
}

.home-page .audience-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-page .audience-path-card {
  padding: 22px;
  text-decoration: none;
  border-color: rgba(26, 92, 186, 0.16);
}

.home-page .audience-path-card:hover {
  text-decoration: none;
}

.home-page .audience-path-card p {
  margin-top: 4px;
}

.home-page .trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-page .trust-bar span {
  background: var(--home-surface);
  border: 1px solid rgba(26, 92, 186, 0.15);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  color: var(--home-primary-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

.home-page .three-col-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .four-col-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .service-card {
  border-color: rgba(26, 92, 186, 0.12);
}

.home-page .service-card p {
  margin-top: 6px;
}

.home-page .price-grid .service-card p {
  color: var(--home-primary-deep);
  font-weight: 700;
}

.home-page .plans-grid .plan-card {
  position: relative;
}

.home-page .plan-price {
  color: var(--home-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.home-page .popular-plan {
  border: 2px solid var(--home-accent);
}

.home-page .plan-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: var(--home-accent);
  color: #1b2737;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .home-cta {
  border-color: rgba(26, 92, 186, 0.16);
}

.home-page .home-cta h2 {
  color: #6f86a0;
}

.home-page .home-cta p,
.home-page .home-cta .cta-meta {
  color: #8096ac;
}

.home-page .cta-meta {
  width: 100%;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--home-muted);
}

.home-page .footer {
  margin-top: 40px;
}

.home-page .footer-column,
.home-page .footer-column h3,
.home-page .footer-column h4,
.home-page .footer-column p,
.home-page .footer-column li,
.home-page .footer-column a {
  color: #ecf3fb;
}

.home-page .footer-column h4 {
  color: #ffffff;
}

.home-page .footer-bottom {
  color: #8ea1b5;
}

.residential-page .residential-hero h1 {
  max-width: 16ch;
}

.residential-page .residential-pricing-card {
  padding: 28px;
}

@media (max-width: 1080px) {
  .home-page .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .three-col-grid,
  .home-page .four-col-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-page .home-hero {
    padding: 34px 22px;
  }

  .home-page .three-col-grid,
  .home-page .four-col-grid,
  .home-page .trust-bar,
  .home-page .audience-path-grid {
    grid-template-columns: 1fr;
  }

  .home-page .nav-phone {
    width: 100%;
    text-align: center;
  }

  .home-page .nav-phone-static {
    display: inline-flex;
    margin-left: auto;
    margin-right: 8px;
    font-size: 0.9rem;
  }
}

/* Services page */
.services-page .services-hero {
  padding: 56px 56px;
}

.services-page .service-intro {
  padding: 24px 26px;
  border-color: #dde3ee;
}

.services-page .service-intro p {
  max-width: 78ch;
  color: #5c5c6a;
}

.services-page .services-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-page .service-scope-card {
  padding: 24px;
  border-radius: 12px;
  border-color: #dde3ee;
  background: #ffffff;
}

.services-page .service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.services-page .service-card-header h2 {
  font-size: 1.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.services-page .service-price {
  color: #e8a020;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  white-space: normal;
  text-align: right;
  flex: 0 1 220px;
}

.services-page .service-scope-card h3,
.services-page .service-scope-card h4 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 8px;
  color: #0e3d82;
}

.services-page .scope-note {
  margin-top: 10px;
  font-size: 0.92rem;
  font-style: italic;
  color: #5c5c6a;
}

.services-page .plan-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.services-page .plan-mini {
  border: 1px solid #dde3ee;
  border-radius: 12px;
  padding: 12px;
  background: #ebf2fc;
}

.services-page .plan-mini p {
  color: #344557;
  font-size: 0.93rem;
}

@media (max-width: 1080px) {
  .services-page .services-stack,
  .services-page .plan-grid-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .services-page .services-hero,
  .services-page .service-scope-card,
  .services-page .service-intro {
    padding: 22px;
  }

  .services-page .service-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-page .service-price {
    white-space: normal;
    text-align: left;
    flex: 1 1 auto;
  }
}

/* ─── Contact Page ─── */

.contact-page .contact-section-shell {
  width: min(calc(100% - 40px), 760px);
  margin-top: 56px;
}

.contact-page .contact-section {
  padding: 0 4px;
}

.contact-page .contact-section h1 {
  margin-bottom: 8px;
}

.contact-page .contact-section .subtitle {
  margin-bottom: 36px;
  color: #5a7089;
  font-size: 1rem;
}

.contact-page .contact-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  border: 1px solid rgba(26, 92, 186, 0.12);
  border-radius: 12px;
  background: #f0f5fb;
}

.contact-page .contact-info-item {
  font-size: 0.92rem;
  color: var(--home-ink);
}

.contact-page .contact-info-item strong {
  display: block;
  margin-bottom: 2px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a7089;
}

.contact-page .contact-info-item a {
  color: var(--home-primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-page .contact-info-item a:hover {
  text-decoration: underline;
}

.contact-page .divider {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #c8d8ea;
}

.contact-page #contact-form {
  display: grid;
  gap: 0;
}

.contact-page .form-group {
  margin-bottom: 20px;
}

.contact-page .form-group label {
  display: block;
  margin-bottom: 6px;
  color: #0b1f3a;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-page .form-group label .optional {
  margin-left: 4px;
  color: #5a7089;
  font-size: 0.8rem;
  font-weight: 400;
}

.contact-page input,
.contact-page textarea,
.contact-page select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #c8d8ea;
  border-radius: 6px;
  background: #ffffff;
  color: #1c2b3a;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-page select {
  background-image: linear-gradient(45deg, transparent 50%, #5a7089 50%), linear-gradient(135deg, #5a7089 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.contact-page select:disabled {
  background-color: #f0f5fb;
  color: #5a7089;
  cursor: not-allowed;
}

.contact-page textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  outline: none;
  border-color: #1a56a0;
  box-shadow: 0 0 0 3px rgba(26, 86, 160, 0.08);
}

.contact-page .submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 0;
  border-radius: 6px;
  background: #0b1f3a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-page .submit-btn:hover {
  background: #1a56a0;
}

.contact-page .submit-btn:disabled {
  background: #5a7089;
  cursor: not-allowed;
}

.contact-page .status-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-page .status-msg.success,
.contact-page .status-msg.error {
  display: block;
}

.contact-page .status-msg.success {
  background: #e6f4ea;
  color: #1e6630;
  border: 1px solid #a8d5b0;
}

.contact-page .status-msg.error {
  background: #fdecea;
  color: #b91c1c;
  border: 1px solid #f5b4b4;
}

@media (max-width: 680px) {
  .contact-page .contact-section-shell {
    width: min(calc(100% - 28px), 760px);
    margin-top: 34px;
  }

  .contact-page .contact-info {
    gap: 16px;
    padding: 18px 18px;
  }
}

/* ─── Booking Section ─── */

.booking-section {
  background: #F0F5FB;
  padding: 60px 20px;
  text-align: center;
}

.booking-section .section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2E8BC0;
  margin-bottom: 10px;
}

.booking-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0B1F3A;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.booking-section p.booking-sub {
  color: #5A7089;
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.booking-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto 32px;
}

.booking-card {
  background: #ffffff;
  border: 1.5px solid #C8D8EA;
  border-radius: 10px;
  padding: 24px 20px;
  width: 250px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: block;
}

.booking-card:hover {
  border-color: #1A56A0;
  box-shadow: 0 4px 16px rgba(26, 86, 160, 0.1);
  transform: translateY(-2px);
}

.booking-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #0B1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.booking-card-icon svg {
  width: 20px;
  height: 20px;
}

.booking-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 4px;
}

.booking-card p {
  font-size: 0.8rem;
  color: #5A7089;
  line-height: 1.5;
  margin-bottom: 14px;
}

.booking-card .duration {
  font-size: 0.75rem;
  font-weight: 600;
  color: #F4A623;
  display: flex;
  align-items: center;
  gap: 5px;
}

.booking-card .book-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1A56A0;
  margin-top: 14px;
  border-top: 1px solid #F0F5FB;
  padding-top: 12px;
  width: 100%;
}

.booking-card .book-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s;
}

.booking-card:hover .book-link svg {
  transform: translateX(3px);
}

.booking-note {
  font-size: 0.8rem;
  color: #5A7089;
}

.booking-note a {
  color: #1A56A0;
  font-weight: 500;
  text-decoration: none;
}

.booking-note a:hover {
  text-decoration: underline;
}

/* === Urgency Banner (P7) === */
.urgency-banner {
  background: #F4A820;
  color: #1A3A5C;
  padding: 10px 48px 10px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.urgency-banner a {
  color: #1A3A5C;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}
.urgency-banner-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #1A3A5C;
  font-weight: 700;
  padding: 4px 8px;
  line-height: 1;
}
.urgency-banner-dismiss:hover { opacity: 0.7; }

/* === Hero Trust Badges (P6) === */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}
.trust-badge {
  background: var(--brand-soft);
  color: var(--brand-strong);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Reviews Section (P2) === */
.reviews-section { text-align: center; }
.reviews-placeholder {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.reviews-stars {
  font-size: 2rem;
  letter-spacing: 4px;
  color: #e8a020;
  margin-bottom: var(--space-xs);
}
.reviews-placeholder-text {
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.reviews-google-btn { margin-bottom: var(--space-xs); }
.reviews-help-line {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* === Personal Trust Section (P3) === */
.personal-trust-section {
  background: var(--surface-soft);
  text-align: center;
}
.personal-trust-inner {
  max-width: 660px;
  margin: 0 auto;
}
.personal-trust-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}
.personal-trust-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

/* === Problem Cards (P4) === */
.problem-card { display: flex; flex-direction: column; gap: 8px; }
.problem-quote { color: var(--ink); font-style: italic; margin: 0; }
.problem-solution { color: var(--accent); font-weight: 600; margin: 0; }
.problem-cta {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: auto;
}
.problem-cta:hover { text-decoration: underline; }

/* === Service Descriptions (P5) === */
.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}

/* === Homepage FAQ (P9) === */
.home-faq-section .faq-grid { max-width: 800px; margin: 0 auto; }

/* === Legal Pages (Privacy, Terms) === */
.legal-sections { max-width: 800px; margin: 0 auto; }
.legal-section { margin-bottom: var(--space-lg); }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-xs); color: var(--ink); }
.legal-section p, .legal-section ul { color: var(--ink); line-height: 1.7; margin-bottom: var(--space-xs); }
.legal-section ul { padding-left: 1.5rem; }
.legal-section ul li { margin-bottom: 4px; }
.legal-footnote {
  max-width: 800px;
  margin: var(--space-sm) auto 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}
.legal-footnote + .legal-footnote { border-top: none; padding-top: 0; margin-top: var(--space-xs); }

