:root {
  --indux-blue: #0b4ea2;
  --indux-bright-blue: #1565ff;
  --indux-dark: #071d49;
  --indux-deep: #06162f;
  --indux-light: #eaf3ff;
  --indux-green: #2dbe60;
  --indux-yellow: #f4b321;
  --indux-red: #eb5757;
  --indux-text: #5b6675;
  --indux-heading: #071d49;
  --indux-white: #fff;
  --indux-border: #e4eaf2;
  --indux-shadow: 0 18px 45px rgba(12, 32, 60, 0.08);
  --indux-radius: 22px;
  --header-height: 88px;
  --transition: 300ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--indux-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--indux-heading);
  font-weight: 700;
  line-height: 1.14;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

a {
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.skip-link {
  background: var(--indux-white);
  color: var(--indux-dark);
  left: 16px;
  padding: 10px 18px;
  position: fixed;
  top: -80px;
  z-index: 1100;
}

.skip-link:focus {
  top: 12px;
}

.section-anchor {
  scroll-margin-top: var(--header-height);
}

.section {
  padding: 110px 0;
  position: relative;
}

.eyebrow {
  color: var(--indux-bright-blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.title-line {
  background: var(--indux-bright-blue);
  display: block;
  height: 3px;
  margin: 28px 0;
  width: 46px;
}

.title-line-center {
  margin-left: auto;
  margin-right: auto;
}

.title-line-yellow {
  background: var(--indux-yellow);
}

.section-heading {
  margin: 0 auto 58px;
  max-width: 780px;
}

.section-heading h2 span,
.contact-copy h2 span {
  color: var(--indux-bright-blue);
}

.section-heading > p:last-child {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading h3 {
  font-size: 1.75rem;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  padding: 13px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--indux-blue), var(--indux-bright-blue));
  border-color: var(--indux-bright-blue);
  box-shadow: 0 12px 25px rgba(21, 101, 255, 0.22);
}

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

.btn-outline-primary {
  border-color: var(--indux-bright-blue);
  color: var(--indux-bright-blue);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(22px);
}

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

/* Header */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  min-height: var(--header-height);
  transition: background-color var(--transition), box-shadow var(--transition), min-height var(--transition);
}

.site-header .navbar {
  min-height: var(--header-height);
  padding: 12px 0;
}

.navbar-brand {
  display: block;
  height: 58px;
  position: relative;
  width: 190px;
}

.brand-logo {
  height: 58px;
  left: 0;
  object-fit: contain;
  object-position: left center;
  position: absolute;
  top: 0;
  width: 190px;
}

.brand-logo-color {
  opacity: 0;
}

.site-header .nav-link {
  color: var(--indux-white);
  font-weight: 700;
  margin: 0 12px;
  padding: 12px 2px;
  position: relative;
}

.site-header .navbar-nav .nav-link.active {
  color: var(--indux-white);
}

.site-header .nav-link::after {
  background: var(--indux-bright-blue);
  bottom: 4px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--transition);
  width: 100%;
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus-visible::after,
.site-header .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta {
  margin-left: 28px;
  white-space: nowrap;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(7, 29, 73, 0.1);
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-color {
  opacity: 1;
}

.site-header.is-scrolled .nav-link {
  color: var(--indux-dark);
}

.site-header.is-scrolled .navbar-nav .nav-link.active {
  color: var(--indux-dark);
}

.navbar-toggler {
  background: var(--indux-white);
  border-color: rgba(7, 29, 73, 0.12);
}

/* Hero */
.hero {
  align-items: center;
  background: var(--indux-deep);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 145px;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 22, 47, 0.98) 0%, rgba(5, 22, 47, 0.91) 31%, rgba(5, 22, 47, 0.52) 55%, rgba(5, 22, 47, 0.08) 100%);
  inset: 0;
  position: absolute;
}

.hero-mark {
  border: 45px solid rgba(21, 101, 255, 0.03);
  border-radius: 50%;
  height: 420px;
  left: -165px;
  position: absolute;
  top: 180px;
  transform: rotate(-28deg);
  width: 420px;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 710px;
}

.hero h1 {
  color: var(--indux-white);
  font-size: clamp(2rem, 4vw, 5rem);
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--indux-bright-blue);
}

.hero .eyebrow {
  color: #5aa0ff;
}

