:root {
  /* Background surfaces */
  --surface: #f8fbfd;
  --surface-strong: #ffffff;
  --surface-soft: #eef7fb;
  --surface-muted: #e6f0f5;

  /* Text */
  --ink: #017daa;
  --ink-soft: #4b5c65;
  --ink-muted: #71838c;

  /* Primary brand colors */
  --primary: #1788bdd4;
  --primary-deep: #0b6f95;
  --primary-bright: #3aa6cc;

  /* Accent colors */
  --accent: #7ccdeb;
  --accent-soft: #e5f7fc;
  --accent-light: #f2fbfe;

  /* Borders and lines */
  --line: #d4e3ea;
  --line-soft: #e7f0f4;

  /* Status */
  --success: #0f766e;
  --success-soft: #e6f7f4;
  --warning: #b7791f;
  --warning-soft: #fff7e6;

  /* Footer */
  --footer: #0b3f56;
  --footer-soft: #0f526e;
  --footer-text: #d9e8ee;
  --footer-muted: #9fb8c4;

  /* Shadows */
  --shadow: 0 14px 36px rgba(23, 142, 189, 0.08),
            0 4px 12px rgba(15, 23, 42, 0.04);

  --shadow-hover: 0 20px 48px rgba(23, 142, 189, 0.13),
                  0 8px 18px rgba(15, 23, 42, 0.06);

  /* Layout */
  --radius: 24px;
  --radius-sm: 12px;
  --max: 1280px;
  --gutter: 24px;

  /* Font */
  --font-heading: "Prompt", sans-serif;
  --font-logo-main: "Kanit", sans-serif;
  --font-logo-sub: "Prompt", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

*:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.42);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(198, 215, 223, 0.62);
  background: rgba(248, 251, 253, 0.9);
  backdrop-filter: blur(20px);
  padding-block: 6px;
}

.nav-shell,
.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.nav-shell {
  height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-logo-main);
  font-weight: 800;
  justify-self: start;
}

.brand-logo {
  width: auto;
  max-width: 230px;
  height: 100px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 8px rgba(11, 111, 149, 0.12));
}

.brand-text {
  font-family: var(--font-logo-sub);
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  min-width: 0;
  justify-self: center;
}

.nav-link {
  color: var(--primary-deep);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0 13px;
  border-bottom: 1.5px solid transparent;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-inline: 6px;
  min-width: 0;
}

.nav-services-menu {
  gap: 4px;
}

.nav-services-menu > .nav-link {
  padding-right: 0;
  font-weight: 500;
  color: var(--primary-deep);
}

.nav-company-menu > .nav-link {
  font-weight: 500;
  color: var(--primary-deep);
}

.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-services-caret {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  pointer-events: none;
  color: var(--primary-deep);
}

