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

:root {
  --navy: #0d2240;
  --navy-mid: #163156;
  --navy-light: #1e3f6b;
  --blue: #3a7fd5;
  --blue-light: #5b9de8;
  --teal: #2ec4a0;
  --teal-light: #4fd4b4;
  --white: #ffffff;
  --off-white: #f0f5fb;
  --text-muted: rgba(255,255,255,0.55);
  --text-sub: rgba(255,255,255,0.75);
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.1);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(58,127,213,0.18) 0%, transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(46,196,160,0.12) 0%, transparent 70%); bottom: 10%; left: -80px; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(58,127,213,0.1) 0%, transparent 70%); top: 40%; left: 50%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, border-bottom 0.3s;
}
nav.scrolled {
  background: rgba(13,34,64,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  display: block;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.nav-brand-sub {
  font-family: 'Sora', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-current {
  color: var(--white);
  font-weight: 500;
}
.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle:active { transform: scale(0.97); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 20px;
  pointer-events: none;
}
.nav-toggle-lines span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-line-1 {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .nav-toggle-line-2 {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .nav-toggle-line-3 {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(5, 12, 24, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.nav-open .nav-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 901px) {
  .nav-backdrop {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  body.nav-open {
    overflow: auto;
  }
}

.nav-panel {
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  body.nav-open { overflow: hidden; }

  .nav-backdrop { display: block; }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: min(100%, 304px);
    padding: calc(76px + env(safe-area-inset-top)) 24px 32px;
    background: rgba(13, 34, 64, 0.98);
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
  }
  body.nav-open .nav-panel {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    white-space: normal;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links a.nav-cta {
    margin-top: 16px;
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-links li:last-child { border-bottom: none; }
}

.hero {
  padding: 160px 0 88px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,196,160,0.12);
  border: 1px solid rgba(46,196,160,0.25);
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .accent-blue { color: var(--blue-light); }

.hero-sub {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--text-sub);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  color: var(--text-sub);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(58,127,213,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  animation: fadeUp 0.6s 0.35s ease both;
}
.hero-note a { color: var(--teal); text-decoration: none; }
.hero-note a:hover { text-decoration: underline; }

.trust-bar {
  padding: 40px 0 52px;
  text-align: center;
}
.trust-bar p {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 0.7; }
.trust-logo svg { height: 20px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.about {
  padding: 72px 0 56px;
}
.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.about-inner p {
  font-size: 17px;
  color: var(--text-sub);
  font-weight: 300;
  line-height: 1.75;
}

.about-intro { margin-bottom: 48px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color 0.2s;
}
.value-card:hover { border-color: rgba(58,127,213,0.35); }
.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--white);
}
.value-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
}

.team-highlight {
  margin-top: 48px;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  text-align: left;
}
.team-highlight h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.team-highlight p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

.cover-band {
  padding: 72px 0 24px;
  text-align: center;
}
.cover-band h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cover-band > .container > p.sub {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.cover-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.mini-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}
.mini-cap-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.mini-cap-card:hover {
  border-color: rgba(46,196,160,0.35);
  transform: translateY(-2px);
}
.mini-cap-card h3 {
  font-size: 16px;
  font-weight: 600;
}
.mini-cap-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
}
.mini-cap-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
}

.section-divider-label {
  text-align: center;
  padding: 48px 0 24px;
}
.section-divider-label h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-divider-label p {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 12px auto 0;
}

.topic-deep {
  padding: 52px 0;
}
.topic-deep.alt-bg {
  background: rgba(0, 0, 0, 0.08);
}
.topic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .topic-inner { grid-template-columns: 1fr; gap: 20px; }
}
.topic-deep h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.topic-deep > .container > .section-label + h2 {
  margin-top: 4px;
}
.topic-lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 20px;
}
.topic-points {
  list-style: none;
  margin-top: 8px;
}
.topic-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}
.topic-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.products-teaser {
  padding: 64px 0 72px;
  text-align: center;
}
.products-teaser-inner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.products-teaser h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.products-teaser p {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.75;
}

.page-hero-sm {
  padding: 148px 0 56px;
  text-align: center;
}
.page-hero-sm h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero-sm p {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.service-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 80px;
}
.service-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.service-detail-card:hover { border-color: rgba(58,127,213,0.35); }
.service-detail-card .service-number {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.service-detail-card h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 12px;
}
.service-detail-card .detail-lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 18px;
}
.detail-bullets {
  list-style: none;
}
.detail-bullets li {
  font-size: 14px;
  color: var(--text-sub);
  padding: 10px 0 10px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.detail-bullets li:first-child { border-top: none; padding-top: 0; }
.detail-bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 1.05em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.service-detail-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(254, 203, 0, 0.15);
  color: #fecb00;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(254, 203, 0, 0.35);
  cursor: default;
  user-select: none;
  opacity: 0.95;
}
.product-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.product-coming-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.product-modules.condensed .module-item {
  font-size: 13px;
  padding: 12px 14px;
}
.product-modules.condensed .module-item strong {
  font-size: 12px;
}

