@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy-950: #0d1025;
  --navy-900: #151834;
  --navy-800: #222343;
  --navy-700: #303565;
  --navy-100: #e9eaf2;
  --gold-600: #8a5b16;
  --gold-500: #ca9b40;
  --gold-300: #e4c77e;
  --green: #19ac19;
  --green-dark: #118711;
  --ink: #202235;
  --body: #5b5d6d;
  --surface: #f7f5f0;
  --white: #ffffff;
  --border: #e5e1d8;
  --shadow: 0 22px 60px rgba(15, 18, 42, 0.12);
  --radius-lg: 26px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 12px 18px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(13, 16, 37, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 30px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--white);
}

.brand {
  height: 60px;
  padding: 8px 14px;
  border-radius: 12px;
}

.brand img,
.footer-brand img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
}

.button-large {
  min-height: 56px;
  padding: 16px 28px;
}

.button-whatsapp {
  color: var(--navy-950);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(25, 172, 25, 0.22);
}

.button-whatsapp:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 30px rgba(34, 35, 67, 0.2);
}

.button-primary:hover {
  background: var(--navy-700);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 178px 0 96px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, #24294f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
}

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

.hero h1 em {
  color: var(--gold-300);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 1.08rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold-300);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.text-link {
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--gold-300);
  content: "✓";
}

.hero-visual {
  position: relative;
  padding: 26px 0 44px 26px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  background: var(--navy-800);
  border-radius: 220px 220px 24px 24px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

.hero-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(228, 199, 126, 0.62);
  border-radius: 200px 200px 18px 18px;
  content: "";
  pointer-events: none;
}

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

.hero-visual::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 55%;
  border-top: 2px solid var(--gold-500);
  border-left: 2px solid var(--gold-500);
  content: "";
}

