:root {
  --navy-950: #06162f;
  --navy-900: #0b2447;
  --navy-800: #15397a;
  --green-700: #147b39;
  --green-600: #1f9d3f;
  --green-100: #e8f7ee;
  --gold-500: #ffd447;
  --gold-600: #f4b21d;
  --ink: #122033;
  --muted: #5e6878;
  --line: #dce4ef;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --shadow: 0 24px 70px rgba(7, 24, 52, 0.14);
  --shadow-soft: 0 16px 42px rgba(7, 24, 52, 0.1);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), 1188px);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(5, 19, 42, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(5, 19, 42, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy-800), var(--green-600));
  box-shadow: 0 10px 24px rgba(31, 157, 63, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.03rem;
  color: var(--navy-900);
}

.brand small {
  margin-top: 4px;
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #334257;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy-900);
  background: var(--green-100);
  outline: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy-900);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  margin-top: -86px;
  padding: 168px 0 76px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 34%, transparent 34% 100%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 54%, #0b4d3a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-500);
}

.hero .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-600);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: 5.4rem;
  font-weight: 900;
}

h2 {
  color: var(--navy-900);
  font-size: 3.1rem;
  font-weight: 900;
}

h3 {
  color: var(--navy-900);
  font-size: 1.12rem;
  font-weight: 850;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn svg,
.contact-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-secondary svg,
.floating-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.btn:hover,
.btn:focus-visible,
.contact-card:hover,
.contact-card:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 20px 34px rgba(255, 212, 71, 0.24);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 26px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold-500);
  font-size: 1.38rem;
  line-height: 1;
}

.hero-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.filing-panel {
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(100%, 410px);
  min-height: 426px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: linear-gradient(180deg, #fff, #eef6ff);
  box-shadow: 0 38px 90px rgba(1, 9, 24, 0.35);
  transform: rotate(2deg);
}

.panel-top span,
.panel-top strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
}

.panel-top span {
  color: var(--navy-800);
  font-size: 1.28rem;
  font-weight: 900;
}

.panel-top strong {
  margin-top: 6px;
  color: var(--green-600);
  font-size: 4.8rem;
  line-height: 0.9;
}

.document-stack {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.document-stack span {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: #d8e4f2;
}

.document-stack span:nth-child(2) {
  width: 74%;
}

.document-stack span:nth-child(3) {
  width: 88%;
}

.approval-badge {
  position: absolute;
  right: 30px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
  box-shadow: 0 18px 38px rgba(31, 157, 63, 0.34);
}

.approval-badge svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: min(100%, 348px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(6, 22, 47, 0.82);
  box-shadow: 0 20px 44px rgba(1, 9, 24, 0.32);
  backdrop-filter: blur(12px);
}

.quick-contact span,
.quick-contact strong {
  display: block;
}

.quick-contact span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.quick-contact strong {
  margin-top: 5px;
  color: var(--gold-500);
  font-size: 3rem;
  line-height: 1;
}

.trust-strip {
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 24, 52, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-grid div {
  padding: 18px 20px;
  background: #fff;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.why-section,
.itr-section {
  background: var(--soft);
}

.feature-grid,
.services-grid,
.category-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.service-card,
.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 157, 63, 0.42);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 250px;
  padding: 26px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  color: var(--green-600);
  background: var(--green-100);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.service-card h3,
.category-card h3 {
  margin: 20px 0 8px;
}

.feature-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.services-section {
  background: #fff;
}

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

.service-card {
  min-height: 178px;
  padding: 24px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green-600), var(--navy-800));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  gap: 54px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--green-700);
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
}

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

.category-card {
  min-height: 172px;
  padding: 26px;
}

.category-card span {
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.category-card h3 {
  margin-top: 38px;
  font-size: 1.45rem;
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.consultant-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 212, 71, 0.16) 0 34%, transparent 34% 100%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--gold-500);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consultant-card h3 {
  color: #fff;
  font-size: 2.15rem;
  line-height: 1.08;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--gold-500);
  font-size: 2.55rem;
  line-height: 1;
}

.metric-row span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.credential-list span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--navy-800);
  background: #eef5ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(255, 212, 71, 0.14) 0 32%, transparent 32% 100%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.contact-panel h2 {
  color: #fff;
}

.contact-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.contact-card span {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  text-align: right;
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.developer-credit-wrap {
  padding: 36px 0;
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.developer-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(31, 157, 63, 0.09) 0 34%, transparent 34% 100%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.developer-credit span,
.developer-credit strong,
.developer-credit p {
  display: block;
}

.developer-credit span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.developer-credit strong {
  margin-top: 6px;
  color: var(--navy-900);
  font-size: 1.8rem;
  line-height: 1.05;
}

.developer-credit p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.developer-credit a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--green-700));
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 123, 57, 0.22);
  outline: none;
}

.site-footer {
  padding: 26px 0;
  color: #dbe7f8;
  background: var(--navy-950);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--gold-500);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 16px 38px rgba(34, 197, 94, 0.34);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  outline: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: min(calc(100% - 24px), 720px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .filing-panel {
    right: 20px;
    left: auto;
  }

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

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

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 42px;
  }

  .hero {
    padding: 150px 0 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.06rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-points li {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .filing-panel {
    inset: 0 0 auto;
    width: 100%;
    min-height: 354px;
    padding: 26px;
    transform: none;
  }

  .panel-top strong {
    font-size: 3.6rem;
  }

  .quick-contact {
    right: 18px;
    left: 18px;
    bottom: 0;
    width: auto;
  }

  .quick-contact strong {
    font-size: 2.1rem;
  }

  .trust-grid,
  .feature-grid,
  .services-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card,
  .service-card,
  .category-card {
    min-height: auto;
  }

  .contact-panel {
    padding: 26px;
  }

  .contact-card {
    display: grid;
    justify-content: stretch;
  }

  .contact-card strong {
    text-align: left;
    font-size: 1rem;
  }

  .developer-credit {
    display: grid;
    padding: 22px;
  }

  .developer-credit a {
    width: 100%;
  }

  .footer-grid {
    display: grid;
  }

  .hero-stats,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .consultant-card {
    padding: 26px;
  }

  .consultant-card h3 {
    font-size: 1.85rem;
  }

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

@media (max-width: 390px) {
  .site-header {
    width: calc(100% - 16px);
    margin-top: 8px;
    padding-inline: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .panel-top span {
    font-size: 1rem;
  }

  .panel-top strong {
    font-size: 3rem;
  }

  .quick-contact strong {
    font-size: 1.85rem;
  }
}
