/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Colors */
  --bg:          #FFFFFF;
  --bg-2:        #F8F9FA;
  --bg-3:        #F1F3F5;
  --ink:         #1A1D2E;
  --ink-soft:    #374151;
  --ink-mute:    #6B7280;
  --accent:      #FF6B35;
  --accent-2:    #E63946;
  --accent-dark: #C1121F;
  --line:        #E5E7EB;
  --line-soft:   rgba(229,231,235,.6);

  /* Gradient */
  --grad: linear-gradient(135deg, #E63946 0%, #FF6B35 100%);
  --grad-rev: linear-gradient(135deg, #FF8C42 0%, #E63946 100%);

  /* Typography */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:  96px;
  --container:   1200px;
  --gutter:      clamp(1rem, 4vw, 2rem);

  /* Effects */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Nav */
  --nav-h: 72px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,29,46,.06), 0 1px 2px rgba(26,29,46,.04);
  --shadow-md: 0 4px 16px rgba(26,29,46,.08), 0 2px 4px rgba(26,29,46,.04);
  --shadow-lg: 0 12px 40px rgba(26,29,46,.12), 0 4px 12px rgba(26,29,46,.06);
  --shadow-xl: 0 24px 64px rgba(26,29,46,.14), 0 8px 24px rgba(26,29,46,.08);
  --shadow-accent: 0 8px 32px rgba(230,57,70,.22);
}

/* =============================================================
   2. Reset & Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; letter-spacing: -0.025em; }
ul { list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: var(--r-sm); font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.br-desktop { display: none; }
@media (min-width: 720px) { .br-desktop { display: block; } }

.accent-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600; letter-spacing: -.01em;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), opacity .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(230,57,70,.32); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink-soft); background: var(--bg-2); }

.btn-outline {
  background: transparent;
  color: var(--accent-2);
  border: 1.5px solid var(--accent-2);
}
.btn-outline:hover { background: rgba(230,57,70,.05); }

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.btn-white:hover { box-shadow: 0 4px 16px rgba(0,0,0,.14); }

.btn-ghost-white {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.22); }

.btn-lg { padding: .8rem 1.75rem; font-size: 1rem; border-radius: 10px; }

/* =============================================================
   5. Section Headers
   ============================================================= */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.eyebrow-light { color: rgba(255,255,255,.75); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

/* =============================================================
   6. Reveal animations
   ============================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .65s var(--ease-out) var(--delay, 0s),
    transform .65s var(--ease-out) var(--delay, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}

.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(229,231,235,.8);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink);
}
.nav-logo-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: none;
  gap: .25rem;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-link {
  padding: .5rem .75rem;
  font-size: .9rem; font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--ink); background: var(--bg-2); }

.nav-actions {
  display: flex; align-items: center; gap: .75rem;
}

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 8px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.nav-burger:hover { background: var(--bg-2); }
.nav-burger span {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
@media (min-width: 960px) { .nav-burger { display: none; } }

.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.5rem;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 960px) { .nav-mobile { display: none !important; } }

.nav-mobile-link {
  display: block; padding: .7rem .75rem;
  font-size: 1rem; font-weight: 500; color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
}
.nav-mobile-link:hover { background: var(--bg-2); color: var(--ink); }
.nav-mobile-cta { margin-top: .75rem; align-self: flex-start; }

/* =============================================================
   8. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}

/* Animated mesh gradient */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255,107,53,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(230,57,70,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 60%, rgba(255,140,66,.04) 0%, transparent 60%);
  animation: meshFloat 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshFloat {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.05) translate(1%, -1%); }
}

/* Subtle dot grid background */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(107,114,128,.14) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Canvas for network nodes */
.hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .5;
}

.hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(4rem, 10vw, 7rem);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .9rem;
  background: rgba(255,107,53,.08);
  border: 1px solid rgba(255,107,53,.2);
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: var(--ink-mute); font-weight: 500;
}
.hero-trust-sep { color: var(--line); font-size: 1rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(107,114,128,.4));
  margin-inline: auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .3; transform: scaleY(.5) translateY(-10px); }
  50%      { opacity: 1;  transform: scaleY(1)  translateY(0); }
}

/* =============================================================
   9. TRUST BAR
   ============================================================= */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .75rem 0;
}

