:root {
  --bg: #f5f7fb;
  --bg-soft: #eef2f8;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --navy: #0b2d63;
  --navy-deep: #061b3e;
  --gold: #b88a22;
  --gold-soft: #d7b15a;
  --silver: #8d96a4;
  --text: #132743;
  --muted: #5e6c7f;
  --line: rgba(11, 45, 99, 0.12);
  --shadow: 0 22px 60px rgba(12, 35, 74, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(183, 138, 34, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(11, 45, 99, 0.12), transparent 28%),
    linear-gradient(180deg, #fcfdff 0%, var(--bg) 48%, #eef3fb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(11, 45, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 45, 99, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 78%);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 177, 90, 0.12), transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(11, 45, 99, 0.1), transparent 20%),
    radial-gradient(circle at 55% 52%, rgba(141, 150, 164, 0.08), transparent 24%);
}

a {
  color: inherit;
}

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

.page-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
}

.page-shell {
  position: relative;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1480px, calc(100% - 28px));
  transform: translateX(-50%);
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  min-width: 0;
  border: 1px solid rgba(11, 45, 99, 0.1);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(12, 35, 74, 0.1);
  text-decoration: none;
}

.brand-mark__logo {
  width: 172px;
  height: 172px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.site-nav {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  border: 0;
}

.site-nav--left {
  justify-self: end;
}

.site-nav--right {
  justify-self: start;
}

.site-nav a {
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(4, 18, 43, 0.24);
}

.site-nav a:focus-visible {
  outline: 2px solid rgba(184, 138, 34, 0.36);
  outline-offset: 2px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #21c45d, #0f9f49);
  color: #ffffff;
  border: 0;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(15, 159, 73, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  zoom: 0.9;
}

.floating-whatsapp__icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  animation: whatsappPulse 2.4s ease-in-out infinite, whatsappFloat 1.9s ease-in-out infinite;
}

.floating-whatsapp__icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 9px;
  height: 9px;
  border: 2.5px solid #ffffff;
  border-right-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.floating-whatsapp__icon::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 13px;
  width: 6px;
  height: 3px;
  border-right: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  transform: rotate(34deg);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #26d366, #12a54d);
  box-shadow: 0 22px 48px rgba(15, 159, 73, 0.42);
}

.header-cta,
.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(184, 138, 34, 0.28);
  border: 0;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  border: 1px solid rgba(11, 45, 99, 0.14);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 82px 0 12px;
}

.hero {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.hero.section {
  padding: 0;
}

main > section:not(.hero),
.site-footer {
  zoom: 0.9;
}

.hero__content,
.hero__visual,
.trust-strip article,
.about__content,
.about__panel,
.service-card,
.why-us__panel,
.why-us__card,
.timeline__item,
.disclaimer-card,
.cta-banner,
.contact__content,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 254, 0.94));
  box-shadow: var(--shadow);
}

