:root {
  --navy: #071735;
  --navy-2: #0c2354;
  --blue: #1b63e8;
  --cyan: #20a7ff;
  --green: #38d36f;
  --ink: #172033;
  --muted: #65728a;
  --line: #dbe4f2;
  --soft: #f5f8fc;
  --sky-soft: #eef8ff;
  --ice-soft: #f3fbff;
  --powder-soft: #edf5ff;
  --pastel-line: #cfe8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 23, 53, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 38px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, #050d1f, #081c42 58%, #050d1f);
  font-size: 13px;
  font-weight: 750;
}

.top-strip > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.top-strip > span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 167, 255, 0.7);
}

.top-strip a {
  color: var(--white);
}

.top-strip > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  min-width: 124px;
  padding: 0 14px;
  border: 1px solid rgba(32, 167, 255, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(32, 167, 255, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.top-strip > a:last-child:hover {
  background: rgba(32, 167, 255, 0.16);
}

.section-dots {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 19;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.section-dots a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 30px;
  padding: 5px 10px 5px 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(10, 23, 57, 0.72);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(7, 23, 53, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.section-dots a:hover,
.section-dots a.is-active {
  color: var(--navy);
  border-color: rgba(64, 160, 255, 0.34);
  background: #ffffff;
  transform: translateX(4px);
}

.section-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(64, 160, 255, 0.38);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px transparent;
}

.section-dots a.is-active span,
.section-dots a:hover span {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(64, 160, 255, 0.13);
}

.section-dots strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(7, 23, 53, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: #ffffff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 32px rgba(32, 167, 255, 0.26);
  font-weight: 900;
  letter-spacing: 0;
}

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

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  text-transform: uppercase;
}

.brand-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  color: var(--navy);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: min(680px, 88vh);
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 34%, rgba(32, 167, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(7, 23, 53, 0.98) 0%, rgba(7, 23, 53, 0.84) 35%, rgba(7, 23, 53, 0.25) 72%, rgba(7, 23, 53, 0.2) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  padding: 146px 0 34px clamp(18px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

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

.hero-bullets {
  display: grid;
  gap: 9px;
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-bullets span {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.hero-bullets span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 34px rgba(27, 99, 232, 0.28);
}

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

.btn-secondary.light {
  color: var(--navy);
  border-color: rgba(7, 23, 53, 0.12);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 750;
}

.proof-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(18px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.proof-band a {
  color: var(--cyan);
  font-weight: 850;
}

.section {
  padding: 88px clamp(18px, 6vw, 88px);
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.intro h2,
.section-heading h2,
.benefit-panel h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading > div,
.intro-grid > h2 {
  max-width: 620px;
}

.intro p,
.section-heading p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro p {
  max-width: 620px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.section-heading p {
  margin: 0;
  max-width: 610px;
  padding: 20px 22px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(7, 23, 53, 0.05);
  font-size: 18px;
  line-height: 1.75;
}

.specialties .section-heading p,
.process .section-heading p {
  background: rgba(255, 255, 255, 0.82);
}

.services {
  background:
    radial-gradient(circle at 12% 16%, rgba(32, 167, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f4fbff 0%, #eef7ff 100%);
}

.services-intro {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.services-intro p {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.services-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.services-showcase {
  display: block;
}

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

.service-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 30px 30px 30px 38px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #5bb8e8, #3e8ee7);
  box-shadow: 0 16px 38px rgba(32, 114, 204, 0.18);
}

.service-feature::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 30px;
  bottom: 30px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.service-feature:nth-child(2) {
  background: linear-gradient(135deg, #64bde8, #4e9cf0);
}

.service-feature:nth-child(3) {
  background: linear-gradient(135deg, #3aa2c7, #2d87b9);
}

.service-feature:nth-child(4) {
  background: linear-gradient(135deg, #4f97df, #396fd1);
}

.service-feature:nth-child(5) {
  background: linear-gradient(135deg, #4aaed7, #2f82c7);
}

.service-feature:nth-child(6) {
  background: linear-gradient(135deg, #5fa7f2, #365bd0);
}

.service-feature-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  color: var(--white);
}

.service-feature-icon svg {
  width: 62px;
  height: 62px;
  fill: currentColor;
}

.service-feature h3 {
  min-height: 66px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(24px, 1.85vw, 29px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(7, 23, 53, 0.35);
}

.service-feature p {
  flex: 1;
  min-height: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.72;
  text-align: justify;
  text-wrap: pretty;
}

.service-feature a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  margin-top: 24px;
  border-radius: 4px;
  color: var(--white);
  background: #315cff;
  font-weight: 950;
  text-transform: uppercase;
}

.services-photo {
  display: none;
}

.services-photo img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-support-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.service-support-row article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--navy-2);
}

.support-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.service-support-row h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.12;
}

.service-support-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.service-contact {
  min-width: 190px;
}

.service-main-cta {
  display: flex;
  width: min(220px, 100%);
  margin: 34px auto 0;
}

.operations {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: 82px clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(32, 167, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #06142f, #0c2b68);
}

.sector-section {
  display: block;
  padding: 88px clamp(18px, 6vw, 88px);
  background: linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
}

.sector-content {
  max-width: 1120px;
  margin: 0 auto;
}

.sector-content .section-kicker {
  display: block;
  text-align: center;
}

.sector-content h2 {
  max-width: 900px;
  margin: 0 auto 34px;
  color: var(--navy);
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.12;
  text-align: center;
}

.sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.sector-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 14px 18px 14px 30px;
  border: 1px solid #cfe6ff;
  border-radius: 8px;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(7, 23, 53, 0.06);
}

.sector-grid article::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(32, 167, 255, 0.22);
}

.sector-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #95c9f7;
  border-radius: 8px;
  color: #237ad5;
  background: linear-gradient(180deg, #eef8ff, #ffffff);
  box-shadow: 0 12px 28px rgba(32, 167, 255, 0.1);
}

.sector-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.sector-grid strong {
  color: #0d1730;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.15;
}

.sector-note {
  grid-column: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.sector-cta {
  margin-top: 40px;
  min-width: 270px;
}

.sector-image {
  display: none;
}

.sector-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.operations-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.35vw, 44px);
  line-height: 1.12;
}

.operations-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.72;
}

.operations-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.operations-list span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  line-height: 1.35;
}

.compliance-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: 70px clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(238, 248, 255, 0.95), rgba(255, 255, 255, 0.96)),
    var(--sky-soft);
  border-top: 1px solid var(--pastel-line);
  border-bottom: 1px solid var(--pastel-line);
}

.compliance-copy h2 {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.12;
}

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

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid #b9def8;
  border-radius: 8px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.96));
  box-shadow: 0 12px 32px rgba(7, 23, 53, 0.07);
  font-size: 15px;
  font-weight: 950;
  text-align: center;
}

.logo-badge.sunat {
  color: var(--white);
  background: linear-gradient(135deg, #1267b1, #20a7ff);
  border-color: transparent;
  font-size: 22px;
  letter-spacing: 0;
}

.specialties {
  background: var(--white);
}

.plans {
  background: var(--soft);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.plan-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(27, 99, 232, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  box-shadow: 0 16px 42px rgba(7, 23, 53, 0.08);
}

.plan-card.highlighted {
  color: var(--white);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(27, 99, 232, 0.96), rgba(7, 23, 53, 0.98)),
    var(--navy);
}

.plan-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--blue);
  background: #e7f1ff;
  font-weight: 950;
}

.plan-card.highlighted span {
  color: var(--navy);
  background: var(--green);
}

.plan-card h3 {
  min-height: 58px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.16;
}

.plan-card.highlighted h3 {
  color: var(--white);
}

.plan-card p {
  min-height: 56px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.plan-card.highlighted p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.45;
}

.plan-card.highlighted li {
  color: rgba(255, 255, 255, 0.88);
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.company-types {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 72px clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(56, 211, 111, 0.2), transparent 28%),
    linear-gradient(135deg, #071735, #123f8f);
}

.company-types h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(31px, 3.1vw, 42px);
  line-height: 1.16;
}

.company-types p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.company-cta {
  margin-top: 24px;
}

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

.type-grid span {
  display: grid;
  place-items: center;
  min-height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  font-weight: 950;
}

.why-choose {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.why-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px 28px 28px 36px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.96)),
    var(--sky-soft);
  border: 1px solid var(--pastel-line);
  box-shadow: 0 14px 38px rgba(7, 23, 53, 0.07);
}

