/* ─── Fuentes locales ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'AvantGarde';
  src: url('fuentes/ITC Avant Garde Gothic Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AvantGarde';
  src: url('fuentes/ITC Avant Garde GothicMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AvantGarde';
  src: url('fuentes/ITC Avant Garde Gothic CE Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Variables ───────────────────────────────────────────────────────── */
:root {
  --bg:            #f5f7fb;
  --surface:       #ffffff;

  --service-blue:  #074ea2;
  --service-teal:  #2da898;
  --service-cyan:  #0099cc;

  --store-gold:    #c98a10;
  --store-amber:   #e07b20;
  --store-warm:    #fff0d0;

  --text-primary:  #0d1117;
  --text-muted:    #4b5563;
  --text-dim:      #9ca3af;

  --border:        rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.13);

  --font-display:  'AvantGarde', 'Jost', sans-serif;
  --font-body:     'Jost', sans-serif;

  --transition:    cubic-bezier(0.65, 0, 0.25, 1);
}

[data-theme="dark"] {
  --bg:            #0d1117;
  --surface:       #161b22;
  --text-primary:  #e6edf3;
  --text-muted:    #8b949e;
  --text-dim:      #484f58;
  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.13);
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}


/* ─── Reveal animations ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

.reveal--stagger:nth-child(1) { transition-delay: 0s; }
.reveal--stagger:nth-child(2) { transition-delay: 0.1s; }
.reveal--stagger:nth-child(3) { transition-delay: 0.2s; }
.reveal--stagger:nth-child(4) { transition-delay: 0.3s; }

/* ─── Hero canvas ─────────────────────────────────────────────────────── */
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ─── Título con shimmer ──────────────────────────────────────────────── */
.sec__title em {
  display: inline;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.c--teal {
  color: var(--service-teal);
  background: linear-gradient(90deg, #46bfaf, #00b9e9, #46bfaf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.c--cyan {
  color: var(--service-cyan);
  background: linear-gradient(90deg, #00b9e9, #46bfaf, #00b9e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.c--gold {
  color: var(--store-gold);
  background: linear-gradient(90deg, #fdbe5d, #e07b20, #fdbe5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─── Feats list slide-in ─────────────────────────────────────────────── */
.feats li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s var(--transition), transform 0.45s var(--transition);
}

.feats.is-visible li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.feats.is-visible li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.feats.is-visible li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.feats.is-visible li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4rem 5rem;
  overflow: clip;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 720px;
  animation: fadeDown 0.9s var(--transition) both;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--service-cyan);
  opacity: 0.8;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--service-cyan), var(--service-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn--ghost:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
  opacity: 1;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.08;
}

.hero__glow--left {
  background: var(--service-blue);
  left: -200px;
  top: -100px;
}

.hero__glow--right {
  background: var(--service-cyan);
  right: -200px;
  bottom: -100px;
}

/* ─── Theme toggle ────────────────────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}

.theme-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
}

.theme-toggle__btn svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.theme-toggle__btn:hover { color: var(--text-muted); }

.theme-toggle__btn.is-active {
  background: var(--surface);
  color: var(--text-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ─── Navbar ──────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 251, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.is-scrolled {
  background: rgba(245, 247, 251, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,185,233,0.3));
}

.navbar__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-body);
}

.navbar__link:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.05);
}

.navbar__link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s;
}

.navbar__drop-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.navbar__dropdown { position: relative; }

.navbar__drop-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.navbar__drop-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navbar__drop-item {
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.navbar__drop-item:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.05);
}

.navbar__cta {
  flex-shrink: 0;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(135deg, var(--service-blue), var(--service-cyan));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
}

.navbar__cta:hover { opacity: 0.85; transform: translateY(-1px); }

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0 4px;
}

.navbar__burger span {
  display: block;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

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

.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
}

.navbar__mobile.is-open { display: flex; }

.navbar__mobile-link {
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.navbar__mobile-link:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}

.navbar__cta--mobile {
  margin-top: 0.5rem;
  text-align: center;
  color: #fff !important;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ─── Split ───────────────────────────────────────────────────────────── */
.split {
  position: relative;
  z-index: 10;
  isolation: isolate;
  display: flex;
  gap: 0;
  min-height: 340px;
  height: calc(100svh - 260px);
  max-height: 520px;
  padding: 0 2.5rem 2rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

/* ─── Panel ───────────────────────────────────────────────────────────── */
.panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 3rem 3rem 3.5rem;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: flex 0.65s var(--transition);
  animation: panelIn 0.9s var(--transition) both;
}

.panel--service { animation-delay: 0.1s; }
.panel--store   { animation-delay: 0.25s; }

/* Hover expansion — service */
.split:has(.panel--service:hover) .panel--service { flex: 1.45; }
.split:has(.panel--service:hover) .panel--store   { flex: 0.55; }

/* Hover expansion — store */
.split:has(.panel--store:hover) .panel--store   { flex: 1.45; }
.split:has(.panel--store:hover) .panel--service { flex: 0.55; }

/* ─── Panel backgrounds ───────────────────────────────────────────────── */
.panel__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s var(--transition), opacity 0.65s var(--transition);
  will-change: transform;
}

.panel__bg--service {
  background:
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(7, 78, 162, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(0, 185, 233, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, #080c18 0%, #0a1128 50%, #071020 100%);
}

.panel__bg--store {
  background:
    radial-gradient(ellipse 70% 55% at 70% 75%, rgba(224, 123, 32, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 25%, rgba(253, 190, 93, 0.1) 0%, transparent 60%),
    linear-gradient(160deg, #0f0c08 0%, #130e06 50%, #0d0904 100%);
}

.panel:hover .panel__bg { transform: scale(1.03); }

/* ─── Decorative lines ────────────────────────────────────────────────── */
.panel__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.panel__lines::before,
.panel__lines::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  transition: transform 0.65s var(--transition), opacity 0.65s var(--transition);
}

.panel__lines::before {
  width: 500px; height: 500px;
  top: -200px; left: -150px;
}

.panel__lines::after {
  width: 300px; height: 300px;
  bottom: -80px; right: -80px;
}

.panel--service .panel__lines::before { border-color: rgba(0,185,233,0.06); }
.panel--service .panel__lines::after  { border-color: rgba(70,191,175,0.06); }
.panel--store   .panel__lines::before { border-color: rgba(253,190,93,0.05); }
.panel--store   .panel__lines::after  { border-color: rgba(224,123,32,0.05); }

.panel:hover .panel__lines::before { transform: scale(1.08); opacity: 1.5; }
.panel:hover .panel__lines::after  { transform: scale(1.1); }

/* ─── Accent top bar ──────────────────────────────────────────────────── */
.panel__accent {
  position: absolute;
  top: 0; left: 2.5rem; right: 2.5rem;
  height: 2px;
  border-radius: 0 0 2px 2px;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.55s var(--transition), opacity 0.55s var(--transition);
  opacity: 0.5;
}

.panel__accent--service {
  background: linear-gradient(90deg, var(--service-blue), var(--service-cyan), var(--service-teal));
}

.panel__accent--store {
  background: linear-gradient(90deg, var(--store-amber), var(--store-gold));
}

.panel:hover .panel__accent {
  transform: scaleX(1);
  opacity: 1;
}

/* ─── Panel content ───────────────────────────────────────────────────── */
.panel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.55s var(--transition);
}

.panel:hover .panel__content { transform: translateY(-6px); }

.panel__eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.45s 0.05s var(--transition), transform 0.45s 0.05s var(--transition);
}

.panel--service .panel__eyebrow { color: var(--service-cyan); }
.panel--store   .panel__eyebrow { color: var(--store-gold); }

.panel:hover .panel__eyebrow {
  opacity: 1;
}

.panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #f0f2f8;
}

.panel__title em {
  font-style: normal;
  display: block;
}

.panel--service .panel__title em { color: var(--service-cyan); }
.panel--store   .panel__title em { color: var(--store-gold); }

.panel__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(240, 242, 248, 0.6);
  max-width: 34ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s 0.1s var(--transition), max-height 0.45s 0.1s var(--transition);
}