.hero-card {
  position: absolute;
  right: -28px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: 260px;
  padding: 21px 24px;
  color: var(--body);
  background: var(--white);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.hero-card strong {
  color: var(--navy-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.hero-card span {
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.trust-grid > div {
  display: flex;
  flex-direction: column;
  padding: 30px 35px;
  border-right: 1px solid var(--border);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--border);
}

.trust-grid strong {
  color: var(--navy-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.14rem;
}

.trust-grid span {
  font-size: 0.78rem;
}

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

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.services {
  background: var(--surface);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  margin-bottom: 38px;
  color: var(--gold-600);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card h3 {
  color: var(--navy-800);
}

.service-card p {
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.service-card a {
  margin-top: auto;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card a span {
  margin-left: 4px;
  color: var(--gold-600);
}

.cta-band {
  padding: 75px 0;
  background: linear-gradient(115deg, var(--navy-900), var(--navy-700));
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-band .button {
  flex: 0 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 100px;
}

.portrait-wrap {
  position: relative;
  padding: 24px 24px 0 0;
}

.portrait-wrap > img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% 50% 16px 16px;
  box-shadow: var(--shadow);
}

.portrait-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 65%;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
}

.portrait-caption {
  position: relative;
  width: calc(100% - 45px);
  margin: -38px auto 0;
  padding: 18px 22px;
  color: var(--white);
  background: var(--navy-800);
  border-bottom: 3px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.portrait-caption span {
  color: var(--gold-300);
  font-size: 0.75rem;
}

.about-copy p:not(.eyebrow) {
  margin-bottom: 18px;
}

.about-copy .button {
  margin-top: 12px;
}

.office {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-900);
}

.office-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 90px;
}

.office h2,
.office strong {
  color: var(--white);
}

.process-list {
  display: grid;
  gap: 22px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 18px;
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy-900);
  background: var(--gold-300);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.process-list p {
  margin: 0;
  font-size: 0.85rem;
}

.credential-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

.credential-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.credential-card figcaption {
  padding: 22px 25px;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 600;
}

.articles {
  background: var(--surface);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  max-width: none;
  gap: 70px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 8px;
}

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

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.article-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.62;
  overflow: hidden;
  color: var(--gold-300);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}

.article-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.article-placeholder::before,
.article-placeholder::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(228, 199, 126, 0.35);
  border-radius: 50%;
  content: "";
}

.article-placeholder::before {
  top: -80px;
  right: -50px;
}

.article-placeholder::after {
  bottom: -100px;
  left: -35px;
}

.article-body {
  padding: 28px;
}

.article-tag {
  color: var(--gold-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-body h3 {
  margin: 13px 0 10px;
}

.article-body p {
  min-height: 54px;
  font-size: 0.86rem;
}

.article-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 700;
}

.article-link span {
  display: inline-block;
  margin-left: 4px;
  color: var(--gold-600);
  transition: transform 0.2s ease;
}

.article-link:hover span {
  transform: translateX(5px);
}

.article-page {
  background: var(--surface);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 90px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.article-hero::after {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(228, 199, 126, 0.28);
  border-radius: 50%;
  content: "";
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 27px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--white);
}

.article-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.article-intro {
  max-width: 760px;
  margin: 0;
  font-size: 1.05rem;
}

.article-reading {
  padding: 80px 0 110px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 280px;
  align-items: start;
  justify-content: center;
  gap: 70px;
}

.article-content {
  padding: 52px clamp(24px, 6vw, 70px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(21, 24, 52, 0.08);
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  font-size: 0.98rem;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-content strong {
  color: var(--navy-800);
}

.article-note {
  margin: 34px 0;
  padding: 22px 24px;
  background: #f7f2e6;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 10px 10px 0;
}

.article-note p {
  margin: 0;
}

.article-aside {
  position: sticky;
  top: 120px;
  padding: 30px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-800);
  border-radius: var(--radius-md);
}

.article-aside h2 {
  color: var(--white);
  font-size: 1.7rem;
}

.article-aside p {
  font-size: 0.78rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 10px;
}

.article-final-cta {
  margin-top: 48px;
  padding: 34px;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(125deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-md);
}

.article-final-cta h2 {
  margin-top: 0;
  color: var(--white);
}

.article-final-cta .button {
  margin-top: 8px;
}

.contact {
  padding: 110px 0 0;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding-bottom: 80px;
}

.contact h2 {
  color: var(--white);
}

.contact-info > p:not(.eyebrow) {
  margin-bottom: 34px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.contact-list > div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list address,
.contact-list p {
  margin: 0;
  color: var(--white);
  font-style: normal;
  font-weight: 500;
}

.contact-form-wrap {
  padding: 38px;
  color: var(--body);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.field label {
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #faf9f6;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: 0;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 145px;
  padding: 13px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(202, 155, 64, 0.13);
}

.form-note,
.form-status {
  margin: 14px 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 10px;
  color: var(--navy-800);
  background: #f1ead8;
  border-radius: 7px;
  font-weight: 600;
}

.form-status.is-success {
  color: #155724;
  background: #e8f6eb;
}

.form-status.is-error {
  color: #7a1f1f;
  background: #faeaea;
}

.map-wrap {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.02);
}

.site-footer {
  padding: 72px 0 25px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 55px;
  padding-bottom: 50px;
}

.footer-brand {
  height: 72px;
  padding: 10px 16px;
  border-radius: 12px;
}

.footer-main p {
  max-width: 580px;
  margin: 0;
  font-size: 0.78rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 25px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--navy-950);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .hero-grid,
  .split-layout,
  .office-grid,
  .contact-grid {
    gap: 55px;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 780px);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 80px 0;
  }

  .header-inner {
    min-height: 78px;
    justify-content: space-between;
  }

  .brand {
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 20px;
    visibility: hidden;
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

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

  .hero {
    padding: 135px 0 80px;
  }

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

  .hero-grid {
    gap: 65px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-layout {
    gap: 70px;
  }

  .portrait-wrap {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .office-grid {
    gap: 60px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .article-hero {
    padding: 145px 0 70px;
  }

  .article-reading {
    padding: 55px 0 80px;
  }

  .contact-grid {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    margin-inline: auto;
  }

  .footer-main p {
    margin-inline: auto;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-points {
    align-items: center;
    flex-direction: column;
  }

  .hero-visual {
    padding-left: 12px;
  }

  .hero-card {
    right: -4px;
    max-width: 230px;
  }

  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 315px;
  }

  .contact-form-wrap {
    padding: 25px 18px;
  }

  .map-wrap {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .map-wrap iframe {
    height: 360px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
