*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --orange: #D4721A;
  --orange-hover: #B85E10;
  --orange-light: #D4721A;
  --orange-pale: #FDF0E6;
  --white: #FFFFFF;
  --off-white: #F8F5F1;
  --border: #E5DDD4;
  --text: #1A1208;
  --text-soft: #5A4A38;
  --text-muted: #9A8878;
  --shadow: rgba(90, 40, 0, 0.10);
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  padding-top: 100px
}

/* MOCKUP BAR */
.mockup-bar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAV */
body>nav {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 2900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
  height: 76px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center
}

.nav-logo img {
  height: 40px;
  display: block;
  object-fit: contain
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s
}

.nav-links a:hover {
  color: var(--orange)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 11px 26px !important;
  border-radius: 3px;
  font-weight: 700 !important
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: var(--orange-hover) !important
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0a06;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-drone.jpg?v=1.1');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-noise {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 10, 6, 0.92) 0%, rgba(13, 10, 6, 0.7) 40%, transparent 80%);
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(212, 114, 26, 0.1) 0%, transparent 60%)
}

.hero-vline {
  position: absolute;
  left: 64px;
  top: 168px;
  bottom: 220px;
  width: 3px;
  background: var(--orange);
  z-index: 2
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 96px 220px 84px;
  max-width: 960px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeUp .6s ease .1s both
}

.hero-eyebrow span {
  background: var(--orange-pale);
  border: 1px solid rgba(212, 114, 26, 0.22);
  padding: 5px 14px;
  border-radius: 2px
}

.hero-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeUp .6s ease .25s both
}

.hero-title .line1 {
  font-weight: 300;
  font-size: .6em;
  letter-spacing: 1px;
  color: #fff;
  text-transform: none;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .accent {
  color: #fff;
  display: block
}

.m-br {
  display: none
}

.hero-sub {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 26px 0 42px;
  padding-left: 0;
  animation: fadeUp .6s ease .4s both
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp .6s ease .55s both
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 6px 28px rgba(212, 114, 26, 0.38);
  transition: all .2s
}

.btn-p:hover {
  background: var(--orange-hover);
  transform: translateY(-2px)
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--border);
  padding: 14px 26px;
  border-radius: 3px;
  transition: all .2s
}

.btn-o:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.btn-orange-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--orange);
  padding: 14px 26px;
  border-radius: 3px;
  transition: all .2s
}

.btn-orange-outline:hover {
  background: var(--orange);
  color: #fff
}

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--orange-pale);
  border-top: 4px solid var(--orange);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -10px 40px rgba(90, 40, 0, 0.08);
  animation: fadeUp .6s ease .7s both;
}

.st {
  padding: 34px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}

.st:last-child {
  border-right: none;
}

.st-num {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.st-lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
}


/* Foto flotante hero */
.hero-float {
  position: absolute;
  right: 72px;
  bottom: 110px;
  z-index: 4;
  width: 350px;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  border: 4px solid #fff;
  animation: fadeUp .8s ease .5s both
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-float-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  padding: 24px 14px 12px
}

.hero-float-cap strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 2px
}

.hero-float-cap span {
  font-size: 11px;
  color: rgba(255, 255, 255, .75);
  font-weight: 500
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ═══ TRUST BAND — CON LOGOS ═══ */
.trust-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 38px 96px;
  overflow: visible;
}

.trust-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 26px;
}

.trust-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.trust-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
}

#trustPrev {
  left: -48px;
}

#trustNext {
  right: -48px;
}

.trust-btn:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff;
  box-shadow: 0 4px 12px rgba(240, 110, 0, 0.15);
}

.trust-btn:disabled {
  opacity: .25;
  cursor: default;
}

.trust-viewport {
  flex: 1;
  overflow: hidden;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  flex-wrap: nowrap;
}

.trust-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  opacity: .55;
  filter: grayscale(1);
  transition: all .25s ease;
  cursor: default;
  padding: 0 16px;
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.trust-logo img {
  max-height: 68px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.25s ease;
}

.trust-logo.invert img {
  filter: invert(1);
}

.trust-logo.invert:hover img {
  filter: invert(1);
}

/* ═══ POR QUÉ ELEGIRNOS ═══ */
.value-section {
  padding: 96px 0;
  background: #0d0a06
}

.value-section .section-tag {
  color: var(--orange-light);
  border-color: rgba(212, 114, 26, .3)
}

.value-section .section-title {
  color: #fff
}

.value-section .section-title em {
  color: var(--orange-light)
}

.value-section .val-sub {
  color: rgba(255, 255, 255, .75)
}

.value-section .anno {
  color: var(--orange) !important;
  background: rgba(212, 114, 26, .08) !important;
  border-color: rgba(212, 114, 26, .35) !important
}

.value-section .feat {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .07)
}

.value-section .feat:hover {
  border-color: var(--orange);
  background: rgba(212, 114, 26, .12);
  transform: translateX(4px)
}

.value-section .feat-icon {
  background: rgba(212, 114, 26, .12);
  border-color: rgba(212, 114, 26, .2)
}

.value-section .feat-title {
  color: #fff
}

.value-section .feat-desc {
  color: rgba(255, 255, 255, .65)
}

.value-section .metric {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .07)
}

.value-section .metric:hover {
  background: rgba(212, 114, 26, .1);
  border-color: rgba(212, 114, 26, .25)
}

.value-section .metric-lbl {
  color: rgba(255, 255, 255, .6)
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  display: block
}

.section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  text-transform: uppercase
}

.section-title em {
  font-style: normal;
  color: var(--orange)
}

.val-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
  margin-top: 16px
}

.val-sub {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 16px 0 32px
}

.feats {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.feat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all .2s;
  cursor: default
}

.feat:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateX(4px)
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(212, 114, 26, .2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background .2s;
  color: var(--orange)
}

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

.feat:hover .feat-icon {
  background: var(--orange);
  color: #fff
}

.feat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.feat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65
}

.val-visual {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.val-img-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.val-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 52px var(--shadow);
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 14px
}

.metric {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 3px;
  text-align: center;
  transition: all .2s;
  cursor: default
}

.metric:hover {
  border-color: var(--orange);
  background: var(--orange-pale)
}

.metric-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1
}

.metric-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.4
}

.orange-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 96px;
  height: 96px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 6px 28px rgba(212, 114, 26, .5);
  z-index: 2
}

.ob-num {
  font-size: 26px;
  line-height: 1
}

.ob-sub {
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
  padding: 0 6px
}

/* ═══ OBRAS ═══ */
.projects-section {
  padding: 96px 0;
  background: var(--off-white);
  overflow: hidden
}

.proj-header {
  padding: 0 96px;
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.slider-btns {
  display: flex;
  gap: 10px
}

.sbtn {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-soft);
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s
}

.sbtn:hover,
.sbtn.act {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

.slider {
  display: flex;
  gap: 20px;
  margin: 0 96px;
  padding: 4px 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  width: auto
}

.slider::-webkit-scrollbar {
  display: none
}

.slider:active {
  cursor: grabbing
}

/* CARDS */
.pc {
  width: calc((100% - 60px) / 4);
  min-width: calc((100% - 60px) / 4);
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  background: #1a3a5c
}

.pc:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2)
}

