@font-face {
  font-family: "Galano";
  src: url("../fonts/GalanoGrotesqueRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Galano";
  src: url("../fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Galano";
  src: url("../fonts/GalanoGrotesqueBold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #003d64;
  --blue-2: #075b86;
  --orange: #fe7009;
  --grey: #788fa5;
  --ink: #102233;
  --muted: #607284;
  --line: #d9e3ea;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --green: #28745a;
  --shadow: 0 18px 42px rgba(0, 61, 100, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Galano, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--orange);
  color: #111;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img,
.footer-logo {
  width: min(230px, 48vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--ink);
}

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

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle i {
  color: var(--orange);
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.language-menu.is-open .language-toggle i {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 168px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.language-menu.is-open .language-options {
  display: grid;
  gap: 3px;
}

.language-options a {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  white-space: nowrap;
}

.language-options a:hover,
.language-options a[aria-current="true"] {
  background: var(--soft);
  color: var(--blue);
}

.language-options strong {
  color: var(--orange);
  font-size: 0.82rem;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.site-nav .nav-cta,
.button.primary {
  background: var(--orange);
  color: #fff;
}

.site-nav .nav-cta:hover,
.button.primary:hover {
  color: #fff;
}

.button.secondary {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 61, 100, 0.08), rgba(254, 112, 9, 0.08)),
    #f8fbfd;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 52px;
  padding: 64px 0;
}

.eyebrow,
.section-heading span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.75rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-intro,
.page-hero p,
.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li,
.value-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-form-heading {
  display: grid;
  gap: 8px;
}

.hero-form-heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.hero-form-heading h2 i {
  color: var(--orange);
  font-size: 0.9em;
}

.hero-form-heading p {
  margin: 0;
  color: var(--muted);
}

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

.hero-contact-form label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-contact-form input,
.hero-contact-form select,
.hero-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.hero-contact-form textarea {
  resize: vertical;
}

.hero-contact-form .button {
  width: 100%;
}

.hero-form-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-form-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
}

.hero-form-contact i {
  color: var(--orange);
  font-size: 0.9em;
}

.section {
  padding: 86px 0;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-top: 8px;
}

.step-grid,
.service-grid,
.comparison-grid,
.blog-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.step-card,
.service-card,
.comparison-card,
.blog-card,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 61, 100, 0.08);
}

.step-card img,
.service-card img,
.comparison-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  background: var(--soft);
}

.step-card img {
  aspect-ratio: 1.3 / 1;
  object-fit: contain;
  padding: 14px;
}

.service-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  padding: 14px;
}

.comparison-card img {
  aspect-ratio: 1.1 / 1;
  object-fit: contain;
  padding: 14px;
}

.step-body,
.service-card,
.comparison-card,
.blog-card {
  padding: 22px;
}

.step-body span {
  color: var(--orange);
  font-weight: 800;
}

.step-body h3,
.service-card h3,
.service-card h2,
.comparison-card h3,
.blog-card h2 {
  margin: 8px 0 10px;
}

.step-body h3 {
  font-size: 1.16rem;
}

.service-card h2,
.service-card h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.step-body p,
.service-card p,
.comparison-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

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

.service-card .text-link {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--orange);
  font-weight: 800;
}

.text-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 0.78em;
  font-weight: 900;
}

.service-card.large img {
  aspect-ratio: 1.5 / 1;
}

