:root {
  --navy: #123c5c;
  --blue: #008ee6;
  --blue-strong: #008ee6;
  --aqua: #dff5ff;
  --mint: #cce7e4;
  --ink: #101820;
  --muted: #4f6f86;
  --line: #dce7ec;
  --surface: #ffffff;
  --soft: #f5f9fb;
  --shadow: 0 18px 50px rgba(16, 43, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

h1,
h2,
.plan-price,
.offer-strip strong,
.price-cards strong {
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header,
.landing-header,
.crm-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: clamp(174px, 18vw, 230px);
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), var(--blue));
  border-radius: 8px;
  font-size: 12px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.home-nav a {
  position: relative;
  padding: 18px 0;
}

.home-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  content: "";
}

.home-nav a:hover,
.home-nav a:focus-visible {
  color: var(--blue);
}

.home-nav a:hover::after,
.home-nav a:focus-visible::after {
  background: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover,
.button:hover,
.mini-cta:hover {
  transform: translateY(-1px);
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: var(--aqua);
}

.button.danger {
  color: #8b1d1d;
  background: #ffe6e6;
}

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 46px;
  padding: 58px clamp(20px, 5vw, 70px) 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(191, 240, 221, 0.8), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #effcfd 58%, #dff8fb 100%);
}

.landing-body {
  background: #fff;
}

.landing-header {
  position: sticky;
}

.home-landing .landing-header {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.96);
}

.home-landing .header-cta {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 142, 230, 0.22);
}

.business-landing .landing-header {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.96);
}

.seo-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: 720px;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 142, 230, 0.18), transparent 32%),
    radial-gradient(circle at 8% 12%, rgba(223, 245, 255, 0.9), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 52%, #dff5ff 100%);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(44px, 6vw, 74px);
}

.home-landing:not(.business-landing) .home-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.45) 58%, rgba(255, 255, 255, 0.02) 100%),
    url("assets/hogar-hero-tp12000-water-premium-v2.png") right bottom / auto calc(100% - 28px) no-repeat;
}

.home-hero::before {
  position: absolute;
  inset: auto -8% -15% 38%;
  z-index: -1;
  height: 56%;
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 255, 255, 0.84), transparent 15%),
    repeating-radial-gradient(ellipse at 68% 64%, rgba(0, 142, 230, 0.13) 0 1px, transparent 2px 18px);
  opacity: 0.72;
  content: "";
  transform: rotate(-7deg);
}

.home-landing:not(.business-landing) .home-hero::before {
  display: none;
}

.hero.seo-hero h1 {
  color: #123c5c;
  max-width: 720px;
  text-wrap: balance;
}

.home-landing .hero h1 {
  font-family: Inter, Arial, sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: 0.98;
  text-transform: none;
}

.hero.seo-hero h1 span {
  display: block;
  color: #008ee6;
}

.hero.seo-hero p {
  color: #4f6f86;
  max-width: 630px;
}

.home-landing .hero p {
  max-width: 620px;
  color: #557894;
  font-size: 20px;
  line-height: 1.55;
}

.seo-hero .button.primary {
  color: #fff;
  background: #008ee6;
  box-shadow: 0 16px 34px rgba(0, 142, 230, 0.24);
}

.seo-hero .button.secondary {
  color: #123c5c;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 142, 230, 0.18);
}

.seo-hero .trust-row span {
  color: #123c5c;
  border-color: rgba(0, 142, 230, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 34px;
  color: var(--navy);
}

.hero-proof span {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(79, 111, 134, 0.18);
  padding: 4px 18px 4px 0;
  color: #456c88;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-proof span + span {
  padding-left: 18px;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 142, 230, 0.38);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.hero-proof svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-offer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 142, 230, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(18, 60, 92, 0.16);
}

.hero-offer-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero-product-stage {
  position: relative;
  min-height: min(620px, 58vw);
  align-self: stretch;
}

.hero-product-stage::before {
  position: absolute;
  inset: 2% -18% -4% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 230, 0.16), rgba(255, 255, 255, 0) 68%);
  content: "";
}

.hero-product-stage img {
  position: absolute;
  right: -10%;
  bottom: -2%;
  z-index: 1;
  width: min(122%, 760px);
  clip-path: inset(0 0 0 34%);
  filter: drop-shadow(0 36px 54px rgba(18, 60, 92, 0.17));
}