.why-grid article::before,
.step::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 26px;
  bottom: 26px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.why-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}

.why-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}


.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.specialty-grid article {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 24px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  box-shadow: 0 12px 35px rgba(7, 23, 53, 0.07);
}

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

.specialty-grid strong {
  min-height: 46px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.24;
}

.specialty-grid span {
  color: var(--muted);
  line-height: 1.58;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--pastel-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 255, 0.96)),
    var(--sky-soft);
  box-shadow: 0 14px 38px rgba(7, 23, 53, 0.07);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #5db9f5, #9ddcff);
}

.service-card:nth-child(3n + 2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 251, 255, 0.96)),
    var(--ice-soft);
}

.service-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, #8ed8ff, #c1ecff);
}

.service-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 245, 255, 0.96)),
    var(--powder-soft);
}

.service-card:nth-child(3n)::before {
  background: linear-gradient(90deg, #78b9ff, #a9d7ff);
}

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(27, 99, 232, 0.92), rgba(12, 35, 84, 0.96)),
    var(--navy);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.logo-cloud {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: 70px clamp(18px, 6vw, 88px);
  background: linear-gradient(135deg, #ffffff, #eef8ff);
  border-top: 1px solid var(--pastel-line);
  border-bottom: 1px solid var(--pastel-line);
}

.logo-cloud-copy h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.12;
}

