:root {
  --navy: #061b38;
  --navy-2: #0d2748;
  --gold: #f5bd4f;
  --gold-dark: #d59a2b;
  --ink: #142033;
  --muted: #68758a;
  --line: #dde4ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --green: #23b85a;
  --green-dark: #178d43;
  --shadow: 0 16px 34px rgba(7, 27, 55, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  padding: 0 64px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 27, 56, 0.08);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 355px;
  background: var(--navy);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 64px;
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
  background: var(--navy);
  border: 4px solid var(--gold);
  clip-path: polygon(50% 0, 92% 15%, 88% 72%, 50% 100%, 12% 72%, 8% 15%);
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 36px;
  line-height: 0.95;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 36px 0 32px;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  background: var(--gold);
}

.menu-toggle,
.mobile-nav-actions {
  display: none;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.header-call small,
.footer-item small,
.contact-card small {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.85;
}

.header-call strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 21px;
}

.circle-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.circle-icon svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  min-height: 622px;
  color: var(--white);
  overflow: visible;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 21, 43, 0.88) 0%, rgba(7, 27, 55, 0.8) 42%, rgba(7, 27, 55, 0.45) 100%),
    linear-gradient(180deg, rgba(3, 13, 28, 0.28), rgba(3, 13, 28, 0.42));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-top: 76px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  width: min(850px, 100%);
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero h1 .hero-line {
  color: var(--white);
}

.hero-copy {
  width: min(650px, 100%);
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.65;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 128px;
  width: min(700px, 100%);
  height: 58px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-panel input {
  min-width: 0;
  padding: 0 24px;
  color: var(--ink);
  border: 0;
  outline: 0;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--navy);
  border: 0;
  cursor: pointer;
}

.search-button svg {
  width: 22px;
  height: 22px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 320px 280px;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  width: min(620px, 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn svg {
  width: 24px;
  height: 24px;
}

.btn-gold {
  color: var(--white);
  background: linear-gradient(180deg, #28c967, var(--green));
}

.btn-navy {
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.fee-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 4px;
  min-height: 56px;
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(245, 189, 79, 0.65);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fee-card span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.fee-card strong {
  color: var(--gold-dark);
  font-size: 24px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  background: rgba(7, 27, 55, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 106px;
  padding: 20px 28px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.trust-item svg {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: 6px;
  font-size: 15px;
  text-transform: uppercase;
}

.trust-item small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
}

.service-preview {
  padding: 52px 0 42px;
  background: var(--soft);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(5, 1fr);
  align-items: start;
  gap: 14px;
}

.video-teaser,
.service-card {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 27, 55, 0.12);
}

.video-teaser {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 202px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
}

.play-button {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

.play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
  fill: currentColor;
}

.video-teaser h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
}

.video-teaser p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.outline-button {
  width: max-content;
  min-height: 38px;
  padding: 0 28px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  cursor: pointer;
}

.service-card {
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(221, 228, 238, 0.75);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.service-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  color: transparent;
  background: var(--navy);
}

.service-card h3 {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin: 0;
  padding: 8px 10px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.service-card:hover,
.service-card.is-highlighted {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(7, 27, 55, 0.2);
}

.service-card.is-muted {
  opacity: 0.42;
}

.about-section,
.documents-section,
.brands-section,
.seo-links-section,
.video-section,
.reviews-section,
.contact-section {
  padding: 72px 0;
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 46px;
  align-items: center;
}

.section-kicker {
  color: var(--gold-dark);
  font-size: 14px;
}

.about-section h2,
.documents-section h2,
.brands-section h2,
.seo-links-section h2,
.video-section h2,
.reviews-section h2,
.contact-section h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.2;
}

.about-section p,
.documents-section p,
.reviews-section p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stats span {
  padding: 16px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.mini-stats strong {
  display: block;
  color: var(--gold-dark);
  font-size: 28px;
}

.about-panel {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.area-list li,
.brand-cloud span,
.brand-cloud strong {
  padding: 10px 14px;
  border-radius: 8px;
}

.area-list li {
  color: var(--navy);
  font-weight: 900;
  background: var(--gold);
}

.about-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.founder-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 27, 55, 0.1);
}

.founder-card img {
  width: 112px;
  height: 132px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.founder-card span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

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

.documents-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.document-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.document-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 27, 55, 0.08);
}

.document-card span {
  width: max-content;
  padding: 6px 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: var(--navy);
  border-radius: 6px;
}

.document-card strong {
  font-size: 22px;
}

.document-card small {
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
}

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

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.brand-cloud span,
.brand-cloud strong {
  border: 1px solid var(--line);
  background: var(--white);
}

.brand-cloud strong {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.small-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  font-weight: 900;
  background: var(--gold);
  border-radius: 8px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0b1627;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seo-links-section {
  background: var(--white);
}

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

.seo-card-grid a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.seo-card-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.seo-card-grid strong {
  font-size: 19px;
  line-height: 1.25;
}

.seo-card-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.media-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reviews-section {
  background: var(--white);
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.rating-summary {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 22px;
  color: var(--navy);
  background: #fff8e8;
  border: 1px solid rgba(245, 189, 79, 0.55);
  border-radius: 8px;
}

.rating-summary strong {
  color: var(--navy);
  font-size: 44px;
  line-height: 1;
}

.rating-summary small {
  color: var(--muted);
  font-weight: 800;
}

.rating-stars,
.review-stars {
  color: var(--gold-dark);
  font-size: 18px;
  letter-spacing: 1px;
}

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

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card strong {
  color: var(--navy);
  font-size: 18px;
}

.review-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

.review-service {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(245, 189, 79, 0.22);
  border-radius: 6px;
}

.review-form {
  display: grid;
  gap: 13px;
  padding: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-form h3 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  outline: 0;
}

.review-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 189, 79, 0.2);
}

.review-form button {
  min-height: 48px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.review-note {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.contact-section {
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), #163f6d);
}

.contact-section .section-kicker,
.contact-section h1,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section h1 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.15;
}

.contact-section p {
  opacity: 0.82;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-card.whatsapp {
  background: rgba(32, 196, 90, 0.18);
}

.contact-card strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 24px;
}

.map-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 270px;
}

.inner-page {
  background: var(--soft);
}

.page-hero {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), #153b66);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.08;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-actions {
  justify-content: start;
  margin-top: 26px;
}