.water-glass {
  position: absolute;
  right: min(58%, 360px);
  bottom: 8%;
  z-index: 2;
  width: clamp(82px, 10vw, 128px);
  aspect-ratio: 0.54;
  border: 2px solid rgba(18, 60, 92, 0.24);
  border-top-color: rgba(18, 60, 92, 0.42);
  border-radius: 10px 10px 24px 24px;
  background:
    linear-gradient(180deg, transparent 0 32%, rgba(191, 231, 248, 0.35) 33%, rgba(0, 142, 230, 0.12) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent 42%, rgba(255, 255, 255, 0.38));
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.9), 0 24px 42px rgba(18, 60, 92, 0.11);
}

.water-glass::before,
.water-glass::after {
  position: absolute;
  right: 18%;
  left: 18%;
  height: 1px;
  background: rgba(0, 142, 230, 0.22);
  content: "";
}

.water-glass::before {
  top: 36%;
}

.water-glass::after {
  bottom: 18%;
}

.home-hero-spacer {
  min-height: min(620px, 58vw);
}

.main-landing .landing-header {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.96);
}

.main-landing .header-cta {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 142, 230, 0.22);
}

.main-hero {
  display: grid;
  min-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 142, 230, 0.16), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(223, 245, 255, 0.9), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #ddf5ff 100%);
}

.main-hero-copy {
  max-width: 760px;
}

.main-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(58px, 6.8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.main-hero p {
  max-width: 690px;
  margin: 26px 0 0;
  color: #557894;
  font-size: 20px;
  line-height: 1.65;
}

.main-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.main-proof span {
  border: 1px solid rgba(0, 142, 230, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(18, 60, 92, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.main-proof strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.main-hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
}

.main-hero-visual::before {
  position: absolute;
  inset: 10% -12% 6% 6%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 142, 230, 0.13), rgba(255, 255, 255, 0) 68%);
  content: "";
}

.main-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 80px rgba(18, 60, 92, 0.14);
}

.main-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-product-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.main-product-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-product-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 36px;
  line-height: 0.95;
}

.main-product-card.home-card {
  width: min(92%, 560px);
  height: 390px;
  justify-self: end;
}

.main-product-card.business-card {
  width: min(62%, 340px);
  height: 260px;
  margin-top: -95px;
  margin-left: 18px;
}

.main-product-card.business-card img {
  object-fit: contain;
  object-position: center;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f8ff 100%);
}

.main-intro {
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 142, 230, 0.11), transparent 24%),
    linear-gradient(180deg, #eaf8ff 0%, #f7fcff 44%, #ffffff 100%);
}

.main-intro .section-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.main-solution-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.1);
}

.solution-media {
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fcff 0%, #e6f7ff 100%);
}

.solution-media img {
  width: auto;
  max-width: 132%;
  max-height: 240px;
  filter: drop-shadow(0 20px 30px rgba(18, 60, 92, 0.16));
}

.main-solution-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 44px;
  line-height: 0.95;
}

.main-solution-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.main-solution-card strong {
  color: var(--blue);
  font-weight: 800;
}

.main-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 142, 230, 0.3), transparent 26%),
    linear-gradient(135deg, #123c5c 0%, #0b2b44 100%);
}

.main-route h2,
.main-route p {
  color: #fff;
}

.main-route p {
  max-width: 790px;
  line-height: 1.7;
}

.main-route .button.primary {
  background: var(--blue);
}

.corporate-landing .landing-header {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.96);
}

.corporate-landing .header-cta {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 142, 230, 0.22);
}

.corporate-hero {
  display: grid;
  min-height: calc(100vh - 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 70px) 54px;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 142, 230, 0.16), transparent 30%),
    radial-gradient(circle at 10% 12%, rgba(223, 245, 255, 0.92), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 50%, #ddf5ff 100%);
}

.corporate-hero-copy {
  max-width: 800px;
}