.panel:hover .panel__desc {
  opacity: 1;
  max-height: 8rem;
}

/* ─── CTA ─────────────────────────────────────────────────────────────── */
.panel__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s 0.15s var(--transition), max-height 0.45s 0.15s var(--transition);
}

.panel:hover .panel__cta {
  opacity: 1;
  max-height: 3rem;
}

.cta-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel--service .cta-text { color: var(--service-cyan); }

.cta-arrow {
  width: 18px; height: 18px;
  color: var(--service-cyan);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.panel--service:hover .cta-arrow { transform: translateX(5px); }

.soon-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(253, 190, 93, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--store-gold);
  background: rgba(253, 190, 93, 0.05);
}

.panel--store .panel__cta {
  opacity: 1;
  max-height: 3rem;
}

/* ─── Divider ─────────────────────────────────────────────────────────── */
.divider {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  gap: 0.4rem;
  flex-shrink: 0;
  pointer-events: none;
  animation: fadeIn 1s 0.5s var(--transition) both;
}

.divider__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--text-dim), transparent);
  min-height: 60px;
}

.divider__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

/* ─── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  padding: 3.5rem 4rem 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 1rem; }

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,185,233,0.25));
}

.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.footer__desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 30ch;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__contact a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact a:hover { color: var(--text-muted); }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.footer__link {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--text-muted); }

.footer__bottom-link {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-link:hover { color: var(--text-muted); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ─── Keyframes ───────────────────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Scroll offset para navbar fija ─────────────────────────────────── */
#erp, #seguros, #avantservice, #avantstore, #contacto, #split {
  scroll-margin-top: 76px;
}