.content-section {
  padding: 72px 0;
}

.content-grid,
.service-detail-grid {
  display: grid;
  gap: 18px;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
}

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

.content-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 27, 55, 0.08);
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.content-card p,
.article-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.dark-card {
  color: var(--white);
  background: var(--navy);
}

.dark-card h2,
.dark-card p {
  color: var(--white);
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  line-height: 1.55;
}

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

.article-body {
  max-width: 860px;
}

.article-body h2 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 30px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 90px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

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

.footer-item svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.footer-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-item small {
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.05;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(5, 40, 18, 0.3);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.video-modal {
  width: min(880px, calc(100% - 32px));
  padding: 0;
  background: transparent;
  border: 0;
}

.video-modal::backdrop {
  background: rgba(3, 13, 28, 0.78);
}

.video-modal video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 14px 24px;
  }

  .site-header::after {
    width: 300px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-self: start;
    gap: 22px;
    overflow-x: auto;
    max-width: 100%;
  }

  .main-nav a {
    padding: 10px 0 14px;
    white-space: nowrap;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 5px;
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-header::after {
    display: none;
  }

  .brand strong {
    font-size: 30px;
  }

  .header-call {
    width: 100%;
    justify-content: center;
    padding: 12px;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    padding-top: 54px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

  .search-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .search-panel input {
    min-height: 56px;
  }

  .search-button {
    min-height: 52px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .fee-card {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-preview {
    padding-top: 84px;
  }

  .preview-grid,
  .two-column,
  .documents-grid,
  .contact-grid,
  .reviews-layout,
  .video-grid,
  .content-grid,
  .service-detail-grid,
  .blog-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .small-link {
    margin-top: 12px;
  }

  .footer-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 54px;
    font-size: 18px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    font-size: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero h1 {
    width: min(320px, 100%);
    font-size: 24px;
    line-height: 1.18;
  }

  .eyebrow {
    width: min(300px, 100%);
    font-size: 13px;
    line-height: 1.35;
  }

  .btn {
    gap: 8px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-copy {
    width: min(300px, 100%);
    font-size: 15px;
  }

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

  .trust-item {
    min-height: 92px;
  }

  .about-section h2,
  .brands-section h2,
  .video-section h2,
  .contact-section h2 {
    font-size: 28px;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 24px);
  }

  body {
    background: var(--soft);
  }

  .site-header {
    position: relative;
    min-height: 0;
    padding: 14px;
    gap: 12px;
    overflow: visible;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
  }

  .site-header::after,
  .main-nav {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 54px;
    font-size: 18px;
    border-width: 3px;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand small {
    margin-top: 5px;
    font-size: 12px;
  }

  .header-call {
    min-height: 56px;
    justify-content: flex-start;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: none;
  }

  .header-call .circle-icon {
    width: 40px;
    height: 40px;
  }

  .header-call .circle-icon svg {
    width: 20px;
    height: 20px;
  }

  .header-call small {
    font-size: 11px;
  }

  .header-call strong {
    font-size: 19px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 18px;
    overflow: hidden;
    background: var(--navy);
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 27, 56, 0.82), rgba(6, 27, 56, 0.92));
  }

  .hero-inner {
    justify-items: start;
    padding-top: 38px;
    text-align: left;
  }

  .eyebrow {
    width: 100%;
    margin-bottom: 11px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero h1 {
    width: 100%;
    font-size: 26px;
    line-height: 1.16;
  }

  .hero-copy {
    width: min(330px, 100%);
    margin: 14px 0 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .search-panel {
    width: 100%;
    border: 0;
    box-shadow: none;
  }

  .search-panel input {
    min-height: 52px;
    padding: 0 18px;
  }

  .search-button {
    min-height: 50px;
  }

  .hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .btn {
    min-height: 54px;
    border-radius: 8px;
    box-shadow: none;
  }

  .fee-card {
    min-height: 64px;
    box-shadow: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .trust-item {
    align-items: flex-start;
    min-height: 0;
    padding: 14px;
    gap: 10px;
    background: rgba(7, 27, 55, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .trust-item svg {
    width: 30px;
    height: 30px;
  }

  .trust-item strong {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.25;
  }

  .trust-item small {
    font-size: 12px;
    line-height: 1.35;
  }

  .service-preview,
  .about-section,
  .documents-section,
  .brands-section,
  .seo-links-section,
  .video-section,
  .reviews-section,
  .contact-section {
    padding: 38px 0;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-teaser {
    min-height: 0;
    padding: 20px;
    box-shadow: none;
  }

  .play-button {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .video-teaser h2 {
    font-size: 19px;
  }

  .video-teaser p {
    font-size: 14px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: stretch;
    min-height: 88px;
    border: 1px solid var(--line);
    box-shadow: none;
  }

  .service-card img {
    height: 88px;
  }

  .service-card h3 {
    place-items: center start;
    min-height: 0;
    padding: 12px 14px;
    font-size: 13px;
    text-align: left;
  }

  .two-column,
  .documents-grid,
  .contact-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-section h2,
  .documents-section h2,
  .brands-section h2,
  .seo-links-section h2,
  .video-section h2,
  .reviews-section h2,
  .contact-section h2 {
    font-size: 27px;
  }

  .about-section p,
  .documents-section p,
  .reviews-section p,
  .contact-section p {
    font-size: 15px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-panel {
    padding: 22px;
    box-shadow: none;
  }

  .brand-cloud {
    gap: 8px;
  }

  .brand-cloud span,
  .brand-cloud strong,
  .area-list li {
    padding: 9px 11px;
    font-size: 13px;
  }

  .section-head {
    display: block;
    margin-bottom: 18px;
  }

  .founder-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 14px;
  }

  .founder-card img {
    width: 88px;
    height: 104px;
  }

  .founder-card strong {
    font-size: 19px;
  }

  .document-links,
  .seo-card-grid,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .seo-card-grid a {
    min-height: 0;
  }

  .small-link {
    margin-top: 12px;
  }

  .video-grid {
    gap: 12px;
  }

  .reviews-head,
  .reviews-layout,
  .reviews-list {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    gap: 16px;
    margin-bottom: 16px;
  }

  .rating-summary {
    justify-items: start;
    padding: 18px;
  }

  .review-card {
    min-height: 0;
    padding: 17px;
  }

  .review-form {
    padding: 18px;
    box-shadow: none;
  }

  .video-grid video {
    aspect-ratio: 16 / 9;
    box-shadow: none;
  }

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

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

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .content-section {
    padding: 38px 0;
  }

  .content-card {
    padding: 20px;
  }

  .content-card h2 {
    font-size: 23px;
  }

  .contact-card {
    min-height: 78px;
  }

  .contact-card strong {
    font-size: 20px;
  }

  .footer-item {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .floating-whatsapp {
    display: none;
  }
}

/* Mobile hamburger navigation */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    background: var(--white);
  }

  .brand {
    min-width: 0;
  }

  .header-call {
    grid-column: 1 / -1;
    order: 3;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 12px;
    right: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
    padding: 8px;
    color: var(--white);
    background: rgba(6, 27, 56, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(6, 27, 56, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    padding: 14px 14px;
    color: var(--white);
    border-radius: 6px;
    white-space: normal;
  }

  .main-nav a.active,
  .main-nav a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
  }

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

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-actions a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 0 10px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-nav-call {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-whatsapp {
    color: var(--white) !important;
    background: var(--green);
  }
}

.floating-whatsapp {
  display: none !important;
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    grid-template-areas:
      "brand menu"
      "call call";
    padding: 12px 12px 10px;
  }

  .brand {
    grid-area: brand;
    padding-right: 0;
  }

  .menu-toggle {
    position: static !important;
    grid-area: menu;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    box-shadow: 0 10px 22px rgba(6, 27, 56, 0.18);
  }

  .header-call {
    grid-area: call;
  }

  .main-nav {
    display: grid !important;
    justify-self: stretch !important;
    width: calc(100% - 24px) !important;
    max-width: none !important;
    top: calc(100% - 1px);
    left: 12px;
    right: auto;
  }
}

@media (max-width: 390px) {
  .brand strong {
    font-size: 23px;
  }

  .header-call strong {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .btn {
    font-size: 13px;
  }
}

/* Final service section cleanup */
.service-preview {
  padding: 64px 0;
  background: #f5f8fc;
}

.service-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.service-title-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.18;
}

.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.video-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.preview-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.service-card {
  display: grid;
  grid-template-rows: 148px auto;
  min-height: 0;
  border: 1px solid rgba(221, 228, 238, 0.9);
  box-shadow: 0 10px 22px rgba(7, 27, 55, 0.08);
}

.service-card img {
  height: 148px;
}

.service-card h3 {
  min-height: 54px;
  padding: 10px 12px;
  background: var(--white);
}

@media (max-width: 1180px) {
  .preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-preview {
    padding: 36px 0;
  }

  .service-title-row {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
  }

  .service-title-row h2 {
    font-size: 26px;
  }

  .video-link {
    width: 100%;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    grid-template-columns: 92px 1fr;
    grid-template-rows: none;
    min-height: 92px;
    box-shadow: none;
  }

  .service-card img {
    width: 92px;
    height: 92px;
  }

  .service-card h3 {
    place-items: center start;
    min-height: 0;
    padding: 12px 14px;
    font-size: 13px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    overflow: visible;
    padding: 12px;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .menu-toggle {
    position: absolute !important;
    grid-area: auto !important;
    top: 15px;
    right: 12px;
    z-index: 60;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white) !important;
    background: var(--navy) !important;
    border: 0 !important;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(6, 27, 56, 0.18);
  }

  .menu-toggle span {
    display: block !important;
    width: 22px;
    height: 2px;
    margin: 2px 0;
    background: currentColor !important;
    border-radius: 999px;
  }

  .header-call {
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .menu-toggle {
    grid-area: auto !important;
    left: min(calc(100vw - 60px), 315px);
    right: auto;
  }
}