.corporate-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(58px, 6.4vw, 94px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.corporate-hero p {
  max-width: 710px;
  margin: 26px 0 0;
  color: #557894;
  font-size: 20px;
  line-height: 1.65;
}

.corporate-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.corporate-proof span {
  border: 1px solid rgba(0, 142, 230, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(18, 60, 92, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.corporate-proof strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.corporate-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
}

.corporate-visual::before {
  position: absolute;
  inset: 8% -10% 8% 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 142, 230, 0.13), rgba(255, 255, 255, 0) 68%);
  content: "";
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(18, 60, 92, 0.14);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.visual-card > div:last-child {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.visual-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 30px;
  line-height: 0.95;
}

.visual-water {
  width: min(94%, 560px);
  height: 370px;
  justify-self: end;
}

.visual-water img {
  object-fit: cover;
}

.visual-business {
  width: min(58%, 330px);
  height: 260px;
  margin-top: -86px;
  margin-left: 26px;
}

.visual-business img {
  object-fit: contain;
  object-position: center;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f8ff 100%);
}

.visual-air {
  position: absolute;
  right: 2%;
  bottom: 10%;
  display: grid;
  width: min(44%, 260px);
  height: 210px;
  place-items: center;
}

.air-symbol {
  position: absolute;
  inset: 26px 22px 72px;
  display: grid;
  gap: 12px;
}

.air-symbol span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 142, 230, 0.12), rgba(0, 142, 230, 0.42), rgba(255, 255, 255, 0));
}

.air-symbol span:nth-child(2) {
  width: 78%;
}

.air-symbol span:nth-child(3) {
  width: 58%;
}

.corporate-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.corporate-band span {
  padding: 18px clamp(18px, 3vw, 30px);
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.corporate-areas {
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 142, 230, 0.11), transparent 24%),
    linear-gradient(180deg, #eaf8ff 0%, #f7fcff 44%, #ffffff 100%);
}

.corporate-areas .section-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.area-card {
  display: grid;
  min-height: 235px;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(18, 60, 92, 0.08);
}

.area-card i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(0, 142, 230, 0.24);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(223, 245, 255, 0.7);
  font-style: normal;
}

.area-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.area-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 21px;
}

.area-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.featured-area {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 142, 230, 0.14), transparent 26%),
    #fff;
}

.corporate-culligan {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.culligan-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.02;
}

.culligan-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.culligan-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #e8f8ff 100%);
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.11);
}

.culligan-panel img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 28px 28px 0;
}

.culligan-panel div {
  padding: 22px 26px 26px;
}

.culligan-panel strong {
  display: block;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.culligan-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.corporate-rental {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 142, 230, 0.3), transparent 26%),
    linear-gradient(135deg, #123c5c 0%, #0b2b44 100%);
}

.corporate-rental h2,
.corporate-rental p {
  color: #fff;
}

.corporate-rental p {
  max-width: 800px;
  line-height: 1.7;
}

.corporate-rental .button.primary {
  background: var(--blue);
}

.corporate-hero-v2 {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
}

.corporate-hero-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(18, 60, 92, 0.14);
}

.corporate-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.partner-section {
  display: grid;
  gap: 22px;
  padding: 36px clamp(20px, 5vw, 70px);
  color: #fff;
  background: #303941;
}

.hero-line-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin-top: 24px;
}

.hero-line-grid a {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  color: #173a55;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-line-grid a:hover,
.hero-line-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 142, 230, 0.35);
  box-shadow: 0 18px 42px rgba(12, 42, 66, 0.1);
}

.hero-line-grid span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-line-grid strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.partner-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(20px, 2.2vw, 30px);
  text-align: center;
}

.partner-heading span {
  font-weight: 900;
}

.partner-heading strong {
  color: #fff;
  font-weight: 600;
}

.partner-heading strong::after {
  color: var(--blue);
  content: ".";
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.partner-logos span,
.partner-logos a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.9fr);
  gap: 46px;
  align-items: center;
}

.story-section.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
}

.story-section.reverse figure {
  order: 2;
}

.story-section figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.1);
}

.story-section figure img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.story-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
}

.story-section p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.story-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.story-points span {
  border: 1px solid rgba(0, 142, 230, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--navy);
  background: rgba(223, 245, 255, 0.48);
  font-weight: 800;
}

.service-story {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 142, 230, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.authorized-service {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.9fr);
  gap: 46px;
  align-items: center;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 142, 230, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.authorized-service figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.1);
}

.authorized-service img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.authorized-service h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
}

.authorized-service p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.home-landing.bridge-landing .bridge-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  min-height: calc(100vh - 92px);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 142, 230, 0.16), transparent 28%),
    radial-gradient(circle at 10% 12%, rgba(223, 245, 255, 0.82), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 48%, #e0f6ff 100%);
}