.pc.feat-card {
  min-width: 490px
}

.pc-img {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.pc:hover .pc-img img {
  transform: scale(1.05)
}

.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .32) 50%, rgba(0, 0, 0, .88) 100%)
}

.pc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px
}

.pc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px
}

.pc-loc {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 5px
}

.pc-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 14px
}

.pc-specs {
  display: flex;
  gap: 0
}

.ps {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 18px
}

.ps+.ps {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .15)
}

.ps-v {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1
}

.ps-k {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4)
}

/* ═══ SECTORES ═══ */
.sectors-section {
  padding: 96px 0;
  background: #0d0a06
}

.sectors-section .section-tag {
  color: var(--orange-light);
  border-color: rgba(212, 114, 26, .3)
}

.sectors-section .section-title {
  color: #fff
}

.sectors-section .section-title em {
  color: var(--orange-light)
}

.sectors-section .sc {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .06)
}

.sectors-section .sc:hover {
  background: rgba(255, 255, 255, .07);
  border-color: var(--orange);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .4);
  transform: translateY(-4px)
}

.sectors-section .sc-name {
  color: #fff
}

.sectors-section .sc-desc {
  color: rgba(255, 255, 255, .65)
}

.sectors-section .sc-n {
  color: rgba(212, 114, 26, .04)
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 56px
}

.sc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 36px 26px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  cursor: default
}

.sc:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 36px var(--shadow);
  transform: translateY(-4px)
}

.sc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.sc:hover::after {
  transform: scaleX(1)
}

.sc-ico {
  font-size: 34px;
  margin-bottom: 18px;
  display: block;
  color: var(--orange)
}

.sc-ico svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-n {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(212, 114, 26, .05);
  line-height: 1;
  letter-spacing: -2px
}

.sc-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 9px
}

.sc-desc {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-muted)
}

/* ═══ CTA ═══ */
.cta-section {
  position: relative;
  overflow: hidden
}

.cta-img {
  position: absolute;
  inset: 0;
  background-image: url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 12, 4, .97) 0%, rgba(20, 12, 4, .92) 50%, rgba(20, 12, 4, .72) 100%)
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 0 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.cta-content {
  padding: 96px 0
}

.cta-chart {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 32px 32px 22px;
  backdrop-filter: blur(2px)
}

.cta-chart-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px
}

.cta-chart-svg {
  width: 100%;
  display: block
}

.cta-chart-legend {
  display: flex;
  gap: 22px;
  margin-top: 10px
}

.cta-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500
}

.cta-legend-dash {
  display: block;
  width: 22px;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.32)
}

.cta-legend-solid {
  display: block;
  width: 22px;
  height: 2px;
  background: #D4721A;
  border-radius: 1px
}

.cta-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px
}

.cta-title em {
  font-style: normal;
  color: var(--orange-light)
}

.cta-sub {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 42px;
  max-width: 480px
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-pl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 6px 28px rgba(212, 114, 26, .5);
  transition: all .2s
}

.btn-pl:hover {
  background: var(--orange-light);
  transform: translateY(-2px)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .2);
  padding: 14px 26px;
  border-radius: 3px;
  transition: all .2s
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-light)
}

.btn-ghost-orange {
  border-color: var(--orange);
  color: var(--orange-light)
}

.btn-ghost-orange:hover {
  background: rgba(212, 114, 26, .08)
}

.cta-contacts {
  margin-top: 48px;
  display: flex;
  gap: 48px
}

.cc {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.cc-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-light)
}

.cc-val {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65)
}

/* ═══ FOOTER ═══ */
footer {
  background: #0d0a06;
  border-top: 2px solid rgba(255, 255, 255, .03);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
  padding: 64px 96px 0;
  position: relative
}

footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 96px;
  right: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent)
}

.ft-main {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px
}

.ft-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 22px;
  text-transform: none
}

.ft-logo img {
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
  margin-bottom: 20px;
  display: block
}

.ft-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin: 0
}

.ft-desc strong {
  color: #fff;
  font-weight: 600
}

.ft-contact-list,
.ft-nav-list,
.ft-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ft-contact-list li,
.ft-social-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  line-height: 1.5
}

.ft-contact-list li span,
.ft-social-list li span {
  color: rgba(255, 255, 255, .85)
}

.ft-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, .7);
  margin-top: 1px
}

.ft-nav-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s
}

.ft-nav-list li a::before {
  content: "›";
  font-size: 16px;
  color: var(--orange);
  line-height: 1
}

.ft-nav-list li a:hover {
  color: #fff
}

.ft-social-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s
}

.ft-social-list li a:hover {
  color: var(--orange-light)
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 40px
}

.ft-bottom a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: color .2s
}

.ft-bottom a:hover {
  color: #fff
}

/* ═══ COTIZADOR ═══ */
.cot-hero {
  background: #0d0a06;
  padding: 80px 96px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.cot-hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #fff;
  text-transform: uppercase;
  margin: 14px 0 18px
}

.cot-hero-title em {
  font-style: normal;
  color: var(--orange-light)
}

.cot-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55);
  max-width: 580px
}

.cot-side-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border)
}

.cot-stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange-light);
  letter-spacing: -.5px
}

.cot-stat-lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px
}

.cotizador-page {
  padding-top: 64px
}

.cotizador-section {
  background: var(--white);
  padding: 96px 96px;
  border-top: 1px solid var(--border)
}

.cotizador-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto
}

.cotizador-heading {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text);
  text-transform: uppercase;
  margin: 14px 0 18px
}

.cotizador-heading em {
  font-style: normal;
  color: var(--orange)
}

.cotizador-sub {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 32px
}

.cotizador-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.cotizador-trust li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px
}

.ct-ico {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px
}

/* Form card */
.cotizador-right {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px
}

/* Progress */
.cot-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px
}

.cot-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(0, 0, 0, .08);
  border-radius: 2px;
  overflow: hidden
}

.cot-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width .4s ease;
  width: 25%
}

.cot-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap
}

/* Steps */
.cot-step {
  display: none
}

.cot-step.active {
  display: block
}

.cot-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.4
}

/* Cards tipo instalación */
.cot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.cot-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 12px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  background: var(--white)
}

.cot-card:hover {
  border-color: rgba(212, 114, 26, .5);
  background: rgba(212, 114, 26, .04)
}

.cot-card.selected {
  border-color: var(--orange);
  background: rgba(212, 114, 26, .08)
}

.cot-card-ico {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
  color: var(--orange)
}

.cot-card-ico svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.cot-card-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.4
}

.cot-card.selected .cot-card-lbl {
  color: var(--text);
  font-weight: 700
}

.cot-card-wide {
  grid-column: span 3;
  text-align: left;
  padding: 14px 18px;
  display: flex;
  align-items: center
}