/* ─── Sections (.sec) ─────────────────────────────────────────────────── */
.sec {
  position: relative;
  z-index: 5;
  padding: 4rem;
  border-top: 1px solid var(--border);
}

.sec--accent-left {
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(7,78,162,0.06) 0%, transparent 60%);
}

.sec--accent-right {
  background: radial-gradient(ellipse 50% 60% at 100% 50%, rgba(201,138,16,0.06) 0%, transparent 60%);
}

.sec__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.sec__inner--row {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
}

.sec__inner--rev { flex-direction: row-reverse; }

.sec__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sec__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
}

.sec__title em { font-style: normal; }

.sec__title-light {
  font-weight: 300;
  color: var(--text-muted);
}

.sec__lead {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 auto 2rem;
}

.sec__lead--left {
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.sec__cta { margin-top: 2rem; }

/* ─── Grid ────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 2.5rem 2rem;
}

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

/* ─── Item ────────────────────────────────────────────────────────────── */
.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.item__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
}

.item__icon svg { width: 100%; height: 100%; }

.item__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
}

.item__desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.item__link {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.item__link:hover { opacity: 0.65; }

/* ─── Feature list ────────────────────────────────────────────────────── */
.feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feats li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.feats li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feats--cyan li svg { color: var(--service-cyan); }
.feats--gold  li svg { color: var(--store-gold); }

/* ─── Section text block ──────────────────────────────────────────────── */
.sec__text { flex: 1; }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover { opacity: 0.82; transform: translateY(-1px); }

.btn--cyan {
  background: linear-gradient(135deg, var(--service-blue), var(--service-cyan));
  color: #fff;
}

.btn--outline-teal {
  background: transparent;
  border: 1px solid rgba(45,168,152,0.4);
  color: var(--service-teal);
}

.btn--outline-teal:hover { border-color: var(--service-teal); opacity: 1; }

.btn--store {
  background: linear-gradient(135deg, var(--store-amber), var(--store-gold));
  color: #fff;
}

.btn--full { width: 100%; }

/* ─── Contact ─────────────────────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 4rem;
  align-items: start;
  text-align: left;
  margin-top: 3rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--service-cyan);
  box-shadow: 0 0 0 3px rgba(0,153,204,0.1);
}

.field select option { background: #ffffff; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact__item svg {
  width: 17px;
  height: 17px;
  color: var(--service-cyan);
  flex-shrink: 0;
}

.contact__item a {
  font-size: 0.87rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact__item a:hover { color: var(--text-primary); }

/* ─── ERP List ────────────────────────────────────────────────────────── */
.erp-list { margin-top: 0.5rem; }

.erp-list__track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.erp-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  align-items: start;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(45,168,152,0.3);
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.erp-card:hover {
  background: #f0f9f8;
  border-left-color: var(--service-teal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.erp-card__icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,168,152,0.08);
  border: 1px solid rgba(45,168,152,0.2);
  border-radius: 12px;
  flex-shrink: 0;
  align-self: center;
}

.erp-card__icon svg {
  width: 22px;
  height: 22px;
}

.erp-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  align-self: end;
}

.erp-card__desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  align-self: start;
}

/* ─── Ticket ──────────────────────────────────────────────────────────── */
.ticket {
  flex: 1;
  background: var(--surface);
  border: 1px solid rgba(0,153,204,0.2);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.4s, border-color 0.4s;
}

.ticket:hover {
  border-color: rgba(0,153,204,0.45);
  box-shadow: 0 8px 40px rgba(0,153,204,0.12);
}