.trust-item {
  display: flex; align-items: center; gap: .6rem;
  padding-inline: 1.5rem;
}

.trust-icon { flex-shrink: 0; }
.trust-text { font-size: .875rem; color: var(--ink-soft); }
.trust-text strong { color: var(--ink); }

.trust-sep {
  width: 1px; height: 20px;
  background: var(--line);
  display: none;
}
@media (min-width: 720px) { .trust-sep { display: block; } }

/* =============================================================
   10. SERVICES
   ============================================================= */
.services {
  padding-block: var(--section-py);
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,57,70,.15);
}
.service-card:hover::before { opacity: .03; }

.service-card > * { position: relative; z-index: 1; }

.service-icon-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(230,57,70,.1), rgba(255,107,53,.1));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-2);
  transition: background .3s, color .3s;
}
.service-card:hover .service-icon-wrap {
  background: var(--grad);
  color: #fff;
}

.service-title {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ink);
}
.service-desc {
  font-size: .9rem; color: var(--ink-mute); line-height: 1.6;
  margin-bottom: 1rem;
}
.service-tag {
  display: inline-block;
  padding: .2rem .6rem;
  background: var(--bg-3);
  border-radius: 999px;
  font-size: .72rem; font-weight: 600; color: var(--ink-mute);
  letter-spacing: .04em; text-transform: uppercase;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================================
   11. HOW IT WORKS
   ============================================================= */
.how-it-works {
  padding-block: var(--section-py);
  background: var(--bg-2);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
  position: relative;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.step {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 2rem 2rem 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
@media (min-width: 720px) {
  .step {
    border-radius: 0;
    border-right: none;
  }
  .step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
  .step:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; border-right: 1px solid var(--line); }
}

.step-number {
  font-size: 3rem; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 1rem;
  letter-spacing: -.05em;
}

.step-title {
  font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; color: var(--ink);
}
.step-desc {
  font-size: .9rem; color: var(--ink-mute); line-height: 1.6;
}

.step-connector { display: none; }

/* =============================================================
   12. PROFILES
   ============================================================= */
.profiles {
  padding-block: var(--section-py);
  background: var(--bg);
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) { .profiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .profiles-grid { grid-template-columns: repeat(3, 1fr); } }

.profile-card {
  display: flex; flex-direction: column;
  padding: 1.75rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .3s var(--ease-out), box-shadow .3s, background .3s;
}
.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--bg);
}

.profile-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(230,57,70,.1), rgba(255,107,53,.1));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  margin-bottom: 1.25rem;
}

.profile-title {
  font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--ink);
}
.profile-desc {
  font-size: .875rem; color: var(--ink-mute); line-height: 1.6;
}

/* =============================================================
   13. ALL SERVICES / ACCORDION
   ============================================================= */
.all-services {
  padding-block: var(--section-py);
  background: var(--bg-2);
}

.accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex; flex-direction: column;
  gap: .75rem;
}

.accordion-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .3s;
}
.accordion-item.is-open { box-shadow: var(--shadow-md); border-color: rgba(230,57,70,.15); }

.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  cursor: pointer;
  border-radius: var(--r-lg);
  transition: background .2s;
}
.accordion-trigger:hover { background: var(--bg-2); }

.accordion-num {
  font-size: .75rem; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0; letter-spacing: .05em;
}

.accordion-title {
  font-size: .975rem; font-weight: 600; color: var(--ink); flex: 1;
}
.accordion-count {
  font-size: .8rem; color: var(--ink-mute); flex-shrink: 0;
  display: none;
}
@media (min-width: 540px) { .accordion-count { display: block; } }

.accordion-arrow {
  color: var(--ink-mute); flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.accordion-item.is-open .accordion-arrow { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.accordion-item.is-open .accordion-panel { max-height: 400px; }

.accordion-list {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.accordion-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--ink-soft); line-height: 1.5;
}
.accordion-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--grad);
  margin-top: .45rem;
}

/* =============================================================
   14. METRICS
   ============================================================= */
.metrics {
  padding-block: var(--section-py);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(230,57,70,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(255,107,53,.1) 0%, transparent 60%);
  pointer-events: none;
}

.metrics-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 720px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

.metric { text-align: center; }