.cot-card-wide .cot-card-lbl {
  font-size: 13px
}

/* Select */
.cot-select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border .2s;
  appearance: none
}

.cot-select:focus {
  border-color: var(--orange)
}

.cot-select option {
  background: var(--white);
  color: var(--text)
}

/* Fields */
.cot-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.cot-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.cot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted)
}

.cot-input {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border .2s;
  width: 100%
}

.cot-input::placeholder {
  color: var(--text-muted)
}

.cot-input:focus {
  border-color: var(--orange)
}

.file-upload-btn {
  text-align: left !important;
  cursor: pointer;
  background: var(--white);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.file-upload-btn::after {
  content: '📎';
  font-size: 14px;
}

.cot-textarea {
  resize: vertical;
  min-height: 80px
}

/* Nav buttons */
.cot-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px
}

.cot-btn-next {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s
}

.cot-btn-next:hover:not(:disabled) {
  background: var(--orange-light);
  transform: translateY(-1px)
}

.cot-btn-next:disabled {
  opacity: .35;
  cursor: not-allowed
}

.cot-btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 12px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s
}

.cot-btn-back:hover {
  border-color: var(--text-muted);
  color: var(--text)
}

.cot-btn-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(212, 114, 26, .45);
  transition: all .2s
}

.cot-btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px)
}

/* Summary */
.cot-summary {
  background: rgba(0, 0, 0, .03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  display: grid;
  gap: 12px;
  margin-bottom: 20px
}

.cot-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding-bottom: 10px
}

.cot-summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.cot-summary-key {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase
}

.cot-summary-val {
  color: var(--text);
  font-weight: 600;
  text-align: right;
  max-width: 60%
}

.cot-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px
}

/* Success */
.cot-success {
  text-align: center;
  padding: 20px 0 10px
}

.cot-success-ico {
  width: 56px;
  height: 56px;
  background: rgba(212, 114, 26, .1);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin: 0 auto 20px;
  font-weight: 700
}

.cot-success-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.5px;
  margin-bottom: 12px
}

.cot-success-sub {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 24px
}

.anno {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 114, 26, .08);
  border: 1px dashed rgba(212, 114, 26, .35);
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 10px
}

/* ═══ CONTACT SECTION ═══ */
.contact-section {
  background: #0d0a06;
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.contact-section.is-light {
  background: var(--white);
  color: var(--text);
  border-top: none
}

.contact-section.is-light .section-title {
  color: var(--text)
}

.contact-section.is-light .contact-lead {
  color: var(--text-soft)
}

.contact-section.is-light .map-cover-label {
  color: var(--text-soft)
}

.contact-section.is-light .arg-path {
  stroke: var(--border)
}

.contact-section.is-light .pin-group text {
  fill: var(--text-soft)
}

/* Form overrides for light background */
.contact-section.is-light .cf-field {
  background: #f8f9fa;
  border: 1px solid #ddd;
  color: var(--text);
}

.contact-section.is-light .cf-field:focus {
  border-color: var(--orange);
  background: #fff;
}

.contact-section.is-light .cf-field::placeholder {
  color: #888;
}

.contact-section.is-light .cf-submit {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.contact-section.is-light .cf-success-title {
  color: var(--text)
}

.contact-section.is-light .cf-success-text {
  color: var(--text-soft)
}

.contact-wrap {
  padding: 0 96px
}

.contact-head {
  margin-bottom: 56px
}

.contact-head .section-tag {
  color: var(--orange-light)
}

.contact-cols {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start
}

.contact-lead {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 32px
}

.cf {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.cf-field {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%
}

.cf-field::placeholder {
  color: rgba(255, 255, 255, .6)
}

.cf-field:focus {
  border-color: rgba(212, 114, 26, .6)
}

.cf-field option {
  background: #1a1208;
  color: #fff
}

.cf-textarea {
  resize: vertical;
  min-height: 112px
}

.cf-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 15px 32px;
  cursor: pointer;
  transition: all .2s;
  align-self: flex-start;
  margin-top: 4px
}

.cf-submit:hover:not(:disabled) {
  background: var(--orange-hover)
}

.cf-submit:disabled {
  opacity: .7;
  cursor: default
}

.cf-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 24px;
  background: rgba(45, 138, 78, .12);
  border: 1px solid rgba(45, 138, 78, .35);
  border-radius: 6px;
  margin-top: 4px
}

.cf-success-icon {
  font-size: 28px;
  line-height: 1
}

.cf-success-title {
  font-size: 14px;
  font-weight: 800;
  color: #5ecf82;
  letter-spacing: .5px
}

.cf-success-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6
}

.cf-error {
  display: none;
  font-size: 12px;
  color: #e07070;
  padding: 10px 14px;
  background: rgba(220, 80, 80, .1);
  border: 1px solid rgba(220, 80, 80, .25);
  border-radius: 4px;
  margin-top: 4px
}

.contact-channels {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap
}

.ch-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s
}

.ch-item:hover {
  color: var(--orange-light)
}

.ch-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: .7
}

/* Map */
.map-cover-label {
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px
}

.map-svg-wrap {
  position: relative;
  display: flex;
  justify-content: center
}

.arg-map {
  width: 100%;
  max-width: 300px;
  display: block;
  filter: drop-shadow(0 0 32px rgba(212, 114, 26, .12))
}

.arg-path {
  fill: rgba(212, 114, 26, .07);
  stroke: rgba(212, 114, 26, .4);
  stroke-width: 1.5;
  stroke-linejoin: round
}

.pin-ring {
  animation: pinPulse 2.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center
}

@keyframes pinPulse {
  0% {
    transform: scale(1);
    opacity: .5
  }

  100% {
    transform: scale(3);
    opacity: 0
  }
}

.map-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  justify-content: center
}

.map-loc {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px
}

.map-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-light);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(212, 114, 26, .6)
}

.pin-group {
  cursor: pointer
}

.map-svg-wrap {
  position: relative;
  overflow: visible
}

.map-tip {
  display: none;
  position: absolute;
  background: #fff;
  border-left: 3px solid #D4721A;
  border-radius: 6px;
  padding: 9px 15px 9px 13px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .28);
  white-space: nowrap;
  z-index: 200;
  transform: translate(-50%, calc(-100% - 14px));
  pointer-events: none;
  flex-direction: column;
  gap: 3px
}

.map-tip.active {
  display: flex;
  pointer-events: all
}

.map-tip::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom: none;
  border-top-color: #fff
}

.map-tip-name {
  font-size: 12px;
  font-weight: 800;
  color: #1A1208;
  font-family: Montserrat, sans-serif
}

.map-tip-link {
  font-size: 11px;
  font-weight: 600;
  color: #D4721A;
  text-decoration: none;
  font-family: Montserrat, sans-serif
}

.map-tip-link:hover {
  text-decoration: underline
}

/* ═══════════════════════════════════════
   BLOG PREVIEW (home)
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   NAV DROPDOWN
═══════════════════════════════════════ */
.nav-dropdown {
  position: relative
}