.ticket__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket__id {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.ticket__id svg { width: 16px; height: 16px; color: var(--service-cyan); }

.ticket__badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--service-cyan);
  background: rgba(0,153,204,0.08);
  border: 1px solid rgba(0,153,204,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.ticket__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.ticket__value {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.ticket__tech {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ticket__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--service-blue), var(--service-cyan));
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket__steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.ticket__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.ticket__step span {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.ticket__step.is-done span,
.ticket__step.is-active span { color: var(--text-muted); }

.ticket__step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #d1d5db;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.ticket__step.is-done .ticket__step-dot {
  background: var(--service-cyan);
  border-color: var(--service-cyan);
}

.ticket__step.is-active .ticket__step-dot {
  background: transparent;
  border-color: var(--service-cyan);
  box-shadow: 0 0 0 3px rgba(0,185,233,0.2);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,185,233,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(0,185,233,0.08); }
}

.ticket__step-line {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.ticket__step-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--service-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.ticket__step.is-done + .ticket__step-line::after { transform: scaleX(1); }

.ticket__bar {
  height: 3px;
  background: #e5e7eb;
  border-radius: 100px;
  overflow: hidden;
}

.ticket__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--service-blue), var(--service-cyan));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.65, 0, 0.25, 1);
}

.ticket__footer {
  display: flex;
  justify-content: center;
}

.ticket__eta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Store Grid ──────────────────────────────────────────────────────── */
.store-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.store-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: default;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.store-card:hover {
  border-color: rgba(201,138,16,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.store-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(253,190,93,0.07) 0%,
    transparent 50%,
    rgba(253,190,93,0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
}

.store-card:hover .store-card__shine { opacity: 1; }

.store-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,138,16,0.08);
  border: 1px solid rgba(201,138,16,0.18);
  border-radius: 9px;
  color: var(--store-gold);
}

.store-card__icon svg { width: 18px; height: 18px; }

.store-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.store-card__name {
  font-size: 0.75rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.store-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--store-gold);
}

.store-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(45,168,152,0.3);
  color: var(--service-teal);
  background: rgba(45,168,152,0.07);
}

.store-card__badge--offer {
  border-color: rgba(201,138,16,0.3);
  color: var(--store-gold);
  background: rgba(201,138,16,0.07);
}

/* ─── Cookie banner ───────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 3rem);
  max-width: 680px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  animation: fadeUp 0.4s var(--transition) both;
}

.cookie-banner[hidden] { display: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--service-cyan);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.cookie-banner__btn:hover { opacity: 0.82; transform: translateY(-1px); }

.cookie-banner__btn--reject {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, var(--service-blue), var(--service-cyan));
  color: #fff;
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar__links, .navbar__cta, .theme-toggle { display: none; }
  .navbar__burger { display: flex; }
  .navbar__inner { padding: 0 1.25rem; }

  /* Hero */
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero__title { font-size: 2.2rem; }

  /* Split / panels */
  .split {
    flex-direction: column;
    padding: 0 1.25rem 1.5rem;
    gap: 0;
  }

  .panel {
    flex: none !important;
    min-height: 280px;
    border-radius: 14px;
    align-items: flex-end;
    padding: 2rem 2rem 2.5rem;
  }

  .panel--service { border-radius: 14px 14px 0 0; }
  .panel--store   { border-radius: 0 0 14px 14px; }

  .divider {
    flex-direction: row;
    padding: 0.8rem 1.25rem;
    gap: 0.4rem;
  }

  .divider__line {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: unset;
    background: linear-gradient(to right, transparent, var(--text-dim), transparent);
  }

  .panel__eyebrow,
  .panel__desc,
  .panel__cta {
    opacity: 1 !important;
    max-height: 20rem !important;
    transform: none !important;
  }

  .panel__content { transform: none !important; }

  .panel__accent {
    transform: scaleX(0.6);
    opacity: 0.6;
  }

  /* Sections */
  .sec { padding: 3rem 1.25rem; }

  .sec__inner--row,
  .sec__inner--rev { flex-direction: column; gap: 3.5rem; text-align: center; }

  .sec__lead--left { margin: 0 auto 2.5rem; text-align: center; }

  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }

  /* ERP */
  .erp-card { grid-template-columns: 44px 1fr; padding: 1.25rem; }

  /* Ticket / Store */
  .ticket, .store-grid { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }

  /* Feats */
  .feats { align-items: flex-start; }

  /* Contact */
  .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { padding: 3rem 1.5rem 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { text-align: center; }
}

@media (max-width: 480px) {
  .panel__title { font-size: 2rem; }
  .split { gap: 0; }
}

