:root {
  --blue: #183f78;
  --blue-deep: #0f2958;
  --blue-soft: #edf4fc;
  --green: #4b8f49;
  --green-soft: #e8f6ea;
  --gold: #cf9231;
  --gold-soft: #fff1d6;
  --text: #1b2d4e;
  --muted: #546882;
  --line: #d8e1ee;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(15, 41, 88, 0.1);
  --shadow-strong: 0 26px 64px rgba(15, 41, 88, 0.16);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 63, 120, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(75, 143, 73, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfdff, #f4f8fd);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.top-ribbon {
  height: 18px;
  background: linear-gradient(90deg, #173867, #25528f 52%, #cf9231 80%, #4b8f49);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(15, 41, 88, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 32px rgba(15, 41, 88, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 112px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 18px;
  border: 1px solid rgba(216, 224, 237, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  box-shadow: 0 12px 28px rgba(15, 41, 88, 0.08);
}

.brand-logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: min(42vw, 420px);
  object-fit: contain;
}

.brand-title-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-subname {
  margin-top: 6px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 700;
}

.site-nav a:not(.call-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #27589f);
  color: var(--white) !important;
  box-shadow: 0 14px 28px rgba(24, 63, 120, 0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.section {
  padding: 62px 0;
}

.section-soft {
  position: relative;
  background:
    radial-gradient(circle at 12% 14%, rgba(207, 146, 49, 0.06), transparent 16%),
    radial-gradient(circle at 88% 30%, rgba(24, 63, 120, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.98));
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 24px;
}

.section-title.stacked {
  flex-direction: column;
  gap: 10px;
}

.section-note {
  max-width: 860px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border: 1px solid rgba(24, 63, 120, 0.1);
  border-radius: 14px;
  background: rgba(24, 63, 120, 0.04);
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
}

.line {
  flex: 1;
  max-width: 320px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 63, 120, 0.12), rgba(24, 63, 120, 0.02));
}

.section-title h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--blue);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.24rem;
  line-height: 1.72;
  color: var(--muted);
}

.centered {
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.86), transparent 20%),
    radial-gradient(circle at 12% 12%, rgba(75, 143, 73, 0.12), transparent 18%),
    linear-gradient(120deg, rgba(251, 253, 255, 0.98), rgba(239, 246, 255, 0.96) 54%, rgba(228, 239, 255, 0.92));
}

.page-home {
  background:
    radial-gradient(circle at 10% 0%, rgba(207, 146, 49, 0.1), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(75, 143, 73, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdff, #f4f8fd);
}

.page-home main {
  position: relative;
  overflow: hidden;
}

.page-home main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(24, 63, 120, 0.08), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(207, 146, 49, 0.1), transparent 18%),
    radial-gradient(circle at 74% 56%, rgba(75, 143, 73, 0.08), transparent 20%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 620px;
}

.hero-copy {
  padding: 56px 0;
}

.hero-kicker,
.page-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
  line-height: 1.04;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  letter-spacing: -0.04em;
}

.hero-divider {
  width: min(440px, 80%);
  height: 2px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, rgba(24, 63, 120, 0.3), rgba(24, 63, 120, 0.08));
}

.hero-subtext,
.page-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtext {
  max-width: 640px;
  font-size: 1.28rem;
}

