/* ============================================================
   Software and Solutions LP — v2  (Dark Tech Redesign)
   ============================================================ */

/* ── Variables ── */
:root {
  --bg:       #ffffff;
  --bg-2:     #f8fafc;
  --dark:     #0f1e38;
  --dark-2:   #162032;
  --card:     #ffffff;
  --card-2:   #f1f5f9;
  --border:   #e2e8f0;
  --border-h: #cbd5e1;

  --blue:     #1d4ed8;
  --blue-2:   #2563eb;
  --green:    #059669;
  --amber:    #d97706;
  --red:      #dc2626;

  --grad:       linear-gradient(135deg,#1d4ed8,#2563eb);
  --grad-green: linear-gradient(135deg,#059669,#10b981);

  --text:  #0f172a;
  --muted: #64748b;
  --dim:   #94a3b8;

  --shadow:    0 4px 24px rgba(15,30,56,.07);
  --shadow-lg: 0 12px 48px rgba(15,30,56,.10);
  --blue-light: rgba(29,78,216,.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── Shell ── */
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: fixed; z-index: 100; top: 16px; left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(15,30,56,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(15,30,56,.08);
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-color: rgba(29,78,216,.18);
  box-shadow: 0 8px 32px rgba(15,30,56,.12);
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 40px; height: 40px; border-radius: 13px; }
.brand strong, .brand small { display: block; }
.brand strong {
  line-height: 1; font-family: Archivo, sans-serif; font-weight: 900;
  letter-spacing: -.04em; font-size: 15px; color: var(--text);
}
.brand small {
  margin-top: 3px; color: var(--muted); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  border-radius: 999px; padding: 9px 14px;
  color: var(--muted); font-size: 14px; font-weight: 700;
  transition: color .2s, background .2s;
}
.site-nav a:hover { background: rgba(29,78,216,.07); color: var(--text); }
.site-nav .nav-cta {
  background: var(--blue); color: #fff;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.site-nav .nav-cta:hover {
  background: var(--blue-2); color: #fff;
  box-shadow: 0 8px 24px rgba(29,78,216,.25);
  transform: translateY(-1px);
}

/* ── Nav dropdown ── */
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-chevron {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform .22s;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 224px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 20px 56px rgba(15,30,56,.14), 0 2px 8px rgba(15,30,56,.06);
  opacity: 0; visibility: hidden;
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 300;
}
.nav-item:hover .nav-drop,
.nav-item.force-open .nav-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 11px;
  color: var(--text); font-size: 14px; font-weight: 600;
  transition: background .14s, color .14s;
}
.nav-drop a:hover { background: rgba(29,78,216,.06); color: var(--blue); }
.nav-drop-sep { height: 1px; background: var(--border); margin: 5px 6px; }
.nav-drop-cta { color: var(--blue) !important; font-weight: 700 !important; }
.nav-drop-cta:hover { background: rgba(29,78,216,.08) !important; }

.menu-button {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 999px;
  background: var(--bg-2);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-button i {
  display: block; width: 18px; height: 1.5px; border-radius: 999px;
  background: var(--text); transition: all .2s;
}

/* ── Typography ── */
h1, h2, h3 {
  margin-top: 0; font-family: Archivo, sans-serif;
  letter-spacing: -.03em; color: var(--text);
}
h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06; margin-bottom: 20px; font-weight: 900;
}
h1 em { font-style: normal; }
h2 { font-size: clamp(26px, 3vw, 40px); line-height: 1.1; margin-bottom: 16px; font-weight: 900; }
h3 { font-size: 19px; line-height: 1.3; margin-bottom: 9px; font-weight: 800; }
p { margin-top: 0; }
.hero h1 { color: #fff; }
.hero h2 { color: #fff; }

.eyebrow {
  margin: 0 0 16px;
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
}
.text-grad {
  color: var(--blue);
  color: transparent;
  display: inline-block;
  /* Extra padding on all sides so descenders/ascenders never clip */
  padding: .04em .15em .06em .04em;
  margin: -.04em -.15em -.06em -.04em;
}

/* ── Buttons ── */
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center;
  border: none; border-radius: 999px; padding: 0 24px;
  font-weight: 800; font-size: 15px; cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--blue); color: #fff;
}
.button.primary:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 28px rgba(29,78,216,.28);
}
.button.secondary {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
.button.secondary:hover { border-color: var(--border-h); background: var(--bg-2); }
.button.ghost {
  border: 1.5px solid rgba(255,255,255,.28);
  background: transparent;
  color: rgba(255,255,255,.9);
}
.button.ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.5); color: #fff; }
.button.dark {
  background: var(--text);
  color: #fff;
  border: none;
}
.button.dark:hover {
  background: var(--dark);
  box-shadow: 0 6px 20px rgba(15,30,56,.2);
}
.button.white {
  background: #fff;
  color: var(--blue);
  border: none;
  font-weight: 800;
}
.button.white:hover {
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.button.outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-h);
}
.button.outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── Hero ── */
.hero {
  position: relative;
  background: #0b1628;
  background-image: url('https://images.unsplash.com/photo-1484417894907-623942c8ee29?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 30%;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,20,45,.92) 0%,
    rgba(10,20,45,.80) 42%,
    rgba(10,20,45,.48) 70%,
    rgba(10,20,45,.22) 100%
  );
  z-index: 1;
}
.hero .shell {
  position: relative;
  z-index: 2;
  padding: 148px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hero-copy { max-width: 680px; padding-bottom: 72px; }
.hero h1 {
  color: #fff; font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.04; letter-spacing: -.03em; margin-bottom: 22px;
}
.hero .eyebrow { color: #60c8f0; }
.hero-text {
  color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75;
  max-width: 560px; margin-bottom: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* KPI strip at hero bottom */
.hero-kpis {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px 0 80px;
}
.hero-kpi {
  flex: 1; display: flex; flex-direction: column; gap: 7px;
  padding: 0 48px 0 0;
}
.hero-kpi + .hero-kpi {
  padding-left: 48px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.hero-kpi strong {
  font-family: Archivo, sans-serif;
  font-size: 34px; font-weight: 900;
  letter-spacing: -.04em; line-height: 1; color: #fff;
}
.hero-kpi span {
  color: rgba(255,255,255,.48); font-size: 13.5px; font-weight: 600; line-height: 1.4;
}

.signal-card {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.09);
  background: var(--card);
  color: var(--text); padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.signal-card:hover { border-color: rgba(99,102,241,.3); }
.signal-card + .signal-card { margin-top: 10px; }
.signal-card.active {
  background: linear-gradient(135deg, rgba(99,102,241,.14), rgba(34,211,238,.07));
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 0 32px rgba(99,102,241,.1);
}
.signal-card small {
  display: block; color: var(--green);
  font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 10.5px;
}
/* ── Proof strip ── */
.proof-strip {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4,1fr);
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 0;
}
.proof-strip div {
  padding: 26px 28px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.proof-strip div:hover { background: var(--bg-2); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong {
  display: block; font-family: Archivo, sans-serif;
  font-size: 28px; letter-spacing: -.06em;
  color: var(--blue);
}
.proof-strip span { color: var(--muted); font-weight: 700; font-size: 14px; }

/* ── Clients marquee ── */
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clients-section {
  padding: 52px 0 56px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  margin-bottom: 32px;
}
.clients-label span {
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.clients-track {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.clients-rail {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: clients-scroll 40s linear infinite;
}
.clients-rail:hover { animation-play-state: paused; }
.clients-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin: 0 10px;
  height: 64px;
  min-width: 160px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  opacity: .85;
  transition: opacity .3s ease, box-shadow .3s ease;
}
.clients-logo:hover {
  opacity: 1;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.clients-logo img {
  max-width: 120px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Tech stack strip ── */
@keyframes tech-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tech-section {
  background: var(--dark);
  padding: 44px 0 48px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.tech-label {
  text-align: center;
  font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 32px;
}
.tech-track {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.tech-rail {
  display: flex; align-items: center;
  gap: 52px; width: max-content;
  animation: tech-scroll 56s linear infinite;
}
.tech-rail:hover { animation-play-state: paused; }
.tech-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 72px;
  opacity: .72;
  transition: opacity .25s;
}
.tech-item:hover { opacity: 1; }
.tech-item img {
  width: 40px; height: 40px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.tech-item span {
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  color: rgba(255,255,255,.75); white-space: nowrap;
}

/* ── Section base ── */
.section { padding: 88px 0; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 0; }

/* ── Products ── */
.products-section { background: var(--bg-2); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }

/* ── Services 2x2 grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Op grid (product pages) ── */
.op-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.op-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .op-grid { grid-template-columns: 1fr; }
  .op-grid-secondary { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .op-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--card); padding: 32px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.product-card:hover {
  border-color: var(--blue-2); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card.web:hover      { border-color: #7c3aed; }
.product-card.hr::before     { display: none; }
.product-card.hr:hover    { border-color: var(--green); }
.product-card.parcel:hover { border-color: var(--amber); }
.product-card.custom:hover { border-color: #0891b2; }
.product-card > * { position: relative; }
.product-kicker {
  margin-bottom: 14px;
  display: inline-flex; align-items: center;
  padding: 4px 11px;
  background: rgba(29,78,216,.07);
  border: 1px solid rgba(29,78,216,.15);
  border-radius: 999px;
  color: var(--blue); font-size: 11px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
}
.product-card h3 { font-size: 22px; letter-spacing: -.02em; margin-bottom: 6px; color: var(--text); }
.product-card > p { color: var(--muted); font-size: 16px; line-height: 1.72; }
.product-card ul {
  display: grid; gap: 10px; margin: 20px 0 28px;
  padding: 0; list-style: none;
  color: var(--text); font-weight: 600; font-size: 14px;
}
.product-card li { display: flex; align-items: center; gap: 10px; }
.product-card li::before {
  content: ""; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--blue);
}
.product-card .button { margin-top: auto; }
.op-price {
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin: 0 0 14px;
}
.op-price strong {
  font-family: Archivo, sans-serif; font-size: 20px; font-weight: 900;
  letter-spacing: -.03em; color: var(--text);
}

/* ── Svc cards (ARCA style, 2×2) ── */
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 44px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.svc-card-icon {
  width: 76px; height: 76px;
  color: var(--blue);
  margin-bottom: 28px;
  flex-shrink: 0;
}
.svc-card h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text);
  margin: 0 0 14px;
}
.svc-card > p {
  color: var(--muted);
  font-size: 15px; line-height: 1.72;
  margin: 0 0 28px;
}
.svc-bullets {
  list-style: none;
  padding: 0; margin: 0 0 auto;
  width: 100%; text-align: left;
}
.svc-bullets li {
  padding: 13px 0;
  border-top: 1px solid var(--border);
}
.svc-bullets li:last-child {
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.svc-bullets strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.svc-bullets span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Services ── */
.services-section { background: var(--bg-2); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: flex; gap: 18px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  padding: 22px 22px 22px 18px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  border-color: var(--blue-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.15);
  color: var(--blue);
}
.service-icon.svc-green { background: rgba(5,150,105,.08); border-color: rgba(5,150,105,.2); color: var(--green); }
.service-icon.svc-amber { background: rgba(217,119,6,.08); border-color: rgba(217,119,6,.2); color: var(--amber); }
.service-icon.svc-teal  { background: rgba(8,145,178,.08); border-color: rgba(8,145,178,.2); color: #0891b2; }
.service-card h3 { font-size: 17px; margin-bottom: 7px; line-height: 1.2; color: var(--text); }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0 0 12px; }
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.service-tags li {
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(29,78,216,.07);
  border: 1px solid rgba(29,78,216,.15);
  color: var(--blue);
}

/* ── Industries ── */
.industries-section { display: none; }
.industry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.ind-card:hover {
  border-color: var(--blue-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.ind-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.15);
  color: var(--blue);
  flex-shrink: 0;
}
.ind-icon.ind-green  { background: rgba(5,150,105,.08);  border-color: rgba(5,150,105,.2);  color: var(--green); }
.ind-icon.ind-amber  { background: rgba(217,119,6,.08);  border-color: rgba(217,119,6,.2);  color: var(--amber); }
.ind-icon.ind-teal   { background: rgba(8,145,178,.08);  border-color: rgba(8,145,178,.2);  color: #0891b2; }
.ind-icon.ind-purple { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.2); color: #7c3aed; }
.ind-card h3 { font-size: 17px; margin: 0; line-height: 1.2; color: var(--text); }
.ind-card p  { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; flex: 1; }
.ind-tag {
  display: inline-flex; align-self: flex-start;
  font-size: 10.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(29,78,216,.07); border: 1px solid rgba(29,78,216,.15); color: var(--blue);
}
.ind-tag.ind-tag-green  { background: rgba(5,150,105,.07);  border-color: rgba(5,150,105,.2);  color: var(--green); }
.ind-tag.ind-tag-amber  { background: rgba(217,119,6,.07);  border-color: rgba(217,119,6,.2);  color: var(--amber); }
.ind-tag.ind-tag-teal   { background: rgba(8,145,178,.07);  border-color: rgba(8,145,178,.2);  color: #0891b2; }
.ind-tag.ind-tag-purple { background: rgba(124,58,237,.07); border-color: rgba(124,58,237,.2); color: #7c3aed; }

/* ── Pricing ── */
/* ── Price table ── */
.price-table {
  margin-bottom: 48px;
  border: 1px solid rgba(148,163,184,.10);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}
.pt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(148,163,184,.07);
  gap: 16px;
}
.pt-row:last-child { border-bottom: none; }
.pt-header {
  background: rgba(255,255,255,.03);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  padding: 14px 28px;
}
.pt-product strong { font-size: 15px; font-weight: 700; color: var(--text); }
.pt-price {
  font-family: Archivo, sans-serif; font-weight: 500;
  color: var(--muted); font-size: 14px;
}
.pt-price strong {
  font-size: 24px; font-weight: 900; color: var(--text);
  letter-spacing: -.03em; font-family: Archivo, sans-serif;
}
.pt-price small { font-size: 12px; color: var(--muted); margin-left: 1px; font-weight: 500; }
.pt-desc { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.pt-enterprise { background: rgba(29,78,216,.03); }
.pt-enterprise .pt-product strong { color: var(--blue); }
@media (max-width: 640px) {
  .pt-header { display: none; }
  .pt-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px 20px; }
  .pt-desc { grid-column: 1 / -1; }
}

.pricing-section { background: var(--bg-2); }
.contact-section { background: var(--bg-2) !important; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pricing-card:hover {
  border-color: var(--blue-2); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-featured {
  border-color: var(--blue);
  background: var(--blue-light);
}
.pricing-featured:hover { border-color: var(--blue-2); }
.pricing-featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); border-radius: 24px 24px 0 0;
}
.pricing-badge {
  display: inline-flex; align-self: flex-start; margin-bottom: 12px;
  font-size: 10.5px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  background: var(--blue); color: #fff;
}
.pricing-tier { margin: 0 0 10px; font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.pricing-range {
  font-family: Archivo, sans-serif; font-size: 38px; letter-spacing: -.04em;
  line-height: 1; margin-bottom: 16px; color: var(--muted); font-weight: 500;
}
.pricing-range strong { color: var(--text); font-weight: 900; font-size: 48px; }
.pricing-range abbr { font-size: 16px; letter-spacing: .04em; text-decoration: none; }
.pricing-desc { color: var(--muted); font-size: 14.5px; line-height: 1.68; margin-bottom: 20px; }
.pricing-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 9px; flex: 1;
}
.pricing-card li {
  display: flex; align-items: center; gap: 9px;
  color: var(--text); font-size: 14px; font-weight: 600;
}
.pricing-card li::before {
  content: ""; flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 999px; background: var(--blue);
}
.pricing-note {
  text-align: center; color: var(--muted); font-size: 14px; font-weight: 600;
  margin-top: 28px;
  padding: 16px 24px;
  border: 1.5px solid var(--border); border-radius: 14px;
  background: var(--bg);
}
.custom-estimator {
  margin-top: 28px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  padding: 30px;
  box-shadow: var(--shadow);
}
.custom-estimator .eyebrow { color: var(--green); }
.custom-estimator-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
}
.custom-estimator-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.custom-estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.custom-estimator-grid label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.custom-estimator-grid input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}
.custom-estimator-grid output {
  font-family: Archivo, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
}
.custom-estimator-options {
  display: grid;
  gap: 12px;
  align-content: start;
}
.custom-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--bg-2);
}
.custom-check input {
  width: auto;
  accent-color: var(--blue);
}
.custom-estimator-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.custom-estimator-result div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.custom-estimator-result span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
}
.custom-estimator-result strong {
  font-family: Archivo, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--text);
}
.custom-estimator-result p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.success-section {
  background: var(--bg);
  background-image: radial-gradient(rgba(148,163,184,.13) 1px, transparent 1px);
  background-size: 32px 32px;
}
.success-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; align-items: stretch;
}
.success-card {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  padding: 28px;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.success-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-2);
  box-shadow: var(--shadow-lg);
}
.success-card-real { border-color: rgba(29,78,216,.2); }
.success-card-scenario { border-color: rgba(5,150,105,.2); }
.success-logo {
  display: inline-flex; flex-direction: column; align-self: flex-start;
  justify-content: center; min-width: 132px; min-height: 58px;
  padding: 12px 16px; border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  margin-bottom: 18px;
}
.success-logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 88px;
  padding: 14px 24px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow .25s;
}
.success-logo-image:hover { box-shadow: var(--shadow); }
.success-logo-image img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.success-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.success-stat-compact { margin-bottom: 18px; }
.success-company {
  margin: 0 0 8px;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.success-metric {
  font-family: Archivo, sans-serif; font-size: 48px; font-weight: 900;
  letter-spacing: -.05em; line-height: 1; color: var(--text);
  margin: 0;
}
.success-label {
  margin: 0; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.success-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.18; color: var(--text); }
.success-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.72; }
.success-card ul {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 9px;
}
.success-card li {
  display: flex; align-items: center; gap: 9px;
  color: var(--text); font-size: 14px; font-weight: 600;
}
.success-card li::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); flex-shrink: 0;
}
.success-tag {
  display: inline-flex; align-self: flex-start;
  margin-bottom: 16px; padding: 5px 12px;
  border-radius: 999px; border: 1px solid rgba(5,150,105,.22);
  background: rgba(5,150,105,.07); color: var(--green);
  font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
}

/* ── Operating model ── */
.operating-model {
  background: var(--dark);
  background-image:
    linear-gradient(135deg, rgba(10,20,45,.94) 0%, rgba(15,30,56,.90) 100%),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center top;
  color: #fff;
}
.operating-model h2 { color: #fff; }
.operating-model h3 { color: #fff; }
.operating-model > .shell > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.operating-model .eyebrow { color: rgba(96,200,240,.85); }
.model-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  position: relative; overflow: visible;
  color: #fff;
}
.model-card::before { display: none; }
.model-card .eyebrow { color: #60c8f0; }
.model-card h2 { max-width: 680px; color: #fff; }
.model-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 38px; }
.model-grid div {
  border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  background: rgba(255,255,255,.04); padding: 24px;
  transition: border-color .2s, background .2s;
}
.model-grid div b { display: block; font-size: 15px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.model-grid div span { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; }
.model-grid div:hover { border-color: rgba(96,200,240,.3); background: rgba(96,200,240,.05); }
.model-grid b {
  display: block; font-family: Archivo, sans-serif;
  font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 9px;
}
.model-grid span { display: block; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.58; }

/* ── Process timeline ── */
.process-section { background: var(--bg-2); }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.timeline article {
  border: 1px solid rgba(148,163,184,.07); border-radius: 22px;
  background: var(--card); padding: 26px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.timeline article::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.timeline article:hover { border-color: var(--blue-2); transform: translateY(-4px); }
.timeline article:hover::before { transform: scaleX(1); }
.timeline span {
  display: inline-block; margin-bottom: 12px;
  color: var(--green); font-size: 11px; font-weight: 900;
  letter-spacing: .16em; text-transform: uppercase;
}
.timeline h3 { font-size: 21px; margin-bottom: 10px; }
.timeline p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--dark);
  padding: 64px 0;
}
.cta-banner-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 52px 56px;
}
.cta-banner .eyebrow { color: var(--blue); }
.cta-banner h2 { color: var(--dark); margin-bottom: 12px; max-width: 620px; }
.cta-banner p { color: var(--text-muted); font-size: 17px; margin: 0; line-height: 1.65; }

/* ── Contact ── */
.contact-section { padding: 88px 0; }
.contact-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.contact-top h2 { margin-bottom: 16px; }
.contact-top > p { color: var(--muted); font-size: 16px; line-height: 1.72; }
.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* FAQ accordion */
.faq-heading {
  font-size: 22px; font-weight: 800;
  text-align: center;
  color: var(--text);
  margin: 0 0 24px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 0;
  font-size: 15px; font-weight: 600; line-height: 1.5;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--muted);
  transition: transform .22s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item > p {
  margin: 0; padding: 0 0 16px;
  color: var(--muted); font-size: 14.5px; line-height: 1.72;
}

/* Contact form v2 */
.contact-form-v2 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
}
.contact-form-v2 h3 {
  font-size: 22px; font-weight: 800;
  text-align: center;
  color: var(--text);
  margin: 0 0 32px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-v2 label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 14px;
}
.contact-form-v2 input,
.contact-form-v2 textarea {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 15px; font-family: inherit;
  color: var(--text); background: var(--bg-2);
  outline: none; width: 100%;
  transition: border-color .2s, background .2s;
}
.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
  border-color: var(--blue-2); background: #fff;
}
.contact-form-v2 input::placeholder,
.contact-form-v2 textarea::placeholder { color: var(--dim); }
.contact-form-v2 textarea { resize: vertical; min-height: 110px; }
.contact-form-v2 .button { width: 100%; justify-content: center; margin-top: 8px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form {
  display: grid; gap: 14px;
  border: 1.5px solid var(--border); border-radius: 24px;
  background: var(--card); padding: 28px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.lead-form::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.lead-form label {
  display: grid; gap: 7px;
  color: var(--text); font-weight: 700; font-size: 14px;
}
.lead-form select {
  width: 100%;
  border: 1.5px solid var(--border); border-radius: 14px;
  background: var(--bg);
  color: var(--text); padding: 13px 16px; outline: none;
  appearance: none; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  font-size: 15px;
}
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.lead-form select option { background: var(--bg); color: var(--text); }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1.5px solid var(--border); border-radius: 14px;
  background: var(--bg);
  color: var(--text); padding: 13px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-size: 15px;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--dim); }
.lead-form input:focus, .lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.mail-link {
  color: var(--blue); font-weight: 800; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.mail-link:hover { color: var(--blue-2); }
.form-status { min-height: 20px; color: var(--muted); font-weight: 600; font-size: 14px; }
.diag-header { margin-bottom: 4px; }
.diag-header .eyebrow { margin-bottom: 6px; }
.diag-sub { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Estimator CTA ── */
.estimator-cta-btn {
  display: inline-flex; align-items: center;
  margin-top: 20px;
  padding: 14px 24px; border-radius: 12px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.estimator-cta-btn:hover { background: var(--blue-2); transform: translateY(-1px); }
.estimator-prefill {
  background: rgba(29,78,216,.07);
  border: 1px solid rgba(29,78,216,.18);
  border-radius: 10px; padding: 12px 16px;
  margin-bottom: 18px; font-size: 13px;
  color: var(--blue); font-weight: 600;
}

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 0;
  height: 56px; min-width: 56px;
  padding: 0 16px;
  background: #25d366; border-radius: 999px;
  color: #fff; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  overflow: hidden;
  transition: min-width .3s cubic-bezier(.22,1,.36,1), padding .3s, box-shadow .2s;
}
.wa-fab:hover {
  box-shadow: 0 6px 32px rgba(37,211,102,.55);
}
.wa-icon {
  width: 26px; height: 26px; flex-shrink: 0;
}
.wa-fab-label {
  font-size: 14px; font-weight: 700; white-space: nowrap;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .3s cubic-bezier(.22,1,.36,1), opacity .25s, margin .3s;
  margin-left: 0;
}
.wa-fab:hover .wa-fab-label {
  max-width: 140px; opacity: 1; margin-left: 10px;
}
@media (max-width: 640px) {
  .wa-fab { bottom: 20px; right: 16px; height: 60px; min-width: 60px; padding: 0 18px; }
  .wa-icon { width: 28px; height: 28px; }
}

/* ── Why LP Soft ── */
.why-section {
  background: var(--bg);
  background-image: radial-gradient(rgba(148,163,184,.18) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 80px;
  align-items: center;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
.why-photo {
  margin: 0; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.why-photo img {
  width: 100%; height: 560px;
  object-fit: cover; display: block;
  filter: brightness(.93) saturate(1.08);
}
.why-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.why-item:hover {
  border-color: var(--blue-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(29,78,216,.07);
  border: 1px solid rgba(29,78,216,.13);
  color: var(--blue);
  flex-shrink: 0;
  margin-bottom: 2px;
}
.why-item h3 { font-size: 16px; margin-bottom: 0; color: var(--text); line-height: 1.3; }
.why-item p { color: var(--muted); font-size: 14px; line-height: 1.72; margin: 0; }

/* ── Footer ── */
.site-footer {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 24px 40px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
}
.footer-brand {
  display: flex; align-items: flex-start; gap: 12px;
}
.footer-brand img { border-radius: 9px; margin-top: 2px; }
.footer-brand-copy {
  display: flex; flex-direction: column; gap: 3px;
}
.site-footer strong {
  font-family: Archivo, sans-serif; font-weight: 900;
  letter-spacing: -.04em; font-size: 15px;
}
.site-footer span { color: var(--muted); font-size: 13px; }
.site-footer address {
  font-style: normal; color: var(--dim, #64748b);
  font-size: 12px; line-height: 1.5;
}
.site-footer strong { color: #fff; }
.site-footer span { color: rgba(255,255,255,.5); }
.site-footer a {
  color: rgba(255,255,255,.65); font-weight: 700; font-size: 14px;
  transition: color .2s;
}
.site-footer a:hover { color: #fff; }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .menu-button { display: flex; }
  .site-nav {
    position: fixed; inset: 66px 14px auto;
    display: none; flex-direction: column; align-items: stretch;
    border: 1px solid rgba(148,163,184,.12); border-radius: 20px;
    background: rgba(255,255,255,.97); backdrop-filter: blur(24px);
    padding: 10px;
  }
  body.menu-open .site-nav { display: flex; }
  .site-nav a { padding: 14px 16px; border-radius: 14px; }
  .hero .shell { padding-top: 110px; }
  .services-layout, .contact-grid, .cta-banner-inner, .why-inner { grid-template-columns: 1fr; }
  .why-photo { display: none; }
  .cta-banner { text-align: center; }
  .service-grid, .industry-grid, .pricing-grid, .success-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
  .custom-estimator-grid, .custom-estimator-result { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .split-cta { grid-template-columns: 1fr; }
  .hero .shell { padding-top: 110px; }
  .hero-kpis { flex-wrap: wrap; gap: 24px; padding-bottom: 56px; }
  .hero-kpi { flex: 0 0 calc(50% - 12px); padding: 0; border-left: none !important; }
  .hero-kpi + .hero-kpi { padding-left: 0; border-left: none; }
  .product-grid, .timeline, .model-grid { grid-template-columns: 1fr 1fr; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand small { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .product-grid, .timeline, .model-grid, .proof-strip, .service-grid, .industry-grid, .pricing-grid, .success-grid, .why-grid { grid-template-columns: 1fr; }
  .custom-estimator { padding: 22px; }
  .custom-estimator-copy h3 { font-size: 22px; }
  .product-card { min-height: auto; }
  .section { padding: 72px 0; }
  .model-card { padding: 26px; }
  .lead-form { padding: 22px; }
  .site-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .contact-cols { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form-v2 { padding: 28px; }
  .svc-card { padding: 36px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   Nosotros page
═══════════════════════════════════════════ */
.about-hero {
  position: relative;
  background: var(--dark);
  background-image:
    linear-gradient(135deg, rgba(10,20,45,.95) 0%, rgba(20,35,65,.88) 100%),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center top;
  padding: 160px 0 100px;
  color: #fff;
}
.about-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  color: #fff; max-width: 760px; margin: 16px 0 24px;
}
.about-hero p {
  font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.7);
  max-width: 620px;
}

.about-section {
  padding: 88px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 72px;
  align-items: center;
}
.about-cols figure {
  margin: 0; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-cols figure img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
  filter: brightness(.92) saturate(1.08);
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--muted); font-size: 16px; line-height: 1.8;
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }

.methodology-section {
  padding: 88px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.methodology-section .section-heading { margin-bottom: 52px; }
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}
.method-step {
  padding: 36px 30px;
  border-right: 1px solid var(--border);
  position: relative;
}
.method-step:last-child { border-right: none; }
.method-num {
  font-size: 36px; font-weight: 900; letter-spacing: -.04em;
  color: var(--blue); opacity: .18;
  line-height: 1; margin-bottom: 16px;
  font-family: Archivo, sans-serif;
}
.method-step h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.method-step p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.principles-section {
  padding: 88px 0;
  background: var(--dark);
  color: #fff;
}
.principles-section .section-heading { margin-bottom: 52px; }
.principles-section .section-heading p { color: rgba(255,255,255,.6); }
.principles-section .eyebrow { color: rgba(96,200,240,.85); }
.principles-section h2 { color: #fff; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.mvv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 36px 30px;
}
.mvv-card .mvv-label {
  font-size: 10px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(96,200,240,.8);
  margin-bottom: 14px; display: block;
}
.mvv-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.mvv-card p { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.72; margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-2); flex-shrink: 0; margin-top: 7px;
}
.value-item strong {
  display: block; color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px;
}
.value-item span { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

.team-section {
  padding: 88px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.team-cols {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 72px;
  align-items: center;
}
.team-text h2 { margin-bottom: 20px; }
.team-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.team-text p:last-child { margin-bottom: 0; }
.team-photo {
  margin: 0; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.team-photo img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  filter: brightness(.92) saturate(1.05);
}

@media (max-width: 960px) {
  .about-cols, .team-cols { grid-template-columns: 1fr; }
  .about-cols figure, .team-photo { display: none; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-step { border-bottom: 1px solid var(--border); border-right: none; }
  .method-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .method-step:nth-last-child(-n+2) { border-bottom: none; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   Contacto page
═══════════════════════════════════════════ */
.contacto-hero {
  position: relative;
  background: var(--dark);
  background-image:
    linear-gradient(135deg, rgba(10,20,45,.96) 0%, rgba(20,35,65,.90) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px;
  color: #fff;
  text-align: center;
}
.contacto-hero .eyebrow { color: rgba(96,200,240,.85); }
.contacto-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.12;
  color: #fff; max-width: 760px;
  margin: 14px auto 20px;
}
.contacto-hero p {
  font-size: 17px; line-height: 1.72; color: rgba(255,255,255,.65);
  max-width: 560px; margin: 0 auto;
}

.contacto-body {
  background: var(--bg-2);
  padding: 72px 0 88px;
}
.contacto-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* Info panel */
.contact-info-panel { display: flex; flex-direction: column; gap: 36px; }

.contact-info-block h3 {
  font-size: 18px; font-weight: 800;
  color: var(--text); margin: 0 0 20px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.contact-info-item svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--blue); margin-top: 2px;
}
.contact-info-item div strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 2px;
}
.contact-info-item div span,
.contact-info-item div a {
  font-size: 15px; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.contact-info-item div a:hover { color: var(--blue); }

.contact-social-links {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px;
}
.contact-social-links a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  border: 1.5px solid var(--border); border-radius: 999px;
  background: var(--card);
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.contact-social-links a:hover {
  border-color: var(--blue-2); color: var(--blue);
  background: rgba(29,78,216,.05);
}

/* FAQ on contacto page */
.contacto-faq h3 {
  font-size: 18px; font-weight: 800; color: var(--text); margin: 0 0 20px;
}
/* Form inside contacto-form-card reuses contact-form-v2 label/input styles */
.contacto-form-card form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 14px;
}
.contacto-form-card form input,
.contacto-form-card form textarea {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 15px; font-family: inherit;
  color: var(--text); background: var(--bg-2);
  outline: none; width: 100%;
  transition: border-color .2s, background .2s;
}
.contacto-form-card form input:focus,
.contacto-form-card form textarea:focus {
  border-color: var(--blue-2); background: #fff;
}
.contacto-form-card form input::placeholder,
.contacto-form-card form textarea::placeholder { color: var(--dim); }
.contacto-form-card form textarea { resize: vertical; min-height: 120px; }

/* Right: form card */
.contacto-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
}
.contacto-form-card h3 {
  font-size: 22px; font-weight: 800;
  text-align: center; color: var(--text);
  margin: 0 0 32px;
}

@media (max-width: 960px) {
  .contacto-layout { grid-template-columns: 1fr; }
}