.home-landing.bridge-landing .bridge-hero::before {
  display: none;
}

.home-landing.bridge-landing .bridge-hero .hero-copy {
  max-width: 720px;
}

.home-landing.bridge-landing .bridge-hero h1 {
  font-size: clamp(58px, 6.6vw, 92px);
}

.bridge-hero-cards {
  display: grid;
  gap: 18px;
}

.bridge-choice-card {
  position: relative;
  display: grid;
  min-height: 245px;
  overflow: hidden;
  align-items: end;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  padding: 24px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.94) 76%),
    #fff;
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.12);
}

.bridge-choice-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.bridge-choice-card:nth-child(2) img {
  object-fit: contain;
  object-position: right center;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f8ff 100%);
}

.bridge-choice-card span,
.bridge-choice-card strong {
  position: relative;
  z-index: 1;
}

.bridge-choice-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bridge-choice-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.bridge-landing .bridge-plan-grid .product-card {
  min-height: 360px;
}

.bridge-landing .bridge-plan-grid .product-media img {
  width: auto;
  max-width: 118%;
  max-height: 260px;
}

.business-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 142, 230, 0.14), transparent 30%),
    linear-gradient(90deg, #ffffff 0%, #f7fcff 45%, #dff5ff 100%);
}

.business-hero::before {
  inset: 0 -12% 0 42%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(191, 231, 248, 0.26)),
    repeating-linear-gradient(90deg, rgba(18, 60, 92, 0.08) 0 1px, transparent 1px 120px);
  opacity: 0.55;
  transform: none;
}

.business-product-stage {
  min-height: min(640px, 60vw);
}

.business-product-stage::before {
  inset: 8% -8% 2% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 142, 230, 0.14), rgba(255, 255, 255, 0) 64%);
}

.business-product-stage img {
  right: -24%;
  bottom: -2%;
  width: min(152%, 880px);
  clip-path: none;
}

.offer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fa 100%);
}

.offer-strip strong {
  display: block;
  font-size: 26px;
}

.offer-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.mini-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.trust-row span {
  border: 1px solid rgba(95, 141, 165, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(13, 47, 63, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 88px clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section h2,
.crm-tools h1 {
  margin: 0;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.05;
}

.section-heading p,
.contact-copy p,
.crm-tools p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.step-grid,
.product-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-grid article,
.product-card,
.benefit-grid article,
.testimonial-grid article,
.include-list article,
.faq-list article,
.social-form,
.crm-filter,
.lead-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 47, 63, 0.06);
}

.step-grid article,
.product-card,
.benefit-grid article,
.testimonial-grid article,
.include-list article,
.faq-list article {
  padding: 28px;
}

.step-grid strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-strong);
}

.step-grid h3,
.product-card h3,
.benefit-grid h3,
.include-list h3,
.faq-list h3 {
  margin: 20px 0 10px;
  color: var(--navy);
}

.step-grid p,
.product-card p,
.benefit-grid p,
.include-list p,
.faq-list p,
.testimonial-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.value-section {
  background: #fff;
}

.home-products {
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 142, 230, 0.11), transparent 24%),
    linear-gradient(180deg, #eaf8ff 0%, #f7fcff 44%, #ffffff 100%);
}

.home-products .section-heading {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--blue);
  background: rgba(0, 142, 230, 0.09);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.benefit-grid h3,
.include-list h3,
.faq-list h3 {
  margin-top: 0;
}

.include-section,
.testimonials,
.faq-section {
  background: var(--soft);
}

.include-list,
.faq-list {
  display: grid;
  gap: 16px;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr) auto;
  align-items: center;
  gap: 28px;
  color: #fff;
  background: var(--navy);
}

.offer-section h2,
.offer-section p {
  color: #fff;
}

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

.price-cards article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
}

.price-cards strong {
  display: block;
  color: #fff;
  font-size: 38px;
}

.price-cards span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.form-trust {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--navy);
  list-style: none;
  font-weight: 700;
}

.form-trust li {
  border-left: 4px solid var(--blue-strong);
  padding-left: 12px;
}

.testimonial-grid span {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 0;
}

.testimonial-grid strong {
  color: var(--navy);
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(119, 224, 255, 0.25), transparent 32%),
    var(--navy);
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  color: #fff;
}