.services { padding: 80px 0 88px; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.services-header > p {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) { .services-row { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: rgba(58,127,213,0.35); transform: translateY(-2px); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }
.service-card .service-number {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-sub); line-height: 1.75; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  color: var(--text-sub);
  background: rgba(255,255,255,0.04);
}

.products { padding: 72px 0 96px; }
.products-header { text-align: center; margin-bottom: 48px; }
.products-header h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.products-header > p {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
}

.product-showcase {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 36px 44px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  transition: border-color 0.2s;
}
.product-showcase:hover { border-color: rgba(46,196,160,0.25); }

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.product-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254, 203, 0, 0.12);
  border: 1px solid rgba(254, 203, 0, 0.28);
  color: #fecb00;
}
.product-badge-muted {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
}

.shopcore-logo-wrap img {
  width: min(280px, 85vw);
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.product-showcase > p.lead {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 28px;
  font-weight: 300;
}

.product-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
}
.module-item {
  font-size: 13px;
  color: var(--text-sub);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.module-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.product-footnote {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.integrations {
  padding: 56px 0 88px;
  text-align: center;
}
.integrations h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.integrations .lead {
  font-size: 17px;
  color: var(--text-sub);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.integration-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.integration-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.integration-card:hover { border-color: rgba(46,196,160,0.3); transform: translateY(-2px); }
.integration-card .logo-ml {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #ffe600, #ffb800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #333;
}
.integration-card .logo-tn {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #1c1c1c, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  letter-spacing: -0.05em;
}
.integration-card .logo-afip {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #003087, #0050b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 10px;
  color: #fff;
}
.integration-card .logo-mp {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #009ee3, #007eb9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 10px;
  color: #fff;
}
.integration-card span { font-size: 15px; font-weight: 500; }

.how { padding: 72px 0 96px; }
.how-header { text-align: center; margin-bottom: 56px; }
.how-header h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.steps::before {
  content: '';
  position: absolute;
  top: 22px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--teal));
  opacity: 0.3;
}
@media (max-width: 640px) { .steps::before { display: none; } }
.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-sub); }

.cta-section { padding: 72px 0 100px; }
.cta-box {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(58,127,213,0.2);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,160,0.12) 0%, transparent 70%);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,127,213,0.1) 0%, transparent 70%);
}
.cta-box h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-box > p {
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 28px;
  font-weight: 300;
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  text-align: center;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand img { width: 32px; height: 32px; }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.footer-brand-text .nav-brand { font-size: 18px; }
.footer-brand-text .nav-brand-sub { font-size: 9px; }

.footer-contact {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-sub);
}
.footer-contact a { color: var(--teal); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.footer-placeholder {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--teal); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .hero { padding: 128px 0 72px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; max-width: 320px; }
  .cta-box { padding: 48px 24px; }
  .steps { gap: 36px; }
}