.accounting-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.accounting-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid #b9def8;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.96));
  box-shadow: 0 12px 30px rgba(7, 23, 53, 0.07);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.accounting-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(7, 23, 53, 0.12);
}

.accounting-logo.sunat-logo {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 103, 177, 0.96), rgba(32, 167, 255, 0.96)),
    #1267b1;
  border-color: transparent;
  font-size: 24px;
  letter-spacing: 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue);
  background: #e9f3ff;
  font-size: 13px;
  font-weight: 950;
}

.featured .icon {
  color: var(--navy);
  background: var(--green);
}

.service-card h3,
.step h3 {
  min-height: 50px;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  padding: 88px clamp(18px, 6vw, 88px);
  background: var(--white);
}

.benefit-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--soft);
}

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

.benefit-list div {
  position: relative;
  min-height: 112px;
  padding-left: 30px;
  padding-top: 20px;
  border-top: 2px solid var(--blue);
}

.benefit-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 14px;
  height: 14px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 4px rgba(64, 160, 255, 0.14);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.benefit-list span {
  color: var(--muted);
  line-height: 1.55;
}

.benefit-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid #cfe6ff;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 18px 38px rgba(15, 37, 78, 0.08);
}

.benefit-summary span {
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef7ff;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.benefit-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.benefit-summary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 26px rgba(46, 113, 255, 0.22);
}

.metric-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 23, 53, 0.08), rgba(7, 23, 53, 0.94)),
    linear-gradient(135deg, #0a1b3d, #1248b7);
  box-shadow: var(--shadow);
}

.metric-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-panel strong {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
}