.page-hero {
  padding: 78px 0 48px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(180deg, #f7fbff, #eef5fc);
}

.page-hero-inner {
  max-width: 920px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.page-lead {
  margin-top: 18px;
  max-width: 760px;
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-signal {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 63, 120, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(20, 47, 93, 0.05);
  color: var(--blue-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), #25528f);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(24, 63, 120, 0.18);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), #63a55f);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(75, 143, 73, 0.18);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 63, 120, 0.18);
  color: var(--blue);
}

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

.hero-panel {
  position: absolute;
  inset: 34px 0 34px 16px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(216, 224, 237, 0.86);
  background:
    radial-gradient(circle at top right, rgba(241, 204, 121, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 252, 0.96));
  box-shadow: var(--shadow-strong);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-panel-top strong {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
}

.hero-panel-top p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.06rem;
}

.mini-badge,
.trust-badge,
.testimonial-role,
.hero-stat-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.mini-badge,
.trust-badge,
.testimonial-role {
  background: rgba(24, 63, 120, 0.08);
  color: var(--blue);
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.metric-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(15, 41, 88, 0.05);
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.metric-card strong {
  color: var(--blue-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 1.03rem;
  line-height: 1.4;
}

.hero-orbit,
.hero-glow {
  position: absolute;
  pointer-events: none;
}

.hero-orbit {
  border: 1px solid rgba(24, 63, 120, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 20px;
  right: 12px;
  width: 180px;
  height: 180px;
}

.hero-orbit-two {
  bottom: 26px;
  left: 32px;
  width: 120px;
  height: 120px;
}

.hero-glow-gold,
.hero-glow-green {
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-gold {
  top: 42px;
  right: 84px;
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, rgba(241, 204, 121, 0.66), transparent 72%);
}

.hero-glow-green {
  left: 54px;
  bottom: 54px;
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, rgba(104, 181, 107, 0.44), transparent 72%);
}

.hero-corner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 360px;
  height: 220px;
  background:
    linear-gradient(145deg, transparent 0 26%, rgba(88, 165, 210, 0.2) 26% 38%, transparent 38% 50%, rgba(50, 131, 194, 0.22) 50% 64%, transparent 64% 74%, rgba(75, 143, 73, 0.12) 74% 86%, transparent 86%),
    linear-gradient(180deg, transparent 0 50%, rgba(24, 63, 120, 0.08) 50% 100%);
}

.hero-stats {
  position: relative;
  margin-top: -34px;
  z-index: 2;
}

.hero-stats-grid,
.offers-grid,
.approach-grid,
.impacts-grid,
.trust-grid,
.testimonials-grid,
.info-grid,
.contact-grid-page,
.pricing-overview,
.tariff-grid,
.page-grid {
  display: grid;
  gap: 18px;
}

.hero-stats-grid,
.offers-grid,
.approach-grid,
.trust-grid,
.pricing-overview {
  grid-template-columns: repeat(4, 1fr);
}

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

.contact-grid-page,
.page-grid.two-col,
.tariff-grid {
  grid-template-columns: repeat(2, 1fr);
}

.hero-stat-card,
.offer-card,
.approach-card,
.impact-card,
.trust-card,
.testimonial-card,
.detail-card,
.detail-copy-alone,
.info-card,
.pricing-pill,
.pricing-image-card,
.tariff-card {
  border: 1px solid rgba(216, 224, 237, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-stat-card:hover,
.offer-card:hover,
.approach-card:hover,
.impact-card:hover,
.trust-card:hover,
.testimonial-card:hover,
.detail-card:hover,
.detail-copy-alone:hover,
.info-card:hover,
.pricing-pill:hover,
.tariff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 63, 120, 0.16);
  box-shadow: var(--shadow-strong);
}

.hero-stat-card {
  display: block;
  padding: 22px 20px;
}

.hero-stat-card-link {
  text-decoration: none;
}

.hero-stat-card-link:hover,
.hero-stat-card-link:focus-visible {
  border-color: rgba(37, 211, 102, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 255, 244, 0.96));
}

.hero-stat-eyebrow {
  background: rgba(37, 211, 102, 0.12);
  color: #138246;
}

.hero-stat-value {
  display: block;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}

.hero-stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card,
.detail-card {
  overflow: hidden;
}

.offer-image {
  position: relative;
  height: 206px;
  overflow: hidden;
  background: linear-gradient(135deg, #edf3fa, #f9fbff);
}

.offer-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(15, 41, 88, 0.14));
  pointer-events: none;
}

.offer-image img,
.detail-visual,
.pricing-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body,
.detail-copy,
.info-card,
.approach-card,
.impact-card,
.trust-card,
.testimonial-card,
.pricing-pill,
.tariff-card-header {
  padding: 24px;
}

.offer-body h3,
.approach-card h3,
.impact-card h3,
.trust-card h3,
.testimonial-card h3,
.detail-copy h2,
.info-card h2,
.tariff-card-header h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
}

.offer-body h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 1.38rem;
}

.offer-body p,
.approach-card p,
.impact-card p,
.trust-card p,
.testimonial-card p,
.detail-copy p,
.info-card p,
.tariff-card-header p,
.pricing-pill span,
.tariff-note,
.contact-inline {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.offer-body ul,
.detail-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.offer-body .btn,
.detail-copy .btn {
  margin-top: 18px;
}

.detail-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}

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