.hero__content {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(1480px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 278px 42px 88px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-slider {
  position: relative;
  flex: 1;
  max-width: 780px;
  min-height: 340px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-slide .section-label,
.hero-slide h1,
.hero-slide .hero__text,
.hero-slide .hero__actions {
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .section-label {
  animation: heroTextRise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-active h1 {
  animation: heroTextRise 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-slide.is-active .hero__text {
  animation: heroTextRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.hero-slide.is-active .hero__actions {
  animation: heroTextRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.section-label {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4d58a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero h1,
.section-heading h2,
.about__content h2,
.why-us__content h2,
.disclaimer-card h2,
.cta-banner h2,
.contact__content h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

.hero h1 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero__text,
.section-heading p,
.about__content p,
.about__panel p,
.service-card p,
.why-us__content p,
.why-us__card p,
.timeline__item p,
.disclaimer-card p,
.contact__content p {
  color: var(--muted);
  line-height: 1.78;
}

.hero__text {
  max-width: 70ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-slider__footer {
  display: grid;
  gap: 20px;
  margin-top: auto;
  max-width: 1080px;
  min-height: 64px;
}

.hero-slider__dots {
  position: absolute;
  left: 0;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-slider__dots button {
  position: relative;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  overflow: hidden;
  transition: width 0.3s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-slider__dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(135deg, #f3d78f, #b88a22);
}

.hero-slider__dots button.is-active {
  width: 52px;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  transform: none;
  box-shadow: 0 0 18px rgba(215, 177, 90, 0.22);
}

.hero-slider__dots button.is-active::after {
  animation: dotProgress 6.2s linear forwards;
}

.hero-slider__dots button:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.34);
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.hero-media-slider {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.hero-media-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-media-slide.is-enter-right {
  opacity: 1;
  transform: translateX(100%);
}

.hero-media-slide.is-enter-left {
  opacity: 1;
  transform: translateX(-100%);
}

.hero-media-slide.is-exit-left {
  opacity: 1;
  transform: translateX(-100%);
}

.hero-media-slide.is-exit-right {
  opacity: 1;
  transform: translateX(100%);
}

.hero-media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-media-slide.is-active img {
  animation: heroImageDrift 6.2s ease-in-out forwards;
}

.hero-media-slider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 39, 0.76), rgba(4, 16, 39, 0.38) 32%, rgba(4, 16, 39, 0.66)),
    linear-gradient(135deg, rgba(11, 45, 99, 0.28), rgba(184, 138, 34, 0.18));
}

.hero-glow {
  position: absolute;
  inset: 12% auto auto 16%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(215, 177, 90, 0.3), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(11, 45, 99, 0.18), transparent 58%);
  filter: blur(8px);
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 10%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 84%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1260px, calc(100% - 64px));
  margin: 100px auto 0;
}

.trust-strip article,
.service-card,
.why-us__card,
.timeline__item,
.disclaimer-card,
.cta-banner {
  border-radius: var(--radius-lg);
}

.trust-strip article {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 24px;
}

.trust-strip article:nth-child(1) {
  transition-delay: 0.12s;
}

.trust-strip article:nth-child(2) {
  transition-delay: 0.28s;
}

.trust-strip article:nth-child(3) {
  transition-delay: 0.44s;
}

.trust-strip article:nth-child(4) {
  transition-delay: 0.6s;
}

.trust-strip strong,
.about__panel h3,
.service-card h3,
.timeline__item h3,
.why-us__card strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
}

.trust-strip strong {
  display: block;
  font-size: 1.5rem;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.66;
}

.trust-strip__media {
  position: relative;
  margin: -24px -24px 18px;
  height: 360px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.trust-strip__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 23, 51, 0.08), rgba(7, 23, 51, 0.38)),
    linear-gradient(135deg, rgba(11, 45, 99, 0.1), rgba(184, 138, 34, 0.08));
}

.trust-strip__media figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.trust-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.trust-strip__media--brand {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(215, 177, 90, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(11, 45, 99, 0.96), rgba(6, 27, 62, 0.92));
}

.trust-strip__media--brand::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06));
}

.trust-strip__media--brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transform: none;
  z-index: 1;
}

.trust-strip__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
}

.trust-strip__body small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 45, 99, 0.06);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin-bottom: 30px;
}

.section-heading h2,
.about__content h2,
.why-us__content h2,
.disclaimer-card h2,
.cta-banner h2,
.contact__content h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.about,
.why-us,
.contact {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 24px;
  align-items: stretch;
}

.about {
  display: block;
}

.about__content,
.about__panel,
.why-us__panel,
.contact__content,
.contact-form {
  padding: 32px;
}

.contact__content,
.contact-form {
  height: 100%;
}

.contact__content {
  display: flex;
  flex-direction: column;
}

.about-card {
  width: min(1460px, calc(100% - 24px));
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 254, 0.98)),
    radial-gradient(circle at top right, rgba(215, 177, 90, 0.12), transparent 22%);
  box-shadow: var(--shadow);
}

.about-card__intro {
  max-width: none;
}

