/* SD Web Studios — paper / blueprint design system */
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/Fredoka-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #f24c3d;
  --color-secondary: #f2811d;
  --color-ink: #0d0d0d;
  --color-paper: #fcf9f2;
  --color-card: var(--color-paper);
  --color-muted: #5a5a5a;
  --color-text-hover: #342d2d;
  --color-header-bg: var(--color-paper);
  --color-grid: rgba(13, 13, 13, 0.07);
  --font-heading: "Fredoka", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow-soft: 0 4px 24px rgba(13, 13, 13, 0.08);
  --shadow-card: 0 8px 32px rgba(13, 13, 13, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-h: 80px;
  --max-width: 1200px;
  --section-pad: clamp(3rem, 6vw, 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-paper);
  background-image:
    linear-gradient(var(--color-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 100vh;
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-text-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 500; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Partner banner + header */
.site-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .site-top.site-top--hidden {
    transform: translateY(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-top {
    transition: none;
  }

  .site-top.site-top--hidden {
    transform: none;
  }
}

/* Scroll lock while an overlay (mobile menu / modal) is open. Pinning the body
   keeps the page from scrolling behind the overlay on all devices. */
body.is-scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

/* Keep the third-party live chat widget behind/under overlays by hiding it
   whenever an overlay is open, so the menu/modal sits in front of everything. */
body.is-scroll-locked chat-widget {
  display: none !important;
}

.partner-banner {
  background: #c62828;
  color: #fff;
}

html.partner-banner-dismissed .partner-banner {
  display: none;
}

.partner-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.55rem clamp(2.75rem, 5vw, 3rem) 0.55rem clamp(1rem, 3vw, 2rem);
  position: relative;
}

.partner-banner-text {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
  line-height: 1.45;
}

.partner-banner-text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.partner-banner-text a:hover {
  color: #fff;
  opacity: 0.9;
}

.partner-banner-close {
  position: absolute;
  right: clamp(0.75rem, 2.5vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.partner-banner-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.partner-banner-close svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* Header */
.site-header {
  background: var(--color-header-bg);
  border-bottom: 2px solid var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
}

.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1100;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
}

.nav-dropdown {
  position: relative;
}

/* Invisible bridge so pointer can move from toggle to menu without losing hover */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.65rem;
}

.nav-list a,
.nav-dropdown-toggle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-ink);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a:hover,
.nav-dropdown-toggle:hover {
  color: var(--color-text-hover);
}

.nav-list a[aria-current="page"] {
  color: var(--color-primary);
}

.nav-dropdown-toggle .icon-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown-toggle[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  z-index: 1100;
  background: var(--color-card);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Areas mega-menu: JS keeps open while moving pointer to fixed panel */
.nav-dropdown-areas:hover .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-dropdown-areas.is-open .dropdown-menu,
.nav-dropdown-areas.is-open:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: var(--color-paper);
}

.nav-dropdown-areas .dropdown-menu--areas {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  width: 100%;
  min-width: 0;
  max-height: none;
  overflow: visible;
  margin: 0;
  transform: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.2rem 1.5rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
}

.nav-dropdown-areas::after {
  height: 0.85rem;
}

.dropdown-menu--areas li {
  list-style: none;
}

.dropdown-menu--areas a {
  font-size: 0.95rem;
  padding: 0.5rem 0.35rem;
}

.dropdown-areas-note {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--color-grid);
}

.nav-areas-note {
  margin: 0;
  max-width: 36rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.nav-areas-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-ink);
}

.footer-areas-note {
  margin: 1.25rem 0 0;
}

.mobile-areas-note {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.85rem 0 0 1rem;
  border-top: 1px solid var(--color-grid);
}

.header-actions .header-login,
.header-actions .header-cta {
  display: none;
  height: 44px;
  padding: 0 1.15rem;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 8px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--color-header-bg);
  border: 2px solid rgba(13, 13, 13, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-toggle:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 76, 61, 0.15);
}