.nav-dropdown-toggle::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-services-caret::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-services-caret::after,
.nav-dropdown:focus-within .nav-services-caret::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 80;
  display: grid;
  align-items: stretch;
  width: min(calc(100vw - (var(--gutter) * 2)), 1120px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(198, 215, 223, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 42px rgba(11, 111, 149, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.nav-mega::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown-compact .nav-mega {
  left: 50%;
  right: auto;
  width: min(calc(100vw - (var(--gutter) * 2)), 320px);
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  transform: translate(-50%, 10px);
}

.nav-dropdown-service .nav-mega {
  left: 50%;
  width: min(calc(100vw - (var(--gutter) * 2)), 1120px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  padding: 22px;
  transform: translate(-50%, 6px);
  transform-origin: top center;
}

.nav-dropdown-service .nav-menu-column {
  gap: 12px;
}

.nav-dropdown-service .nav-menu-column h2 {
  margin-bottom: 0;
}

.nav-dropdown-compact:hover .nav-mega,
.nav-dropdown-compact:focus-within .nav-mega {
  transform: translate(-50%, 0);
}

.nav-dropdown-service:hover .nav-mega,
.nav-dropdown-service:focus-within .nav-mega {
  transform: translate(-50%, 0);
}

.nav-menu-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  height: 100%;
  min-width: 0;
  min-height: 100%;
}

.nav-menu-column h2,
.nav-menu-column a.nav-menu-title {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-menu-column a.nav-menu-title {
  display: block;
  margin: 0;
  padding: 4px 10px 2px;
  color: var(--primary-deep);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: color 180ms ease;
}

.nav-menu-column a.nav-menu-title:hover,
.nav-menu-column a.nav-menu-title:focus-visible {
  color: var(--primary);
}

.nav-menu-description {
  margin: 0 0 4px;
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.nav-menu-column a {
  display: block;
  padding: 9px 10px;
  color: var(--primary-deep);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu-all {
  display: flex;
  align-items: flex-start;
  margin-top: auto;
  min-height: 4.4rem;
  padding-top: 10px;
  padding-bottom: 0;
  border-top: 1px solid var(--line-soft);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.nav-menu-column a:not(.nav-menu-all):hover,
.nav-menu-column a:not(.nav-menu-all):focus-visible {
  color: var(--primary);
  background: var(--accent-soft);
  transform: translateX(2px);
}

.nav-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-inline: 6px;
  padding: 5px;
  border: 1px solid rgba(198, 215, 223, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.nav-lang-switch-mobile {
  justify-self: start;
  margin-top: 2px;
}

.nav-lang-toggle {
  min-width: 34px;
  min-height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  cursor: pointer;
}

.nav-lang-toggle.is-active {
  background: var(--accent-soft);
  color: var(--primary-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav-contact-cluster {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(198, 215, 223, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(11, 63, 86, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-phone-link:hover,
.nav-phone-link:focus-visible {
  border-color: rgba(23, 142, 189, 0.35);
  box-shadow: 0 12px 22px rgba(11, 63, 86, 0.14);
  transform: translateY(-1px);
}

.nav-phone-link svg,
.nav-social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-social-link .brand-icon {
  width: 20px;
  height: 20px;
  stroke: none;
  stroke-width: 0;
}

.nav-social-link .brand-image {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 7px;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-social-link:hover,
.nav-social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(11, 63, 86, 0.18);
}

.nav-facebook-link {
  border: 0;
  background: linear-gradient(180deg, #eef4ff 0%, #dbe8ff 100%);
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(8, 102, 255, 0.14), 0 10px 18px rgba(8, 102, 255, 0.14);
}

.nav-facebook-link svg {
  display: block;
  width: 23px;
  height: 23px;
  stroke: none;
  stroke-width: 0;
}

.nav-facebook-link:hover,
.nav-facebook-link:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(8, 102, 255, 0.2), 0 12px 22px rgba(8, 102, 255, 0.22);
  filter: none;
  transform: translateY(-1px) scale(1.02);
}

.nav-line-link {
  background: linear-gradient(180deg, #f8fffb 0%, #e8faef 100%);
  color: #06c755;
  box-shadow: inset 0 0 0 1px rgba(6, 199, 85, 0.18);
}

.nav-line-link .brand-icon {
  width: 22px;
  height: 22px;
}

.nav-line-link .brand-image {
  width: 24px;
  height: 24px;
}

.nav-line-link svg {
  width: 20px;
  height: 20px;
}

.header-actions .button {
  min-height: 42px;
  padding-inline: 22px;
  box-shadow: 0 10px 20px rgba(23, 142, 189, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 45;
  border-top: 1px solid var(--line);
  background: rgba(248, 251, 253, 0.98);
  box-shadow: 0 22px 42px rgba(11, 63, 86, 0.14);
  min-height: calc(100vh - 84px);
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-nav .container {
  display: grid;
  gap: 8px;
  padding-block: 12px 18px;
  padding-inline: max(var(--gutter), 16px);
}

.mobile-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(198, 215, 223, 0.72);
}

.mobile-contact-actions .nav-phone-link {
  justify-content: center;
}

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

.mobile-social-row {
  display: flex;
  gap: 10px;
}

.mobile-social-row .nav-social-link {
  flex: 1 1 0;
  border-radius: 14px;
}

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(198, 215, 223, 0.82);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(11, 63, 86, 0.06);
  color: var(--primary-deep);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link:focus-visible,
.mobile-nav .nav-link[aria-current="page"] {
  color: var(--primary);
  border-color: rgba(23, 142, 189, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
  transform: translateY(-1px);
}

.mobile-nav-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(11, 63, 86, 0.06);
}

.mobile-nav-group summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 46px 14px 16px;
  color: var(--primary-deep);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  content: "";
  transform: translateY(-58%) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.mobile-nav-group[open] summary {
  background: var(--accent-soft);
  color: var(--primary);
}

.mobile-nav-group[open] summary::after {
  transform: translateY(-42%) rotate(225deg);
}

.mobile-nav-group > a,
.mobile-nav-group .nav-link {
  display: block;
  padding: 12px 16px 12px 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.nav-lang-switch-mobile {
  justify-self: stretch;
  width: 100%;
  margin-top: 4px;
  padding: 6px;
  justify-content: center;
}

.mobile-nav-group > a:hover,
.mobile-nav-group > a:focus-visible,
.mobile-nav-group .nav-link:hover,
.mobile-nav-group .nav-link:focus-visible {
  color: var(--primary);
  background: var(--sky-soft);
}

.button,
.button-secondary,
.button-light,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 12px;
  padding: 12px 20px;
  border: 0;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 99, 133, 0.16);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-light:hover,
.button-light:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.button-light {
  background: #fff;
  color: var(--primary);
}

.button-dark {
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.button-wide {
  width: 100%;
}

a.button[href*="line.me"],
a.button-secondary[href*="line.me"],
a.button-light[href*="line.me"],
a.button-dark[href*="line.me"] {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.22);
}

a.button[href*="line.me"]:hover,
a.button[href*="line.me"]:focus-visible,
a.button-secondary[href*="line.me"]:hover,
a.button-secondary[href*="line.me"]:focus-visible,
a.button-light[href*="line.me"]:hover,
a.button-light[href*="line.me"]:focus-visible,
a.button-dark[href*="line.me"]:hover,
a.button-dark[href*="line.me"]:focus-visible {
  background: #05b44d;
  border-color: #05b44d;
  color: #fff;
  box-shadow: 0 14px 28px rgba(6, 199, 85, 0.28);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 52px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-white {
  background: #fff;
}

.aw-news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.facebook-feed-section {
  background: linear-gradient(180deg, #f7fbfe 0%, #eef7fb 100%);
}

.facebook-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.facebook-feed-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 142, 189, 0.09);
}

.facebook-feed-media {
  position: relative;
  overflow: hidden;
  background: #edf6fb;
}

.facebook-feed-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #edf6fb;
  height: 160px;
}

.facebook-feed-image img,
.facebook-feed-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.facebook-feed-image img {
  object-fit: cover;
  object-position: center;
}

.facebook-feed-tag-row {
  top: 14px;
  left: 14px;
  right: 14px;
}

.facebook-feed-tag-row .aw-news-tag {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.facebook-feed-image.is-empty {
  background: linear-gradient(135deg, #eaf4fa 0%, #d8eaf5 100%);
}

.facebook-feed-image-fallback {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(23, 142, 189, 0.28), rgba(11, 111, 149, 0.1));
}

.facebook-feed-body {
  display: grid;
  grid-template-rows: auto minmax(2.6em, auto) minmax(5.25em, auto) auto;
  gap: 10px;
  padding: 16px 16px 18px;
}

.facebook-feed-meta {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facebook-feed-title {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.facebook-feed-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  display: -webkit-box;
  min-height: 5.25em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.facebook-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.facebook-feed-link::after {
  width: 16px;
  height: 16px;
  content: "";
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  display: inline-block;
}

.facebook-feed-empty {
  grid-column: 1 / -1;
  padding: 20px 18px;
  border: 1px dashed rgba(23, 142, 189, 0.28);
  border-radius: 20px;
  background: #f7fbfe;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.facebook-feed-card.is-skeleton {
  pointer-events: none;
}

.facebook-feed-skeleton,
.facebook-feed-skeleton-line {
  position: relative;
  overflow: hidden;
  background: #edf4f8;
}

.facebook-feed-skeleton {
  display: block;
}

.facebook-feed-skeleton-chip {
  width: 74px;
}

.facebook-feed-skeleton-chip.short {
  width: 54px;
}

.facebook-feed-skeleton::after,
.facebook-feed-skeleton-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: translateX(-100%);
  animation: facebookSkeleton 1.4s ease-in-out infinite;
}

.facebook-feed-skeleton {
  min-height: 240px;
}

.facebook-feed-skeleton-line {
  height: 14px;
  border-radius: 999px;
}

.facebook-feed-skeleton-line.short {
  width: 78%;
}

.facebook-feed-skeleton-line.tiny {
  width: 42%;
  height: 18px;
}

@keyframes facebookSkeleton {
  to {
    transform: translateX(100%);
  }
}

.aw-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.aw-news-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(23, 142, 189, 0.1);
}

.aw-news-media {
  position: relative;
  overflow: hidden;
  background: #edf6fb;
}

.aw-news-media img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center;
}

.aw-news-tag-row {
  position: absolute;
  left: 16px;
  top: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aw-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(198, 215, 223, 0.85);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(23, 142, 189, 0.12);
}

.aw-news-body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.aw-news-meta {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aw-news-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.aw-news-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.aw-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.aw-news-link::after {
  width: 16px;
  height: 16px;
  content: "";
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  display: inline-block;
}

.facebook-activity-section {
  background:
    radial-gradient(circle at top left, rgba(124, 205, 235, 0.2), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.facebook-activity-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
}

.facebook-activity-copy {
  display: grid;
  gap: 18px;
}

.facebook-activity-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.facebook-activity-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.facebook-activity-points {
  display: grid;
  gap: 12px;
}

.facebook-activity-point {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(23, 142, 189, 0.08);
}

.facebook-activity-point strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.facebook-activity-point span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.facebook-activity-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(198, 215, 223, 0.68);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(23, 142, 189, 0.12);
}

.facebook-activity-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.facebook-activity-panel-head h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.3;
}

.facebook-activity-label {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facebook-live-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e8f4fb;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.facebook-activity-embed-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #edf6fb;
  min-height: 620px;
}

.facebook-page-embed {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #fff;
}

.facebook-activity-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-deep);
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}


/* AW hero section */
.aw-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  background: var(--surface);
}

.aw-hero::after {
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, rgba(248, 251, 253, 0.92), rgba(248, 251, 253, 0));
  content: "";
  pointer-events: none;
}

.aw-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #f8fbfd;
}

.aw-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.aw-homepage .aw-hero-image img {
  transform: scale(1.02);
  animation: awHeroFloat 18s ease-in-out infinite;
  will-change: transform;
}

.aw-hero-container {
  display: grid;
  grid-template-columns: minmax(45%, 1fr) minmax(420px, 540px);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: min(1280px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  padding: 40px 0;
}

.aw-hero-photo-space {
  min-height: 560px;
}

.aw-hero-content {
  justify-self: end;
  width: min(100%, 540px);
  padding: 20px 0 20px 18px;
  color:#ffffff;
}

.aw-homepage .aw-hero-content {
  animation: none;
}

.aw-homepage .aw-hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  animation: awHomeRise 0.84s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aw-homepage .aw-hero-badge {
  animation-delay: 0.08s;
}

.aw-homepage .aw-hero-content h1 {
  animation-delay: 0.16s;
}

.aw-homepage .aw-hero-content p {
  animation-delay: 0.26s;
}

.aw-homepage .aw-hero-actions {
  animation-delay: 0.36s;
}

.aw-homepage .aw-hero-trust {
  animation-delay: 0.46s;
}

.aw-homepage .aw-hero-trust div {
  opacity: 0;
  transform: translateY(10px);
  animation: awHomeRise 0.68s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aw-homepage .aw-hero-trust div:nth-child(1) {
  animation-delay: 0.52s;
}

.aw-homepage .aw-hero-trust div:nth-child(2) {
  animation-delay: 0.6s;
}

.aw-homepage .aw-hero-trust div:nth-child(3) {
  animation-delay: 0.68s;
}

.aw-hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid #d4e3ea;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 92%, #ffffff);
  color: var(--primary-deep);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aw-hero-content h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.35vw, 66px);
  line-height: 1.06;
  letter-spacing: 0;
}

.aw-hero-content h1 span {
  color: #0b78c9;
}

.aw-hero-content h1 .aw-gradient-text {
 background: linear-gradient(120deg, #0b4a68, #0b86bd, #1ea8e6, #7ed8ff);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: awAuroraText 9s ease-in-out infinite;
}

@keyframes awAuroraText {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.aw-hero-content p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #2d6f8c;
  font-size: 17px;
  line-height: 1.72;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.aw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.aw-btn-primary {
  background: linear-gradient(120deg, #0b4a68 0%, #0b86bd 42%, #1ea8e6 72%, #7ed8ff 100%);
  background-size: 180% 180%;
  color: #ffffff;
  box-shadow:
    0 16px 36px rgba(11, 134, 189, 0.22),
    0 4px 12px rgba(15, 23, 42, 0.05);
}

.aw-btn-primary:hover,
.aw-btn-primary:focus-visible {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(11, 134, 189, 0.28),
    0 8px 18px rgba(15, 23, 42, 0.08);
}

.aw-btn-secondary {
  border: 1px solid rgba(11, 134, 189, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 247, 252, 0.86)) padding-box,
    linear-gradient(120deg, #0b4a68, #0b86bd, #1ea8e6, #7ed8ff) border-box;
  color: #0b6f95;
  box-shadow:
    0 14px 30px rgba(11, 134, 189, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.05);
}

.aw-btn-secondary:hover,
.aw-btn-secondary:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 251, 255, 0.96)) padding-box,
    linear-gradient(120deg, #0b4a68, #0b86bd, #1ea8e6, #7ed8ff) border-box;
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(11, 134, 189, 0.16),
    0 6px 14px rgba(15, 23, 42, 0.08);
}

a.aw-btn[href*="line.me"] {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
  box-shadow:
    0 16px 36px rgba(6, 199, 85, 0.24),
    0 4px 12px rgba(15, 23, 42, 0.05);
}

a.aw-btn[href*="line.me"]:hover,
a.aw-btn[href*="line.me"]:focus-visible {
  background: #05b44d;
  color: #fff;
  box-shadow:
    0 22px 48px rgba(6, 199, 85, 0.3),
    0 8px 18px rgba(15, 23, 42, 0.08);
}

.line-accent-button {
  background: #06c755 !important;
  color: #fff !important;
  border-color: #06c755 !important;
  box-shadow:
    0 16px 36px rgba(6, 199, 85, 0.24),
    0 4px 12px rgba(15, 23, 42, 0.05) !important;
}

.line-accent-button:hover,
.line-accent-button:focus-visible {
  background: #05b44d !important;
  color: #fff !important;
  border-color: #05b44d !important;
  box-shadow:
    0 22px 48px rgba(6, 199, 85, 0.3),
    0 8px 18px rgba(15, 23, 42, 0.08) !important;
}

.aw-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.aw-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #e7f0f4;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(23, 142, 189, 0.08);
}

.aw-hero-trust div {
  border-right: 1px solid #e7f0f4;
  padding: 16px 18px;
}

.aw-hero-trust div:last-child {
  border-right: none;
}

.aw-hero-trust strong {
  display: block;
  color: #172226;
  font-size: 14px;
  line-height: 1.3;
}

.aw-hero-trust span {
  display: block;
  margin-top: 4px;
  color: #71838c;
  font-size: 13px;
}

.aw-hero-content {
  animation: awFadeUp 0.75s ease both;
}

.aw-homepage .section-heading,
.aw-homepage .feature-card,
.aw-homepage .process-step,
.aw-homepage .testimonial,
.aw-homepage .customer-photo-card,
.aw-homepage .cta-panel,
.aw-homepage .map-panel {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease;
  will-change: opacity, transform;
}

.aw-homepage .section-heading.is-visible,
.aw-homepage .feature-card.is-visible,
.aw-homepage .process-step.is-visible,
.aw-homepage .testimonial.is-visible,
.aw-homepage .customer-photo-card.is-visible,
.aw-homepage .cta-panel.is-visible,
.aw-homepage .map-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.aw-homepage .landing-map-panel {
  opacity: 1;
  transform: none;
}

@keyframes awHomeRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes awHeroFloat {
  0%, 100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.05) translate3d(0, -8px, 0);
  }
}

@keyframes awFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .aw-hero-container {
    grid-template-columns: minmax(40%, 1fr) minmax(380px, 500px);
    width: min(100%, calc(100% - 36px));
  }

  .aw-hero-content {
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .aw-hero {
    background: #f8fbfd;
  }

  .aw-hero-image {
    position: relative;
    z-index: 0;
    height: min(62vw, 520px);
  }

  .aw-hero-image img {
    object-position: left center;
  }

  .aw-hero-container {
    display: block;
    width: min(100%, calc(100% - 32px));
    min-height: 0;
    padding: 28px 0 54px;
  }

  .aw-hero-photo-space {
    display: none;
  }

  .aw-hero-content {
    width: min(100%, 680px);
    margin: 0 auto;
    border: 1px solid rgba(198, 215, 223, 0.68);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    padding: 26px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(23, 142, 189, 0.12);
  }

  .aw-hero-badge {
    margin-inline: auto;
  }

  .aw-hero-content p {
    margin-inline: auto;
  }

  .aw-hero-actions {
    justify-content: center;
  }

  .aw-hero-trust {
    margin-inline: auto;
  }

  .aw-homepage .aw-hero-image img {
    animation-duration: 24s;
  }

  .landing-map-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .landing-map-copy {
    text-align: center;
  }

  .landing-map-copy .eyebrow,
  .landing-map-copy p,
  .landing-map-copy h2,
  .landing-map-copy .inline-actions {
    margin-inline: auto;
  }

  .landing-address-card {
    text-align: left;
  }

  .landing-map-panel {
    width: 100%;
    min-height: 360px;
  }

  .landing-photo-panel {
    min-height: 320px;
  }

  .landing-office-photo {
    min-height: 320px;
  }

  .landing-map-panel .google-map {
    width: 100%;
    min-height: 360px;
  }

  .aw-news-grid {
    grid-template-columns: 1fr;
  }

  .aw-news-grid.carousel-track {
    display: flex;
  }

  .facebook-activity-layout {
    grid-template-columns: 1fr;
  }

  .facebook-activity-copy {
    text-align: center;
  }

  .facebook-activity-copy .eyebrow,
  .facebook-activity-copy > p,
  .facebook-activity-copy h2,
  .facebook-activity-copy .inline-actions {
    margin-inline: auto;
  }

  .facebook-activity-panel-head {
    align-items: center;
  }

  .facebook-activity-embed-wrap,
  .facebook-page-embed {
    min-height: 560px;
    height: 560px;
  }

  .aw-homepage .facebook-activity-panel {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .aw-homepage .section {
    padding: 48px 0;
  }

  .aw-homepage .section-heading {
    margin-bottom: 24px;
  }

  .aw-homepage .section-heading h2 {
    font-size: clamp(1.95rem, 5vw, 2.35rem);
  }

  .aw-homepage .section-heading p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .aw-homepage .aw-hero {
    background: linear-gradient(180deg, #f8fbfd 0%, #edf7fb 100%);
  }

  .aw-homepage .aw-hero-image {
    height: min(66vw, 440px);
  }

  .aw-homepage .aw-hero-image img {
    object-position: 34% center;
  }

  .aw-homepage .aw-hero-container {
    width: min(100%, calc(100% - 24px));
    padding: 20px 0 38px;
  }

  .aw-homepage .aw-hero-content {
    display: grid;
    gap: 18px;
    width: 100%;
    padding: 24px 20px 20px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(23, 142, 189, 0.1);
  }

  .aw-homepage .aw-hero-badge {
    margin-bottom: 0;
    min-height: 32px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .aw-homepage .aw-hero-content h1 {
    font-size: clamp(2.35rem, 7vw, 3.5rem);
    line-height: 1.02;
  }

  .aw-homepage .aw-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }

  .aw-homepage .aw-btn {
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .aw-homepage .aw-hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    max-width: none;
    margin-top: 0;
  }

  .aw-homepage .aw-hero-trust div {
    min-height: 100%;
    padding: 14px 12px;
    border: 1px solid rgba(198, 215, 223, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(11, 63, 86, 0.06);
  }

  .aw-homepage .aw-hero-trust strong {
    font-size: 0.88rem;
  }

  .aw-homepage .aw-hero-trust span {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .aw-homepage .cards-grid.five,
  .aw-homepage .cards-grid,
  .aw-homepage .cards-grid.three {
    gap: 14px;
  }

  .aw-homepage .service-card,
  .aw-homepage .compact-feature {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 18px 16px;
    text-align: left;
  }

  .aw-homepage .service-card {
    grid-template-areas:
      "icon title"
      "icon body"
      "icon cta";
    row-gap: 4px;
  }

  .aw-homepage .service-card .icon-box,
  .aw-homepage .compact-feature .icon-box {
    margin: 2px 0 0;
  }

  .aw-homepage .service-card .icon-box {
    grid-area: icon;
  }

  .aw-homepage .service-card h3,
  .aw-homepage .compact-feature h3 {
    margin: 0 0 6px;
    font-size: 1rem;
  }

  .aw-homepage .service-card h3 {
    grid-area: title;
  }

  .aw-homepage .service-card p,
  .aw-homepage .compact-feature p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .aw-homepage .service-card p {
    grid-area: body;
    margin: 0;
  }

  .aw-homepage .service-card-cta {
    grid-area: cta;
    justify-self: start;
    margin-top: 4px;
    padding-top: 0;
    border-top: 0;
  }

  .aw-homepage .process-grid {
    gap: 14px;
  }

  .aw-homepage .process-step {
    padding: 20px 18px 18px;
    gap: 8px;
  }

  .aw-homepage .step-number {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .aw-homepage .process-step h3 {
    font-size: 1.08rem;
  }

  .aw-homepage .process-step p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .aw-homepage .aw-news-body,
  .aw-homepage .testimonial {
    padding: 18px 16px;
  }

  .aw-homepage .facebook-feed-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aw-homepage .facebook-feed-card {
    border-radius: 20px;
  }

  .aw-homepage .facebook-feed-image {
    height: 152px;
  }

  .aw-homepage .facebook-feed-body {
    gap: 10px;
    padding: 16px;
  }

  .aw-homepage .aw-news-body h3,
  .aw-homepage .testimonial h3 {
    font-size: 1rem;
  }

  .aw-homepage .aw-news-body p,
  .aw-homepage .testimonial p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .aw-homepage .review-pagination,
  .aw-homepage .customer-photo-pagination {
    gap: 16px;
  }

  .aw-homepage .review-controls {
    gap: 10px;
  }

  .aw-homepage .customer-photo-card {
    border-radius: 20px;
  }

  .aw-homepage .customer-photo-card img {
    height: 240px;
  }

  .aw-homepage .faq-stack {
    gap: 12px;
  }

  .aw-homepage .landing-map-layout,
  .aw-homepage .contact-strip {
    gap: 18px;
  }

  .aw-homepage .landing-address-card,
  .aw-homepage .contact-tile {
    padding: 16px;
    border-radius: 18px;
  }

  .aw-homepage .contact-tile {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 640px) {
  .aw-hero-image {
    height: 380px;
  }

  .aw-hero-content h1 {
    font-size: 38px;
  }

  .aw-hero-content p {
    font-size: 16px;
  }

  .aw-hero-actions {
    align-items: stretch;
  }

  .aw-btn {
    width: 100%;
  }

  .aw-hero-trust {
    grid-template-columns: 1fr;
  }

  .aw-hero-trust div {
    border-right: none;
    border-bottom: 1px solid #e7f0f4;
  }

  .aw-hero-trust div:last-child {
    border-bottom: none;
  }

  .aw-homepage .section {
    padding: 40px 0;
  }

  .aw-homepage .aw-hero-image {
    height: 260px;
  }

  .aw-homepage .aw-hero-container {
    width: min(100%, calc(100% - 18px));
    padding: 14px 0 28px;
  }

  .aw-homepage .aw-hero-content {
    gap: 16px;
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .aw-homepage .aw-hero-content h1 {
    font-size: 2rem;
    line-height: 1.03;
  }

  .aw-homepage .aw-hero-content p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .aw-homepage .aw-hero-actions {
    grid-template-columns: 1fr;
  }

  .aw-homepage .aw-btn {
    width: 100%;
    min-height: 50px;
  }

  .aw-homepage .aw-hero-trust {
    grid-template-columns: 1fr;
  }

  .aw-homepage .aw-hero-trust div {
    border-right: 1px solid rgba(198, 215, 223, 0.72);
  }

  .aw-homepage .section-heading {
    margin-bottom: 20px;
  }

  .aw-homepage .section-heading h2 {
    margin-bottom: 10px;
    font-size: 1.72rem;
    line-height: 1.16;
  }

  .aw-homepage .cards-grid.five,
  .aw-homepage .cards-grid,
  .aw-homepage .cards-grid.three,
  .aw-homepage .process-grid,
  .aw-homepage .customer-photo-grid {
    gap: 12px;
  }

  .aw-homepage .card,
  .aw-homepage .feature-card,
  .aw-homepage .testimonial,
  .aw-homepage .faq-card {
    border-radius: 18px;
  }

  .aw-homepage .service-card,
  .aw-homepage .compact-feature,
  .aw-homepage .testimonial {
    padding: 16px 14px;
  }

  .aw-homepage .service-card p,
  .aw-homepage .compact-feature p,
  .aw-homepage .testimonial p {
    font-size: 0.9rem;
  }

  .aw-homepage .process-step {
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .aw-homepage .step-number {
    width: 44px;
    height: 44px;
  }

  .aw-homepage .aw-news-media img,
  .aw-homepage .customer-photo-card img {
    height: 210px;
  }

  .aw-homepage .aw-news-body {
    gap: 10px;
    padding: 16px 14px 18px;
  }

  .aw-homepage .facebook-feed-grid {
    margin-top: 22px;
  }

  .aw-homepage .facebook-feed-card {
    border-radius: 18px;
  }

  .aw-homepage .facebook-feed-image {
    height: 146px;
  }

  .aw-homepage .facebook-feed-body {
    gap: 8px;
    padding: 14px;
  }

  .aw-homepage .facebook-feed-tag-row .aw-news-tag {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.7rem;
  }

  .aw-homepage .facebook-feed-text {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .aw-homepage .review-control {
    min-height: 38px;
    padding: 0 14px;
  }

  .aw-homepage .landing-address-card {
    align-items: flex-start;
    gap: 12px;
  }

  .aw-homepage .landing-photo-panel {
    min-height: clamp(280px, 68vw, 380px);
  }

  .aw-homepage .landing-office-photo {
    min-height: clamp(280px, 68vw, 380px);
    height: clamp(280px, 68vw, 380px);
  }

  .aw-homepage .landing-map-panel,
  .aw-homepage .landing-map-panel .google-map {
    min-height: 360px;
  }

  .aw-homepage .landing-map-panel {
    min-height: clamp(360px, 78vw, 480px);
  }

  .aw-homepage .landing-map-panel .google-map {
    height: clamp(360px, 78vw, 480px);
  }

  .aw-homepage .facebook-activity-point {
    padding: 14px 16px;
  }

  .aw-homepage .facebook-activity-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .aw-homepage .facebook-activity-embed-wrap,
  .aw-homepage .facebook-page-embed {
    min-height: 500px;
    height: 500px;
  }

  .aw-homepage .contact-start,
  .aw-homepage .contact-tile {
    gap: 10px;
  }

  .aw-homepage .contact-start h2 {
    font-size: 1.6rem;
  }

  .aw-homepage .contact-start p,
  .aw-homepage .contact-tile p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .aw-homepage .section-link-row {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-homepage .aw-hero-image img,
  .aw-homepage .aw-hero-content > *,
  .aw-homepage .aw-hero-trust div {
    animation: none !important;
  }

  .aw-homepage .section-heading,
  .aw-homepage .feature-card,
  .aw-homepage .process-step,
  .aw-homepage .testimonial,
  .aw-homepage .customer-photo-card,
  .aw-homepage .cta-panel,
  .aw-homepage .map-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.hero {
  min-height: 600px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #eef7ff 55%, #f8fbfd 100%);
}

.hero-marketing {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background: url("../images/Hero_section_background_2.jpg") center top / contain no-repeat;
}

.hero-marketing .hero-grid {
  min-height: calc(100vh - 94px);
  grid-template-columns: minmax(0, 1.36fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 4vw, 72px);
  padding-block: clamp(52px, 8vh, 104px);
}

.hero-marketing .hero-copy {
  grid-column: 2;
  width: min(100%, 520px);
  justify-self: start;
  gap: 10px;
  transform: translate(170px, 120px);
}

.hero-brand-mark {
  width: min(100%, 300px);
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.hero-marketing .hero h1,
.hero-marketing h1 {
  max-width: 520px;
  color: #071633;
  font-size: clamp(2.7rem, 4.15vw, 4.2rem);
  line-height: 1.12;
}

.hero-marketing .lead {
  max-width: 470px;
  color: #4d5b70;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-marketing .hero-actions {
  display: grid;
  width: min(100%, 370px);
  gap: 16px;
  margin-top: 12px;
}

.hero-line-button,
.hero-outline-button {
  width: 100%;
  min-height: 60px;
  justify-content: center;
  font-size: 1.05rem;
  transform: translate(50px, 0);
}

.hero-outline-button span {
  font-size: 1.7rem;
  line-height: 1;
}

.line-bubble {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  color: #0b79da;
  font-size: 0.63rem;
  font-weight: 900;
}
.hero-grid,
.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.hero-copy,
.page-copy {
  display: grid;
  gap: 22px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 3.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span,
.accent-text {
  color: var(--primary);
}

.lead {
  margin: 0;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.trust-item:last-child {
  border-right: 0;
}

.hero-panel,
.visual-panel,
.contact-panel,
.form-panel,
.map-panel {
  border: 1px solid rgba(198, 215, 223, 0.6);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(22px, 4vw, 36px);
}

.hero-panel > p {
  margin: 4px 0 0;
  color: var(--ink-muted);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  color: var(--ink);
  font-weight: 800;
  background: #fff;
}

.quick-link:hover,
.quick-link:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  background: #f5fcff;
}

.quick-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.quick-link.detailed {
  min-height: 88px;
  align-items: flex-start;
}

.quick-link.detailed strong,
.quick-link.detailed small {
  display: block;
}

.quick-link.detailed small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 0;
  line-height: 0;
  font-weight: 900;
}

.icon-box svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-box.small svg {
  width: 16px;
  height: 16px;
}

.icon-box.small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.75rem;
}

.icon-box.light-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.split-copy h2,
.content-block h2 {
  margin: 0 0 12px;
  font-size: 2.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.content-block p {
  margin: 0;
  color: var(--ink-soft);
}

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

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

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

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

.card,
.feature-card,
.price-card,
.testimonial,
.faq-card {
  border: 1px solid rgba(198, 215, 223, 0.58);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.card,
.feature-card,
.price-card,
.testimonial {
  padding: 26px;
}

.card:hover,
.feature-card:hover,
.price-card:hover {
  box-shadow: var(--shadow-hover);
}

.card h3,
.feature-card h3,
.price-card h3,
.testimonial h3 {
  margin: 18px 0 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.compact-feature h3 {
  min-height: 3.2rem;
  display: flex;
  align-items: flex-start;
}

.card p,
.feature-card p,
.price-card p,
.testimonial p {
  margin: 0;
  color: var(--ink-soft);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 620px;
}

.service-card .icon-box {
  margin-inline: auto;
}

.service-card h3 {
  width: 100%;
  min-height: 7.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.service-card p {
  flex: 1 1 auto;
  width: 100%;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.service-card-cta::after {
  width: 14px;
  height: 14px;
  content: "";
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
}

@media (max-width: 900px) {
  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    min-height: auto;
  }

  .compact-feature h3 {
    min-height: auto;
  }
}

.compact-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 100%;
}

.compact-feature .icon-box {
  margin-top: 2px;
  flex: 0 0 42px;
}

.compact-feature h3 {
  margin-top: 0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.check-list {
  --check-icon-color: var(--primary);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 18px;
  height: 18px;
  background-color: var(--check-icon-color);
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22lucide%20lucide-badge-check-icon%20lucide-badge-check%22%3E%3Cpath%20d%3D%22M3.85%208.62a4%204%200%200%201%204.78-4.77%204%204%200%200%201%206.74%200%204%204%200%200%201%204.78%204.78%204%204%200%200%201%200%206.74%204%204%200%200%201-4.77%204.78%204%204%200%200%201-6.75%200%204%204%200%200%201-4.78-4.77%204%204%200%200%201%200-6.76Z%22%2F%3E%3Cpath%20d%3D%22m9%2012%202%202%204-4%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22lucide%20lucide-badge-check-icon%20lucide-badge-check%22%3E%3Cpath%20d%3D%22M3.85%208.62a4%204%200%200%201%204.78-4.77%204%204%200%200%201%206.74%200%204%204%200%200%201%204.78%204.78%204%204%200%200%201%200%206.74%204%204%200%200%201-4.77%204.78%204%204%200%200%201-6.75%200%204%204%200%200%201-4.78-4.77%204%204%200%200%201%200-6.76Z%22%2F%3E%3Cpath%20d%3D%22m9%2012%202%202%204-4%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
}

.light-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  --check-icon-color: #3aa6cc;
}

.band {
  background: var(--primary);
  color: rgba(51, 255, 0, 0.78);
}

.band .lead,
.band p {
  color: rgba(255, 255, 255, 0.86);
}

.offer-box {
  width: min(100%, 900px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 44px);
  text-align: center;
}

.offer-box h2,
.cta-panel h2 {
  margin: 8px 0 12px;
  font-size: 2.6rem;
  line-height: 1.15;
}

.split-copy {
  display: grid;
  gap: 18px;
}

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

.stat,
.process-step {
  display: grid;
  gap: 10px;
}

.process-step {
  position: relative;
  padding: 30px 22px 24px;
  border: 1px solid rgba(23, 142, 189, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 253, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(11, 63, 86, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 142, 189, 0.12), rgba(23, 142, 189, 0));
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 142, 189, 0.28);
  box-shadow: 0 22px 44px rgba(11, 63, 86, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 249, 252, 1) 100%);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #2da2eb 100%);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 14px 26px rgba(23, 142, 189, 0.22);
  border: 4px solid rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  color: #0b3f56;
  font-size: 22px;
  line-height: 1.15;
}

.process-step p {
  color: #4a6b7a;
  line-height: 1.7;
}

.process-line {
  counter-reset: process-step;
}

.process-step {
  counter-increment: process-step;
}

.testimonial .stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.testimonial .stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbc04;
  flex: 0 0 auto;
}

.testimonial .review-source {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-pagination {
  display: grid;
  gap: 22px;
}

.carousel-viewport {
  --carousel-gap: 24px;
  --carousel-card-width: calc((min(100vw - (var(--gutter) * 2), var(--max)) - 48px) / 3);
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-track,
.cards-grid.carousel-track,
.cards-grid.three.carousel-track,
.aw-news-grid.carousel-track {
  display: flex;
  gap: 0;
  grid-template-columns: none;
  width: max-content;
}

.carousel-track.is-infinite {
  animation: carouselInfinite 1s linear infinite;
}

@keyframes carouselInfinite {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.carousel-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--carousel-gap);
  padding-right: var(--carousel-gap);
}

.carousel-group > * {
  flex: 0 0 var(--carousel-card-width);
  width: var(--carousel-card-width);
  backface-visibility: hidden;
}

.carousel-group .testimonial,
.carousel-group .customer-photo-card,
.carousel-group .aw-news-card {
  height: 100%;
}

.review-grid [hidden],
.aw-news-grid [hidden],
.customer-photo-grid [hidden] {
  display: none !important;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider-bar {
  position: relative;
  width: min(220px, 100%);
  height: 8px;
  border-radius: 999px;
  background: rgba(124, 205, 235, 0.22);
  overflow: hidden;
  cursor: pointer;
  touch-action: none;
}

.slider-bar-thumb {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-bright) 100%);
  will-change: transform;
}

.review-pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-control,
.review-page-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.review-page-button {
  width: 40px;
  padding: 0;
}

.review-control:hover:not(:disabled),
.review-control:focus-visible:not(:disabled),
.review-page-button:hover,
.review-page-button:focus-visible,
.review-page-button[aria-current="true"] {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.review-control:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.review-status {
  margin: -8px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  text-align: center;
}

.customer-photo-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.customer-photo-card img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

.customer-photo-grid {
  gap: 24px;
}

.faq-stack {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-hero .eyebrow {
  display: inline-flex;
  align-self: start;
  width: auto;
  max-width: max-content;
  white-space: nowrap;
  line-height: 1;
  text-transform: none;
  padding: 6px 12px;
  font-size: 0.76rem;
}

.faq-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(248, 251, 253, 0.86) 100%),
    var(--faq-hero-bg) center center / cover no-repeat;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.78) 100%);
}

.faq-hero .container {
  position: relative;
  z-index: 1;
}

.faq-hero-card {
  width: min(100%, 780px);
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(198, 215, 223, 0.72);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 58px rgba(11, 63, 86, 0.14);
}

.faq-hero-card h1 {
  max-width: 700px;
}

.faq-hero-card .lead {
  max-width: 700px;
}

.faq-hero-note {
  margin: 0;
  max-width: 700px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.faq-local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-topic-grid {
  margin-bottom: 28px;
}

.faq-topic-card {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
}

.faq-topic-card:hover,
.faq-topic-card:focus-visible {
  color: inherit;
}

.faq-topic-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.faq-accordion-grid {
  margin-top: 8px;
}

.faq-step {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.faq-question {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 1px;
}

details.faq-card {
  overflow: hidden;
}

details.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 76px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

details.faq-card summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
  margin-left: auto;
}

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

details.faq-card p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 18px 24px 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}

details.faq-card[open] {
  box-shadow: var(--shadow-hover);
}

.faq-cta-panel {
  max-width: 920px;
  margin: 0 auto;
}

.faq-cta-panel .cta-actions {
  justify-content: center;
}


.landing-map-section {
  background:#ffffff
}

.landing-map-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "photo"
    "map";
  gap: 24px;
  align-items: stretch;
}

.landing-map-copy {
  display: grid;
  gap: 14px;
  grid-area: copy;
}

.landing-map-copy h2 {
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.14;
}

.landing-map-copy > p {
  margin: 0;
  max-width: 580px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.landing-address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  padding: 16px 17px;
  box-shadow: var(--shadow);
}

.landing-address-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 0.78rem;
}

.landing-address-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.landing-address-card strong {
  color: var(--ink);
}

.landing-photo-panel {
  grid-area: photo;
  min-height: 400px;
  border: 1px solid rgba(198, 215, 223, 0.58);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.landing-office-photo {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.landing-map-panel {
  grid-area: map;
  min-height: 400px;
  border-radius: 22px;
}

.landing-map-panel .google-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

@media (min-width: 901px) {
  .aw-homepage .landing-map-layout,
  .landing-map-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
      "copy photo"
      "map map";
    gap: clamp(28px, 5vw, 64px);
    align-items: stretch;
  }

  .aw-homepage .landing-photo-panel,
  .landing-photo-panel,
  .aw-homepage .landing-map-panel,
  .landing-map-panel {
    min-height: 400px;
  }

  .aw-homepage .landing-office-photo,
  .landing-office-photo,
  .aw-homepage .landing-map-panel .google-map,
  .landing-map-panel .google-map {
    min-height: 400px;
  }
}

.cta-panel {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--footer) 0%, var(--footer-soft) 100%);
  border: 1px solid rgba(124, 205, 235, 0.28);
  box-shadow: 0 20px 48px rgba(11, 63, 86, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
}

.about-page .cta-panel {
  display: grid;
  justify-items: center;
}

.cta-panel p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

.about-page .cta-actions {
  justify-content: center;
  width: 100%;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(248, 251, 253, 0) 0%, rgba(248, 251, 253, 0.56) 100%);
  backdrop-filter: blur(8px);
}

.cookie-banner__panel {
  width: min(1180px, calc(100% - 8px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(124, 205, 235, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f5fbfe 100%);
  box-shadow: 0 18px 44px rgba(11, 63, 86, 0.18);
  padding: 14px 16px;
}

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-deep);
  flex: 0 0 auto;
}

.cookie-banner__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.cookie-banner__eyebrow {
  margin: 0;
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--ink-soft);
}

.cookie-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner__links a {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-button {
  min-height: 44px;
}

.page-hero {
  padding: 68px 0;
  background: linear-gradient(135deg, #fff 0%, #eff7fb 100%);
}

.page-hero.stitched-hero {
  padding: 84px 0 64px;
}

.visual-panel {
  overflow: hidden;
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.policy-visual-card {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(23, 142, 189, 0.08) 0%, rgba(124, 205, 235, 0.18) 100%);
}

.policy-visual-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
}

.policy-visual-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.stitched-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.stitched-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(198, 215, 223, 0.68);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stitched-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}


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

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

.stitched-bento-card {
  min-width: 0;
  border: 1px solid rgba(198, 215, 223, 0.58);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stitched-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(23, 142, 189, 0.28);
}

.stitched-bento-card.featured {
  grid-column: span 7;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: 18px;
  align-items: center;
}

.stitched-bento-card.side {
  grid-column: span 5;
}

.stitched-bento-card.tall {
  grid-column: span 4;
}

.stitched-bento-visual {
  overflow: hidden;
  border-radius: 18px;
}

.stitched-bento-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.stitched-service-card {
  display: grid;
  gap: 14px;
}

.service-hub-grid .stitched-service-card {
  min-height: 100%;
}

.stitched-service-card .icon-box {
  margin-bottom: 2px;
}

.stitched-service-card h3 {
  margin-top: 0;
}

.stitched-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 22px;
}

.detail-note-card {
  padding: 24px;
  border: 1px solid rgba(198, 215, 223, 0.58);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-note-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.logo-showcase {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 36px;
}

.logo-showcase img {
  width: min(100%, 460px);
  border-radius: 18px;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-deep);
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  padding: clamp(28px, 5vw, 48px);
}

.pricing-highlight h2 {
  margin: 14px 0 2px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.pricing-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-scope {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.55fr);
  align-items: stretch;
}

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

.scope-grid .feature-card {
  text-align: center;
}

.scope-grid .icon-box {
  margin-inline: auto;
}

.price-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

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

.contact-stack {
  display: grid;
  gap: 22px;
}

.contact-panel,
.form-panel {
  padding: clamp(24px, 4vw, 34px);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}

address {
  font-style: normal;
}

.service-area {
  background: var(--primary);
  color: #fff;
}

.service-area p,
.service-area li {
  color: rgba(255, 255, 255, 0.88);
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.contact-start,
.contact-tile {
  min-height: 100%;
}

.contact-start {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.contact-start h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.18;
}

.contact-start p,
.contact-tile p {
  margin: 0;
}

.contact-tile {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 22px;
}

.contact-tile a {
  color: #fff;
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fcff;
  color: var(--ink);
  padding: 13px 14px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(56, 189, 248, 0.24);
}

.form-status {
  display: none;
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-radius: 16px;
  background: #ecfdf5;
  color: #134e4a;
  padding: 16px;
}

.form-status.is-visible {
  display: block;
}

.map-panel {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(198, 215, 223, 0.42) 1px, transparent 1px),
    linear-gradient(rgba(198, 215, 223, 0.42) 1px, transparent 1px),
    #e7eff4;
  background-size: 42px 42px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 14px;
}

.map-dot {
  width: 34px;
  height: 34px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 18px rgba(0, 99, 133, 0.1);
}

.map-label {
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  padding: 8px 14px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.map-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow);
}

.policy-nav a {
  border-radius: 12px;
  color: var(--ink-soft);
  padding: 10px 12px;
  font-weight: 800;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--primary);
}

.content-block {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(26px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.content-block section {
  scroll-margin-top: 120px;
}

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(150px, 0.7fr));
  gap: 36px;
  padding: 58px var(--gutter);
}

.footer-intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-brand {
  color: #fff;
  font-family: var(--font-logo-main);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-logo-card {
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.footer-logo-mark {
  color: var(--primary);
  font-family: var(--font-logo-main);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-grid p {
  color: rgba(217, 227, 232, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-cta-row {
  display: grid;
  gap: 8px;
}

.footer-cta-row a {
  color: var(--accent);
  font-weight: 800;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
}

.footer-links a {
  color: rgba(217, 227, 232, 0.74);
}

.footer-links span {
  color: rgba(217, 227, 232, 0.74);
}

.footer-contact-links {
  gap: 8px;
}

.footer-contact-links span {
  display: block;
  margin-top: 4px;
  line-height: 1.55;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(217, 227, 232, 0.14);
  padding: 20px var(--gutter);
  color: rgba(217, 227, 232, 0.64);
  font-size: 0.88rem;
}

.contact-widget {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-main,
.contact-option {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 14px 30px rgba(23, 142, 189, 0.22);
}

.contact-main {
  background: #178ebd;
  color: #fff;
  position: relative;
}

.contact-main:hover {
  background: #0b6f95;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(23, 142, 189, 0.3);
}

.contact-main svg,
.contact-option svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option .brand-icon {
  stroke: none;
  stroke-width: 0;
}

.contact-option .brand-image {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-main .icon-close {
  display: none;
}

.contact-toggle:checked ~ .contact-main .icon-message {
  display: none;
}

.contact-toggle:checked ~ .contact-main .icon-close {
  display: block;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: 0.25s ease;
}

.contact-toggle:checked ~ .contact-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-option {
  background: #fff;
  color: #178ebd;
  border: 1px solid #d4e3ea;
}

.contact-option:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px rgba(23, 142, 189, 0.26);
}

.contact-option.phone {
  background: #0b3f56;
  color: #fff;
}

.contact-option.line {
  background: linear-gradient(180deg, #f9fffb 0%, #ebfaf1 100%);
  color: #06c755;
  border-color: rgba(6, 199, 85, 0.24);
}

.contact-option.line:hover {
  box-shadow: 0 18px 40px rgba(6, 199, 85, 0.28);
}

.contact-option.line .brand-icon {
  width: 30px;
  height: 30px;
}

.contact-option.line .brand-image {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.12);
}

.contact-option.facebook {
  background: linear-gradient(180deg, #2d7cff 0%, #0866ff 100%);
  color: #fff;
  border-color: rgba(8, 102, 255, 0.42);
}

.contact-option.facebook:hover {
  box-shadow: 0 18px 40px rgba(8, 102, 255, 0.28);
}

.contact-option.facebook .brand-icon {
  fill: currentColor;
  stroke: none;
}

.contact-option.email {
  background: #e5f7fc;
  color: #0b6f95;
}

.contact-option.location {
  background: #fff;
  color: #178ebd;
}

@media (max-width: 900px) {
  .hero-marketing {
    background-position: 37% top;
  }

  .hero-marketing .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-marketing .hero-copy {
    grid-column: 1;
    max-width: 620px;
    padding: 22px;
    border: 1px solid rgba(198, 215, 223, 0.66);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 55px rgba(11, 111, 149, 0.14);
  }

  .stitched-hero-grid,
  .stitched-detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 12px;
  }

  .nav-phone-link {
    font-size: 0.78rem;
    padding-inline: 10px 12px;
  }

  .carousel-viewport {
    --carousel-card-width: calc((min(100vw - (var(--gutter) * 2), var(--max)) - 24px) / 2);
  }

  .cards-grid,
  .cards-grid.five,
  .stats-grid,
  .process-grid,
  .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-scope,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-tile {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 18px;
  }

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

@media (max-width: 880px) {
  :root {
    --gutter: 18px;
  }

  .site-header {
    position: sticky;
  }

  .desktop-nav,
  .nav-contact-cluster,
  .header-actions .button {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    height: auto;
    min-height: 68px;
    padding-block: 8px;
    column-gap: 12px;
  }

  .mobile-nav {
    min-height: calc(100vh - 74px);
    max-height: calc(100vh - 74px);
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(11, 63, 86, 0.08);
  }

  .hero {
    min-height: auto;
    padding: 54px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.8rem;
  }

  .section-heading h2,
  .split-copy h2,
  .content-block h2,
  .offer-box h2,
  .cta-panel h2 {
    font-size: 2.1rem;
  }

  .price-number {
    font-size: 3rem;
  }

  .hero-grid,
  .split-grid,
  .contact-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
  }

  .policy-nav {
    position: static;
  }

  .pricing-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero.stitched-hero {
    padding: 56px 0 40px;
  }

  .stitched-hero-grid {
    gap: 20px;
    align-items: start;
  }

  .stitched-hero-visual {
    border-radius: 20px;
  }

  .stitched-hero-visual img {
    aspect-ratio: 4 / 2.8;
  }

  .stitched-bento-grid {
    gap: 14px;
  }

  .stitched-bento-card {
    padding: 20px;
    border-radius: 20px;
  }

  .stitched-bento-card.featured,
  .stitched-bento-card.side,
  .stitched-bento-card.tall {
    grid-column: 1 / -1;
  }

  .stitched-bento-card.featured {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stitched-bento-visual {
    border-radius: 16px;
  }

  .stitched-bento-visual img {
    aspect-ratio: 4 / 2.6;
  }

  .stitched-detail-grid {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    grid-template-columns: auto auto;
    gap: 10px;
    height: auto;
    min-height: 62px;
    padding-block: 6px;
  }

  .mobile-nav {
    min-height: calc(100vh - 68px);
    max-height: calc(100vh - 68px);
  }

  .mobile-nav .container {
    gap: 10px;
    padding-block: 12px calc(22px + env(safe-area-inset-bottom));
  }

  .brand-text {
    max-width: 190px;
    font-size: 1rem;
  }

  .brand-logo {
    max-width: 152px;
    height: 40px;
  }

  .carousel-viewport {
    --carousel-card-width: calc(100vw - (var(--gutter) * 2));
  }

  .quick-grid,
  .cards-grid,
  .cards-grid.three,
  .cards-grid.five,
  .cards-grid.two,
  .stats-grid,
  .process-grid,
  .scope-grid,
  .light-list,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-hub-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-row {
    gap: 10px;
  }

  .hero-actions,
  .cta-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-nav .nav-link,
  .mobile-nav-group summary {
    min-height: 50px;
    font-size: 0.95rem;
  }

  .mobile-nav-group > a,
  .mobile-nav-group .nav-link {
    padding: 11px 14px 11px 18px;
    font-size: 0.92rem;
  }

  .nav-lang-switch-mobile {
    margin-top: 2px;
  }

  .button,
  .button-secondary,
  .button-light,
  .button-dark {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .aw-news-media img {
    height: 180px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .section-heading h2,
  .split-copy h2,
  .content-block h2,
  .offer-box h2,
  .cta-panel h2 {
    font-size: 1.8rem;
  }

  .page-hero.stitched-hero {
    padding: 42px 0 26px;
  }

  .page-hero.stitched-hero .page-copy {
    display: grid;
    gap: 14px;
  }

  .page-hero.stitched-hero .eyebrow {
    width: fit-content;
    min-height: 30px;
    padding-inline: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .page-hero.stitched-hero h1 {
    font-size: 1.95rem;
    line-height: 1.06;
  }

  .page-hero.stitched-hero .lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .page-hero.stitched-hero .inline-actions {
    gap: 10px;
  }

  .page-hero.stitched-hero .aw-hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: none !important;
    margin-top: 2px;
  }

  .page-hero.stitched-hero .aw-hero-trust div {
    min-height: 84px;
    padding: 14px 12px;
    border-radius: 16px;
    gap: 4px;
  }

  .page-hero.stitched-hero .aw-hero-trust div:last-child {
    grid-column: 1 / -1;
  }

  .page-hero.stitched-hero .aw-hero-trust strong {
    font-size: 0.92rem;
  }

  .page-hero.stitched-hero .aw-hero-trust span {
    font-size: 0.78rem;
  }

  .stitched-hero-grid {
    gap: 16px;
  }

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

  .stitched-hero-visual img {
    aspect-ratio: 4 / 2.7;
  }

  .stitched-bento-grid {
    gap: 12px;
  }

  .stitched-bento-card,
  .stitched-bento-card.featured,
  .stitched-bento-card.side,
  .detail-note-card {
    padding: 18px;
    border-radius: 18px;
  }

  .stitched-service-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon body";
    align-items: start;
    column-gap: 12px;
    row-gap: 4px;
    padding: 16px 16px 15px;
  }

  .stitched-service-card .icon-box {
    grid-area: icon;
    margin: 2px 0 0;
  }

  .stitched-service-card h3 {
    grid-area: title;
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
  }

  .stitched-service-card p {
    grid-area: body;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .service-hub-grid .stitched-service-card,
  .stitched-bento-card.tall {
    min-height: 0;
  }

  .stitched-bento-card.featured {
    gap: 14px;
  }

  .stitched-bento-visual {
    border-radius: 14px;
  }

  .stitched-bento-visual img {
    aspect-ratio: 4 / 2.5;
  }

  .service-tabs {
    gap: 8px;
    margin-top: 16px;
  }

  .pill {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 0.79rem;
  }

  .stitched-detail-grid {
    gap: 14px;
  }

  .detail-note-card h3 {
    font-size: 1rem;
  }

  .price-number {
    font-size: 2.45rem;
  }

  .section-tight {
    padding: 42px 0;
  }

  .map-action {
    left: 18px;
    right: 18px;
  }

  .contact-widget {
    right: 16px;
    bottom: 20px;
  }

  .contact-main,
  .contact-option {
    width: 52px;
    height: 52px;
  }

  .contact-main svg,
  .contact-option svg {
    width: 21px;
    height: 21px;
  }

  .cookie-banner {
    padding: 10px;
  }

  .cookie-banner__panel {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    padding: 14px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-button {
    width: 100%;
  }
}
.map-panel {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.google-map {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