.about-card__title-row {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  justify-items: start;
}

.about-card .section-label {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  color: #f0c45c;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.about-card h2 {
  font-size: clamp(2.55rem, 3.7vw, 3.85rem);
  line-height: 0.92;
}

.about-card__title {
  display: block;
  margin: 0;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.about-card__title span {
  display: inline-block;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.about-card__slogan {
  margin: 0;
  color: rgba(11, 45, 99, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  padding-left: 2px;
}

.about-card__intro p:not(.section-label) {
  font-size: 1.16rem;
  line-height: 2;
  text-align: justify;
  text-wrap: pretty;
  margin: 0;
}

.about-card__intro p + p {
  margin-top: 18px;
}


.about-list,
.service-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li,
.service-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.72;
}

.about-list li::before,
.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 14px rgba(184, 138, 34, 0.28);
}

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

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 45, 99, 0.08);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-showcase__image,
.service-showcase__text {
  min-height: 360px;
}

.service-showcase__image {
  position: relative;
  overflow: hidden;
}

.service-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 49, 0.08), rgba(7, 22, 49, 0.34)),
    linear-gradient(135deg, rgba(11, 45, 99, 0.12), rgba(184, 138, 34, 0.08));
}

.service-showcase__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.service-showcase__overlay span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-showcase__overlay strong {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.service-showcase__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 254, 0.96));
  text-align: center;
}

.service-showcase__text small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-showcase__text h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 0.98;
}

.service-showcase__text p {
  max-width: 34ch;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

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

.service-showcase__list li {
  color: var(--text);
  line-height: 1.65;
}

.service-showcase__text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid rgba(11, 45, 99, 0.18);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-showcase__text a:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-1px);
}

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

.section-heading--center .section-label {
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 28px;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 45, 99, 0.96), rgba(30, 74, 140, 0.92));
  border: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.why-us {
  display: block;
}

.why-us__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.why-us__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 254, 0.98));
  box-shadow: var(--shadow);
}

.why-us__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.why-us__image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 620px;
  padding: 0;
  border: 1px solid rgba(11, 45, 99, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.why-us__panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.why-us__card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 22px 22px;
  border: 1px solid rgba(11, 45, 99, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.why-us__card span,
.timeline__item span {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-us__card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 45, 99, 0.1), rgba(184, 138, 34, 0.14));
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.why-us__card-body {
  display: grid;
  gap: 6px;
}

.why-us__card-body small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-us__card strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.why-us__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.timeline__item {
  padding: 24px;
}

.timeline__item h3 {
  margin: 10px 0 12px;
  font-size: 1.9rem;
}

.process-workflow {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 26px 8px;
}

.process .section-heading h2 {
  font-size: clamp(2rem, 2.9vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.process-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.process-journey::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 96px;
  border-top: 2px dashed rgba(11, 45, 99, 0.18);
  pointer-events: none;
}

.process-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 18px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 254, 0.88));
  box-shadow: 0 12px 28px rgba(19, 36, 83, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.process-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 45, 99, 0.12);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
  pointer-events: none;
}

.process-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(19, 36, 83, 0.1);
}

.process-node:hover::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(11, 45, 99, 0.18);
}

.process-node:nth-child(2),
.process-node:nth-child(4) {
  padding-top: 20px;
}

.process-node:nth-child(1) {
  transition-delay: 0.08s;
}

.process-node:nth-child(2) {
  transition-delay: 0.2s;
}

.process-node:nth-child(3) {
  transition-delay: 0.32s;
}

.process-node:nth-child(4) {
  transition-delay: 0.44s;
}

.process-node__visual {
  display: grid;
  place-items: center;
  min-height: 162px;
  margin-bottom: 18px;
}

.process-icon {
  position: relative;
}

.process-icon--contact {
  width: 132px;
  height: 86px;
}