.dd-arrow {
  font-size: 8px;
  vertical-align: middle;
  color: var(--text-muted);
  margin-left: 2px;
  transition: color .2s
}

.nav-dropdown:hover .dd-arrow {
  color: var(--orange)
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(90, 40, 0, .15);
  min-width: 228px;
  padding: 6px 0;
  z-index: 300;
  list-style: none
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block
}

.nav-dropdown-menu li {
  border: none !important;
  width: 100%
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 11px 18px !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  color: var(--text-soft) !important;
  text-transform: none !important;
  letter-spacing: .4px !important;
  border-bottom: none !important
}

.nav-dropdown-menu a:hover {
  color: var(--orange) !important;
  background: var(--orange-pale)
}

.nav-dropdown-menu a::after {
  display: none !important
}

.nav-dropdown-menu-sep {
  height: 1px;
  background: var(--border);
  margin: 4px 0
}

@media(max-width:768px) {
  .nav-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--orange-pale);
    border-radius: 0;
    padding: 0 0 0 14px;
    margin: 2px 0 8px;
    background: transparent;
    min-width: 0
  }

  .nav-dropdown-menu a {
    padding: 8px 0 !important;
    font-size: 11px !important
  }

  .dd-arrow {
    display: none
  }
}

/* ═══════════════════════════════════════
   SECTION INNER WRAPPERS (width fix)
═══════════════════════════════════════ */
.value-inner,
.sectors-inner {
  padding: 0 96px
}

/* ═══════════════════════════════════════
   HOME BACKUP BANNER (teaser)
═══════════════════════════════════════ */
.backup-banner {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 3px solid var(--orange)
}

.backup-banner-inner {
  padding: 0 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch
}

.backup-banner-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-transform: uppercase
}

.backup-banner-title em {
  color: var(--orange);
  font-style: normal
}

.backup-banner-sub {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 24px
}

.backup-banner-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px
}

.backup-banner-bullets li {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5
}

.backup-banner-bullets li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.backup-banner-visual {
  position: relative;
  display: flex;
  flex-direction: column
}

.backup-banner-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  flex: 1;
  display: flex
}

.backup-banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.backup-banner-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(20, 12, 4, .84);
  backdrop-filter: blur(8px);
  border-radius: 0 0 6px 6px
}

.backup-stat {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s;
  cursor: default
}

.backup-stat:last-child {
  border-right: none
}

.backup-stat:hover {
  background: rgba(212, 114, 26, .15)
}

.backup-stat-val {
  font-size: 18px;
  font-weight: 900;
  color: var(--orange-light);
  letter-spacing: -.5px;
  margin-bottom: 3px;
  line-height: 1
}

.backup-stat-lbl {
  font-size: 8px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* ═══════════════════════════════════════
   SOLUTION PAGES
═══════════════════════════════════════ */
.sol-hero {
  position: relative;
  padding: 80px 96px;
  background: #0d0a06;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  min-height: 60vh;
  display: flex;
  align-items: center
}

.sol-hero-accent {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 114, 26, .12) 0%, transparent 70%);
  pointer-events: none
}

.sol-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

/* Solutions Hero Buttons equal width stretch */
.sol-hero .hero-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.sol-hero .hero-actions .btn-p,
.sol-hero .hero-actions .btn-ghost {
  width: 100% !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  justify-content: center !important;
  text-align: center !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.sol-breadcrumb {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px
}

.sol-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color .2s
}

.sol-breadcrumb a:hover {
  color: var(--orange-light)
}

.sol-breadcrumb span {
  color: rgba(255, 255, 255, .6)
}

.sol-hero-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(212, 114, 26, .1);
  border: 1px dashed rgba(212, 114, 26, .3);
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 18px
}

.sol-hero-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px
}

.sol-hero-title em {
  color: var(--orange-light);
  font-style: normal;
  display: block
}

.sol-hero-sub {
  font-size: 14.5px;
  line-height: 1.85;
  color: #ffffff;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 3px solid var(--orange)
}

.sol-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  overflow: hidden
}

.sol-hero-stat {
  background: rgba(255, 255, 255, .04);
  padding: 24px 18px;
  text-align: center
}

.sol-hero-stat-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange-light);
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 6px
}

.sol-hero-stat-lbl {
  font-size: 9px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4
}

.sol-body {
  padding: 96px 96px;
  background: var(--white)
}

.sol-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}

.sol-grid-2 > div:nth-child(2) {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
}

.sol-body-image {
  width: 100%;
  flex-grow: 1 !important;
  height: 0 !important;
  min-height: 240px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 52px var(--shadow);
  margin-bottom: 14px !important;
}

.sol-body-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 14px;
}

.feat-svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.sol-body-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.sol-feat-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 28px
}

.sol-feat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all .2s;
  cursor: default
}

.sol-feat:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateX(4px)
}

.sol-feat-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(212, 114, 26, .2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.sol-feat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.sol-feat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65
}

.sol-apps-section {
  padding: 0 96px 96px;
  background: var(--off-white);
  border-top: 1px solid var(--border)
}

.sol-apps-inner {
  padding-top: 72px
}

.sol-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 40px
}

.sol-app {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
  cursor: default
}

.sol-app:hover {
  border-color: var(--orange);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow)
}

.sol-app-ico {
  margin-bottom: 12px;
  display: block;
  height: 28px;
}

.sol-app-ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.sol-app-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.sol-app-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6
}

.sol-dark {
  background: #0d0a06;
  padding: 96px 96px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.sol-process {
  display: flex;
  flex-direction: column;
  margin-top: 48px
}

.sol-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.sol-step:last-child {
  border-bottom: none
}

.sol-step-num {
  font-size: 44px;
  font-weight: 900;
  color: rgba(212, 114, 26, .18);
  letter-spacing: -2px;
  line-height: 1
}

.sol-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.sol-step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7
}

.sol-cta {
  background: var(--orange);
  padding: 80px 96px;
  text-align: center
}

.sol-cta-inner {
  max-width: 800px;
  margin: 0 auto
}

.sol-cta-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase
}

.sol-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--orange);
  padding: 15px 36px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .18);
  transition: all .2s
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px)
}