.lang-toggle-flag {
  font-size: 1.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* Welsh desktop nav: keep items on one line like English */
html[lang="cy"] .nav-list {
  flex-wrap: nowrap;
  gap: 0.2rem 0.55rem;
}

html[lang="cy"] .nav-list a,
html[lang="cy"] .nav-dropdown-toggle {
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0.5rem 0.15rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fcf9f2;
  color: #403838;
  border: 2px solid rgba(64, 56, 56, 0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Mobile fullscreen menu */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: var(--color-paper);
  background-image:
    linear-gradient(var(--color-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  width: 48px;
  height: 48px;
  background: var(--color-ink);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-list > li {
  border-bottom: 1px solid var(--color-grid);
}

.mobile-nav-list a,
.mobile-services-toggle {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  padding: 1rem 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-services-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-services-list.is-open {
  max-height: 600px;
}

.mobile-areas-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-areas-list.is-open {
  max-height: 800px;
}

.mobile-nav-overlay nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mobile-nav-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-ink);
}

.mobile-nav-actions .btn {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1.1rem;
  text-align: center;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.cta-band-inner {
  text-align: center;
  padding: 2.5rem 2rem;
}

.cta-band-inner h2 {
  margin-bottom: 0.75rem;
}

.service-area-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-area-card p {
  flex: 1;
}

.service-area-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Case studies: compact sections so one card fills the view and the next peeks */
.section.case-studies-hero {
  padding-bottom: 1rem;
}

.section.case-studies-hero .section-header {
  margin-bottom: 1rem;
}

.case-studies-hero-cta {
  margin-top: 1rem;
}

.section.case-study-section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.section.case-study-section:first-of-type {
  padding-top: 0.75rem;
}

.section.case-study-section + .section.case-study-section {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.case-study-card {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.case-study-card h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.case-study-card .case-result {
  color: var(--color-primary);
  font-style: normal;
  margin: 0.75rem 0 1rem;
}

.calendar-embed {
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  line-height: 0;
  overflow-x: auto;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.calendar-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

/* Book a demo */
.book-demo-hero-compact {
  padding-bottom: 0.75rem;
}

.book-demo-hero-compact .section-header {
  margin-bottom: 0;
}

.book-demo-hero-lead {
  margin-bottom: 0;
}

.book-demo-main-section {
  padding-top: 1.5rem;
}

.book-demo-main-section .content-split {
  align-items: start;
}

.book-demo-main-section .content-block h2,
.book-demo-main-section .calendar-wrap h2 {
  margin-top: 0;
}

.book-demo-main-section .content-block,
.book-demo-main-section .calendar-wrap {
  min-width: 0;
}

.book-demo-main-section .calendar-wrap h2 {
  text-align: center;
}

.mobile-services-list a {
  font-size: 1.05rem;
  padding: 0.65rem 0;
}

/* Main layout */
main {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content .eyebrow {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-actions .btn-primary {
  background: #F24141;
  border-color: #F24141;
}

.hero-actions .btn-primary:hover {
  background: var(--color-paper);
  color: #F24141;
  border-color: #F24141;
}

.hero-stats {
  width: 100%;
}

.hero-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.25rem 0;
  width: 100%;
  align-items: flex-start;
}

.hero-stat-card {
  background: var(--color-card);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  width: min(17.5rem, calc(100% - 2rem));
  flex-shrink: 0;
  position: relative;
  text-align: left;
}

.hero-stat-card--right {
  align-self: flex-end;
  transform: translateX(clamp(-1.75rem, -8vw, -3.25rem));
}

.hero-stat-card--left {
  align-self: flex-start;
  transform: translateX(clamp(0.5rem, 3vw, 1.5rem));
}

.hero-stat-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.hero-stat-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: #F24141;
  border-radius: var(--radius-sm);
}

.hero-stat-icon svg {
  width: 1rem;
  height: 1rem;
  fill: #FCF9F2;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ink);
}

.hero-stat-label {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.hero-stats-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

/* Reputation management — rotating review platform name in hero */
.review-platform-rotate {
  --platform-line-height: 1.15em;
  display: inline-block;
  vertical-align: text-bottom;
  height: var(--platform-line-height);
  overflow: hidden;
  color: var(--color-primary);
}

.review-platform-rotate__track {
  display: block;
  animation: review-platform-rotate 12s ease-in-out infinite;
}

.review-platform-rotate__track span {
  display: block;
  height: var(--platform-line-height);
  line-height: var(--platform-line-height);
  white-space: nowrap;
}

/* Eight slides (duplicate Google at end): loop 100% → 0% is invisible, never scrolls back up */
@keyframes review-platform-rotate {
  0%, 10.71% { transform: translateY(0); }
  14.29%, 26.79% { transform: translateY(calc(-1 * var(--platform-line-height))); }
  28.57%, 41.07% { transform: translateY(calc(-2 * var(--platform-line-height))); }
  42.86%, 55.36% { transform: translateY(calc(-3 * var(--platform-line-height))); }
  57.14%, 69.64% { transform: translateY(calc(-4 * var(--platform-line-height))); }
  71.43%, 83.93% { transform: translateY(calc(-5 * var(--platform-line-height))); }
  85.71%, 98.21% { transform: translateY(calc(-6 * var(--platform-line-height))); }
  100% { transform: translateY(calc(-7 * var(--platform-line-height))); }
}

@media (prefers-reduced-motion: reduce) {
  .review-platform-rotate__track {
    animation: none;
  }

  .review-platform-rotate__track span:not(:first-child) {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}

.btn-primary {
  background: var(--color-ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-paper);
  color: var(--color-ink);
  transform: scale(1.04);
}

.btn-brand {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-brand:hover {
  background: var(--color-paper);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.04);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
}

.btn-outline:hover {
  background: var(--color-ink);
  color: #fff;
  transform: scale(1.04);
}

/* Cards */
.card {
  background: var(--color-card);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.card-scrapbook {
  transform: rotate(-0.5deg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.benefit-card .icon-wrap svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.benefit-card h3 {
  margin-top: 0;
}

.content-block .content-lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.service-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.service-card .icon-wrap svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  flex: 1;
  color: var(--color-muted);
}

.service-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Content sections */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.content-split--reverse .content-visual {
  order: 1;
}

.content-split--reverse .content-block {
  order: 2;
}

.content-block h2 {
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.feature-list .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.feature-list .check-icon svg {
  width: 100%;
  height: 100%;
  fill: #F24141;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Section photos */
.section-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.section-photo--portrait {
  aspect-ratio: 585 / 699;
}

/* Image placeholder */
.img-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
  border: 2px dashed var(--color-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-grid {
  display: contents;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.02);
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.pricing-tier-tagline {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-muted);
  margin: -0.25rem 0 0.75rem;
}

.pricing-price-block {
  margin: 0.5rem 0 1rem;
}

.pricing-price-was {
  display: block;
  font-size: 1rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #1a9b4a;
  line-height: 1.1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-grid);
  font-size: 0.95rem;
}

.pricing-accent {
  color: var(--color-primary);
  font-weight: 600;
}

.pricing-highlight {
  color: #1a9b4a;
  font-weight: 700;
}

.pricing-cancel-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-muted);
}

.pricing-compare {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  width: 100%;
  min-width: 0;
}

.pricing-compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-card);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.35rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.pricing-compare-toggle .icon-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.pricing-compare-toggle.is-open .icon-chevron {
  transform: rotate(180deg);
}

.pricing-compare-panel {
  margin-top: 1.25rem;
  text-align: left;
}

.pricing-compare-scroll {
  overflow-x: auto;
  width: 100%;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.pricing-compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-grid);
  vertical-align: middle;
}

.pricing-compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--color-paper);
}

.pricing-compare-table tbody th {
  font-weight: 500;
  text-align: left;
  font-size: 0.95rem;
}

.pricing-compare-cell {
  text-align: center;
  width: 5.5rem;
}

.pricing-compare-mark {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-compare-cell--included .pricing-compare-mark {
  color: #1a9b4a;
}

.pricing-compare-cell--excluded .pricing-compare-mark {
  color: var(--color-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  font-style: italic;
}

.testimonial-placeholder {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--color-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-ink);
}

.faq-question .icon-chevron {
  width: 14px;
  height: 14px;
  fill: var(--color-ink);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question .icon-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 520px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-muted);
}

/* Pre-footer CTA */
.pre-footer-cta {
  background-color: var(--color-paper);
  color: var(--color-ink);
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-top: var(--section-pad);
  border-top: 2px solid var(--color-ink);
  border-bottom: 2px solid var(--color-ink);
  background-image: linear-gradient(
    128deg,
    rgba(242, 76, 61, 0.34) 0%,
    rgba(242, 129, 29, 0.28) 38%,
    rgba(247, 244, 239, 0.92) 72%,
    var(--color-paper) 100%
  );
}

.pre-footer-cta h2 {
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}

.pre-footer-cta p {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--color-muted);
}

.pre-footer-cta .btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-ink);
}

.pre-footer-cta .btn-primary:hover {
  background: var(--color-paper);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.04);
}

/* Service detail modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.service-modal[hidden] {
  display: none;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.45);
}

.service-modal__dialog {
  position: relative;
  width: min(100%, 36rem);
  overflow: hidden;
  background: var(--color-card);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem 1.75rem;
}

.service-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-ink);
  cursor: pointer;
}

.service-modal__close:hover {
  background: var(--color-ink);
  color: #fff;
}

.service-modal__close svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.service-modal__dialog h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 2.5rem 0.75rem 0;
  line-height: 1.2;
}

.service-modal__lead {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
}

.service-modal__points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.service-modal__points li {
  padding-left: 1.1rem;
  border-left: 3px solid var(--color-primary);
}

.service-modal__points strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.service-modal__note {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.service-modal__cta {
  width: 100%;
  text-align: center;
}

.service-modal-trigger {
  cursor: pointer;
  font: inherit;
}

a.service-modal-trigger {
  text-decoration: none;
}

/* Mobile: only the card scrolls; the dark backdrop and the page stay still.
   The dialog is capped to the viewport and scrolls internally. */
@media (max-width: 768px) {
  .service-modal {
    align-items: flex-start;
    padding: 1rem 0.85rem;
  }

  .service-modal__backdrop {
    position: fixed;
  }

  .service-modal__dialog {
    margin: auto;
    width: 100%;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 3rem 1.25rem 1.5rem;
  }
}

/* Footer */
.site-footer {
  background: var(--color-card);
  border-top: 2px solid var(--color-ink);
  padding-top: 4.5rem;
}

.footer-brand {
  margin-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.footer-col h3,
.footer-areas-row h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-logo--mobile {
  display: none;
}

.footer-areas-row {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid var(--color-grid);
}

.footer-areas-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-ink);
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-text-hover);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-contact .footer-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
}

.footer-contact .footer-reg .footer-label {
  font-weight: 700;
}

.site-footer > .container {
  padding-bottom: 3.5rem;
}

.footer-bar {
  border-top: 1px solid var(--color-grid);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer-bar p {
  margin: 0;
}

.footer-bar a {
  color: var(--color-primary);
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-placeholder {
  padding: 2rem;
  background: var(--color-card);
  border: 2px dashed var(--color-muted);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--color-muted);
}

.policy-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.policy-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-body a {
  color: var(--color-primary);
  text-decoration: underline;
}

.policy-meta {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.policy-notice {
  font-weight: 600;
}

.policy-body ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  line-height: 1.7;
}

.policy-body li {
  margin-bottom: 0.5rem;
}

.policy-body li:last-child {
  margin-bottom: 0;
}

/* Contact form */
.contact-hero-compact {
  padding-bottom: 0.75rem;
}

.contact-hero-compact .section-header {
  margin-bottom: 0;
}

.contact-hero-lead {
  margin-bottom: 0;
}

.contact-form-section {
  padding-top: 2.25rem;
}

.contact-form-section .contact-info h2,
.contact-form-wrap .form-group:first-child {
  margin-top: 0;
}

.contact-form-section .contact-info {
  padding-top: 0.5rem;
}

.contact-form-embed {
  width: 100%;
  max-width: 100%;
  min-height: 1051px;
  line-height: 0;
  overflow-x: auto;
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--color-card);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-sm);
  background: var(--color-card);
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: auto;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 4rem 1rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible,
.fade-in-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-load {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-load.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-index, 0) * 0.08s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up,
  .fade-in-load {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover { transform: none; }
}

@media (min-width: 1100px) {
  .header-actions .header-cta,
  .header-actions .header-login {
    display: inline-flex;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid,
  .content-split,
  .content-split--reverse .content-visual,
  .content-split--reverse .content-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .content-split .content-visual {
    order: -1;
  }

  .content-split .content-block {
    order: 0;
  }

  .content-split--reverse .content-visual,
  .content-split--reverse .content-block {
    order: unset;
  }

  .content-split--reverse .content-visual {
    order: -1;
  }

  .pricing-layout,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-areas-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --section-pad: clamp(2rem, 5vw, 3rem);
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.5rem clamp(0.75rem, 2.5vw, 1rem);
    min-height: var(--header-h);
  }

  .header-actions {
    justify-self: end;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
  }

  .logo-link {
    min-width: 0;
  }

  .logo-link img {
    height: 36px;
    max-width: min(140px, 42vw);
  }

  .lang-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .lang-toggle-flag {
    font-size: 1.35rem;
  }

  .partner-banner-inner {
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  }

  .partner-banner-text {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-hero .hero-visual {
    display: none;
  }

  .mobile-nav-list a,
  .mobile-services-toggle {
    text-align: center;
  }

  .mobile-services-list,
  .mobile-areas-list {
    padding-left: 0;
    text-align: center;
  }

  .mobile-nav-cta-item {
    text-align: center;
  }

  .mobile-nav-overlay {
    padding: 1rem clamp(0.75rem, 3vw, 1.5rem);
  }

  .hero-content,
  .content-block,
  .content-visual,
  .section-header,
  .hero-actions,
  .card,
  .service-card,
  .step-card,
  .pricing-card,
  .testimonial-card,
  .contact-info,
  .contact-form-wrap,
  .error-page {
    text-align: center;
  }

  .hero-actions,
  .service-card .btn,
  .content-block .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-stats-grid {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    background: var(--color-card);
    border: 2px solid var(--color-ink);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 0.65rem 0.25rem;
  }

  .hero-stat-card {
    flex: 1;
    width: auto;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.35rem 0.4rem;
    text-align: center;
    transform: none;
    align-self: stretch;
  }

  .hero-stat-card:not(:last-child) {
    border-right: 1px solid var(--color-grid);
  }

  .hero-stat-metric {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.2rem;
  }

  .hero-stat-icon {
    width: 1.65rem;
    height: 1.65rem;
  }

  .hero-stat-icon svg {
    width: 0.7rem;
    height: 0.7rem;
  }

  .hero-stat-value {
    font-size: 1.05rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .hero-stats-disclaimer {
    margin-top: 0.45rem;
    font-size: 0.68rem;
    text-align: center;
  }

  .service-card .btn {
    align-self: center;
  }

  .service-card .icon-wrap,
  .benefit-card .icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-tier {
    white-space: normal;
  }

  .pricing-features {
    text-align: center;
  }

  .pricing-features li {
    text-align: center;
  }

  .pricing-price-block,
  .pricing-tier-tagline,
  .pricing-cancel-note {
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
    text-align: left;
  }

  .card-scrapbook {
    transform: none;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-areas-row {
    text-align: center;
  }

  .footer-areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .footer-areas-note {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-logo--desktop {
    display: none;
  }

  .footer-logo--mobile {
    display: block;
    height: auto;
    max-height: 64px;
    width: auto;
    max-width: min(200px, 58vw);
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer > .container {
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
  }

  .footer-bar {
    padding: 1.25rem clamp(0.75rem, 3vw, 1rem);
  }

  .footer-bar p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    line-height: 1.5;
  }

  .footer-bar__copy {
    white-space: nowrap;
    font-size: clamp(0.68rem, 2.6vw, 0.9rem);
  }

  .book-demo-main-section .content-block,
  .book-demo-main-section .calendar-wrap {
    width: 100%;
    box-sizing: border-box;
  }

  .book-demo-main-section .calendar-wrap {
    overflow: hidden;
  }

  .book-demo-main-section .calendar-embed {
    width: 100%;
    max-width: 100%;
  }

  .pre-footer-cta {
    padding-left: clamp(0.75rem, 3vw, 1.5rem);
    padding-right: clamp(0.75rem, 3vw, 1.5rem);
  }

  .pre-footer-cta .container {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-hero-compact {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-grid);
  }

  .contact-form-section {
    background: rgba(242, 76, 61, 0.05);
    border-top: 2px solid var(--color-ink);
    border-bottom: 2px solid var(--color-ink);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .contact-form-section .contact-info,
  .contact-form-section .contact-form-wrap {
    background: var(--color-card);
    border: 2px solid var(--color-ink);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .book-demo-hero-compact {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-grid);
  }

  .book-demo-main-section {
    background: rgba(242, 76, 61, 0.05);
    border-top: 2px solid var(--color-ink);
    border-bottom: 2px solid var(--color-ink);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .book-demo-main-section .content-block,
  .book-demo-main-section .calendar-wrap {
    background: var(--color-card);
    border: 2px solid var(--color-ink);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
  }

  .book-demo-main-section .content-split {
    gap: 1.5rem;
  }

  .calendar-note {
    text-align: center;
  }

  .card-grid.benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .service-area-card .btn {
    align-self: center;
  }

}

@media (max-width: 1100px) {
  .nav-dropdown-areas .dropdown-menu--areas {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}