.process-icon__contact-lines {
  position: absolute;
  left: 8px;
  top: 10px;
  width: 46px;
  height: 24px;
  background:
    linear-gradient(rgba(11, 45, 99, 0.1), rgba(11, 45, 99, 0.1)) 0 0 / 100% 3px no-repeat,
    linear-gradient(rgba(11, 45, 99, 0.08), rgba(11, 45, 99, 0.08)) 0 10px / 86% 3px no-repeat,
    linear-gradient(rgba(11, 45, 99, 0.07), rgba(11, 45, 99, 0.07)) 0 20px / 72% 3px no-repeat;
  border-radius: 12px;
}

.process-icon__contact-card {
  position: absolute;
  left: 16px;
  bottom: 8px;
  width: 82px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #162d6d, #253980);
  box-shadow: 0 14px 28px rgba(19, 36, 83, 0.16);
}

.process-icon__contact-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.process-icon__contact-badge {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5dca2);
  box-shadow: 0 10px 20px rgba(19, 36, 83, 0.12);
}

.process-icon__contact-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0c45c, #d79b1a);
}

.process-icon--details {
  width: 132px;
  height: 96px;
}

.process-icon__bar {
  position: absolute;
  bottom: 12px;
  width: 14px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #223679, #142760);
}

.process-icon__bar--one {
  left: 24px;
  height: 50px;
}

.process-icon__bar--two {
  left: 48px;
  height: 72px;
}

.process-icon__bar--three {
  left: 72px;
  height: 38px;
}

.process-icon--details::before {
  content: "";
  position: absolute;
  left: 94px;
  bottom: 12px;
  width: 14px;
  height: 58px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #223679, #142760);
}

.process-icon__dot {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8bb3, #ff5c8f);
  box-shadow: 0 10px 22px rgba(255, 92, 143, 0.28);
}

.process-icon__dot::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.process-icon--checklist {
  width: 136px;
  height: 100px;
}

.process-icon__sheet {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #edf2fb);
  box-shadow: 0 14px 26px rgba(19, 36, 83, 0.1);
}

.process-icon__sheet--back {
  left: 30px;
  top: 16px;
  width: 64px;
  height: 74px;
  transform: rotate(-7deg);
}

.process-icon__sheet--front {
  left: 46px;
  top: 8px;
  width: 64px;
  height: 78px;
  border: 1px solid rgba(11, 45, 99, 0.06);
}

.process-icon__sheet--front::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  right: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(11, 45, 99, 0.12);
  box-shadow:
    0 12px 0 rgba(11, 45, 99, 0.12),
    0 24px 0 rgba(11, 45, 99, 0.12);
}

.process-icon__tick {
  position: absolute;
  left: 14px;
  bottom: 18px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0c45c, #d79b1a);
  box-shadow: 0 10px 18px rgba(215, 155, 26, 0.24);
}

.process-icon__tick::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.process-icon--submit {
  width: 130px;
  height: 98px;
}

.process-icon__submit-card {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 86px;
  height: 74px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a2f73, #162657);
  box-shadow: 0 16px 34px rgba(19, 36, 83, 0.18);
}

.process-icon__submit-line {
  position: absolute;
  left: 60px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

.process-icon__submit-line--one {
  top: 32px;
  width: 42px;
}

.process-icon__submit-line--two {
  top: 46px;
  width: 28px;
}

.process-icon__submit-check {
  position: absolute;
  left: 14px;
  bottom: 8px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f6f7fb);
  box-shadow: 0 10px 24px rgba(19, 36, 83, 0.14);
}

.process-icon__submit-check::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #f0c45c;
  border-bottom: 3px solid #f0c45c;
  transform: rotate(-45deg);
}

.process-node__step {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-node h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 1.92rem;
  line-height: 1.1;
}

.process-node p {
  max-width: 25ch;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.72;
}

.disclaimer-card {
  padding: 42px 44px;
  padding-right: 240px;
  border: 1px solid rgba(255, 120, 120, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 170, 170, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(116, 20, 32, 0.98), rgba(154, 28, 43, 0.96));
  box-shadow: 0 24px 50px rgba(93, 18, 29, 0.2);
}

