@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600&family=Syne:wght@700;800&display=swap');

/* ==============================
   DESIGN TOKENS
   ============================== */
:root {
  --navy:       #030027;
  --navy-mid:   #06004e;
  --lime:       #C4FB15;
  --magenta:    #FF0974;
  --purple:     #6320EE;
  --blue:       #152AF7;
  --white:      #ffffff;
  --off-white:  #F7F7F9;
  --muted:      rgba(255, 255, 255, 0.62);
  --muted-dark: rgba(3, 0, 39, 0.58);

  --texture:      url('references/ref1-backgrounds.jpg');

  --font-display: 'Syne', sans-serif;
  --font-heading: 'Archivo Black', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:    72px;
  --radius:   16px;
  --radius-s: 8px;
  --ease:     0.3s ease;
}

/* ==============================
   RESET + BASE
   ============================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ==============================
   TYPOGRAPHY SCALE
   ============================== */
h1, h2, h3, h4 { line-height: 1.15; }

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.accent      { color: var(--lime); }
.accent-dark { color: var(--magenta); }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.7rem;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.btn-primary:hover {
  background: #d4086a;
  border-color: #d4086a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 9, 116, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(3, 0, 39, 0.35);
}
.btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--magenta);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg    { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; margin-top: auto; }

/* ==============================
   SECTION UTILITIES
   ============================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: rgba(255, 255, 255, 0.6); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 1rem auto 0;
}

/* ==============================
   SCROLL REVEAL
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(3, 0, 39, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ==============================
   MOBILE MENU
   ============================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--ease);
}
.mobile-close:hover { opacity: 1; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--lime); }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  background:
    linear-gradient(rgba(3, 0, 39, 0.72), rgba(3, 0, 39, 0.72)),
    url('images/restaurant1.png') center/cover no-repeat;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0;
  animation-fill-mode: forwards;
}

.orb-lime {
  width: 650px;
  height: 650px;
  background: var(--lime);
  top: -220px;
  left: -180px;
  opacity: 0.38;
  animation: floatLime 13s ease-in-out infinite alternate;
}
.orb-magenta {
  width: 520px;
  height: 520px;
  background: var(--magenta);
  bottom: -120px;
  right: -100px;
  opacity: 0.4;
  animation: floatMagenta 10s ease-in-out infinite alternate;
}
.orb-purple {
  width: 460px;
  height: 460px;
  background: var(--purple);
  top: 40%;
  left: 52%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
  animation: floatPurple 16s ease-in-out infinite alternate;
}
.orb-blue {
  width: 280px;
  height: 280px;
  background: var(--blue);
  top: 8%;
  right: 18%;
  opacity: 0.3;
  animation: floatBlue 9s ease-in-out infinite alternate;
}

@keyframes floatLime {
  0%   { transform: translate(0, 0)   scale(1);    }
  100% { transform: translate(70px, 50px) scale(1.08); }
}
@keyframes floatMagenta {
  0%   { transform: translate(0, 0)     scale(1);    }
  100% { transform: translate(-55px, -70px) scale(1.12); }
}
@keyframes floatPurple {
  0%   { transform: translate(-50%, -50%) scale(1);    }
  100% { transform: translate(-42%, -58%) scale(0.92); }
}
@keyframes floatBlue {
  0%   { transform: translate(0, 0);   }
  100% { transform: translate(-35px, 55px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 940px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.85s ease 0.38s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.56s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.72s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  animation: bounce 2.2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0);  }
  50%       { transform: rotate(45deg) translate(5px, 5px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ==============================
   STATS BAR
   ============================== */
.stats-bar {
  background: rgba(255, 255, 255, 0.035);
  border-top:    1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3.5rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.25rem;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--lime);
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lime);
}

.stat-label {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 0.45rem;
  line-height: 1.35;
  max-width: 120px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  margin: 1rem 0;
}