.metric-value {
  display: flex; align-items: baseline; justify-content: center; gap: .1rem;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900; letter-spacing: -.05em; line-height: 1;
  color: #fff;
  margin-bottom: .5rem;
}
.metric-count { display: inline; }
.metric-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.metric-label {
  font-size: .875rem; color: rgba(255,255,255,.55); font-weight: 500;
}

/* =============================================================
   15. CASES
   ============================================================= */
.cases {
  padding-block: var(--section-py);
  background: var(--bg);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,57,70,.15);
  background: var(--bg);
}

.case-tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: linear-gradient(135deg, rgba(230,57,70,.1), rgba(255,107,53,.1));
  border: 1px solid rgba(230,57,70,.2);
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; color: var(--accent-2);
  letter-spacing: .06em; text-transform: uppercase;
  align-self: flex-start;
}

.case-title {
  font-size: 1.1rem; font-weight: 700; color: var(--ink);
}
.case-desc {
  font-size: .9rem; color: var(--ink-mute); line-height: 1.65; flex: 1;
}
.case-outcome {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .82rem; font-weight: 600;
  color: var(--accent-2);
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.case-outcome svg { flex-shrink: 0; margin-top: .15rem; }

/* =============================================================
   16. TESTIMONIALS
   ============================================================= */
.testimonials {
  padding-block: var(--section-py);
  background: var(--bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars { flex-shrink: 0; }
.testimonial-quote {
  font-size: .95rem; color: var(--ink-soft); line-height: 1.7;
  font-style: italic; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.testimonial-name { font-size: .9rem; font-weight: 700; color: var(--ink); }
.testimonial-role { font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   17. FAQ
   ============================================================= */
.faq {
  padding-block: var(--section-py);
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex; flex-direction: column;
  gap: .6rem;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.is-open { border-color: rgba(230,57,70,.2); }

.faq-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--ink);
  cursor: pointer;
  transition: background .2s;
}
.faq-trigger:hover { background: var(--bg-3); }

.faq-arrow {
  color: var(--ink-mute); flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.faq-item.is-open .faq-arrow { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-item.is-open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: .9rem; color: var(--ink-mute); line-height: 1.7;
}

/* =============================================================
   18. FINAL CTA
   ============================================================= */
.final-cta {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--ink);
  overflow: hidden;
}

.final-cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(230,57,70,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(255,107,53,.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: meshFloat 15s ease-in-out infinite alternate;
}

.final-cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
}

.final-cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; color: #fff;
  margin-bottom: 1rem;
}

.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.final-cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin-bottom: 1.5rem;
}

.final-cta-note {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
}

/* =============================================================
   19. FOOTER
   ============================================================= */
.footer {
  background: #111520;
  color: rgba(255,255,255,.7);
  padding-block: 3.5rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-logo .nav-logo-text,
.footer-logo .nav-logo-accent { color: rgba(255,255,255,.9); }

.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-top: .75rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-contact {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-contact-link {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-contact-link:hover { color: rgba(255,255,255,.9); }

.footer-group-title {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }

.footer-legal {
  display: flex; align-items: center; gap: .75rem;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-legal a { transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* =============================================================
   19b. ABOUT / NOSOTROS
   ============================================================= */
.about {
  padding-block: var(--section-py);
  background: var(--bg);
}

.about-lead {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-lead p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 400;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 1060px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .about-body { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.about-col {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.about-col p {
  font-size: .975rem;
  color: var(--ink-mute);
  line-height: 1.8;
}
.about-tagline {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(230,57,70,.06), rgba(255,107,53,.06));
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* Specialties */
.about-specialties {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 1060px;
  margin-inline: auto;
}

.about-specialties-title {
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 1.5rem;
  max-width: 600px;
}

.about-specialties-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 540px) {
  .about-specialties-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .about-specialties-list { grid-template-columns: repeat(2, 1fr); }
}

.about-specialties-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--ink-soft); line-height: 1.5;
  font-weight: 500;
}
.about-specialties-list li svg {
  flex-shrink: 0; margin-top: .15rem;
  color: var(--accent);
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1060px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .about-pillars { grid-template-columns: repeat(3, 1fr); }
}

.about-pillar {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.about-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230,57,70,.15);
}

.about-pillar-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(230,57,70,.1), rgba(255,107,53,.1));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
}

.about-pillar-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: .5rem;
}
.about-pillar-desc {
  font-size: .875rem; color: var(--ink-mute); line-height: 1.65;
}

/* =============================================================
   20. Responsive adjustments
   ============================================================= */
@media (max-width: 539px) {
  :root { --section-py: 64px; }
  .hero-title { font-size: 2.4rem; }
  .trust-item { padding-inline: .75rem; }
  .service-card, .profile-card, .case-card,
  .testimonial-card { padding: 1.5rem; }
  .step { padding: 1.5rem; }
  .metrics-grid { gap: 1.5rem; }
  .footer-top { gap: 2rem; }
}

/* =============================================================
   21. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .final-cta-mesh { animation: none; }
  .hero-badge-dot { animation: none; }
  .hero-scroll-line { animation: none; }
}

/* =============================================================
   22. Service card micro-link
   ============================================================= */
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 600;
  color: var(--accent-2);
  margin-top: .75rem;
  transition: gap .2s var(--ease-out), color .2s;
  text-decoration: none;
}
.service-link:hover { gap: .55rem; color: var(--accent-dark); }
.service-link svg { flex-shrink: 0; transition: transform .2s var(--ease-out); }
.service-link:hover svg { transform: translateX(2px); }

/* =============================================================
   23. Accordion CTA inside panels
   ============================================================= */
.accordion-cta {
  padding: .75rem 1.5rem 1.25rem;
  border-top: 1px solid var(--line-soft);
  margin-top: .25rem;
}
.accordion-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600;
  color: var(--accent-2);
  transition: gap .2s var(--ease-out), color .2s;
  text-decoration: none;
}
.accordion-link:hover { gap: .6rem; color: var(--accent-dark); }
.accordion-link svg { flex-shrink: 0; transition: transform .2s var(--ease-out); }
.accordion-link:hover svg { transform: translateX(2px); }

/* =============================================================
   24. Testimonials: verified badge + color variants
   ============================================================= */
.testimonial-verified {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600;
  color: var(--accent-2);
  margin-top: .3rem;
  letter-spacing: .01em;
}
.testimonial-verified svg { flex-shrink: 0; }

/* Avatar color variants */
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.testimonial-avatar--blue  { background: linear-gradient(135deg, #2D5BFF, #6B8AFF); }
.testimonial-avatar--rose  { background: linear-gradient(135deg, #E63946, #FF6B8A); }
.testimonial-avatar--teal  { background: linear-gradient(135deg, #0E9F87, #2DD4BF); }

/* =============================================================
   25. Team section
   ============================================================= */
.team {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.team-heading {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.75rem;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230,57,70,.15);
  background: var(--bg);
}

/* Avatar placeholder — swap for <img class="team-photo"> */
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.team-avatar--a { background: linear-gradient(135deg, #E63946, #FF6B35); }
.team-avatar--b { background: linear-gradient(135deg, #1B2A4A, #2D5BFF); }
.team-avatar--c { background: linear-gradient(135deg, #0f766e, #10b981); }

/* Drop-in photo override */
.team-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--line);
}

.team-info { flex: 1; min-width: 0; }
.team-name {
  font-size: .975rem; font-weight: 700;
  color: var(--ink); margin-bottom: .2rem;
}
.team-role {
  font-size: .78rem; font-weight: 600;
  color: var(--accent-2);
  margin-bottom: .6rem;
  letter-spacing: .01em;
}
.team-bio {
  font-size: .85rem; color: var(--ink-mute); line-height: 1.6;
}

/* =============================================================
   26. Contact form (inside .final-cta)
   ============================================================= */
.contact-form {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  display: flex; flex-direction: column; gap: .875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
}
@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex; flex-direction: column; gap: .35rem;
}
.form-label {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.form-label-opt {
  font-weight: 400; font-style: italic;
  text-transform: none; letter-spacing: 0;
  color: rgba(255,255,255,.4);
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  font: inherit;
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,.35);
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255,107,53,.7);
  background: rgba(255,255,255,.14);
  box-shadow: 0 0 0 3px rgba(255,107,53,.18);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  gap: .6rem;
  font-size: 1rem;
  padding: .9rem 1.75rem;
}
.form-submit:hover { box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.form-note {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.5;
}
.form-note svg { flex-shrink: 0; color: rgba(255,255,255,.4); }

/* Divider between form and direct contact links */
.final-cta-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0;
  width: 100%; max-width: 560px;
  margin-inline: auto;
}
.final-cta-divider::before,
.final-cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.final-cta-divider span {
  font-size: .78rem; color: rgba(255,255,255,.4);
  white-space: nowrap;
}

/* =============================================================
   27. Floating WhatsApp button
   ============================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 999px;
  padding: .7rem 1.1rem .7rem .9rem;
  box-shadow: 0 4px 20px rgba(18,140,126,.35);
  transition: transform .25s var(--ease-out), box-shadow .25s, padding .25s;
  text-decoration: none;
  overflow: hidden;
  max-width: 56px;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(18,140,126,.45);
  max-width: 220px;
  padding: .7rem 1.25rem .7rem .9rem;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float-label {
  font-size: .82rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  transition: opacity .2s .05s, width .25s;
  overflow: hidden;
}
.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  width: auto;
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float-label { transition: none; }
}

/* =============================================================
   28. Responsive additions for new sections
   ============================================================= */
@media (max-width: 539px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .contact-form { padding-inline: 0; }
  .whatsapp-float { bottom: 1rem; right: 1rem; }
}

/* =============================================================
   29. Sección Productos
   ============================================================= */
.products {
  background: var(--surface);
  padding: var(--section-y) 0;
}

/* Tabs de categoría */
.products-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 3rem;
}
.products-tab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}
.products-tab:hover { color: var(--ink); border-color: rgba(230,57,70,.3); }
.products-tab.is-active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,.28);
}
.products-tab-count {
  background: rgba(255,255,255,.22);
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  padding: .1rem .45rem;
  line-height: 1.4;
}
.products-tab:not(.is-active) .products-tab-count {
  background: rgba(0,0,0,.06);
  color: var(--ink-mute);
}

/* Category panels */
.products-panel { display: none; }
.products-panel.is-active { display: block; }

/* Category intro row */
.products-cat-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.products-cat-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.products-cat-ico-red    { background: rgba(230,57,70,.1);  border: 1px solid rgba(230,57,70,.2); }
.products-cat-ico-blue   { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); }
.products-cat-ico-green  { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); }
.products-cat-ico-purple { background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.2); }
.products-cat-intro h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}
.products-cat-intro p { font-size: .875rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.25rem;
}

/* Product card */
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.product-card:hover { border-color: rgba(230,57,70,.28); box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-3px); }
.product-card:hover::before { transform: scaleX(1); }