.hero-copy {
  color: #d6dce5;
  font-size: 1.12rem;
  margin-bottom: 32px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quick-benefits {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 58px 0 0;
  max-width: 720px;
  padding: 0;
}

.quick-benefits li {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.27);
  color: var(--indux-white);
  display: flex;
  font-size: 0.88rem;
  gap: 11px;
  padding: 0 18px;
}

.quick-benefits li:first-child {
  padding-left: 0;
}

.quick-benefits li:last-child {
  border-right: 0;
}

.quick-benefits i {
  font-size: 1.75rem;
}

.benefit-blue { color: #2f80ed; }
.benefit-green { color: var(--indux-green); }
.benefit-yellow { color: #f2c94c; }
.benefit-red { color: var(--indux-red); }

.scroll-indicator {
  bottom: 40px;
  color: var(--indux-white);
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  gap: 9px;
  left: 50%;
  position: absolute;
  text-align: center;
  text-decoration: none;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator i {
  align-items: center;
  border: 2px solid var(--indux-white);
  border-radius: 50%;
  display: flex;
  height: 44px;
  justify-content: center;
  margin: auto;
  width: 44px;
}

.scroll-indicator:hover {
  color: var(--indux-white);
  transform: translateX(-50%) translateY(3px);
}

.hero-curve {
  background: var(--indux-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  bottom: -1px;
  height: 42px;
  left: -5%;
  position: absolute;
  width: 110%;
  z-index: 2;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 4px solid var(--indux-white);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  color: var(--indux-white);
  display: flex;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 68px;
  z-index: 1040;
  text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--indux-white);
  transform: scale(1.05);
}

[data-whatsapp-link][aria-disabled="true"] {
  cursor: not-allowed;
}

/* About */
.about {
  background: var(--indux-white);
}

.about-intro {
  margin-bottom: 54px;
}

.about-intro h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.65rem);
}

.lead-copy {
  font-size: 1.1rem;
}

.about-image-frame {
  border-radius: 100px 0 42px 0;
  margin-left: 40px;
  overflow: hidden;
  position: relative;
}

.about-image-frame::after {
  border-bottom: 70px solid var(--indux-bright-blue);
  border-left: 70px solid transparent;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
}

.about-image-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.about-cards {
  margin-bottom: 64px;
}

.info-card {
  background: var(--indux-white);
  border: 1px solid var(--indux-border);
  border-radius: var(--indux-radius);
  box-shadow: var(--indux-shadow);
  padding: 30px;
}

.info-card-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.info-card-heading h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.icon-hex {
  align-items: center;
  background: var(--indux-light);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
  display: flex;
  flex: 0 0 70px;
  font-size: 1.75rem;
  height: 70px;
  justify-content: center;
}

.problem-card .icon-hex,
.problem-card h3 { color: var(--indux-red); }
.solution-card .icon-hex,
.solution-card h3 { color: var(--indux-green); }
.process-card .icon-hex,
.process-card h3 { color: var(--indux-bright-blue); }

.check-list {
  border-top: 1px solid var(--indux-border);
  list-style: none;
  margin: 20px 0 0;
  padding: 17px 0 0;
}

.check-list li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.check-list li::before {
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 6px;
}

.list-red li::before { background: var(--indux-red); }
.list-green li::before { background: var(--indux-green); }

.process-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.process-list li {
  align-items: center;
  display: flex;
  font-size: 0.92rem;
  gap: 12px;
}

.process-list span {
  align-items: center;
  background: var(--indux-bright-blue);
  border-radius: 50%;
  color: var(--indux-white);
  display: flex;
  flex: 0 0 29px;
  height: 29px;
  justify-content: center;
}

.sectors {
  padding-top: 6px;
}

.sectors-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(7, 1fr);
}

