/* ============================================================
   MeteringIQ — Stylesheet
   Brand: Petroleum Signal
   Navy #0E2E40 | Cyan #16B6C9 | Steel #5C6B73
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --dark:      #0E2E40;  /* Petroleum Navy (primary)        */
  --dark-2:    #081C28;  /* Navy 900 (deepest)              */
  --blue:      #16B6C9;  /* Signal Cyan (secondary accent)  */
  --blue-light:#9FB6C0;  /* Muted light (text on dark)      */
  --orange:    #16B6C9;  /* Accent — Signal Cyan            */
  --orange-dk: #0F94A4;  /* Cyan 600 (hover)                */
  --white:     #FFFFFF;
  --off-white: #F2F5F6;
  --text:      #0A1F2B;
  --muted:     #6E7A80;
  --border:    #DDE3E6;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(14,46,64,.10);
  --transition:220ms ease;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button, select { font-family: inherit; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; line-height: 1.7; color: var(--muted); }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

/* --- Layout helpers --------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark p, .section-dark .section-label { color: var(--blue-light); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--dark);
  border-color: var(--orange);
  font-weight: 600;
}
.btn-primary:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: var(--white); }

/* Login button (disabled) */
.btn-login {
  background: transparent;
  color: rgba(255,255,255,.35);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .45rem 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: not-allowed;
  opacity: .6;
  position: relative;
}
.btn-login:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -2rem;
  right: 0;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: .72rem;
  padding: .25rem .6rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* --- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(14, 46, 64, .97);
  padding: .65rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo svg, .nav-logo img { width: 168px; height: auto; display: block; }
.nav-logo-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: .45rem;
  line-height: 1;
}
.nav-logo-text span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.nav-logo-text span:last-child {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--blue-light);
  letter-spacing: .10em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 4px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.5);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .55rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lang-toggle button.active {
  background: var(--orange);
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* --- Hero ------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #081C28 0%, #0E2E40 55%, #1C4A63 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
/* Home hero: compact, same style as page-hero on inner pages */
.hero-compact {
  min-height: unset;
  padding: 8rem 0 4.5rem;
  display: block;
}
.hero-compact .hero-sub { max-width: 1060px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(22,182,201,.07) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}
.hero-tagline em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--blue-light);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual: animated circuit board diagram */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-device-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(22,182,201,.2);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(8px);
}
.hero-device-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: .4rem;
}
.hero-device-card .device-sub {
  color: var(--blue-light);
  font-size: .85rem;
  margin-bottom: 2rem;
}
.device-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.metric {
  background: rgba(22,182,201,.08);
  border: 1px solid rgba(22,182,201,.15);
  border-radius: 8px;
  padding: .9rem 1rem;
}
.metric-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .2rem;
}
.metric-label {
  font-size: .72rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
}

/* Hero eyebrow (industry label above the product name) */
.hero-eyebrow { margin-bottom: 1rem; }