/* Solution page responsive */
@media(max-width:1024px) {
  .sol-hero {
    padding: 80px 48px 64px
  }

  .sol-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .sol-body {
    padding: 72px 48px
  }

  .sol-grid-2 {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .sol-body-image {
    position: static;
    flex-grow: 0 !important;
    height: 280px !important
  }

  .sol-apps-section {
    padding: 0 48px 72px
  }

  .sol-apps-inner {
    padding-top: 56px
  }

  .sol-apps {
    grid-template-columns: repeat(2, 1fr)
  }

  .sol-dark {
    padding: 72px 48px
  }

  .sol-cta {
    padding: 64px 48px
  }

  .backup-banner {
    padding: 64px 48px
  }

  .backup-banner-inner {
    gap: 48px
  }
}

@media(max-width:768px) {
  .sol-hero {
    padding: 64px 20px 48px
  }

  .sol-hero-stats {
    grid-template-columns: repeat(3, 1fr)
  }

  .sol-hero .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .sol-hero .hero-actions .btn-p,
  .sol-hero .hero-actions .btn-ghost {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .sol-body {
    padding: 56px 20px
  }

  .sol-apps-section {
    padding: 0 20px 56px
  }

  .sol-apps-inner {
    padding-top: 48px
  }

  .sol-apps {
    grid-template-columns: repeat(2, 1fr)
  }

  .sol-dark {
    padding: 56px 20px
  }

  .sol-cta {
    padding: 56px 20px
  }

  .backup-banner {
    padding: 56px 0
  }

  .backup-banner-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .backup-banner-img-wrap img {
    height: 260px
  }
}

/* ═══════════════════════════════════════
   BACKUP INDUSTRIAL SECTION
═══════════════════════════════════════ */
.backup-section {
  background: var(--text);
  padding: 96px 0
}

.backup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 0 96px
}

.backup-title {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase
}

.backup-title em {
  color: var(--orange-light);
  font-style: normal
}

.backup-sub {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 36px
}

.backup-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 28px
}

.bspec {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 10px;
  text-align: center
}

.bspec-val {
  display: block;
  font-size: 17px;
  font-weight: 900;
  color: var(--orange-light);
  margin-bottom: 4px
}

.bspec-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase
}

.backup-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 36px
}

.bfeat {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 5px 11px;
  border-radius: 2px
}

.backup-comps-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 16px
}

.backup-comps {
  width: 100%;
  border-collapse: collapse
}

.backup-comps tr:last-child td {
  border-bottom: none
}

.backup-comps td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 12px;
  vertical-align: top
}

.backup-comps td:first-child {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--orange-light);
  width: 30%;
  padding-top: 14px
}

.backup-comps td:last-child {
  color: rgba(255, 255, 255, .68);
  line-height: 1.6
}

/* Light variant — alternating section color on solution pages */
.backup-section-light {
  background: var(--white)
}

.backup-section-light .backup-title {
  color: var(--text)
}

.backup-section-light .backup-title em {
  color: var(--orange)
}

.backup-section-light .backup-sub {
  color: var(--text-soft)
}

.backup-section-light .anno {
  color: var(--orange) !important;
  background: rgba(212, 114, 26, .08) !important;
  border-color: rgba(212, 114, 26, .3) !important
}

.backup-section-light .section-tag {
  color: var(--orange);
  border-color: rgba(212, 114, 26, .3)
}

.backup-section-light .bspec {
  background: var(--off-white);
  border-color: var(--border)
}

.backup-section-light .bspec-val {
  color: var(--orange)
}

.backup-section-light .bspec-lbl {
  color: var(--text-muted)
}

.backup-section-light .bfeat {
  color: var(--text-soft);
  background: var(--off-white);
  border-color: var(--border)
}

.backup-section-light .backup-comps td {
  border-bottom-color: var(--border)
}

.backup-section-light .backup-comps td:first-child {
  color: var(--orange)
}

.backup-section-light .backup-comps td:last-child {
  color: var(--text-soft)
}

.backup-section-light .backup-comps-title {
  color: var(--text-muted)
}

.blog-preview-section {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--border)
}

.blog-preview-wrap {
  padding: 0 96px
}

.blog-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap
}

.blog-head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-slider-btns {
  display: none !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

/* Blog Card */
.bcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s
}

.bcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10)
}

.bcard-img {
  position: relative;
  height: 210px;
  overflow: hidden
}

.bcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.bcard:hover .bcard-img img {
  transform: scale(1.06)
}

.bcard-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  color: #fff
}

.cat-legal {
  background: #1a6b3a
}

.cat-roi {
  background: #0d5c8a
}

.cat-casos {
  background: var(--orange)
}

.bcard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.bcard-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px
}

.bcard-date {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px
}

.bcard-read {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  border-radius: 2px;
  padding: 2px 7px
}

.bcard-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -.2px
}

.bcard:hover .bcard-title {
  color: var(--orange)
}

.bcard-excerpt {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1
}

/* ═══════════════════════════════════════
   BLOG INDEX PAGE
═══════════════════════════════════════ */
.blog-hero {
  background: #0d0a06;
  padding: 80px 96px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.blog-hero-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin: 14px 0 16px
}

.blog-hero-title em {
  font-style: normal;
  color: var(--orange-light)
}

.blog-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .5);
  max-width: 560px
}

.blog-cats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 96px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none
}

.blog-cats-bar::-webkit-scrollbar {
  display: none
}

.blog-cat-btn {
  background: none;
  border: none;
  padding: 16px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap
}

.blog-cat-btn:hover {
  color: var(--orange)
}

.blog-cat-btn.active {
  color: var(--orange);
  border-bottom-color: var(--orange)
}

.blog-index-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 96px 72px;
  transition: all 0.3s ease
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transition: all 0.3s ease
}

/* Blog Controls Panel */
.blog-controls-panel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 96px 10px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.blog-search-box {
  position: relative;
  flex: 1;
  max-width: 600px;
}

.blog-search-box .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  color: var(--text-soft);
  pointer-events: none;
}

.blog-search-box input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  padding: 14px 16px 14px 48px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.blog-search-box input::placeholder {
  color: var(--text-muted);
}

.blog-search-box input:focus {
  outline: none;
  border-color: var(--orange-hover);
  background: #fff;
  box-shadow: 0 0 15px rgba(212, 114, 26, 0.1);
}

.blog-filter-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.blog-select {
  background: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  padding: 14px 28px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  min-width: 280px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.blog-select:focus,
.blog-select:hover {
  border-color: var(--orange-hover);
  background: var(--orange-pale);
}

.blog-select option {
  background: #fff;
  color: var(--text);
}


/* Very large screens query (+24 inches / typically min-width: 1440px or 1500px) */
@media (min-width: 1440px) {
  .blog-index-wrap {
    max-width: 1600px;
  }

  .blog-controls-panel {
    max-width: 1600px;
  }

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

/* Responsive constraints for smaller tablets and mobile */
@media (max-width: 992px) {
  .blog-controls-panel {
    padding: 30px 48px 10px;
  }
}

@media (max-width: 768px) {
  .blog-controls-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px 10px;
    gap: 16px;
  }

  .blog-search-box {
    max-width: 100%;
  }

  .blog-filter-box,
  .blog-select {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ═══════════════════════════════════════
   ARTICLE PAGE
═══════════════════════════════════════ */
.article-page {
  background: var(--white)
}

.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .98) 100%)
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 96px
}

@media (min-width: 769px) {
  .article-hero-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}

.article-breadcrumb {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.article-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s
}

.article-breadcrumb a:hover {
  color: #fff
}

.article-breadcrumb span {
  color: rgba(255, 255, 255, .3)
}

.article-hero-cat {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  color: #fff;
  margin-bottom: 12px
}

.article-hero-title {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 760px
}

.article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 96px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start
}

