:root {
  --navy-950: #041225;
  --navy-900: #071b33;
  --navy-800: #0c2949;
  --navy-700: #12395f;
  --blue-500: #1d79c9;
  --blue-400: #45a5ea;
  --gold-500: #c7a35a;
  --gold-300: #e7cf9c;
  --white: #ffffff;
  --off-white: #f8fafc;
  --soft: #edf3f8;
  --text: #15263a;
  --muted: #64748b;
  --border: rgba(12, 41, 73, 0.12);
  --shadow: 0 24px 60px rgba(7, 27, 51, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 120px 0;
}
.section-soft {
  background: var(--off-white);
}
.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: 0.55s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-mark {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font:
    700 36px "Playfair Display",
    serif;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.03);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(4, 18, 37, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.brand img {
  width: 200px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  font:
    700 25px "Playfair Display",
    serif;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand-copy small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 5px;
  opacity: 0.72;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}
.desktop-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold-300);
  transition: 0.25s;
}
.desktop-nav a:hover {
  color: var(--white);
}
.desktop-nav a:hover::after {
  right: 0;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 100px;
  font-weight: 800;
  font-size: 13px;
}
.header-cta img {
  width: 18px;
}
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(1, 8, 18, 0.68);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  padding: 24px;
  overflow-y: auto;
  background: var(--navy-950);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s ease;
}
.mobile-menu.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-head .brand {
  padding: 0;
  border: 0;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.mobile-menu-close svg {
  width: 20px;
}
.mobile-menu-inner {
  display: grid;
  gap: 3px;
}
.mobile-menu a {
  padding: 15px 4px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}
.mobile-menu-cta {
  margin-top: 16px;
  padding-inline: 18px !important;
  text-align: center;
  background: var(--gold-500);
  color: var(--navy-950) !important;
  border-radius: 12px;
  border: 0 !important;
}

.hero {
  position: relative;
  background: var(--navy-950);
}
.hero-swiper,
.hero-slide {
  min-height: 790px;
}
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide-one {
  background-image: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=2000&q=86");
}
.hero-slide-two {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2000&q=86");
}
.hero-slide-three {
  background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2000&q=86");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 18, 37, 0.96) 0%,
    rgba(4, 18, 37, 0.75) 48%,
    rgba(4, 18, 37, 0.28) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-top: 20px;
}
.hero-content h1,
.hero-content h2 {
  max-width: 780px;
  font:
    700 clamp(48px, 6vw, 82px)/1.02 "Playfair Display",
    serif;
  letter-spacing: -0.035em;
  margin: 20px 0 25px;
}
.hero-content p {
  max-width: 650px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.eyebrow.light {
  color: var(--gold-300);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 14px;
  width: min(100%, 780px);
  margin-top: 36px;
}
.button {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: white;
  box-shadow: 0 14px 30px rgba(29, 121, 201, 0.3);
}
.button-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.button-light {
  background: white;
  color: var(--navy-900);
}
.button-full {
  width: 100%;
  border: 0;
}

.button-light img {
  width: 18px;
}
.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 132px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Mantém os bullets centralizados no hero,
   independentemente da posição das setas */
.hero-pagination {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  width: max-content !important;
  transform: translate(-50%, -50%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
  margin: 0 !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 52px;
  background: var(--gold-300);
}
.hero-arrows,
.carousel-arrows {
  display: flex;
  gap: 9px;
}
.hero-arrows button,
.carousel-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.25s;
}
.hero-arrows button:hover {
  background: white;
  color: var(--navy-900);
}
.hero-arrows svg,
.carousel-arrows svg {
  width: 19px;
}
.hero-trust {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 18, 37, 0.82);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.trust-grid {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-grid > div:first-child {
  padding-left: 0;
}
.trust-grid > div:last-child {
  border-right: 0;
}
.trust-grid svg {
  color: var(--gold-300);
  width: 26px;
  flex: 0 0 auto;
}
.trust-grid span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}
.trust-grid strong {
  color: white;
  display: block;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-media {
  min-height: 610px;
  position: relative;
}
.about-image-main {
  position: absolute;
  inset: 0 70px 45px 0;
  border-radius: var(--radius-lg);
  background: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1200&q=85")
    center/cover;
  box-shadow: var(--shadow);
}
.experience-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  padding: 28px;
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.experience-card strong {
  display: block;
  font:
    700 32px "Playfair Display",
    serif;
  color: var(--gold-300);
}
.experience-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.about-seal {
  position: absolute;
  right: 36px;
  top: 38px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--gold-300);
  border: 10px solid white;
}
.about-seal svg {
  width: 32px;
}
.about-copy h2,
.section-heading h2,
.process-intro h2,
.testimonial-intro h2,
.contact-info h2,
.cta-band h2 {
  font:
    700 clamp(38px, 4.2vw, 58px)/1.08 "Playfair Display",
    serif;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 16px 0 25px;
}
.about-copy .lead {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-700);
}
.about-copy > p {
  color: var(--muted);
  margin-bottom: 18px;
}
.about-highlights {
  display: grid;
  gap: 11px;
  margin: 26px 0;
}
.about-highlights div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 14px;
}
.about-highlights svg {
  width: 20px;
  color: var(--blue-500);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--blue-500);
  border-bottom: 1px solid rgba(29, 121, 201, 0.28);
  padding-bottom: 5px;
}
.text-link svg {
  width: 17px;
}