/* Hero lead paragraph — emphasized (large, bold) */
.hero-lead {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* "Our device" headline: product name + badge on one line */
.product-headline {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .25rem;
}
.product-headline h2 { margin-bottom: 0; }

/* Keep the brand name in mixed case inside uppercase section labels */
.section-label .brand-nocaps { text-transform: none; letter-spacing: .02em; }

/* FF8000 inline highlight strip */
.hero-product-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.hero-product-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1;
}
.hero-product-badge {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 4px;
  padding: .25rem .65rem;
  white-space: nowrap;
  align-self: center;
}
.hero-metrics-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-metric {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-metric-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-metric-lbl {
  font-size: .7rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(135deg, #081C28 0%, #0E2E40 55%, #1C4A63 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(22,182,201,.07) 0%, transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: var(--blue-light); font-size: 1.1rem; max-width: 600px; }

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(14,46,64,.12); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(22,182,201,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.card h3 { margin-bottom: .5rem; color: var(--dark); }

/* Dark card */
.card-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(22,182,201,.15);
  color: var(--white);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: var(--blue-light); }
.card-dark .card-icon { background: rgba(22,182,201,.15); }

/* --- Specs table ------------------------------------------ */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th {
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.25rem;
  text-align: left;
}
.specs-table td {
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--text);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--off-white); }
.specs-table td:first-child { font-weight: 600; color: var(--dark); }
.specs-table td .badge {
  display: inline-block;
  background: rgba(22,182,201,.12);
  color: var(--orange-dk);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 4px;
}

/* --- Stats bar -------------------------------------------- */
.stats-bar {
  background: var(--orange);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  color: rgba(14,46,64,.78);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Cert badges ------------------------------------------ */
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(22,182,201,.08);
  border: 1px solid rgba(22,182,201,.2);
  border-radius: 8px;
  padding: .65rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .04em;
}
.cert-badge svg { stroke: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }

/* --- Process steps ---------------------------------------- */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.step-num {
  counter-increment: step;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 2rem;
  background: var(--border);
}
.step:last-child .step-num::after { display: none; }
.step-content h3 { margin-bottom: .4rem; color: var(--dark); }

/* --- CTA section ------------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1C4A63 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: var(--blue-light); max-width: 540px; margin: 0 auto 2rem; }

/* --- Contact form ----------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-item svg { stroke: var(--orange); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: .2rem; }
.contact-info-item p { margin: 0; font-size: .95rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,182,201,.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: #081C28;
  color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.footer-logo svg, .footer-logo img { width: 150px; height: auto; }
.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
}
.footer-desc { font-size: .88rem; line-height: 1.6; max-width: 420px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: .9rem;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* --- Feature icon list ------------------------------------ */
.icon-list { display: flex; flex-direction: column; gap: 1rem; }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.icon-list-item svg { stroke: var(--orange); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.icon-list-item span { font-size: .95rem; color: var(--text); line-height: 1.5; }

/* Dark variant */
.icon-list-dark .icon-list-item span { color: var(--blue-light); }

/* --- Divider ---------------------------------------------- */
.divider-orange {
  width: 56px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem 0 1.75rem;
}

/* --- Scroll reveal ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* --- Mobile nav ------------------------------------------- */
@media (max-width: 900px) {
  .nav-logo svg, .nav-logo img { width: 140px; }
  .btn-login { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-hamburger { display: flex; padding: 10px; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-compact { padding: 5rem 0 3rem; }
  .page-hero { padding: 5rem 0 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card { padding: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .stats-bar { padding: 2rem 0; }
  .cta-section { padding: 3.5rem 0; }
  .reveal-intro, .reveal-intro-md { margin-bottom: 2rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stats-bar { padding: 1.5rem 0; }
  .stat-num { font-size: 2rem; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .card { padding: 1.5rem; }
  .vision-box { padding: 1.5rem; }
  .pricing-card { padding: 2rem 1.25rem; }
  .contact-card { padding: 1.25rem; }
}

/* --- Utility classes (replaces inline styles) -------------------- */
/* Hero */
.hero-compact .hero-content { max-width: 1060px; }

/* Section intro blocks */
.reveal-intro   { max-width: 620px; margin-bottom: 3rem; }
.reveal-intro-md { max-width: 600px; margin-bottom: 3rem; }

/* Footer address */
.footer-address {
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  display: block;
  margin-top: .4rem;
}

/* Contact page links */
.link-orange { color: var(--orange); }

/* Contact info card */
.contact-card { padding: 2.5rem; }
.contact-form-title { font-size: 1.8rem; margin-bottom: 1.5rem; }
.form-note {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}

/* WhatsApp button */
.btn-whatsapp { margin-top: 1.5rem; display: inline-flex; gap: .6rem; }

/* Full-width button */
.btn-full { width: 100%; justify-content: center; }

/* Pricing card */
.pricing-card { text-align: center; padding: 3rem 2.5rem; }
.pricing-label-center { text-align: center; }
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 1rem 0 .5rem;
}
.pricing-desc { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-features {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.pricing-feature { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.pricing-feature:last-child { margin-bottom: 0; }
.pricing-feature-text { font-size: .92rem; color: var(--text); }

/* Table wrapper */
.table-wrapper { overflow-x: auto; border-radius: 10px; box-shadow: var(--shadow); }

/* Nosotros — vision box */
.vision-box {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 4px solid var(--orange);
}
.vision-box h3 { color: var(--dark); margin-bottom: 1rem; }

/* Nosotros — history paragraphs */
.history-p { margin-bottom: 1.25rem; }