.final-cta small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.landing-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  padding: 24px clamp(20px, 5vw, 70px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(19, 169, 230, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fcff 0%, #edf7fd 45%, #dcecf5 100%);
}

.impact-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #071f38;
  font-size: 84px;
  line-height: 0.86;
  text-transform: uppercase;
}

.impact-copy h2::after {
  display: block;
  width: 86px;
  height: 3px;
  margin: 30px 0 0;
  background: var(--blue-strong);
  content: "";
}

.impact-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.55;
}

.impact-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.impact-points span {
  position: relative;
  display: block;
  border-left: 1px solid rgba(8, 116, 214, 0.35);
  padding: 8px 0 8px 28px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}

.impact-points span::before {
  position: absolute;
  left: -18px;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--blue-strong);
  border-radius: 50%;
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.76);
  content: "";
  transform: translateY(-50%);
}

.impact-section img {
  display: block;
  width: 100%;
  max-height: 760px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 80px rgba(16, 43, 58, 0.18);
}

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

.product-card span {
  display: block;
  margin-top: 22px;
  color: var(--blue-strong);
  font-weight: 800;
}

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

.home-products .plan-grid {
  gap: 30px;
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  border: 1px solid rgba(95, 141, 165, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 800;
}

.plan-price {
  display: block;
  margin: 18px 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1;
}

.plan-price small {
  color: var(--blue);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.42em;
  font-weight: 800;
}

.product-card .button {
  width: fit-content;
}

.product-card.featured {
  border-color: rgba(95, 141, 165, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #ecfbfd 100%);
}

.home-products .product-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 330px;
  padding: 30px;
  border-color: rgba(18, 60, 92, 0.1);
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 142, 230, 0.08), transparent 26%),
    #fff;
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.1);
}

.product-media {
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fcff 0%, #e6f7ff 100%);
}

.product-media img {
  display: block;
  width: auto;
  max-width: 115%;
  max-height: 235px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(18, 60, 92, 0.16));
}

.product-media img.tp12000-product-image {
  max-height: 255px;
}

.product-media img.spring-product-image {
  max-width: 104%;
  max-height: 245px;
}

.product-info h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 46px;
  line-height: 0.95;
}

.product-info p {
  margin: 0;
}

.product-info .mini-cta {
  width: fit-content;
  background: var(--blue);
}

.business-solutions {
  background:
    radial-gradient(circle at 50% 4%, rgba(0, 142, 230, 0.1), transparent 24%),
    linear-gradient(180deg, #eaf8ff 0%, #f7fcff 44%, #ffffff 100%);
}

.business-solutions .section-heading {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.business-grid article {
  min-height: 240px;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(18, 60, 92, 0.08);
}

.business-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 142, 230, 0.28);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(223, 245, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.business-grid h3 {
  margin: 22px 0 10px;
  color: var(--navy);
}

.business-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.business-price-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 142, 230, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #e8f8ff 100%) !important;
}

.business-price-card h3 {
  font-size: 17px;
  line-height: 1.15;
}

.business-price-card h3 strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 68px;
  line-height: 0.9;
}

.business-price-card h3 small {
  color: var(--blue);
  font-weight: 800;
}

.business-price-card .mini-cta {
  margin-top: 20px;
  background: var(--blue);
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  color: #fff;
  background: var(--navy);
}

.benefits h2,
.benefits p {
  color: #fff;
}

.benefits ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
  background:
    radial-gradient(circle at 90% 10%, rgba(95, 141, 165, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3fbfc 100%);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.lead-form,
.social-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.lead-form {
  border: 1px solid rgba(95, 141, 165, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 40, 58, 0.14);
}

/* CTA principal de WhatsApp (canal preferido del publico mayor/rural) */
.wa-cta-grande {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #fff !important;
  background: #25d366 !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}
.wa-cta-grande::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.5 11.8a8.4 8.4 0 0 1-12.4 7.4L4 20.3l1.2-4a8.4 8.4 0 1 1 15.3-4.5z"/></svg>') no-repeat center / contain;
}
.wa-cta-nota {
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: #5b7383;
}
.wa-cta-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 4px;
  color: #98a9b4;
  font-size: 0.85rem;
}
.wa-cta-sep::before,
.wa-cta-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(95, 141, 165, 0.28);
}

