/* ═══════════════════════════════════════════════════════════
   digital.com.ar — Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Font: Beware (Aurobox) ─────────────────────── */
@font-face {
  font-family: 'Beware';
  src: url('../fonts/Beware.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #04091a;
  --bg-2:        #071028;
  --bg-card:     rgba(255, 255, 255, 0.04);
  --bg-card-h:   rgba(255, 255, 255, 0.07);
  --border:      rgba(255, 255, 255, 0.07);
  --border-h:    rgba(255, 255, 255, 0.14);

  --accent:      #2563eb;
  --accent-2:    #06b6d4;
  --gold:        #f59e0b;

  --text:        #f1f5f9;
  --text-muted:  #64748b;
  --text-soft:   #94a3b8;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:   0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow:      0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.25);
  --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.2);

  --nav-h:       72px;
  --max-w:       1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
}

.section-text {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border-h);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-h);
}
.btn--outline:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(4, 9, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-dot {
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--bg-card);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: #fff !important;
  border-radius: var(--radius);
  padding: 0.55rem 1.25rem;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  background: var(--bg-card) !important;
}
.nav-cta::after { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-hamburger:hover { background: var(--bg-card); }
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
              var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: rgba(37, 99, 235, 0.12);
  top: -100px; left: -100px;
  animation-duration: 9s;
}
.hero-orb--2 {
  width: 350px; height: 350px;
  background: rgba(6, 182, 212, 0.08);
  top: 30%; right: -80px;
  animation-duration: 11s;
  animation-delay: -3s;
}
.hero-orb--3 {
  width: 250px; height: 250px;
  background: rgba(245, 158, 11, 0.06);
  bottom: 10%; left: 30%;
  animation-duration: 13s;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-2);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(4, 9, 26, 0.3) 100%);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(4, 9, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-h);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
}
.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.hero-float-card span  { font-size: 0.72rem; color: var(--text-muted); }
.hero-float-card svg   { color: var(--accent-2); flex-shrink: 0; }

.hero-float-card--1 {
  bottom: 24px;
  left: -20px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card--2 {
  top: 24px;
  right: -20px;
  animation: floatCard 4s ease-in-out infinite reverse;
  animation-delay: -2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--accent-2);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(37, 99, 235, 0.95);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}
.about-badge svg { color: #fff; flex-shrink: 0; }
.about-badge div { display: flex; flex-direction: column; }
.about-badge strong { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700; color: #fff; }
.about-badge span  { font-size: 0.72rem; color: rgba(255,255,255,0.75); }

.about-accent-shape {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px; height: 120px;
  border: 3px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* About content */
.feature-list {
  margin: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.feature-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--accent-2);
}

/* ═══════════════════════════════════════════════════════════
   VALUES
   ═══════════════════════════════════════════════════════════ */
.values {
  background: var(--bg);
}

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.value-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.value-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.value-card:hover .value-img-wrapper img { transform: scale(1.06); }
.value-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(4, 9, 26, 0.8) 100%);
}

.value-body {
  padding: 1.75rem;
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: 1rem;
  transition: all var(--transition);
}
.value-card:hover .value-icon {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.value-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.value-body p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-2);
}

.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Tabs */
.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-align: left;
  transition: all var(--transition);
  cursor: pointer;
}
.service-tab:hover {
  color: var(--text);
  background: var(--bg-card);
  border-color: var(--border);
}
.service-tab.active {
  color: var(--text);
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}

.tab-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.service-tab:hover .tab-icon,
.service-tab.active .tab-icon {
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent-2);
}

/* Panels */
.service-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  animation: panelIn 0.4s ease;
}
.service-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