.detail-visual {
  min-height: 260px;
  background: #edf3fa;
}

.detail-copy-alone {
  padding: 26px;
}

.info-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.contact-line + .contact-line {
  margin-top: 10px;
}

.contact-line strong {
  color: var(--blue-deep);
}

.approach-card::before,
.impact-card::before,
.trust-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: -24px -24px 20px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
  border-radius: 18px 18px 0 0;
}

.impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(24, 63, 120, 0.1);
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.trust-intro {
  max-width: 900px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.testimonial-mark {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(24, 63, 120, 0.12);
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.testimonial-author {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.pricing-pill strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
  line-height: 1.35;
}

.pricing-intro-grid {
  margin-top: 24px;
}

.pricing-image-card {
  padding: 18px;
}

.pricing-image {
  border-radius: 14px;
  border: 1px solid var(--line);
}

.tariff-card {
  overflow: hidden;
}

.tariff-card-header {
  background: linear-gradient(135deg, rgba(24, 63, 120, 0.08), rgba(241, 184, 59, 0.12));
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
}

.tariff-table th,
.tariff-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.tariff-table th {
  color: var(--blue-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tariff-table td {
  color: var(--muted);
  line-height: 1.55;
}

.tariff-table td:last-child {
  white-space: nowrap;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.tariff-table tbody tr:nth-child(even) {
  background: #f9fbff;
}

.tariff-note {
  margin-top: 22px;
  font-size: 1rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  background: linear-gradient(135deg, #133060 0%, #1d4a86 52%, #173867 100%);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 220px;
  opacity: 0.24;
  background:
    linear-gradient(135deg, transparent 0 24%, #49a4d8 24% 32%, transparent 32% 40%, #63b45b 40% 50%, transparent 50%);
}

.cta-band::before {
  left: -60px;
  bottom: -60px;
}

.cta-band::after {
  right: -60px;
  top: -60px;
  transform: rotate(180deg);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-button {
  min-width: 240px;
}

.contact-inline {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-inline a {
  color: inherit;
  text-decoration: none;
}

.contact-inline a:hover,
.contact-inline a:focus-visible {
  text-decoration: underline;
}

.contact-hours {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.social-links-dark .social-link {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue-deep);
}

.social-link.is-muted {
  cursor: default;
  opacity: 0.82;
}

.social-link.is-muted:hover,
.social-link.is-muted:focus-visible {
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-facebook .social-icon {
  background: #1877f2;
}

.social-linkedin .social-icon {
  background: #0a66c2;
}

.social-whatsapp .social-icon {
  background: #25d366;
  color: #0a2c17;
}

.social-x .social-icon {
  background: #111111;
}

.social-threads .social-icon {
  background: linear-gradient(135deg, #111111, #3a3a3a);
}

.social-tiktok .social-icon {
  background: linear-gradient(135deg, #111111 0%, #00f2ea 50%, #ff0050 100%);
}

.social-instagram .social-icon {
  background: linear-gradient(135deg, #fd1d1d, #fcb045 45%, #833ab4 100%);
}

.site-footer {
  background: #f3f7fc;
  border-top: 1px solid #dee6f2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 26px;
  color: var(--muted);
  font-size: 1rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-stats-grid,
  .offers-grid,
  .approach-grid,
  .trust-grid,
  .pricing-overview,
  .impacts-grid,
  .testimonials-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid-page,
  .page-grid.two-col,
  .tariff-grid,
  .detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 98px;
  }

  .brand-logo {
    height: 70px;
    max-width: 62vw;
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .brand-subname {
    font-size: 0.72rem;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .hero-stats-grid,
  .offers-grid,
  .approach-grid,
  .impacts-grid,
  .trust-grid,
  .testimonials-grid,
  .info-grid,
  .contact-grid-page,
  .page-grid.two-col,
  .pricing-overview,
  .tariff-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .line {
    display: none;
  }

  .section-title {
    flex-direction: column;
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 48px 0 0;
  }

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

  .hero-panel {
    inset: 0;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-signal,
  .social-link,
  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .contact-inline {
    line-height: 1.7;
  }
}