/* Badge */
.product-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 99px;
  margin-bottom: .9rem;
  align-self: flex-start;
}
.product-badge-hot  { background: rgba(230,57,70,.1); color: var(--accent-2); border: 1px solid rgba(230,57,70,.2); }
.product-badge-rec  { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.product-badge-corp { background: rgba(99,102,241,.1); color: #4f46e5; border: 1px solid rgba(99,102,241,.2); }
.product-badge-prem { background: rgba(245,158,11,.1); color: #d97706; border: 1px solid rgba(245,158,11,.2); }

/* Card icon */
.product-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(230,57,70,.1), rgba(255,107,53,.07));
  border: 1px solid rgba(230,57,70,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}

/* Text */
.product-card-name {
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: .45rem;
  line-height: 1.35;
}
.product-card-desc {
  font-size: .84rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Feature pills */
.product-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.product-card-feat {
  font-size: .73rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(0,0,0,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .2rem .55rem;
}

/* CTA */
.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  margin-top: auto;
}
.product-card-cta:hover { opacity: .9; transform: translateY(-1px); }

/* Bottom CTA strip */
.products-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(230,57,70,.06), rgba(255,107,53,.04));
  border: 1px solid rgba(230,57,70,.16);
  border-radius: var(--r-lg);
}
.products-cta-strip p {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: 0;
}
.products-cta-strip p strong { color: var(--ink); }

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-cat-intro { flex-direction: column; gap: .85rem; }
  .products-cta-strip { flex-direction: column; text-align: center; }
  .products-tabs { gap: .35rem; }
  .products-tab { font-size: .78rem; padding: .5rem .85rem; }
}