.lead-form .button.primary {
  min-height: 54px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--navy), var(--blue-strong));
  box-shadow: 0 14px 30px rgba(8, 40, 58, 0.18);
  font-size: 15px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 3px rgba(95, 141, 165, 0.16);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--blue-strong);
  font-weight: 700;
}

.ai-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}

.ai-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 800;
}

.ai-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: none;
  width: min(360px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ai-panel.open {
  display: block;
}

.ai-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #fff;
  background: var(--navy);
}

.ai-header span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.ai-header button {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.ai-messages {
  display: grid;
  max-height: 310px;
  gap: 10px;
  overflow: auto;
  padding: 16px;
  background: var(--soft);
}

.ai-messages p {
  max-width: 88%;
  margin: 0;
  border-radius: 8px;
  padding: 11px 12px;
  line-height: 1.45;
}

.ai-messages .bot {
  color: var(--navy);
  background: #fff;
}

.ai-messages .user {
  justify-self: end;
  color: #fff;
  background: var(--blue-strong);
}

.ai-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
}

.ai-input button {
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.crm-body {
  min-height: 100vh;
  background: var(--soft);
}

.admin-body {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 142, 230, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f1fbff 100%);
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.admin-login-card {
  display: grid;
  width: min(100%, 460px);
  gap: 16px;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(18, 60, 92, 0.14);
}

.admin-login-card .brand-logo {
  height: 64px;
}

.admin-login-card h1 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.1;
}

.admin-login-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-hidden,
.admin-locked {
  display: none;
}

.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.crm-nav {
  margin-right: auto;
}

.private-badge {
  border: 1px solid rgba(95, 141, 165, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-shell {
  display: grid;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 70px) 60px;
}

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

.crm-overview article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.crm-overview span {
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
}

.crm-overview p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.crm-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: start;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 24px;
  margin-top: 24px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 47, 63, 0.06);
}

.admin-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.admin-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.admin-checklist {
  display: grid;
  gap: 10px;
}

.admin-checklist span {
  border: 1px solid rgba(0, 142, 230, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(223, 245, 255, 0.44);
  font-weight: 700;
}

.integration-form {
  display: grid;
  gap: 16px;
}

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

.crm-filter {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.lead-table-wrap {
  overflow: auto;
}

.lead-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
}

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

.lead-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.lead-table td {
  color: var(--ink);
  font-size: 14px;
}

.lead-table select {
  min-width: 130px;
  padding: 9px 10px;
}

.empty-state {
  display: none;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .site-header,
  .landing-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow: auto;
    padding-bottom: 4px;
  }

  .hero,
  .benefits,
  .contact-section,
  .crm-tools,
  .admin-grid,
  .main-hero,
  .main-route,
  .corporate-hero,
  .corporate-culligan,
  .corporate-rental,
  .story-section,
  .story-section.reverse,
  .authorized-service,
  .offer-section,
  .impact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    padding-top: 46px;
  }

  .home-landing .hero h1,
  .hero h1 {
    font-size: 58px;
  }

  .section h2,
  .crm-tools h1 {
    font-size: 38px;
  }

  .product-info h3 {
    font-size: 42px;
  }

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

  .hero-proof span,
  .hero-proof span + span {
    border-right: 0;
    padding: 0;
  }

  .hero-product-stage {
    min-height: 440px;
  }

  .home-landing:not(.business-landing) .home-hero {
    background: url("assets/hogar-hero-mobile-tp12000-clear.png?v=20260605") center bottom / 100% auto no-repeat;
  }

  .home-landing.bridge-landing .bridge-hero {
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 80% 14%, rgba(0, 142, 230, 0.12), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f3fbff 58%, #e5f7ff 100%);
  }

  .bridge-hero-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bridge-choice-card {
    min-height: 220px;
  }

  .home-hero-spacer {
    min-height: 330px;
  }

  .hero-product-stage img {
    right: 50%;
    width: min(86%, 500px);
    transform: translateX(50%);
  }

  .business-product-stage {
    min-height: 460px;
  }

  .business-product-stage img {
    right: 50%;
    width: min(94%, 520px);
    transform: translateX(50%);
  }

  .water-glass {
    right: 58%;
    bottom: 8%;
  }

  .step-grid,
  .product-grid,
  .benefit-grid,
  .testimonial-grid,
  .main-solution-grid,
  .area-grid,
  .corporate-band,
  .partner-logos,
  .plan-grid,
  .crm-overview {
    grid-template-columns: 1fr;
  }

  .main-hero-visual {
    min-height: 520px;
  }

  .main-product-card.home-card {
    justify-self: center;
  }

  .main-product-card.business-card {
    width: min(72%, 360px);
    margin-top: -80px;
  }

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

  .corporate-visual {
    min-height: 560px;
  }

  .visual-water {
    justify-self: center;
  }

  .visual-business {
    width: min(70%, 350px);
    margin-top: -72px;
  }

  .visual-air {
    right: 8%;
    bottom: 7%;
  }

  .story-section.reverse figure {
    order: 0;
  }

  .corporate-hero-image img,
  .story-section figure img,
  .authorized-service img {
    aspect-ratio: 16 / 11;
  }

  .impact-section img {
    max-height: none;
  }

  .home-products .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 260px;
  }

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

  .product-media img {
    max-width: min(100%, 380px);
    max-height: 250px;
  }

  .product-media img.tp12000-product-image {
    max-height: 275px;
  }

  .product-media img.spring-product-image {
    max-width: min(100%, 390px);
    max-height: 265px;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .business-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-landing .hero h1 {
    font-size: 62px;
  }

  .home-landing .hero p {
    font-size: 18px;
  }

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

  .hero-proof span,
  .hero-proof span + span {
    border-right: 0;
    padding: 0;
  }

  .business-product-stage img {
    right: 50%;
    width: min(94%, 660px);
    transform: translateX(50%);
  }
}