.section-heading {
  margin-bottom: 55px;
}
.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.section-heading.centered p,
.team .section-heading p {
  max-width: 620px;
  margin: -8px auto 0;
  color: var(--muted);
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
}
.section-heading.split p {
  color: var(--muted);
  font-size: 17px;
  padding-bottom: 12px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  min-height: 340px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(7, 27, 51, 0.06);
}
.pillar-card > span {
  position: absolute;
  right: 25px;
  top: 12px;
  color: rgba(7, 27, 51, 0.05);
  font:
    700 72px "Playfair Display",
    serif;
}
.pillar-card svg {
  width: 38px;
  height: 38px;
  color: var(--blue-500);
  margin-bottom: 55px;
}
.pillar-card h3 {
  font:
    700 28px "Playfair Display",
    serif;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.pillar-card p {
  color: var(--muted);
  font-size: 14px;
}

.services-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.service-card {
  height: auto;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(29, 121, 201, 0.25);
}
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--blue-500);
  background: rgba(29, 121, 201, 0.09);
  margin-bottom: 38px;
}
.service-icon svg {
  width: 30px;
}
.service-card > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-500);
  font-weight: 800;
}
.service-card h3 {
  font:
    700 27px "Playfair Display",
    serif;
  color: var(--navy-900);
  margin: 8px 0 13px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  min-height: 94px;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy-900);
}
.service-card a svg {
  width: 16px;
}
.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}
.carousel-footer .swiper-pagination {
  position: static;
  text-align: left;
}
.carousel-footer .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #d3dde7;
}
.carousel-footer .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 10px;
  background: var(--blue-500);
}
.carousel-arrows button {
  background: var(--soft);
  color: var(--navy-900);
  border: 1px solid var(--border);
}
.carousel-arrows button:hover {
  background: var(--navy-900);
  color: white;
}

.services .container,
.testimonials .container,
.partners .container {
  min-width: 0;
  overflow: hidden;
}
.swiper-wrapper {
  min-width: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.process-intro h2 {
  color: white;
}
.process-intro p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  margin-bottom: 28px;
}
.process-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.process-step > span {
  color: var(--gold-300);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.process-step h3 {
  font:
    700 24px "Playfair Display",
    serif;
  margin-bottom: 5px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: 0.3s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.team-photo {
  aspect-ratio: 1 / 0.92;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
}
.team-photo img {
  width: clamp(100px, 12vw, 140px);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}
.team-photo-two {
  background: linear-gradient(135deg, #142a3d, #54718b);
}
.team-photo-three {
  background: linear-gradient(135deg, #284762, #c7a35a);
}
.team-photo span {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font:
    700 34px "Playfair Display",
    serif;
}
.team-info {
  position: relative;
  padding: 24px;
}
.team-info h3 {
  font:
    700 24px "Playfair Display",
    serif;
  color: var(--navy-900);
}
.team-info p {
  color: var(--muted);
  font-size: 13px;
}
.team-social {
  position: absolute;
  right: 20px;
  top: 24px;
  display: flex;
  gap: 7px;
}
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--navy-900);
}
.team-social svg,
.team-social img {
  width: 15px;
}
.editable-note {
  margin-top: 24px;
  color: #8b98a7;
  text-align: center;
  font-size: 12px;
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
  min-width: 0;
}
.testimonials-grid > * {
  min-width: 0;
}
.testimonials-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.testimonial-intro p {
  color: var(--muted);
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.testimonial-rating > strong {
  font:
    700 48px "Playfair Display",
    serif;
  color: var(--navy-900);
}
.testimonial-rating div {
  display: flex;
  flex-direction: column;
}
.testimonial-rating span {
  color: var(--gold-500);
  letter-spacing: 0.1em;
}
.testimonial-rating small {
  color: var(--muted);
}
.testimonial-card {
  height: auto;
  padding: 42px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border);
}
.testimonial-card > svg {
  color: var(--blue-500);
  width: 35px;
  height: 35px;
  margin-bottom: 25px;
}
.testimonial-card > p {
  font:
    600 20px/1.65 "Playfair Display",
    serif;
  color: var(--navy-900);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}
.testimonial-author > span {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy-900);
  font-weight: 800;
  font-size: 12px;
}
.testimonial-author div {
  display: flex;
  flex-direction: column;
}
.testimonial-author small {
  color: var(--muted);
}
.testimonial-footer {
  margin-top: 18px;
}

.partners-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 28px 0;
}
.partner-logo {
  min-height: 90px;
  display: grid;
  place-items: center;
  color: #758397;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  filter: grayscale(1);
  opacity: 0.72;
  transition: 0.25s;
}
.partner-logo:hover {
  filter: none;
  opacity: 1;
  color: var(--navy-900);
}