/* Article body */
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
  flex-wrap: wrap
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-pale);
  border: 2px solid rgba(212, 114, 26, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0
}

.author-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text)
}

.author-role {
  font-size: 10px;
  color: var(--text-muted)
}

.article-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500
}

.article-reading {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 600
}

.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft)
}

.article-body h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.4px;
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--orange)
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px
}

.article-body p {
  margin-bottom: 20px
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 22px
}

.article-body li {
  margin-bottom: 8px
}

.article-body strong {
  color: var(--text);
  font-weight: 700
}

.article-body blockquote {
  border-left: 3px solid var(--orange);
  background: var(--orange-pale);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0
}

.article-body blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--text-soft);
  font-size: 15px
}

/* Data table */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 13px
}

.article-table th {
  background: var(--text);
  color: #fff;
  padding: 11px 16px;
  text-align: left;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700
}

.article-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft)
}

.article-table tr:last-child td {
  border-bottom: none
}

.article-table tr:nth-child(even) td {
  background: var(--off-white)
}

/* Inline CTA within article */
.article-cta-box {
  background: #0d0a06;
  border-radius: 6px;
  padding: 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.article-cta-text {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.6
}

.article-cta-text strong {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px
}

.article-cta-btn {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0
}

.article-cta-btn:hover {
  background: var(--orange-light)
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border)
}

.article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .2s
}

.article-tag:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.article-share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px
}

.article-share-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #aaa;
  white-space: nowrap
}

.article-share-btns {
  display: flex;
  gap: 8px
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: #999;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  padding: 0;
  font-family: inherit
}

.share-btn:hover {
  border-color: #bbb;
  color: #666;
  background: #efefef
}

.share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

@media print {

  .mockup-bar,
  .nav-hamburger,
  nav,
  .article-hero-overlay,
  .article-share,
  .article-tags,
  .article-cta-box,
  .article-related,
  .article-sidebar,
  .ft-main,
  .ft-bottom,
  footer {
    display: none !important
  }

  .article-wrap {
    display: block
  }

  .article-main {
    max-width: 100%;
    padding: 0
  }

  .article-hero {
    height: 220px
  }

  .article-hero-content {
    padding: 20px 32px
  }

  .article-hero-title {
    font-size: 22px
  }

  .article-body {
    font-size: 13px;
    line-height: 1.7
  }

  .article-meta-bar {
    padding: 12px 0
  }
}

/* Full Width CTA in Blog */
.article-full-cta {
  background: #0d0a06;
  padding: 80px 96px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.af-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px
}

.af-cta-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px
}

.af-cta-title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 600px
}

.af-cta-title em {
  color: var(--orange-light);
  font-style: normal
}

.af-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 540px
}

.af-cta-btn {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .2s;
  white-space: nowrap
}

.af-cta-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px)
}

@media (max-width:992px) {
  .af-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px
  }

  .article-full-cta {
    padding: 64px 32px
  }
}

@media (max-width:768px) {
  .article-full-cta {
    padding: 48px 20px
  }

  .af-cta-btn {
    width: 100%;
    text-align: center
  }
}

/* Related articles */
.article-related {
  padding: 56px 96px;
  background: var(--white);
  border-top: 1px solid var(--border)
}

.article-related-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px
}

.sidebar-widget {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 20px
}

.sidebar-widget-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border)
}

.sidebar-cats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.sidebar-cat-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all .2s
}

.sidebar-cat-item a:hover {
  background: var(--white);
  color: var(--orange)
}

.sidebar-cat-count {
  font-size: 10px;
  background: var(--border);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 10px
}

.sidebar-recent {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0
}

.sidebar-recent-item a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all .2s
}

.sidebar-recent-item:last-child a {
  border-bottom: none
}

.sidebar-recent-img {
  width: 56px;
  height: 46px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0
}

.sidebar-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.sidebar-recent-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
  transition: color .2s
}

.sidebar-recent-item a:hover .sidebar-recent-title {
  color: var(--orange)
}

.sidebar-recent-date {
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 3px
}

.sidebar-cta-widget {
  background: linear-gradient(135deg, #1a0f06, #0d0a06);
  border: 1px solid rgba(212, 114, 26, .2);
  border-radius: 6px;
  padding: 28px;
  text-align: center
}

.sidebar-cta-ico {
  font-size: 28px;
  margin-bottom: 12px
}

.sidebar-cta-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px
}

.sidebar-cta-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  margin-bottom: 20px
}

.sidebar-cta-btn {
  display: block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s
}

.sidebar-cta-btn:hover {
  background: var(--orange-light)
}

/* ═══════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════ */
.nav-lang-li {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  margin-left: 4px
}

.lang-btn {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 2px;
  transition: all .2s;
  border: 1px solid transparent
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--orange);
  background: var(--orange-pale);
  border-color: rgba(212, 114, 26, .2)
}

.lang-sep {
  color: var(--border);
  font-size: 10px;
  font-weight: 300
}

@media(max-width:768px) {
  .nav-lang-li {
    border-left: none;
    border-top: 1px solid var(--border) !important;
    border-bottom: none !important;
    padding: 14px 0 !important;
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 8px
  }
}

/* ═══════════════════════════════════════
   HAMBURGER NAV
═══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2100
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: all .3s
}

.nav-hamburger.is-open {
  display: flex !important;
  position: fixed !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 999999 !important;
  background: var(--orange) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 4px 15px rgba(212, 114, 26, 0.4) !important;
  border: 2px solid white !important;
}

.nav-hamburger.is-open span {
  background: white !important;
  height: 3px !important;
  width: 22px !important;
  margin: 0 !important;
  position: absolute !important;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) !important
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) !important
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════ */
@media(max-width:1024px) {

  /* Nav */
  nav {
    padding: 0 48px
  }

  /* Hero */
  .hero-content {
    padding: 0 48px 200px 48px;
    max-width: 100%
  }

  .hero-float {
    width: 280px;
    height: 175px;
    right: 48px
  }

  .hero-vline {
    left: 28px;
    top: 48px;
    bottom: 200px;
  }

  /* Value */
  .value-section {
    padding: 72px 0
  }

  .value-inner,
  .sectors-inner,
  .backup-banner-inner,
  .blog-preview-wrap,
  .contact-wrap,
  .backup-inner {
    padding: 0 48px
  }

  .faq-page-main {
    padding: 0 48px !important;
  }

  .val-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start
  }

  .val-visual {
    display: block;
    height: auto;
    position: static
  }

  .val-img-wrap {
    display: block
  }

  .val-img {
    position: static;
    height: 320px;
    flex: none
  }

  /* Obras */
  .proj-header {
    padding: 0 48px
  }

  .proj-header .slider-btns {
    display: flex
  }

  .slider {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    margin: 0 48px;
    padding: 4px 0 20px;
    gap: 20px;
    width: auto
  }

  .pc {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    flex-shrink: 0
  }

  /* Sectors */
  .sectors-section {
    padding: 72px 0
  }

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

  /* CTA */
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 0 48px
  }

  .cta-chart {
    display: none
  }

  .cta-content {
    padding: 80px 0
  }

  /* Contact */
  .contact-section {
    padding: 72px 0
  }

  .contact-cols {
    grid-template-columns: 1fr;
    gap: 56px
  }

  /* Footer */
  footer {
    padding: 56px 48px 0
  }

  .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════ */