.stats-source {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 1.75rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

/* ==============================
   PRODUCTS
   ============================== */
.products { background: var(--off-white); }
.products .section-container { color: var(--navy); }
.products .section-eyebrow   { color: var(--magenta); }
.products h2                  { color: var(--navy); }
.products .section-subtitle   { color: var(--muted-dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: 0 12px 36px rgba(196, 251, 21, 0.1);
}

.product-icon {
  width: 44px;
  height: 44px;
  color: var(--lime);
}
.product-icon svg { width: 100%; height: 100%; }

.product-card h3 { color: var(--white); }
.product-card p  { font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); line-height: 1.6; }

/* Image cards */
.product-card.img-card {
  background:
    linear-gradient(to top, rgba(3, 0, 39, 0.96) 0%, rgba(3, 0, 39, 0.55) 55%, transparent 100%),
    var(--card-img) center/cover;
  min-height: 280px;
  justify-content: flex-end;
  border-color: rgba(255, 255, 255, 0.05);
}
.product-card.img-card .product-icon { display: none; }
.product-card.img-card h3 { color: var(--lime); }
.product-card.img-card:hover {
  border-color: var(--lime);
  box-shadow: 0 12px 36px rgba(196, 251, 21, 0.15);
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works {
  background:
    linear-gradient(rgba(3, 0, 39, 0.90), rgba(3, 0, 39, 0.90)),
    var(--texture) center/cover;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color var(--ease);
}
.step:hover { border-color: rgba(196, 251, 21, 0.25); }

.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}

.step-content h4 {
  color: var(--white);
  margin-bottom: 0.45rem;
}
.step-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

/* ==============================
   SONAMOS PERÚ
   ============================== */
.sonamos-peru {
  position: relative;
  background: url('images/radioenbar-asp.png') center/cover no-repeat;
  padding: 9rem 2rem;
  text-align: center;
  overflow: hidden;
}

.sonamos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(99, 32, 238, 0.70);
}

.sonamos-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.sonamos-content h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.sonamos-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sonamos-highlight {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--lime) !important;
  text-transform: uppercase;
  margin-top: 2rem !important;
}

/* ==============================
   PRICING
   ============================== */
.pricing { background: var(--off-white); }
.pricing .section-container { color: var(--navy); }
.pricing .section-eyebrow   { color: var(--magenta); }
.pricing h2                  { color: var(--navy); }
.pricing .section-subtitle   { color: var(--muted-dark); }

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border-color: var(--magenta);
  transform: scale(1.03);
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 1.5rem; }

.pricing-card h3 {
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.price-currency {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-tax {
  font-size: 0.72rem;
  color: rgba(3, 0, 39, 0.42);
  align-self: flex-end;
  margin-bottom: 4px;
}
.price-desc {
  font-size: 0.84rem;
  color: var(--muted-dark);
  line-height: 1.5;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-size: 0.86rem;
  color: rgba(3, 0, 39, 0.72);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}
.pricing-features li::before {
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}
.pricing-features li.included::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
}
.pricing-features li.excluded {
  opacity: 0.38;
}
.pricing-features li.excluded::before {
  content: '–';
  color: rgba(3, 0, 39, 0.38);
}

/* ADD-ONS */
.addons {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(3, 0, 39, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(3, 0, 39, 0.09);
}

.addons-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.addon-item { display: flex; flex-direction: column; gap: 0.2rem; }
.addon-name  { font-size: 0.84rem; font-weight: 600; color: var(--navy); }
.addon-price { font-size: 0.88rem; font-weight: 700; color: var(--magenta); }
.addon-desc  { font-size: 0.73rem; color: rgba(3, 0, 39, 0.48); }

/* ==============================
   PILOT
   ============================== */
.pilot {
  background:
    linear-gradient(rgba(255, 9, 116, 0.93), rgba(255, 9, 116, 0.93)),
    var(--texture) center/cover;
}
.pilot .section-eyebrow   { color: rgba(255, 255, 255, 0.65); }
.pilot h2                  { font-size: clamp(1.9rem, 3.5vw, 2.75rem); color: var(--white); }
.pilot .section-subtitle   { color: rgba(255, 255, 255, 0.72); }

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pilot-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--white);
  transition: background var(--ease), transform var(--ease);
}
.pilot-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}
.pilot-card.featured {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

.pilot-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  align-self: flex-start;
}

.pilot-card h4   { font-size: 1.05rem; color: var(--white); }
.pilot-plan      { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: rgba(255,255,255,0.55); }
.pilot-card > p:not(.pilot-plan) { font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.55; flex: 1; }
.pilot-card .btn { margin-top: 0.75rem; align-self: flex-start; }

/* ==============================
   CONTACT
   ============================== */
.contact {
  background:
    linear-gradient(rgba(3, 0, 39, 0.90), rgba(3, 0, 39, 0.90)),
    var(--texture) center/cover;
}

.contact-inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.contact-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-inner p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background:
    linear-gradient(rgba(1, 0, 28, 0.93), rgba(1, 0, 28, 0.93)),
    var(--texture) center/cover;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem 1.75rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { margin-bottom: 0.7rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 190px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2rem;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-contact a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--lime); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.26);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 960px) {
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: 1fr; }
  .addons-grid    { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.popular {
    transform: none;
    order: -1;
  }
  .pricing-card.popular:hover { transform: translateY(-5px); }

  .pilot-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

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

  .stat-divider { display: none; }
  .stats-container { gap: 0.75rem; }
  .stat-item { min-width: 130px; }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-links   { justify-content: center; }
  .footer-bottom  {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-container { padding: 5rem 1.25rem; }

  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }

  .hero-actions,
  .contact-buttons { flex-direction: column; align-items: center; }

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