.disclaimer-card .section-label {
  margin: 0 0 14px;
  color: #ffd2a6;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.disclaimer-card h2 {
  color: #ffffff;
  font-size: clamp(2rem, 2.9vw, 2.9rem);
  line-height: 1.08;
}

.disclaimer-card p {
  color: #ffffff;
}

.disclaimer-card__mark {
  position: absolute;
  top: 50%;
  right: 36px;
  width: 150px;
  height: 150px;
  opacity: 0.16;
  transform: translateY(-50%);
  animation: floatCard 7s ease-in-out infinite;
  pointer-events: none;
}

.disclaimer-card__ring,
.disclaimer-card__shield,
.disclaimer-card__check {
  position: absolute;
}

.disclaimer-card__ring {
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.disclaimer-card__ring::before,
.disclaimer-card__ring::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.disclaimer-card__ring::before {
  inset: 14px;
}

.disclaimer-card__ring::after {
  inset: 30px;
}

.disclaimer-card__shield {
  left: 41px;
  top: 28px;
  width: 68px;
  height: 86px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px 28px 22px 22px;
  clip-path: polygon(50% 0%, 100% 18%, 100% 58%, 50% 100%, 0% 58%, 0% 18%);
}

.disclaimer-card__shield::before {
  content: "";
  position: absolute;
  inset: 12px 16px 22px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  clip-path: polygon(50% 0%, 100% 18%, 100% 58%, 50% 100%, 0% 58%, 0% 18%);
}

.disclaimer-card__check {
  left: 62px;
  top: 68px;
  width: 28px;
  height: 16px;
  border-left: 4px solid rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid rgba(255, 255, 255, 0.96);
  transform: rotate(-45deg);
}

.disclaimer-card__text {
  margin-top: 18px;
  width: 100%;
  max-width: none;
  color: #ffffff;
  font-size: 1.14rem;
  line-height: 1.95;
  text-align: justify;
  text-wrap: pretty;
}

.contact__details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact__details a,
.contact__details span {
  color: var(--text);
  text-decoration: none;
  line-height: 1.7;
}

.contact__location-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 220px;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 24px 24px 26px;
  border: 1px solid rgba(11, 45, 99, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(215, 177, 90, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96));
  box-shadow: 0 18px 34px rgba(12, 35, 74, 0.08);
  overflow: hidden;
}

.contact__location-copy small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__location-copy strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.contact__location-copy p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact__content h2 {
  font-size: clamp(1.72rem, 2.3vw, 2.25rem);
  line-height: 1.08;
}

.contact__map {
  position: relative;
  width: 220px;
  height: 180px;
  margin-left: auto;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 252, 0.96)),
    linear-gradient(90deg, rgba(11, 45, 99, 0.04), rgba(11, 45, 99, 0.02));
  border: 1px solid rgba(11, 45, 99, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.contact__map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 45, 99, 0.06) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, rgba(11, 45, 99, 0.06) 1px, transparent 1px) 0 0 / 28px 100%;
  opacity: 0.55;
}

.contact__map-route {
  position: absolute;
  border: 2px dashed rgba(11, 45, 99, 0.24);
  border-radius: 999px;
}

.contact__map-route--one {
  left: 24px;
  top: 62px;
  width: 132px;
  height: 58px;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(-10deg);
}

.contact__map-route--two {
  right: 28px;
  bottom: 34px;
  width: 98px;
  height: 56px;
  border-left: 0;
  border-top: 0;
  transform: rotate(-12deg);
}

.contact__map-pin {
  position: absolute;
  left: 108px;
  top: 48px;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #ef5b68, #bf2937);
  transform: rotate(-45deg);
  box-shadow: 0 14px 24px rgba(191, 41, 55, 0.24);
  animation: floatCard 5.8s ease-in-out infinite;
}