@media(max-width:768px) {

  /* Mockup bar */
  .mockup-bar {
    font-size: 8px;
    letter-spacing: 0.5px
  }

  /* NAV */
  body>nav {
    padding: 0 20px;
    height: 64px;
    top: 24px;
    z-index: 2000;
    position: fixed;
    align-items: center
  }

  .nav-hamburger {
    display: flex;
    position: relative;
    z-index: 2100;
    height: 44px;
    align-items: center;
    justify-content: center
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(16px);
    padding: 80px 30px 40px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    list-style: none;
    visibility: hidden;
  }

  .nav-links.nav-open {
    right: 0;
    visibility: visible
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border)
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 16px
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 13px
  }

  .nav-links a::after {
    display: none
  }

  .nav-cta {
    border-radius: 3px;
    padding: 13px 20px !important;
    text-align: center;
    width: 100%;
    display: block !important
  }

  /* HERO — column layout so float never overlaps buttons */
  .hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between
  }

  .hero-content {
    padding: 100px 20px 40px;
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  .hero-vline {
    display: none
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 10, 6, 0.85) 0%, rgba(13, 10, 6, 0.65) 40%, rgba(13, 10, 6, 0.35) 75%, transparent 100%);
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 52px)
  }

  .m-br {
    display: block
  }

  .hero-sub {
    font-size: 13px;
    margin: 20px 0 32px
  }

  .hero-float {
    position: relative;
    bottom: auto;
    right: auto;
    left: 0;
    width: calc(100% - 40px);
    height: 160px;
    margin: 0 20px 90px
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .btn-p,
  .btn-o,
  .btn-orange-outline {
    font-size: 11px;
    padding: 13px 22px
  }

  .stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .st {
    padding: 22px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .st-num {
    font-size: clamp(20px, 3.5vw, 26px);
    margin-bottom: 4px;
  }

  .st-lbl {
    font-size: 8.5px;
    letter-spacing: 1px;
  }

  /* TRUST BAND */
  .trust-band {
    padding: 30px 20px
  }

  .trust-slider-wrap {
    position: static;
    display: flex;
    gap: 10px
  }

  .trust-btn {
    position: static;
    transform: none;
    width: 28px;
    height: 28px;
    font-size: 15px
  }

  .trust-logo {
    height: 64px;
    padding: 0 10px
  }

  .trust-logo img {
    max-height: 52px;
    max-width: 120px
  }

  /* VALUE */
  .value-section {
    padding: 56px 0
  }

  .value-inner,
  .sectors-inner,
  .backup-banner-inner,
  .blog-preview-wrap,
  .contact-wrap,
  .backup-inner {
    padding: 0 20px
  }

  .faq-page-main {
    padding: 0 !important;
  }

  .val-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start
  }

  .val-visual {
    display: block;
    height: auto;
    position: static
  }

  .val-img-wrap {
    display: block
  }

  .val-img {
    position: static;
    height: 220px;
    flex: none
  }

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

  /* OBRAS */
  .projects-section {
    padding: 56px 0
  }

  .proj-header {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px
  }

  .proj-header .slider-btns {
    display: flex
  }

  .slider {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    margin: 0 20px;
    padding: 4px 0 16px;
    gap: 14px;
    width: auto
  }

  .pc {
    width: 100%;
    min-width: 100%;
    height: 360px;
    flex-shrink: 0
  }

  .pc.feat-card {
    min-width: 100%
  }

  /* SECTORES */
  .sectors-section {
    padding: 56px 0
  }

  .sectors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 36px
  }

  .sc {
    padding: 24px 16px
  }

  .sc-ico {
    font-size: 26px;
    margin-bottom: 12px
  }

  .sc-name {
    font-size: 12px
  }

  .sc-desc {
    font-size: 10.5px
  }

  /* CTA */
  .cta-inner {
    grid-template-columns: 1fr !important;
    padding: 0 20px
  }

  .cta-chart {
    display: none
  }

  .cta-content {
    padding: 64px 0
  }

  .cta-title {
    font-size: clamp(26px, 8vw, 40px)
  }

  .cta-sub {
    font-size: 13px
  }

  .cta-btns {
    flex-direction: column;
    gap: 10px
  }

  .btn-pl,
  .btn-ghost {
    font-size: 11px;
    padding: 13px 22px;
    width: 100%;
    justify-content: center
  }

  .cta-contacts {
    flex-direction: column !important;
    gap: 18px !important;
  }

  /* CONTACT */
  .contact-section {
    padding: 56px 0
  }

  .contact-cols {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .cf-row {
    grid-template-columns: 1fr
  }

  .cf-submit {
    width: 100%;
    text-align: center;
    justify-content: center
  }

  .arg-map {
    max-width: 220px
  }

  /* FOOTER */
  footer {
    padding: 48px 20px 0
  }

  .ft-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px
  }

  .ft-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 0
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL (≤480px)
═══════════════════════════════════════ */
@media(max-width:480px) {
  .sectors-grid {
    grid-template-columns: 1fr
  }

  .hero-float {
    display: none
  }

  .hero-content {
    padding-bottom: 40px
  }

  .stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    grid-template-columns: 1fr;
    border-top: 4px solid var(--orange);
  }

  .st {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .st:last-child {
    border-bottom: none;
  }

  .st-num {
    font-size: 32px;
    margin-bottom: 6px;
  }

  .st-lbl {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr
  }

  .cot-fields {
    grid-template-columns: 1fr
  }

  .cot-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .cot-card-wide {
    grid-column: span 2
  }

  /* Backup section mobile */
  .backup-section {
    padding: 64px 0
  }

  .backup-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .backup-specs {
    grid-template-columns: repeat(2, 1fr)
  }

  /* Blog mobile */
  .blog-preview-section {
    padding: 56px 0
  }

  .blog-preview-head {
    flex-direction: column;
    align-items: flex-start
  }

  .blog-hero {
    padding: 60px 20px 52px
  }

  .blog-cats-bar {
    padding: 0 20px
  }

  .blog-index-wrap {
    padding: 48px 20px
  }

  .blog-index-grid {
    grid-template-columns: 1fr
  }

  .article-hero {
    height: 240px
  }
}

@media(min-width:481px) and (max-width:768px) {
  .blog-grid {
    grid-template-columns: 1fr
  }

  .blog-index-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:769px) and (max-width:1024px) {
  .blog-preview-section {
    padding: 72px 32px
  }

  .blog-index-wrap {
    padding: 56px 32px
  }

  .blog-hero {
    padding: 72px 32px 56px
  }

  .blog-cats-bar {
    padding: 0 32px
  }

  .article-wrap {
    padding: 56px 32px;
    grid-template-columns: 1fr 280px;
    gap: 48px
  }

  .article-hero-content {
    padding: 32px 32px
  }

  .article-related {
    padding: 48px 32px
  }

  /* Cotizador tablet */
  .cot-hero {
    padding: 64px 32px 48px
  }

  .cotizador-section {
    padding: 72px 32px
  }

  .cotizador-inner {
    gap: 48px
  }
}