@media (max-width: 620px) {
  .landing-header {
    gap: 12px;
    padding: 12px 18px;
  }

  .brand-logo {
    height: 54px;
    max-width: 164px;
  }

  .header-cta {
    width: 100%;
    min-height: 42px;
  }

  .home-nav {
    order: 3;
    gap: 18px;
    width: 100%;
    font-size: 13px;
  }

  .home-landing .hero h1 {
    font-size: 42px;
  }

  .main-hero h1 {
    font-size: 48px;
  }

  .corporate-hero h1 {
    font-size: 46px;
  }

  .main-hero p {
    font-size: 17px;
  }

  .corporate-hero p {
    font-size: 17px;
  }

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

  .home-landing .hero p {
    font-size: 16px;
  }

  .section h2,
  .crm-tools h1 {
    font-size: 32px;
  }

  .product-info h3 {
    font-size: 38px;
  }

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

  .home-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-product-stage {
    min-height: 300px;
  }

  .home-landing:not(.business-landing) .home-hero {
    background: url("assets/hogar-hero-mobile-tp12000-clear.png?v=20260605") center bottom / 100% auto no-repeat;
  }

  .home-landing.bridge-landing .bridge-hero {
    background:
      radial-gradient(circle at 80% 10%, rgba(0, 142, 230, 0.1), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, #f4fbff 54%, #e4f7ff 100%);
  }

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

  .bridge-choice-card {
    min-height: 210px;
    padding: 20px;
  }

  .bridge-choice-card strong {
    font-size: 34px;
  }

  .main-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .main-hero-visual {
    min-height: 410px;
  }

  .main-product-card.home-card {
    width: 100%;
    height: 280px;
  }

  .main-product-card.business-card {
    width: 76%;
    height: 210px;
    margin-top: -58px;
    margin-left: 0;
  }

  .main-product-card strong {
    font-size: 29px;
  }

  .main-solution-card {
    padding: 22px;
  }

  .main-solution-card h3 {
    font-size: 36px;
  }

  .corporate-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .corporate-hero-image img {
    aspect-ratio: 4 / 5;
  }

  .story-section figure img,
  .authorized-service img {
    aspect-ratio: 5 / 4;
  }

  .partner-section {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .story-section h2 {
    font-size: 38px;
  }

  .authorized-service h2 {
    font-size: 38px;
  }

  .corporate-visual {
    min-height: 440px;
  }

  .visual-water {
    width: 100%;
    height: 280px;
  }

  .visual-business {
    width: 74%;
    height: 210px;
    margin-top: -54px;
    margin-left: 0;
  }

  .visual-air {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    height: 180px;
    margin-top: -46px;
    justify-self: end;
  }

  .area-card {
    min-height: auto;
    padding: 22px;
  }

  .culligan-copy h2 {
    font-size: 36px;
  }

  .home-hero-spacer {
    min-height: 300px;
  }

  .hero-product-stage img {
    right: 50%;
    bottom: 0;
    width: min(104%, 420px);
    clip-path: inset(0 0 0 30%);
  }

  .business-product-stage {
    min-height: 330px;
  }

  .business-product-stage img {
    right: 50%;
    width: min(112%, 430px);
    clip-path: none;
    transform: translateX(50%);
  }

  .water-glass {
    display: none;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-products .product-card {
    padding: 22px;
  }

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

  .business-grid article {
    min-height: auto;
    padding: 22px;
  }

  .product-media {
    min-height: 220px;
  }

  .product-media img {
    max-width: 100%;
    max-height: 210px;
  }

  .product-media img.tp12000-product-image {
    max-height: 230px;
  }

  .product-media img.spring-product-image {
    max-width: 104%;
    max-height: 220px;
  }

  .lead-form {
    padding: 20px;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .crm-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .crm-actions,
  .crm-actions .button,
  .crm-nav,
  .form-row {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(12, 42, 66, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(12, 42, 66, 0.18);
  color: #143047;
}

.cookie-banner p {
  margin: 6px 0;
  max-width: 660px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: #006fbf;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button:first-child {
  background: #e9f1f7;
  color: #143047;
}

.cookie-actions button:last-child {
  background: #006fbf;
  color: #ffffff;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.privacy-check input {
  margin-top: 3px;
}

.form-legal-note {
  margin: -6px 0 4px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #526578;
}

.form-legal-note a,
.privacy-check a {
  color: #006fbf;
  font-weight: 700;
}

.privacy-consent-note {
  margin: -2px 0 0;
  color: #8493a3;
  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-consent-note a {
  color: #5f7f9e;
  font-weight: 700;
}

.promo-legal-footer {
  margin-bottom: 24px;
  padding-bottom: 88px;
}

@media (max-width: 760px) {
  .promo-galicia-landing main {
    display: flex;
    flex-direction: column;
  }

  .promo-galicia-landing .promo-contact {
    order: 2;
  }

  .promo-galicia-landing .promo-products {
    order: 3;
  }

  .promo-galicia-landing .promo-benefits {
    order: 4;
  }
}

.legal-body {
  background: #f5f9fc;
}

.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 42px auto 80px;
  padding: 36px;
  border-radius: 10px;
  background: #ffffff;
  color: #18364f;
  box-shadow: 0 16px 45px rgba(12, 42, 66, 0.08);
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page h2 {
  margin: 30px 0 10px;
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.65;
}

.legal-updated {
  margin: 0 0 24px;
  color: #65778a;
}

.catalog-page {
  background: #f6fbff;
}

.catalog-hero {
  display: grid;
  align-content: center;
  min-height: 460px;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 6vw, 84px);
  color: #123c5c;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 142, 230, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eaf8ff 58%, #d9f2ff 100%);
}

.catalog-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.catalog-hero p {
  max-width: 820px;
  margin: 22px 0 0;
  color: #52728a;
  font-size: 19px;
  line-height: 1.65;
}

.catalog-hero .hero-actions,
.catalog-hero .button {
  margin-top: 28px;
}

.catalog-block {
  background: #ffffff;
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid rgba(18, 60, 92, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(12, 42, 66, 0.08);
}

.catalog-card img {
  display: block;
  width: 100%;
  height: 280px;
  background: #edf7fc;
  object-fit: contain;
}

.catalog-card div {
  padding: 22px;
}

.catalog-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", Inter, Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.catalog-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.culligan-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.34) 70%, rgba(255, 255, 255, 0.08) 100%),
    url("../assets/home-business-water.png") right center / auto 100% no-repeat,
    #eaf8ff;
}

.culligan-intro {
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
}

.culligan-intro p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.culligan-product-grid .catalog-card img {
  object-fit: cover;
}

.culligan-service {
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 142, 230, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.culligan-hospitality {
  background: #ffffff;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

  .legal-page {
    padding: 24px 18px;
  }

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

  .catalog-card img {
    height: 240px;
  }

  .culligan-hero {
    padding-bottom: 300px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.2) 100%),
      url("../assets/home-business-water.png") center bottom / 100% auto no-repeat,
      #eaf8ff;
  }

  .culligan-intro {
    grid-template-columns: 1fr;
  }
}