.contact__map-pin::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.contact__map-pulse {
  position: absolute;
  left: 96px;
  top: 72px;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(191, 41, 55, 0.26);
  border-radius: 50%;
  animation: mapPulse 2.8s ease-out infinite;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(11, 45, 99, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184, 138, 34, 0.18);
  border-color: rgba(184, 138, 34, 0.4);
}

.contact-form option {
  color: #0c213f;
}

.site-footer {
  padding: 40px 0 52px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}

.footer-note {
  margin-top: 10px;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
}

@keyframes heroTextRise {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.02) translateX(0);
  }
  50% {
    transform: scale(1.08) translateX(-0.8%);
  }
  100% {
    transform: scale(1.05) translateX(0.8%);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes mapPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  70% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 0 rgba(255, 255, 255, 0.14);
  }
  50% {
    transform: scale(1.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -1px;
  }
  50% {
    translate: 1px -2px;
  }
  75% {
    translate: -1px -1px;
  }
}

@media (max-width: 1140px) {
  .about,
  .why-us,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .process-workflow {
    width: min(1100px, calc(100% - 28px));
  }

  .process-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .process-journey::before {
    left: 18%;
    right: 18%;
    top: 96px;
  }

  .why-us__layout {
    grid-template-columns: 1fr;
  }

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

  .contact__map {
    margin-left: 0;
  }

  .hero {
    min-height: 860px;
  }

  .hero__content {
    min-height: 860px;
    padding-top: 240px;
  }

}