/* ═══════════════════════════════════════
   MOBILE — MEJORAS ADICIONALES
═══════════════════════════════════════ */
@media(max-width:768px) {

  /* Mockup bar top ajustado */
  body>nav {
    top: 24px
  }

  body {
    padding-top: 88px
  }

  .nav-logo img {
    height: 32px !important;
    width: auto
  }

  /* Hamburger — touch target mínimo 44px */
  .nav-hamburger {
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
  }

  .nav-hamburger span {
    width: 24px
  }

  /* Cotizador hero */
  .cot-hero {
    padding: 48px 20px 36px
  }

  .cot-side-stats {
    gap: 10px
  }

  .cot-stat-num {
    font-size: 18px
  }

  .cot-stat-lbl {
    font-size: 9px
  }

  /* Cotizador layout — colapsa a 1 columna */
  .cotizador-section {
    padding: 48px 20px
  }

  .cotizador-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .cotizador-right {
    padding: 24px 18px
  }

  .cot-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .cot-card-wide {
    grid-column: span 2
  }

  /* iOS Safari: impide zoom al tocar inputs (font-size < 16px lo dispara) */
  .cf-field,
  .cot-input,
  .cot-select,
  .cot-textarea {
    font-size: 16px
  }

  /* Tablas de artículos — scroll horizontal fluido */
  .article-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: normal;
    margin: 24px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
  }

  .article-table thead,
  .article-table tbody {
    display: table;
    width: 100%;
    min-width: 600px;
  }

  .article-table th,
  .article-table td {
    padding: 12px 16px !important;
    font-size: 13px !important;
    line-height: 1.4;
  }

  /* Article layout — colapsa sidebar a 1 columna en mobile */
  .article-wrap {
    display: block !important;
    padding: 30px 20px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .article-main {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important
  }

  .article-sidebar {
    display: block !important;
    width: 100% !important;
    position: static !important;
    margin-top: 40px !important
  }

  .article-hero {
    height: 250px !important
  }

  .article-hero-content {
    padding: 20px !important;
    width: 100% !important
  }

  .article-hero-title {
    font-size: 26px !important;
    line-height: 1.2 !important
  }

  .article-body {
    font-size: 16px !important;
    line-height: 1.7 !important
  }

  .article-related {
    padding: 40px 20px
  }

  .article-related-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important
  }

  /* CTA inline dentro de artículo — apilado */
  .article-cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .article-cta-btn {
    width: 100%;
    text-align: center
  }

  /* Trust band compact en tablet */
  .trust-logo {
    padding: 0 8px
  }

  /* Blog preview section */
  .blog-preview-section {
    padding: 56px 0
  }

  .blog-preview-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .blog-head-actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex
  }

  .blog-slider-btns {
    display: flex !important
  }

  .blog-grid {
    display: flex !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    margin: 0 !important;
    padding: 4px 0 16px;
    gap: 14px !important;
    width: auto !important;
    scroll-snap-type: x mandatory
  }

  .blog-grid::-webkit-scrollbar {
    display: none !important
  }

  .blog-grid:active {
    cursor: grabbing
  }

  .blog-grid .bcard {
    width: 100% !important;
    min-width: 100% !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center
  }
}

@media(max-width:480px) {
  .cot-side-stats {
    grid-template-columns: 1fr 1fr
  }

  .mockup-bar {
    font-size: 7.5px;
    letter-spacing: 0.5px;
    padding: 5px 0
  }
}


/* ═══════════════════════════════════════
   FINAL OVERRIDES FOR MOBILE ARTICLES
   (Placed at the very end to ensure priority)
   ═══════════════════════════════════════ */
@media(max-width:768px) {

  /* Menú mobile fixed y oculto */
  body .nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 80vw !important;
    max-width: 300px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 9999 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: right 0.3s ease, opacity 0.3s ease !important;
    padding: 80px 30px 40px !important;
  }

  body .nav-links.nav-open {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Layout del artículo — forzado a 1 columna */
  body.article-page .article-wrap {
    display: block !important;
    width: 100% !important;
    padding: 24px 20px !important;
    margin: 0 !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  body.article-page .article-main {
    width: 100% !important;
    padding: 0 !important;
  }

  body.article-page .article-sidebar {
    display: block !important;
    width: 100% !important;
    margin-top: 48px !important;
    position: static !important;
  }

  /* Hero adjustments */
  body.article-page .article-hero {
    height: 240px !important;
  }

  body.article-page .article-hero-content {
    padding: 20px !important;
    bottom: 10px !important;
  }

  body.article-page .article-hero-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
}


/* ============================================================
   FAQ SECTION - SEO & UX
   ============================================================ */
.faq-section {
  background: #0d0d0d;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.faq-section .container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-section .anno {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 114, 26, .7);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.faq-section .section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
}

.faq-section .section-title em {
  font-style: normal;
  color: #d4721a;
}

/* FAQ Page Layout Custom classes - Light Theme */
.faq-page-wrap {
  display: block !important;
  background: var(--white) !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 60px 0 !important;
}

.faq-page-main {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 96px !important;
}

.faq-page-wrap .faq-section {
  background: transparent !important;
  border-top: none !important;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

/* Light theme FAQ card overrides */
.faq-page-wrap .faq-item {
  background: var(--off-white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.faq-page-wrap .faq-item:hover {
  border-color: rgba(212, 114, 26, .4) !important;
  box-shadow: 0 8px 30px rgba(212, 114, 26, 0.05) !important;
}

.faq-page-wrap .faq-item[open] {
  border-color: rgba(212, 114, 26, .3) !important;
  box-shadow: 0 8px 30px rgba(212, 114, 26, 0.04) !important;
}

.faq-page-wrap .faq-question {
  color: var(--text) !important;
  padding: 20px 24px !important;
}

.faq-page-wrap .faq-question::after {
  color: var(--orange) !important;
}

.faq-page-wrap .faq-answer {
  border-top: 1px solid var(--border) !important;
  padding: 0 24px 22px !important;
}

.faq-page-wrap .faq-answer p {
  color: var(--text-soft) !important;
}

.faq-page-wrap .faq-answer strong {
  color: var(--text) !important;
}

.faq-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:hover {
  border-color: rgba(212, 114, 26, .35);
}

.faq-item[open] {
  border-color: rgba(212, 114, 26, .25);
}

.faq-question {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  gap: 12px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #d4721a;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  font-family: 'Montserrat', sans-serif;
  margin-top: 14px;
  margin-bottom: 0;
}

.faq-answer strong {
  color: rgba(255, 255, 255, .9);
}

.faq-answer a {
  color: #d4721a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: #d4721a;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-question {
    font-size: 14px;
    padding: 15px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}