.metric-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.process {
  background:
    radial-gradient(circle at 10% 12%, rgba(32, 167, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.22;
}

.step {
  position: relative;
  z-index: 1;
  min-height: 290px;
  padding: 28px 28px 28px 36px;
  border: 1px solid #cfe8fb;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.95)),
    var(--white);
  box-shadow: 0 16px 40px rgba(7, 23, 53, 0.08);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(27, 99, 232, 0.24);
  font-weight: 900;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--blue);
  background: #eaf6ff;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: center;
  padding: 76px clamp(18px, 6vw, 88px);
  color: var(--ink);
  background: var(--white);
}

.contact-form-section {
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  color: var(--ink);
  background:
    linear-gradient(90deg, #f7fbff 0%, #ffffff 48%, #f7fbff 100%);
}

.contact-form-section h2 {
  color: var(--navy);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid #cfe6ff;
  border-radius: 999px;
  color: var(--blue);
  background: #eef8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-details h2,
.contact-form h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

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

.contact-data > div {
  position: relative;
  min-height: 102px;
  padding: 20px 20px 20px 74px;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(7, 23, 53, 0.06);
}

.contact-data > div::before {
  content: "@";
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 17px;
  font-weight: 950;
}

.contact-data > div:nth-child(2)::before {
  content: "☎";
}

.contact-data > div:nth-child(3)::before {
  content: "⌖";
}

.contact-data > div:nth-child(4)::before {
  content: "#";
}

.contact-data > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-data > div > a {
  color: #111827;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.45;
}

.contact-social-inline div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-inline a {
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 14px;
  font-weight: 850;
}

.contact-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  box-shadow: 0 12px 26px rgba(27, 99, 232, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-social-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(27, 99, 232, 0.24);
}

.contact-social-pill svg {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 0;
  fill: currentColor;
  background: transparent;
}

.contact-social-pill.whatsapp {
  background: linear-gradient(135deg, #19b95f, #42d976);
}

.contact-social-pill.instagram {
  background: linear-gradient(135deg, #feda75, #fa7e1e 26%, #d62976 56%, #962fbf 78%, #4f5bd5);
}

.contact-social-pill.tiktok {
  background:
    radial-gradient(circle at 34% 34%, rgba(37, 244, 238, 0.7), transparent 20%),
    radial-gradient(circle at 68% 68%, rgba(254, 44, 85, 0.72), transparent 24%),
    #05070f;
}

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

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

.contact-form label span {
  color: #b8bcc4;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 11px 0 14px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--blue);
}

.contact-form button {
  justify-self: center;
  min-width: 220px;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

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

.contact-form-section h2 {
  color: var(--navy);
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions p {
  flex-basis: 100%;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.footer {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
}

.footer-rich {
  margin-top: 0;
  padding: 64px clamp(18px, 6vw, 88px) 28px;
  border-radius: 56px 56px 0 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(32, 167, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #071735, #0d1d42);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) repeat(3, minmax(190px, 1fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.footer-brand-block img {
  width: min(170px, 80%);
  height: auto;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.footer-brand-block p {
  max-width: 260px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3,
.footer-social-section h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.05;
}

.footer-column a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list a {
  font-size: 18px;
}

.footer-contact-list a::before {
  content: none;
}

.footer-contact-list svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: var(--white);
}

.footer-social-section {
  margin-top: 52px;
}

.footer-social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  color: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-social:hover {
  transform: translateY(-4px);
}

.footer-social svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.footer-social.instagram {
  background: linear-gradient(135deg, #feda75, #fa7e1e 26%, #d62976 56%, #962fbf 78%, #4f5bd5);
  box-shadow: 0 16px 34px rgba(214, 41, 118, 0.24);
}

.footer-social.whatsapp {
  background: linear-gradient(135deg, #19b95f, #42d976);
  box-shadow: 0 16px 34px rgba(24, 182, 95, 0.24);
}

.contact-social-pill.whatsapp,
.footer-social.whatsapp,
.floating-whatsapp {
  border-radius: 14px;
  color: #ffffff;
  background: #43d566;
  box-shadow: 0 18px 38px rgba(35, 190, 87, 0.28);
}

.contact-social-pill.whatsapp svg,
.footer-social.whatsapp svg,
.floating-whatsapp svg {
  color: #ffffff;
  fill: currentColor;
}

.contact-social-pill.whatsapp svg {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-social.whatsapp svg {
  width: 42px;
  height: 42px;
}

.footer-social.tiktok {
  background:
    radial-gradient(circle at 34% 34%, rgba(37, 244, 238, 0.72), transparent 22%),
    radial-gradient(circle at 68% 68%, rgba(254, 44, 85, 0.72), transparent 24%),
    #05070f;
  box-shadow: 0 16px 34px rgba(37, 244, 238, 0.14);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

@media (max-width: 980px) {
  .section-dots {
    display: none;
  }

  .site-header {
    position: absolute;
    top: 34px;
    flex-wrap: wrap;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 112px;
  }

  .intro-grid,
  .section-heading,
  .sector-section,
  .services-showcase,
  .logo-cloud,
  .operations,
  .compliance-strip,
  .company-types,
  .benefits,
  .contact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .benefit-summary {
    grid-template-columns: 1fr;
  }

  .benefit-summary a {
    width: 100%;
  }

  .section-heading p,
  .intro p {
    max-width: 720px;
  }

  .service-grid,
  .sector-grid,
  .accounting-logos,
  .service-support-row,
  .plan-grid,
  .why-grid,
  .specialty-grid,
  .logo-badges,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .contact-actions p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .top-strip {
    position: absolute;
    justify-content: flex-end;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .top-strip span:nth-child(2) {
    display: none;
  }

  .top-strip .social-link {
    width: 30px;
    min-height: 30px;
    overflow: hidden;
    padding: 0;
    gap: 0;
    font-size: 0;
  }

  .top-strip .social-link svg {
    width: 30px;
    height: 30px;
    padding: 7px;
  }

  .site-header {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 53, 0.96) 0%, rgba(7, 23, 53, 0.84) 58%, rgba(7, 23, 53, 0.58) 100%);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: 100%;
    padding: 146px 18px 38px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .proof-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .sector-section,
  .benefits,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading {
    gap: 18px;
  }

  .intro h2,
  .section-heading h2,
  .benefit-panel h2,
  .contact h2 {
    font-size: clamp(29px, 9vw, 36px);
    line-height: 1.12;
  }

  .intro p,
  .section-heading p,
  .operations-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .service-card h3,
  .plan-card h3,
  .plan-card p,
  .step h3,
  .specialty-grid strong {
    min-height: 0;
  }

  .service-grid,
  .service-feature-grid,
  .sector-grid,
  .accounting-logos,
  .plan-grid,
  .benefit-list,
  .why-grid,
  .specialty-grid,
  .operations-list,
  .logo-badges,
  .type-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .metric-panel {
    min-height: 340px;
  }

  .services-photo img {
    height: 360px;
  }

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

  .steps::before {
    display: none;
  }

  .step {
    min-height: 0;
  }

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

  .sector-grid article {
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: start;
  }

  .sector-note {
    grid-column: 2;
  }

  .sector-icon {
    width: 50px;
    height: 50px;
  }

  .sector-icon svg {
    width: 28px;
    height: 28px;
  }

  .sector-image,
  .sector-image img {
    min-height: 360px;
    height: 360px;
  }
}

html {
  scroll-padding-top: 112px;
}

.header-cta,
.btn,
.service-card,
.plan-card,
.specialty-grid article,
.why-grid article,
.step,
.logo-badge {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.header-cta:hover,
.btn:hover,
.service-card:hover,
.plan-card:hover,
.specialty-grid article:hover,
.why-grid article:hover,
.step:hover,
.logo-badge:hover {
  transform: translateY(-4px);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(27, 99, 232, 0.36);
}

.service-card:hover,
.plan-card:hover,
.specialty-grid article:hover,
.why-grid article:hover,
.step:hover,
.logo-badge:hover {
  box-shadow: 0 20px 46px rgba(7, 23, 53, 0.12);
}

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

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

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: 84px clamp(18px, 6vw, 88px);
  background: var(--soft);
}

.location-copy h2 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(31px, 3.6vw, 48px);
  line-height: 1.1;
}

.location-copy p:not(.section-kicker) {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--pastel-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #18b65f, #38d36f);
  box-shadow: 0 16px 38px rgba(24, 182, 95, 0.32);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(24, 182, 95, 0.42);
}

@media (max-width: 980px) {
  .location {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .location {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
  }

  .footer-rich {
    border-radius: 30px 30px 0 0;
    padding-top: 46px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block img {
    width: 150px;
  }

  .footer-column h3,
  .footer-social-section h3 {
    font-size: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

.brand-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(32, 167, 255, 0.22);
}

.brand-logo img {
  display: block;
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.social-link,
.social-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-strip .social-link {
  min-height: 30px;
  padding: 0 10px 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.top-strip .social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.social-link svg,
.social-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.top-strip .social-link svg {
  width: 26px;
  height: 26px;
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #feda75, #fa7e1e 28%, #d62976 56%, #962fbf 78%, #4f5bd5);
  box-shadow: 0 8px 20px rgba(214, 41, 118, 0.26);
}

.top-strip .social-link[href*="tiktok"] svg {
  background:
    radial-gradient(circle at 35% 35%, rgba(37, 244, 238, 0.65), transparent 22%),
    radial-gradient(circle at 65% 65%, rgba(254, 44, 85, 0.65), transparent 25%),
    #070b16;
  box-shadow: 0 8px 20px rgba(37, 244, 238, 0.18);
}

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

.top-strip .social-link {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  gap: 0;
}

.top-strip .social-link svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 8px;
}

.accounting-logo {
  flex-direction: column;
  gap: 8px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 12px;
  font-weight: 950;
}

.sunat-logo {
  position: relative;
  min-height: 92px;
}

.sunat-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  color: #ffffff;
  background: #1472ba;
  box-shadow: inset 0 -8px 0 rgba(0, 44, 95, 0.22);
  font-size: 23px;
  font-weight: 950;
}

.sunat-mark::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  width: 22px;
  height: 44px;
  background: #f1c400;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.metric-panel {
  justify-content: center;
  min-height: 430px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.96)),
    var(--white);
  border: 1px solid var(--pastel-line);
}

.metric-panel img {
  width: min(220px, 70%);
  height: auto;
  margin: 0 auto 26px;
  border-radius: 8px;
  background: var(--white);
}

.metric-panel .metric-label {
  color: var(--blue);
}

.metric-panel strong {
  color: var(--navy);
  text-align: center;
}

.metric-panel p {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .metric-panel img {
    width: min(190px, 70%);
  }
}

.sector-section {
  display: block;
}

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

.sector-grid article {
  grid-template-columns: 54px minmax(190px, 0.32fr) minmax(0, 1fr);
}

.sector-note {
  grid-column: auto;
}

.sector-image {
  display: none;
}

@media (max-width: 640px) {
  .sector-grid article {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .sector-note {
    grid-column: 2;
  }
}

.floating-whatsapp {
  border-radius: 14px;
  background: #43d566;
}

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

@media (max-width: 640px) {
  .floating-whatsapp {
    border-radius: 12px;
  }

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