.cta-band {
  padding: 75px 0;
  background: linear-gradient(120deg, var(--blue-500), var(--navy-800));
  color: white;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta-band h2 {
  color: white;
  max-width: 760px;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.contact-info > p {
  color: var(--muted);
  font-size: 17px;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 17px;
  border-radius: var(--radius-sm);
  transition: 0.25s;
}
.contact-list a:hover {
  background: var(--soft);
}
.contact-list svg {
  width: 22px;
  color: var(--blue-500);
  margin-top: 4px;
}
.contact-list span {
  font-weight: 700;
  font-size: 14px;
}
.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 3px;
}
.contact-social {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}
.contact-social a,
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: white;
}
.contact-social img,
.footer-social img {
  width: 18px;
  filter: brightness(0) invert(1);
}
.contact-form {
  padding: 45px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
}
.form-heading span {
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.form-heading h3 {
  font:
    700 32px/1.18 "Playfair Display",
    serif;
  color: var(--navy-900);
  margin: 7px 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8e1e9;
  background: white;
  border-radius: 12px;
  min-height: 52px;
  padding: 0 15px;
  outline: none;
  transition: 0.2s;
  color: var(--text);
}
.form-group textarea {
  padding-top: 14px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(29, 121, 201, 0.08);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 20px;
}
.form-consent input {
  margin-top: 3px;
}
.form-status {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  min-height: 20px;
}
.form-status.success {
  color: #1a7f49;
}
.form-status.error {
  color: #bf2f2f;
}
.map-section iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
  filter: grayscale(0.8) contrast(0.92);
}

.site-footer {
  background: var(--navy-950);
  color: white;
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand > p {
  color: rgba(255, 255, 255, 0.56);
  max-width: 300px;
  margin: 22px 0;
}
.footer-social {
  display: flex;
  gap: 9px;
}
.footer-social a {
  background: rgba(255, 255, 255, 0.08);
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid h3 {
  color: var(--gold-300);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.footer-grid a:hover {
  color: white;
}
.footer-bottom {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}
.footer-bottom div {
  display: flex;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 24px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 100px;
  background: #25d366;
  color: white;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.whatsapp-float img {
  width: 20px;
  filter: brightness(0) invert(1);
}
.back-to-top {
  position: fixed;
  z-index: 940;
  right: 28px;
  bottom: 91px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .mobile-menu,
  .mobile-menu-overlay {
    display: block;
  }
  .about-grid,
  .process-grid,
  .contact-grid {
    gap: 55px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .testimonial-intro {
    max-width: 700px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }
  .hero-swiper,
  .hero-slide {
    min-height: 720px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(44px, 8vw, 65px);
  }
  .trust-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }
  .trust-grid > div {
    min-height: 60px;
    padding: 0;
    border-right: 0;
  }
  .hero-trust {
    position: relative;
  }
  .hero-controls {
    bottom: 35px;
  }
  .about-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    min-height: 540px;
  }
  .pillars-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .process-intro {
    max-width: 700px;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .menu-toggle {
    margin-left: auto;
  }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 72px 0;
  }
  .header-inner {
    min-height: 74px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .brand-copy strong {
    font-size: 18px;
  }
  .header-cta {
    display: none;
  }
  .hero-swiper,
  .hero-slide {
    min-height: 670px;
  }
  .hero-slide {
    align-items: flex-end;
    padding-bottom: 130px;
  }
  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(4, 18, 37, 0.98),
      rgba(4, 18, 37, 0.5)
    );
  }
  .hero-content {
    padding-top: 130px;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .button {
    width: min(100%, 330px);
  }
  .hero-controls {
    bottom: 35px;
  }
  .hero-arrows {
    display: none;
  }
  .about-grid {
    gap: 40px;
  }
  .about-media {
    min-height: 430px;
  }
  .about-image-main {
    inset: 0 30px 65px 0;
  }
  .experience-card {
    width: 230px;
    padding: 22px;
  }
  .about-seal {
    width: 72px;
    height: 72px;
    right: 12px;
    top: 24px;
    border-width: 7px;
  }
  .about-copy h2,
  .section-heading h2,
  .process-intro h2,
  .testimonial-intro h2,
  .contact-info h2,
  .cta-band h2 {
    font-size: 37px;
  }
  .pillars-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card {
    min-height: auto;
  }
  .service-card {
    min-height: 365px;
  }
  .process-grid {
    gap: 38px;
  }
  .process-step {
    grid-template-columns: 48px 1fr;
  }
  .testimonial-card {
    padding: 28px;
  }
  .testimonial-card > p {
    font-size: 18px;
  }
  .contact-form {
    padding: 27px 20px;
    border-radius: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    padding: 23px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float span {
    display: none;
  }
  .back-to-top {
    right: 18px;
    bottom: 78px;
  }
}