.page-hero {
  padding: 82px 0;
  background: linear-gradient(180deg, #f8fbfd, #fff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 20px;
}

.not-found {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 86px 0;
  background:
    linear-gradient(120deg, rgba(0, 61, 100, 0.08), rgba(254, 112, 9, 0.08)),
    #f8fbfd;
  border-bottom: 1px solid var(--line);
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 42px;
  align-items: center;
}

.not-found h1 {
  margin: 10px 0 18px;
}

.not-found p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.not-found-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.not-found-card strong {
  color: var(--orange);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.95;
}

.not-found-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.not-found-card i {
  color: var(--orange);
}

.about-hero {
  padding: 78px 0;
  background: linear-gradient(180deg, #f8fbfd, #fff);
  border-bottom: 1px solid var(--line);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.about-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-visual img,
.about-image-card img {
  width: 100%;
  background: var(--soft);
  object-fit: cover;
}

.about-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: start;
}

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

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-quote {
  margin: 0;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 24px;
  background: #fff7f1;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 61, 100, 0.08);
}

.about-quote i {
  color: var(--orange);
  font-size: 1.4rem;
}

.about-quote p {
  margin: 12px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.about-stat-grid,
.about-card-grid,
.about-method-grid,
.about-image-grid {
  display: grid;
  gap: 20px;
}

.about-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.about-stat,
.about-card,
.about-method,
.about-image-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 61, 100, 0.08);
}

.about-stat {
  padding: 20px;
}

.about-stat strong {
  color: var(--blue);
  font-size: 1.2rem;
}

.about-stat p,
.about-card p,
.about-method p,
.about-image-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.about-card,
.about-method {
  padding: 22px;
}

.about-card i {
  color: var(--orange);
  font-size: 1.45rem;
}

.about-card h2,
.about-method h2,
.about-image-card h2 {
  margin-top: 12px;
  font-size: 1.2rem;
}

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

.about-method span {
  color: var(--orange);
  font-weight: 800;
}

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

.about-image-card {
  overflow: hidden;
}

.about-image-card img {
  aspect-ratio: 1.62 / 1;
}

.about-image-card div {
  padding: 22px;
}

.service-detail-hero {
  padding: 78px 0;
  background: linear-gradient(180deg, #f8fbfd, #fff);
  border-bottom: 1px solid var(--line);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.service-detail-grid > div {
  min-width: 0;
}

.service-detail-grid h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-detail-grid .button {
  gap: 8px;
}

.service-detail-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-detail-visual img {
  width: 100%;
  background: var(--soft);
  object-fit: cover;
}

.service-quote {
  align-self: stretch;
}

.service-highlight-stack {
  display: grid;
  gap: 16px;
}

.about-card.compact {
  box-shadow: none;
}

.service-content-grid,
.service-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-text-block,
.deliverable-box,
.faq-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 61, 100, 0.08);
}

.service-text-block h2,
.deliverable-box h2,
.faq-box h2 {
  font-size: clamp(1.32rem, 2vw, 1.75rem);
}

.service-text-block p,
.deliverable-box p,
.faq-box p,
.service-process-list p,
.service-cta p {
  color: var(--muted);
}

.service-text-block p {
  margin: 14px 0 0;
}

.service-process-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.service-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.service-process-list span {
  color: var(--orange);
  font-weight: 800;
}

.service-process-list p {
  margin: 0;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.deliverable-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--blue);
  background: var(--soft);
  font-weight: 700;
}

.deliverable-list i {
  color: var(--orange);
}

.faq-box details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq-box details:first-of-type {
  margin-top: 12px;
}