.sector-card {
  background: var(--indux-white);
  border: 1px solid var(--indux-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(12, 32, 60, 0.06);
  padding: 24px 14px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sector-card:hover {
  box-shadow: var(--indux-shadow);
  transform: translateY(-5px) scale(1.02);
}

.sector-card i {
  color: var(--indux-bright-blue);
  font-size: 2rem;
  margin-bottom: 18px;
}

.sector-card h4 {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Services */
.services {
  background: #f9fbfe;
  padding-top: 0;
}

.services-banner {
  background: var(--indux-deep);
  color: #c9d1dc;
  overflow: hidden;
}

.services-banner-copy {
  padding-bottom: 64px;
  padding-top: 64px;
}

.services-banner h2 {
  color: var(--indux-white);
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.services-banner h2 span {
  color: var(--indux-bright-blue);
}

.services-banner-copy > p:last-child {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.services-banner-image {
  align-self: stretch;
  min-height: 410px;
  position: relative;
}

.services-banner-image::before {
  background: linear-gradient(90deg, var(--indux-deep), transparent);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 120px;
  z-index: 1;
}

.services-banner-image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: calc(100% + ((100vw - 1320px) / 2));
}

.services-content {
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--indux-white);
  border: 1px solid var(--indux-border);
  border-radius: 24px;
  box-shadow: var(--indux-shadow);
  padding: 34px 28px 30px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  box-shadow: 0 24px 55px rgba(12, 32, 60, 0.14);
  transform: translateY(-8px) scale(1.02);
}

.service-icon {
  align-items: center;
  background: var(--indux-light);
  border-radius: 50%;
  color: var(--indux-blue);
  display: flex;
  font-size: 2.1rem;
  height: 88px;
  justify-content: center;
  margin: 0 auto 24px;
  width: 88px;
}

.service-card h3 {
  min-height: 52px;
}

.service-card p {
  font-size: 0.96rem;
}

.card-line {
  background: var(--indux-bright-blue);
  display: block;
  height: 3px;
  margin: 24px auto 0;
  width: 54px;
}

.trust-strip {
  background: var(--indux-light);
  border-radius: 20px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  padding: 28px;
}

.trust-strip article {
  align-items: flex-start;
  border-right: 1px solid rgba(11, 78, 162, 0.2);
  display: flex;
  gap: 15px;
  padding: 0 20px;
}

.trust-strip article:first-child { padding-left: 0; }
.trust-strip article:last-child { border-right: 0; padding-right: 0; }
.trust-strip i { color: var(--indux-blue); font-size: 1.8rem; margin-top: 5px; }
.trust-strip h4 { font-size: 1rem; margin-bottom: 4px; }
.trust-strip p { font-size: 0.85rem; line-height: 1.4; margin-bottom: 0; }

/* Portfolio */
.portfolio {
  background: var(--indux-white);
  overflow: hidden;
  padding: 120px 0;
}

.portfolio::before,
.portfolio::after,
.benefits::before {
  background: radial-gradient(circle, rgba(21, 101, 255, 0.08) 0 2px, transparent 3px);
  background-size: 18px 18px;
  content: "";
  height: 180px;
  opacity: 0.55;
  position: absolute;
  width: 180px;
}

.portfolio::before { left: -60px; top: 110px; }
.portfolio::after { bottom: 30px; right: -70px; }

.portfolio-card {
  background: var(--indux-dark);
  border-radius: 26px;
  box-shadow: var(--indux-shadow);
  color: var(--indux-white);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-grid > div:nth-child(odd) .portfolio-card { transform: rotate(-1.4deg); }
.portfolio-grid > div:nth-child(even) .portfolio-card { transform: rotate(1.4deg); }
.portfolio-card:hover { box-shadow: 0 26px 55px rgba(7, 29, 73, 0.2); transform: translateY(-8px) rotate(0) scale(1.01); }

.portfolio-image {
  height: 330px;
  overflow: hidden;
}

.portfolio-image img {
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition), transform var(--transition);
  width: 100%;
}

.portfolio-card:hover .portfolio-image img { filter: brightness(0.88); transform: scale(1.03); }

.portfolio-icon {
  align-items: center;
  background: var(--indux-bright-blue);
  border: 2px solid #5aa0ff;
  border-radius: 50%;
  color: var(--indux-white);
  display: flex;
  font-size: 1.65rem;
  height: 68px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 296px;
  transform: translateX(-50%);
  width: 68px;
}

.portfolio-content {
  min-height: 250px;
  padding: 48px 32px 32px;
}

.portfolio-content h3 { color: var(--indux-white); font-size: 1.35rem; text-transform: uppercase; }
.portfolio-content h3 span { color: #2f80ed; display: block; }
.portfolio-content ul { list-style: none; margin: 20px 0 0; padding: 0; }
.portfolio-content li { margin-bottom: 5px; padding-left: 16px; position: relative; }
.portfolio-content li::before { color: var(--indux-bright-blue); content: "•"; left: 0; position: absolute; }
.portfolio-cta { margin-top: 48px; }

/* Benefits */
.benefits {
  background: linear-gradient(180deg, #f8fbff, var(--indux-white));
  overflow: hidden;
  padding: 120px 0;
}

.benefits::before { left: -55px; top: 180px; }

.benefit-card {
  align-items: center;
  background: var(--indux-white);
  border: 1px solid rgba(228, 234, 242, 0.8);
  border-radius: var(--indux-radius);
  box-shadow: var(--indux-shadow);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px 58px 1fr;
  min-height: 190px;
  padding: 20px 28px 20px 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover { box-shadow: 0 24px 55px rgba(12, 32, 60, 0.12); transform: translateY(-5px); }

.benefit-card > img {
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  height: 150px;
  object-fit: cover;
  width: 150px;
}

.benefit-icon {
  align-items: center;
  background: #f2f7ff;
  border-radius: 50%;
  color: var(--indux-blue);
  display: flex;
  font-size: 1.5rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.benefit-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.benefit-card p { font-size: 0.96rem; margin-bottom: 0; }

/* Why INDUX */
.why-us {
  background: var(--indux-deep);
  padding: 0;
}

.why-content {
  color: #c6cfdb;
  padding: 120px max(40px, calc((100vw - 1320px) / 2));
}

.why-content h2 { color: var(--indux-white); }
.why-content h2 span { color: var(--indux-bright-blue); }
.why-image { min-height: 800px; overflow: hidden; position: relative; }
.why-image::before { border-left: 4px solid var(--indux-bright-blue); content: ""; height: 115%; left: -60px; position: absolute; top: -7%; transform: rotate(15deg); z-index: 1; }
.why-image img { height: 100%; object-fit: cover; position: absolute; width: 100%; }
.why-list article { align-items: flex-start; border-bottom: 1px solid rgba(255, 255, 255, 0.18); display: flex; gap: 24px; padding: 25px 0; }
.why-list article:last-child { border-bottom: 0; }
.why-icon { align-items: center; border: 1px solid rgba(21, 101, 255, 0.5); border-radius: 50%; box-shadow: 0 0 25px rgba(21, 101, 255, 0.15); color: #31b6ff; display: flex; flex: 0 0 68px; font-size: 1.6rem; height: 68px; justify-content: center; transition: transform var(--transition), box-shadow var(--transition); }
.why-list article:hover .why-icon { box-shadow: 0 0 30px rgba(21, 101, 255, 0.3); transform: translateX(4px); }
.why-list h3 { color: var(--indux-white); font-size: 1.15rem; margin-bottom: 9px; text-transform: uppercase; }
.why-list p { margin-bottom: 0; }

/* Contact */
.contact {
  background: linear-gradient(135deg, #f8fbff, var(--indux-white));
  padding: 120px 0;
}

.contact-main { min-height: 700px; }
.contact-copy { padding-right: 34px; }
.contact-copy h2 { font-size: clamp(2.3rem, 3.5vw, 3.7rem); }
.contact-copy > p:last-of-type { font-size: 1.05rem; }
.contact-cards { display: grid; gap: 14px; margin: 30px 0 28px; }
.contact-card { align-items: center; background: var(--indux-white); border: 1px solid var(--indux-border); border-radius: 14px; box-shadow: 0 10px 28px rgba(12, 32, 60, 0.07); color: var(--indux-text); display: grid; gap: 14px; grid-template-columns: 52px 1fr auto; padding: 14px 18px; text-decoration: none; }
.contact-card:hover { color: var(--indux-text); transform: translateY(-2px); }
.contact-card > span { align-items: center; background: var(--indux-light); border-radius: 50%; color: var(--indux-bright-blue); display: flex; font-size: 1.35rem; height: 52px; justify-content: center; width: 52px; }
.contact-card:first-child > span { background: #e7f9ee; color: #25d366; }
.contact-card h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-card p { font-size: 0.9rem; margin-bottom: 0; }
.business-hours { align-items: flex-start; color: var(--indux-dark); display: flex; gap: 12px; }
.business-hours > i { color: var(--indux-bright-blue); margin-top: 5px; }
.business-hours h3 { font-size: 0.95rem; margin-bottom: 2px; }
.business-hours p { font-size: 0.9rem; margin-bottom: 0; }

.contact-form-column { align-items: center; display: flex; position: relative; z-index: 2; }
.contact-form { background: var(--indux-white); border-radius: var(--indux-radius); box-shadow: 0 20px 60px rgba(7, 29, 73, 0.14); margin-right: -40px; padding: 34px; width: calc(100% + 40px); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form > p { font-size: 0.9rem; line-height: 1.5; }
.contact-form label { color: var(--indux-dark); font-size: 0.84rem; font-weight: 700; margin-bottom: 5px; }
.contact-form .form-control { border-color: #d9e1eb; min-height: 46px; }
.contact-form textarea.form-control { min-height: 100px; resize: vertical; }
.contact-form .form-check-label { color: var(--indux-text); font-weight: 400; line-height: 1.35; }

.contact-image { border-radius: 100px 0 0 100px; overflow: hidden; padding: 0; }
.contact-image img { height: 100%; object-fit: cover; width: 100%; }

.contact-cta { align-items: center; background: var(--indux-dark); border-radius: 20px; color: #c7d0dd; display: grid; gap: 0; grid-template-columns: 1.7fr repeat(3, 1fr); margin-top: 46px; padding: 28px 30px; }
.contact-cta article { align-items: flex-start; border-left: 1px solid rgba(255, 255, 255, 0.2); display: flex; gap: 14px; padding: 0 22px; }
.contact-cta .contact-cta-main { border-left: 0; padding-left: 0; }
.contact-cta i { color: var(--indux-bright-blue); font-size: 1.8rem; margin-top: 4px; }
.contact-cta h3,
.contact-cta h4 { color: var(--indux-white); }
.contact-cta h3 { font-size: 1.2rem; }
.contact-cta h4 { font-size: 0.9rem; margin-bottom: 5px; }
.contact-cta p { font-size: 0.82rem; line-height: 1.45; margin-bottom: 0; }
.contact-cta-main > span { align-items: center; border: 1px solid var(--indux-bright-blue); border-radius: 50%; display: flex; flex: 0 0 68px; height: 68px; justify-content: center; }

/* Footer */
.site-footer {
  background: #061a3a;
  color: #c7d0dd;
  overflow: hidden;
  padding: 90px 0 36px;
  position: relative;
}

.footer-lines::before,
.footer-lines::after {
  border: 1px solid rgba(47, 128, 237, 0.13);
  border-radius: 50%;
  content: "";
  height: 480px;
  position: absolute;
  width: 700px;
}

.footer-lines::before { left: -420px; top: 40px; transform: rotate(30deg); }
.footer-lines::after { bottom: -300px; right: -420px; transform: rotate(-20deg); }
.site-footer .container { position: relative; z-index: 1; }
.footer-main { padding-bottom: 66px; }
.footer-brand img { height: 88px; object-fit: contain; object-position: left; width: 270px; }
.footer-brand p { font-size: 1.08rem; line-height: 2; margin: 35px 0 0; max-width: 340px; }
.footer-column h4 { color: #3d87cb; font-size: 1.1rem; letter-spacing: 0.14em; margin-bottom: 28px; text-transform: uppercase; }
.footer-column h4::after { background: #3d87cb; content: ""; display: block; height: 2px; margin-top: 14px; width: 46px; }
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { margin-bottom: 18px; }
.footer-column a { color: #eef4fb; text-decoration: none; }
.footer-column nav a { display: inline-flex; gap: 12px; }
.footer-column nav a i { color: #3d87cb; font-size: 0.75rem; margin-top: 8px; }
.footer-column a:hover { color: #3d87cb; transform: translateX(4px); }
.footer-contact li { align-items: flex-start; display: flex; gap: 18px; }
.footer-contact li > i { color: #3d87cb; font-size: 1.35rem; margin-top: 5px; width: 24px; }
.footer-contact strong { color: var(--indux-white); display: block; margin-bottom: 4px; }
.footer-contact a,
.footer-contact span { color: #c7d0dd; display: block; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; justify-content: space-between; padding-top: 30px; }
.footer-bottom p { margin-bottom: 0; }
.footer-bottom strong,
.footer-bottom a { color: #3d87cb; }
.footer-bottom a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto; transition-duration: 0.01ms; }
  [data-reveal] { opacity: 1; transform: none; }
}