@media (max-width: 920px) {
  main > section:not(.hero),
  .site-footer {
    zoom: 1;
  }

  .site-header {
    justify-content: center;
  }

  .site-header {
    position: static;
    left: auto;
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding-bottom: 0;
  }

  .site-nav,
  .topbar__links {
    justify-content: center;
  }

  .site-nav {
    width: 100%;
  }

  .hero {
    min-height: 860px;
  }

  .hero__content {
    min-height: 860px;
    padding: 88px 28px 72px;
  }

  .hero-slider,
  .hero-slider__footer {
    max-width: none;
  }

  .hero-slider {
    min-height: 320px;
  }

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

  .hero__text {
    max-width: 46ch;
    font-size: 0.98rem;
  }

  .service-grid,
  .service-showcase,
  .timeline,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .process-workflow {
    width: min(760px, calc(100% - 24px));
    padding: 18px 12px 4px;
  }

  .process-journey {
    gap: 22px;
  }

  .process-journey::before {
    left: 22%;
    right: 22%;
  }

  .process-node:nth-child(2),
  .process-node:nth-child(4) {
    padding-top: 0;
  }

}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 16px, 1240px);
  }

  .site-header {
    position: static;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 8px 0;
    border-radius: 28px;
  }

  .brand-mark {
    order: -1;
    flex: 0 0 128px;
    width: 128px;
    height: 128px;
    justify-content: center;
  }

  .brand-mark__logo {
    width: 98px;
    height: 98px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 2px 0;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 8px;
    font-size: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .header-cta,
  .btn {
    min-height: 46px;
    padding: 0 18px;
  }

  .floating-whatsapp {
    right: 16px;
    left: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 18px;
  }

  .section {
    padding: 48px 0 8px;
  }

  .hero.section {
    padding-top: 0;
  }

  .hero__content {
    min-height: 720px;
    padding: 34px 18px 72px;
  }

  .hero-slider {
    min-height: 280px;
  }

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

  .hero__text {
    max-width: none;
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .contact__location-card {
    padding: 22px 20px;
  }

  .contact__location-copy strong {
    font-size: 1.72rem;
  }

  .contact__map {
    width: 100%;
    max-width: 280px;
    height: 170px;
    margin: 0 auto;
  }

  .hero-slider__dots {
    left: 0;
    bottom: 16px;
    gap: 8px;
    padding: 0;
  }

  .hero-slider__dots button {
    width: 10px;
    height: 10px;
  }

  .hero-slider__dots button.is-active {
    width: 40px;
  }

  .hero__visual {
    min-height: 100%;
    padding: 0;
  }

  .trust-strip article {
    min-height: 430px;
    padding: 20px;
  }

  .why-us__visual {
    min-height: 480px;
    padding: 0;
  }

  .why-us__image-frame {
    width: 100%;
    min-height: 280px;
    border-radius: 24px;
  }

  .why-us__card {
    column-gap: 14px;
    padding: 20px;
  }

  .why-us__card span {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }

  .why-us__card-body small {
    font-size: 0.66rem;
  }

  .why-us__card strong {
    font-size: 1.45rem;
  }

  .service-showcase {
    border-radius: 24px;
  }

  .service-showcase__image,
  .service-showcase__text {
    min-height: 300px;
  }

  .service-showcase__text {
    padding: 28px 22px;
  }

  .service-showcase__text h3 {
    font-size: 1.9rem;
  }

  .contact {
    gap: 18px;
  }

  .service-showcase__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-showcase__overlay strong {
    font-size: 1.6rem;
  }

  .about-card {
    padding: 28px;
  }

  .about-card .section-label {
    font-size: 0.74rem;
  }

  .about-card__title-row {
    gap: 14px;
  }

  .about-card h2 {
    font-size: 2rem;
  }

  .about-card__title {
    width: max-content;
    max-width: 100%;
  }

  .about-card__slogan {
    font-size: 0.84rem;
    letter-spacing: 0.16em;
  }

  .about-card__intro p:not(.section-label) {
    font-size: 1rem;
    line-height: 1.8;
  }

  .process-workflow {
    width: min(480px, calc(100% - 20px));
    padding: 12px 8px 2px;
  }

  .process-journey {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-journey::before {
    display: none;
  }

  .process-node__visual {
    min-height: 130px;
    margin-bottom: 14px;
  }

  .process-node h3 {
    font-size: 1.56rem;
  }

  .process-node p {
    font-size: 0.98rem;
    max-width: 30ch;
  }

  .disclaimer-card {
    padding: 28px 24px;
    padding-right: 28px;
  }

  .disclaimer-card h2 {
    font-size: 1.7rem;
  }

  .disclaimer-card__mark {
    width: 96px;
    height: 96px;
    right: 14px;
    top: 18px;
    transform: none;
    opacity: 0.1;
  }

  .disclaimer-card__shield {
    left: 26px;
    top: 18px;
    width: 44px;
    height: 58px;
  }

  .disclaimer-card__shield::before {
    inset: 8px 10px 14px;
  }

  .disclaimer-card__check {
    left: 40px;
    top: 46px;
    width: 18px;
    height: 10px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }

  .disclaimer-card__text {
    font-size: 1rem;
    line-height: 1.8;
  }


  .trust-strip {
    margin-top: 100px;
  }

  .trust-strip__media {
    margin: -20px -20px 16px;
    height: 280px;
    border-radius: 20px 20px 0 0;
  }

  .trust-strip__media figcaption {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .trust-strip__media--brand img {
    width: 96px;
    height: 96px;
  }

  .trust-strip strong {
    font-size: 1.3rem;
  }

  .hero-glow {
    width: 260px;
    height: 260px;
    inset: 18% auto auto 50%;
    transform: translateX(-50%);
  }

  .brand-badge {
    top: 6%;
    left: 50%;
    width: calc(100% - 32px);
    transform: translateX(-50%);
  }

  .brand-badge img {
    width: 96px;
    height: 96px;
  }

  .brand-badge strong {
    font-size: 1.3rem;
  }

  .floating-note {
    width: 190px;
    padding: 14px;
    border-radius: 18px;
  }

  .floating-note strong {
    font-size: 1.2rem;
  }

  .floating-note p {
    font-size: 0.74rem;
  }

  .floating-note--top {
    top: 28%;
    right: 3%;
  }

  .floating-note--bottom {
    right: 4%;
    bottom: 6%;
  }

  .about__content,
  .about__panel,
  .why-us__panel,
  .contact__content,
  .contact-form,
  .disclaimer-card {
    padding: 24px;
  }
}