.faq-box summary {
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

.faq-box p {
  margin: 10px 0 0;
}

.service-cta-band {
  padding: 48px 0;
  background: var(--blue);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-cta h2,
.service-cta p {
  color: #fff;
}

.service-cta h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.service-cta p {
  max-width: 650px;
  margin: 8px 0 0;
  opacity: 0.86;
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article {
  padding: 0;
}

.article-hero {
  padding: 78px 0;
  background: linear-gradient(180deg, #f8fbfd, #fff);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.article-hero-grid > div {
  min-width: 0;
}

.article h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.05rem, 4.1vw, 4rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.article p,
.article-copy p,
.article-section-block p {
  font-size: 1.08rem;
}

.article-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-visual img {
  width: 100%;
  background: var(--soft);
  object-fit: cover;
}

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

.article-copy p,
.article-section-block p {
  margin: 0;
  color: var(--muted);
}

.article-quote {
  align-self: stretch;
}

.article-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

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

.article-section-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 61, 100, 0.08);
}

.article-section-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
}

.article-section-block p + p {
  margin-top: 14px;
}

.legal-card-grid,
.legal-section-stack,
.legal-list-grid {
  display: grid;
  gap: 18px;
}

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

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

.legal-list-grid {
  grid-template-columns: 1fr;
}

.article-meta,
.blog-card time {
  color: var(--grey);
  font-size: 0.92rem;
  font-weight: 600;
}

.back-link {
  color: var(--orange);
  font-weight: 700;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: contain;
  padding: 14px;
  background: var(--soft);
}

.blog-card-body {
  display: grid;
  align-content: start;
  padding: 22px;
  min-height: 300px;
}

.blog-card-kicker {
  margin: 0 0 4px;
  color: var(--orange) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-card a {
  margin-top: 18px;
  font-weight: 700;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-box span,
.contact-box > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 700;
}

.contact-box span i,
.contact-box > a i {
  width: 16px;
  color: var(--orange);
  text-align: center;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.contact-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: 1.12rem;
  box-shadow: 0 8px 18px rgba(0, 61, 100, 0.08);
}

.contact-social-icons a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.form-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-card label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

.form-card input[type="file"] {
  padding: 9px;
  background: #fff;
}

.form-card input[type="file"]::file-selector-button {
  min-height: 36px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  margin-right: 12px;
  padding: 7px 12px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.form-card input[type="file"]::file-selector-button:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.hero-contact-form input:focus,
.hero-contact-form select:focus,
.hero-contact-form textarea:focus,
.nav-toggle:focus,
.language-toggle:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(254, 112, 9, 0.42);
  outline-offset: 2px;
}

.check {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--ink) !important;
}

.check input {
  width: 18px;
  margin-top: 4px;
}

.hp {
  position: absolute;
  left: -100vw;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-message {
  margin: 0;
  border-radius: 6px;
  padding: 12px;
  font-weight: 700;
}

.status-message.ok {
  background: rgba(40, 116, 90, 0.12);
  color: var(--green);
}

.status-message.error {
  background: rgba(254, 112, 9, 0.14);
  color: #8a3500;
}

.site-footer {
  background: var(--blue);
  color: #e8f1f6;
}

.footer-grid {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.12fr 1fr 1.05fr 0.72fr;
  gap: 26px;
}

.footer-grid a {
  color: #fff;
}

.footer-grid p,
.footer-grid address {
  color: #c9d8e1;
  font-style: normal;
}

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

.footer-brand-block p {
  margin: 0;
}

.footer-address {
  display: grid;
  gap: 5px;
}

.footer-address strong,
.footer-address a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-address i {
  width: 14px;
  color: var(--orange);
  text-align: center;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 1.08rem;
}

.footer-social-icons a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

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

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

.footer-links a {
  line-height: 1.3;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #c9d8e1;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: #fff;
}

.co-fab-wrap {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  overflow: hidden;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.co-fab:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.co-wa {
  background: #25d366;
}

.co-call {
  background: #111827;
}

.co-fab img {
  width: 28px;
  height: 28px;
  display: block;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .co-fab-wrap {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .language-menu {
    padding-left: 0;
  }

  .language-toggle {
    width: 100%;
    justify-content: space-between;
    margin: 8px 0;
  }

  .language-options {
    position: static;
    min-width: 0;
    margin-bottom: 8px;
    box-shadow: none;
  }

  .language-options a {
    padding: 10px 12px;
  }

  .hero-grid,
  .form-layout,
  .about-hero-grid,
  .about-content-grid,
  .service-detail-grid,
  .service-process-layout,
  .not-found-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .step-grid,
  .service-grid,
  .comparison-grid,
  .blog-grid,
  .footer-grid,
  .about-stat-grid,
  .about-card-grid,
  .about-method-grid,
  .about-image-grid,
  .service-content-grid,
  .service-extra-grid,
  .service-process-list,
  .article-highlight-grid,
  .legal-section-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1140px);
  }

  .hero-grid {
    min-height: auto;
    padding: 44px 0;
    gap: 28px;
  }

  .hero-panel {
    padding: 20px;
  }

  .section,
  .page-hero,
  .about-hero,
  .not-found,
  .article {
    padding: 54px 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .step-grid,
  .service-grid,
  .comparison-grid,
  .blog-grid,
  .footer-grid,
  .about-stat-grid,
  .about-card-grid,
  .about-method-grid,
  .about-image-grid,
  .service-content-grid,
  .service-extra-grid,
  .service-process-list,
  .article-highlight-grid,
  .legal-section-stack {
    grid-template-columns: 1fr;
  }

  .service-detail-hero {
    padding: 54px 0;
  }

  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .form-layout {
    gap: 24px;
  }
}