.panel-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
}
.service-panel h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.panel-lead {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.service-panel > p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.panel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.panel-features li {
  font-size: 0.875rem;
  color: var(--text-soft);
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  padding-left: 1rem;
}
.panel-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 16px;
  background: var(--accent);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing { background: var(--bg); }

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.12) 0%, rgba(6, 182, 212, 0.06) 100%);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-12px);
}
.pricing-card--featured:hover {
  transform: translateY(-18px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(37, 99, 235, 0.5);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.price-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-soft);
  align-self: flex-start;
  margin-top: 6px;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.pricing-features li svg { flex-shrink: 0; color: var(--accent-2); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-top: 2px;
}
.contact-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-item strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.contact-item span,
.contact-item a { font-size: 0.95rem; color: var(--text-soft); }
.contact-item a:hover { color: var(--accent-2); }

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.form-group label span { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option {
  background: #0f1e35;
  color: var(--text);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 0.78rem;
  color: #f87171;
  display: none;
}
.form-error.visible { display: block; }

.form-alert {
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-alert.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.form-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* reCAPTCHA dark theme fix */
.g-recaptcha { transform-origin: left; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
}

.footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer ul li a:hover { color: var(--text); }

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact p,
.footer-contact a { font-size: 0.875rem; color: var(--text-muted); }
.footer-contact a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text); }

/* ── Aurobox credit link ────────────────────────────────── */
@keyframes auroboxColors {
  0%   { color: #60a5fa; }
  18%  { color: #a78bfa; }
  36%  { color: #f472b6; }
  54%  { color: #34d399; }
  72%  { color: #fbbf24; }
  90%  { color: #06b6d4; }
  100% { color: #60a5fa; }
}

.aurobox-link {
  font-family: 'Beware', 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  animation: auroboxColors 1.8s linear infinite;
  display: inline-block;
  transition: opacity var(--transition);
}
.aurobox-link:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════
   LEGAL / PRIVACY PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  background: radial-gradient(ellipse at 20% 60%, rgba(37,99,235,.1) 0%, transparent 55%),
              var(--bg);
  border-bottom: 1px solid var(--border);
}
.legal-hero .legal-tag { display: block; margin-bottom: .75rem; }
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: .75rem;
}
.legal-hero p {
  font-size: .95rem;
  color: var(--text-muted);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.legal-back svg { transition: transform var(--transition); }
.legal-back:hover { color: var(--accent-2); }
.legal-back:hover svg { transform: translateX(-3px); }

.legal-body {
  padding: 4rem 0 6rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.legal-toc h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.legal-toc ul { display: flex; flex-direction: column; gap: .15rem; }
.legal-toc a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  padding: .4rem .75rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.legal-toc a:hover,
.legal-toc a.active {
  color: var(--text);
  background: var(--bg-card);
  border-left-color: var(--accent);
}

.legal-content { max-width: 780px; }
.legal-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; }
.legal-section h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.legal-section h2 .sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent-2);
  flex-shrink: 0;
}
.legal-section p {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: .85rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: .75rem 0 .85rem 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.legal-section ul li {
  font-size: .95rem;
  color: var(--text-soft);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.7;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-section a { color: var(--accent-2); }
.legal-section a:hover { text-decoration: underline; }
.legal-info-box {
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.legal-info-box strong { color: var(--text); display: block; margin-bottom: .35rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 768px) {
  .legal-grid { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { position: static; display: none; }
}

/* ── Scroll to Top ──────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .hero-visual { display: none; }
  .hero-inner { max-width: 720px; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; }
  .about-img { height: 380px; }

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

  .services-layout { grid-template-columns: 1fr; }
  .services-tabs { flex-direction: row; flex-wrap: wrap; position: static; }
  .service-tab { flex: 1 1 auto; justify-content: center; text-align: center; flex-direction: column; gap: 0.25rem; padding: 0.65rem 0.75rem; font-size: 0.8rem; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(4, 9, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.85rem 1rem; }
  .nav-cta { text-align: center; margin-left: 0; }
  .nav-hamburger { display: flex; }

  .section { padding: 4rem 0; }
  .hero-title { font-size: 2.25rem; }

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

  .panel-features { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; }
  .stat-number { font-size: 1.5rem; }
  .pricing-card { padding: 1.5rem; }
  .service-panel { padding: 1.5rem; }
}
