:root {
  --navy: #082e57;
  --navy-2: #0d416f;
  --blue: #116b9a;
  --aqua: #dff3f6;
  --aqua-2: #eef9fa;
  --sand: #f3d98f;
  --sand-soft: #fff8e8;
  --ink: #102a42;
  --muted: #5d7081;
  --line: #dce7ec;
  --surface: #ffffff;
  --off-white: #f7fbfc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 96px;
  padding: 12px clamp(24px, 5vw, 84px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  max-width: 100%;
  min-width: 0;
  width: fit-content;
}

.brand-logo {
  align-items: center;
  background: white;
  border: 1px solid #d7e3e8;
  border-radius: 50%;
  display: flex;
  height: 68px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 68px;
}

.brand-logo img {
  height: auto;
  left: 50%;
  max-width: none;
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  width: 260px;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-name {
  color: var(--navy);
  display: block;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-wordmark {
  font-weight: 700;
}

.brand-owner {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-accent {
  color: #0b78a8;
  font-weight: 800;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.site-header nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 0;
  position: relative;
}

.site-header nav a::after {
  background: var(--blue);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  justify-self: end;
  padding: 11px 16px;
  transition: border-color 160ms ease, background 160ms ease;
}

.header-contact:hover {
  background: var(--aqua-2);
  border-color: #aacbd8;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1500px;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(76px, 8vw, 128px) clamp(24px, 7vw, 110px) 64px;
  position: relative;
}

.hero::before {
  background: linear-gradient(145deg, var(--aqua-2), white 68%);
  border-radius: 48% 52% 45% 55% / 54% 38% 62% 46%;
  content: "";
  height: 610px;
  position: absolute;
  right: -90px;
  top: 54px;
  width: 720px;
  z-index: -2;
}

.hero-copy {
  align-self: center;
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(50px, 5.8vw, 84px);
  letter-spacing: -0.055em;
  line-height: 0.99;
  margin: 0;
  max-width: 760px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-intro {
  color: #435f75;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.62;
  margin: 30px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(17, 107, 154, 0.2);
  color: white;
}

.button-primary:hover {
  background: var(--navy-2);
  box-shadow: 0 15px 30px rgba(8, 46, 87, 0.24);
}

.button-secondary {
  background: white;
  border: 1.5px solid var(--blue);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--aqua-2);
}

.trust-row {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 650px;
  width: 100%;
}

.trust-row span {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  margin: 0;
  min-width: 0;
  padding: 0 clamp(8px, 1.5vw, 20px);
}

.trust-row span:first-child {
  justify-content: flex-start;
  padding-left: 0;
}

.trust-row span:last-child {
  border-right: 0;
  justify-content: flex-end;
  padding-right: 0;
}

.trust-row svg {
  color: var(--blue);
  height: 21px;
  width: 21px;
}

.hero-watermark {
  bottom: 76px;
  height: 210px;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  right: 4%;
  width: 180px;
  z-index: -1;
}

.lighthouse {
  background: var(--navy);
  bottom: 8px;
  clip-path: polygon(37% 0, 63% 0, 76% 100%, 24% 100%);
  height: 105px;
  left: 66px;
  position: absolute;
  width: 48px;
}

.lighthouse::before {
  background: var(--sand);
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  top: 35px;
  width: 100%;
}

.lighthouse i {
  background: var(--navy);
  border-radius: 14px 14px 3px 3px;
  height: 25px;
  left: 7px;
  position: absolute;
  top: -19px;
  width: 34px;
}

.lighthouse-beam {
  border-bottom: 32px solid transparent;
  border-left: 150px solid var(--sand);
  border-top: 32px solid transparent;
  height: 0;
  left: -52px;
  position: absolute;
  top: 41px;
  transform: rotate(9deg);
  width: 0;
}

.maritime-divider {
  height: 56px;
  overflow: hidden;
  position: relative;
}

.maritime-divider::before,
.maritime-divider::after,
.maritime-divider span {
  border-radius: 50%;
  content: "";
  height: 110px;
  left: -5%;
  position: absolute;
  top: 28px;
  width: 110%;
}

.maritime-divider::before {
  background: var(--aqua-2);
}

.maritime-divider::after {
  border-top: 2px solid #b8dfe8;
  top: 17px;
}

.maritime-divider span {
  border-top: 1px solid #d8b762;
  left: 8%;
  top: 39px;
  width: 95%;
}

.section {
  margin: 0 auto;
  max-width: 1440px;
  padding: 110px clamp(24px, 6vw, 92px);
}

.services-section {
  padding-top: 72px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 54px;
}

.services-section .section-heading {
  align-items: start;
  gap: 28px;
  grid-template-columns: 1fr;
}

.services-section .section-summary {
  max-width: 940px;
}

.section-heading h2,
.about-intro h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

.section-summary {
  display: grid;
  gap: 14px;
}

.section-summary > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.section-summary .service-exclusion {
  border-left: 3px solid #8fc2d3;
  color: #435f75;
  font-size: 15px;
  padding-left: 14px;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 360px;
  padding: 30px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #a9cedb;
  box-shadow: 0 18px 44px rgba(8, 46, 87, 0.1);
  transform: translateY(-4px);
}

.icon-box {
  align-items: center;
  background: var(--aqua);
  border-radius: 13px;
  color: var(--blue);
  display: flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.icon-box svg {
  height: 27px;
  width: 27px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 24px 0 13px;
}

.service-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
  margin: 0;
  min-height: 76px;
}

.service-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.service-card li,
.price-card li {
  align-items: center;
  color: #385268;
  display: flex;
  font-size: 13px;
  gap: 9px;
}

.service-card li svg,
.price-card li svg {
  color: var(--blue);
  height: 16px;
  min-width: 16px;
  stroke-width: 3px;
  width: 16px;
}

.about-section {
  align-items: start;
  background: var(--navy);
  border-radius: 32px;
  color: white;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 0.88fr 1.12fr;
  margin-bottom: 72px;
  max-width: min(1320px, calc(100% - 48px));
}

.about-section .eyebrow {
  color: #8fd5e4;
}

.about-intro h2 {
  color: white;
}

.about-story-copy p {
  color: #c9dae5;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.about-story-copy p + p {
  margin-top: 28px;
}

.about-story {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  margin-top: 32px;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  aspect-ratio: 517 / 768;
  border: 3px solid rgba(143, 213, 228, 0.55);
  border-radius: 22px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about-portrait figcaption {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.about-portrait figcaption strong {
  color: white;
  font-size: 14px;
}

.about-portrait figcaption span {
  color: #9fc3d6;
  font-size: 11px;
  line-height: 1.4;
}

.text-link {
  align-items: center;
  color: var(--sand);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  margin-top: 18px;
}

.principle-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

.principle-grid article {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  padding: 24px;
}

.principle-grid article > svg {
  color: var(--sand);
  height: 28px;
  width: 28px;
}

.principle-grid h3 {
  font-size: 16px;
  margin: 16px 0 8px;
}

.principle-grid p {
  color: #c9dae5;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.pricing-section {
  padding-bottom: 64px;
  padding-top: 90px;
}

.service-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr) 0.9fr;
}

.price-card,
.price-facts {
  border: 1px solid var(--line);
  border-radius: 21px;
  padding: 32px;
}

.price-card.featured {
  border-color: #8fc2d3;
  box-shadow: inset 0 5px 0 var(--blue);
}

.price-label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

.price {
  align-items: baseline;
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.price strong {
  color: var(--navy);
  font-size: 52px;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--muted);
  font-size: 14px;
}

.price-facts {
  background: var(--sand-soft);
  border-color: #efdb9f;
}

.price-facts h3 {
  color: var(--navy);
  font-size: 20px;
  margin: 0 0 22px;
}

.price-facts > div {
  align-items: flex-start;
  display: flex;
  gap: 13px;
  margin-top: 18px;
}

.price-facts svg {
  color: #9a6a00;
  height: 21px;
  min-width: 21px;
  width: 21px;
}

.price-facts span {
  color: #776336;
  display: grid;
  font-size: 12px;
  gap: 4px;
  line-height: 1.5;
}

.price-facts strong {
  color: var(--ink);
  font-size: 13px;
}

.payment-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.payment-row > svg {
  color: var(--blue);
  margin-right: 3px;
}

.payment-row strong {
  color: var(--navy);
  font-size: 13px;
}

.payment-row span {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  padding: 7px 11px;
}

.price-footnote {
  color: #758696;
  font-size: 11px;
  line-height: 1.5;
  margin: 18px 0 0;
}

.contact-section {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  padding: 100px max(24px, calc((100vw - 1260px) / 2));
  position: relative;
}

.contact-section::after {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  height: 460px;
  position: absolute;
  right: -170px;
  top: -170px;
  width: 460px;
}

.contact-section .eyebrow {
  color: var(--sand);
}

.contact-copy {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  color: #d4e6ee;
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-light {
  background: white;
  color: var(--navy);
}

.button-whatsapp {
  background: #25d366;
  color: #073d26;
  min-height: 64px;
}

.button-whatsapp:hover {
  background: #47de7d;
}

.button-whatsapp-copy {
  display: grid;
  gap: 2px;
  line-height: 1.15;
  text-align: left;
}

.button-whatsapp-copy small {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.82;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}

.contact-note {
  border-left: 3px solid var(--sand);
  font-size: 13px !important;
  margin-top: 34px;
  padding-left: 17px;
}

.button-facebook {
  background: #1877f2;
  color: white;
  margin-top: 28px;
}

.button-facebook:hover {
  background: #0f68d8;
}

.remote-downloads-section {
  align-items: center;
  background: white;
  display: grid;
  gap: clamp(32px, 7vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  padding: 72px max(24px, calc((100vw - 1260px) / 2));
}

.remote-downloads-copy h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 12px 0 18px;
}

.remote-downloads-copy > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.remote-download-links {
  display: grid;
  gap: 12px;
}

.remote-download-links > a {
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.remote-download-links > a:hover,
.remote-download-links > a:focus-visible {
  background: var(--aqua-2);
  border-color: #9bc7d6;
  transform: translateY(-2px);
}

.remote-download-links span {
  display: grid;
  gap: 4px;
}

.remote-download-links strong {
  font-size: 18px;
}

.remote-download-links small {
  color: var(--muted);
  font-size: 12px;
}

.remote-download-links svg {
  color: var(--blue);
  height: 24px;
  width: 24px;
}

.facebook-mark {
  align-items: flex-end;
  background: white;
  border-radius: 50%;
  color: #1877f2;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  line-height: 25px;
  overflow: hidden;
  width: 28px;
}

footer {
  align-items: center;
  background: #061f39;
  color: #c2d5df;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  padding: 48px max(24px, calc((100vw - 1260px) / 2));
}

.legal-page {
  background: var(--off-white);
}

.legal-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(223, 243, 246, 0.95), transparent 34%),
    linear-gradient(145deg, white, var(--aqua-2));
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 8vw, 112px) clamp(24px, 7vw, 110px);
}

.legal-hero > div,
.legal-section {
  margin: 0 auto;
  max-width: 1040px;
}

.legal-hero h1 {
  color: var(--navy);
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 18px 0 20px;
}

.legal-hero p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.legal-section {
  padding: 42px 24px clamp(72px, 9vw, 120px);
}

.legal-back-link {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 24px;
}

.legal-back-link:hover,
.legal-content a:hover {
  text-decoration: underline;
}

.legal-content {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(8, 46, 87, 0.08);
  color: #2f4659;
  font-size: 16px;
  line-height: 1.75;
  padding: clamp(28px, 5vw, 64px);
}

.legal-content > :first-child,
.privacy-copy > :first-child {
  margin-top: 0;
}

.legal-content > :last-child,
.privacy-copy > :last-child {
  margin-bottom: 0;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-content h1 {
  display: none;
}

.legal-content h2 {
  border-top: 1px solid var(--line);
  font-size: clamp(24px, 3vw, 32px);
  margin: 48px 0 18px;
  padding-top: 38px;
}

.legal-content h3 {
  font-size: 19px;
  margin: 30px 0 10px;
}

.legal-content p,
.legal-content ul,
.legal-content address {
  margin: 0 0 18px;
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: var(--blue);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(17, 107, 154, 0.35);
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 7px;
}

.privacy-copy .index {
  background: var(--aqua-2);
  border-radius: 14px;
  padding: 24px 28px 24px 48px;
}

.privacy-copy .seal {
  border-top: 1px solid var(--line);
  font-size: 13px;
  margin-top: 42px;
  padding-top: 24px;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: white;
  font-size: 22px;
}

.footer-brand span {
  font-size: 11px;
}

.footer-links {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: 18px;
}

.footer-links a:hover {
  color: white;
}

.footer-links svg {
  height: 18px;
  width: 18px;
}

.copyright {
  color: #7891a0;
  font-size: 10px;
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header nav {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-facts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    min-height: 80px;
    padding: 10px 20px;
  }

  .brand-logo {
    height: 54px;
    width: 54px;
  }

  .brand-logo img {
    top: -8px;
    width: 207px;
  }

  .header-contact {
    font-size: 0;
    height: 44px;
    padding: 0;
    width: 44px;
  }

  .header-contact svg {
    margin: auto;
  }

  .hero {
    min-height: 0;
    padding-bottom: 52px;
    padding-top: 68px;
  }

  .hero::before {
    bottom: 20px;
    height: 520px;
    right: -300px;
    top: auto;
    width: 720px;
  }

  .section-heading,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 22px;
  }

  .about-section {
    margin-bottom: 30px;
  }

  .contact-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .trust-row {
    gap: 14px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row span {
    justify-content: flex-start;
    padding: 0 14px 0 0;
  }

  .trust-row span:nth-child(even) {
    border-right: 0;
    justify-content: flex-start;
    padding-left: 14px;
    padding-right: 0;
  }

  .trust-row span:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .remote-downloads-section {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 14px;
    max-width: 220px;
    white-space: normal;
  }

  .hero {
    min-height: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-content {
    border-radius: 16px;
    font-size: 15px;
    padding: 24px 20px;
  }

  .remote-downloads-section {
    padding: 58px 20px;
  }

  .privacy-copy .index {
    padding: 20px 20px 20px 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row span {
    border: 0;
    justify-content: flex-start;
    padding: 0;
  }

  .trust-row span:nth-child(even) {
    padding-left: 10px;
  }

  .section {
    padding: 82px 20px;
  }

  .pricing-section {
    padding-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-grid,
  .principle-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card > p {
    min-height: 0;
  }

  .about-section {
    border-radius: 22px;
    max-width: calc(100% - 24px);
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 190px;
  }

  .price-facts {
    grid-column: auto;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row span,
  .trust-row span:nth-child(even) {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.preview-banner { background:#fff3c4; border-bottom:1px solid #e1c76f; color:#5e4d12; font:700 12px/1.4 Arial,sans-serif; left:0; padding:8px 16px; position:sticky; text-align:center; top:0; z-index:100; }
.preview-banner + main .site-header { top:33px; }
