/* ============================================================
   NOTA 10 SCHOOL — Styles
   Accent: #0369a1 (blue/education)
   Fonts: Space Grotesk (display) + Source Sans 3 (body)
   ============================================================ */

/* === CSS TOKENS === */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --navy: #0b1120;
  --navy-2: #0d1526;
  --ink: #020617;
  --heading: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --faint: #94a3b8;
  --border: #e7ecf3;
  --border-strong: #d1dae6;
  --accent: #0369a1;
  --accent-strong: #075985;
  --accent-light: #e0f2fe;
  --accent-glow: rgba(3,105,161,0.18);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --section-pad: clamp(48px, 6vw, 80px);
  --shadow: 0 4px 6px rgba(15,23,42,0.04), 0 12px 28px rgba(15,23,42,0.08);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 4px 12px rgba(15,23,42,0.05);
}



/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  transition: background 0.3s, color 0.3s;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* === LAYOUT === */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
section { padding: var(--section-pad) 0; }

/* === EYEBROW === */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.on-dark .eyebrow,
.eyebrow--light { color: #7dd3fc; }
.on-dark .eyebrow::before,
.eyebrow--light::before { background: #7dd3fc; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 52px; }
.section-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  max-width: 680px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 540px;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn--ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--heading);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
[data-theme="dark"] .btn--ghost:hover { background: rgba(3,105,161,0.15); }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--white {
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 2px 14px rgba(0,0,0,0.1);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* === GRADIENT TEXT === */
.grad {
  background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === PULSE DOT === */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  60% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,250,252,0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="dark"] #navbar { background: rgba(9,18,32,0.9); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--heading);
  flex-shrink: 0;
  margin-right: auto;
  white-space: nowrap;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}
[data-theme="dark"] .nav-logo-img {
  mix-blend-mode: normal;
  background: white;
  border-radius: 8px;
  padding: 2px 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--heading); border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; background: var(--surface);
  border-top: 1px solid var(--border); padding: 8px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px clamp(16px, 4vw, 48px);
  font-size: 15px; font-weight: 500; color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  padding: clamp(36px, 5vw, 64px) 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-strong);
  padding: 5px 14px 5px 8px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
[data-theme="dark"] .hero-badge {
  background: rgba(3,105,161,0.15);
  color: #7dd3fc;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}
.hero .lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--body);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 490px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  margin-left: -8px;
  flex-shrink: 0;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13.5px; color: var(--muted); }
.hero-proof-text strong { color: var(--heading); font-weight: 600; }

/* Flow card */
.flow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.flow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.flow-card-title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.flow-live-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: #16a34a;
}
.flow { display: flex; flex-direction: column; }
.flow__node {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; position: relative;
}
.flow__node:not(:last-child) {
  padding-bottom: 0;
}
.flow__connector {
  display: flex; align-items: center;
  padding: 6px 0 6px 19px; gap: 3px;
}
.flow__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: fdot 1.4s ease-in-out infinite;
}
.flow__dot:nth-child(2) { animation-delay: 0.18s; }
.flow__dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes fdot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.7); }
  40% { opacity: 1; transform: scale(1); }
}
.flow__ico {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flow__body { flex: 1; min-width: 0; }
.flow__body h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--heading); margin-bottom: 2px;
}
.flow__body p { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.flow__tag {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 100px; flex-shrink: 0; white-space: nowrap;
}
.tag--start { background: #fef3c7; color: #b45309; }
.tag--course { background: var(--accent-light); color: var(--accent-strong); }
.tag--result { background: #dcfce7; color: #15803d; }
[data-theme="dark"] .tag--start { background: rgba(180,83,9,0.15); color: #fbbf24; }
[data-theme="dark"] .tag--result { background: rgba(21,128,61,0.15); color: #4ade80; }

.flow-footer {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.flow-stat {
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.flow-stat .num {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--heading); line-height: 1;
}
.flow-stat .lbl { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   VIDEO
   ============================================================ */
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0b1120 0%, #0f2240 60%, #0369a1 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 42px),
    linear-gradient(135deg, #0b1120 0%, #0f2240 60%, #0369a1 100%);
}
.video-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  cursor: pointer;
  padding-left: 4px;
}
.video-play-btn:hover {
  background: rgba(3,105,161,0.6);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.08);
}
.video-placeholder-label {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.6;
}
.video-placeholder-label span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

/* ============================================================
   NASA BANNER
   ============================================================ */
.nasa-banner { background: var(--navy); padding: 52px 0; }
.nasa-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 760px; margin: 0 auto; gap: 14px;
}
.nasa-label {
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #7dd3fc;
  display: flex; align-items: center; gap: 8px;
}
.nasa-label::before, .nasa-label::after {
  content: ''; display: block; width: 28px; height: 1px; background: rgba(125,211,252,0.4);
}
.nasa-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 22px); font-weight: 500;
  color: #e2e8f0; line-height: 1.6;
}
.nasa-quote em { color: #7dd3fc; font-style: normal; font-weight: 700; }
.nasa-attribution { font-size: 13px; color: #475569; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
[data-theme="dark"] .pain-card:hover { border-color: rgba(3,105,161,0.4); }
.pain-ico {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
[data-theme="dark"] .pain-ico { background: rgba(3,105,161,0.15); }
.pain-ico svg { width: 22px; height: 22px; color: var(--accent); }
.pain-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
  line-height: 1.3;
}
.pain-card .problem {
  font-size: 14.5px; color: var(--muted); line-height: 1.65;
  margin-bottom: 18px; font-style: italic;
}
.pain-solution {
  background: var(--accent-light); border-radius: var(--radius-sm);
  padding: 12px 14px;
}
[data-theme="dark"] .pain-solution { background: rgba(3,105,161,0.12); }
.pain-solution-header {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 4px;
}
.pain-solution p {
  font-size: 13.5px; color: var(--accent-strong); line-height: 1.5;
}
[data-theme="dark"] .pain-solution p { color: #7dd3fc; }

/* ============================================================
   SERVICES (BENTO)
   ============================================================ */
#servicii { background: var(--surface-alt); }
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.svc:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.svc--feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--accent) 0%, #0284c7 50%, var(--accent-strong) 100%);
  border: none; color: white;
}
.svc--feature:hover { border: none; }
.svc__num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px;
}
.svc--feature .svc__num { color: rgba(255,255,255,0.55); }
.svc__badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  margin-bottom: 12px;
}
.svc__badge--feature {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}
.svc__badge--pop {
  background: var(--accent-light);
  color: var(--accent-strong);
}
.svc h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
  color: var(--heading);
}
.svc--feature h3 { font-size: 22px; color: white; margin-bottom: 12px; }
.svc p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.svc--feature p { color: rgba(255,255,255,0.72); }
.svc ul { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.svc ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5;
}
.svc ul li .check-ico {
  width: 18px; height: 18px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.svc ul li .check-ico svg { width: 10px; height: 10px; color: white; }
.svc__icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
[data-theme="dark"] .svc__icon { background: rgba(3,105,161,0.15); }
.svc__icon svg { width: 20px; height: 20px; color: var(--accent); }
.svc__decor {
  position: absolute; right: -24px; bottom: -24px;
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}

/* ============================================================
   STATS
   ============================================================ */
#stats { background: var(--navy); padding: 64px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 58px); font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat__num .suffix {
  font-family: var(--font-display); font-size: 0.42em; color: #7dd3fc;
  font-weight: 600; letter-spacing: -0.01em;
}
.stat__label { font-size: 14px; color: #64748b; font-weight: 500; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.logo-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: center;
  margin-bottom: 52px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.logo-bar-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--faint); width: 100%; text-align: center; margin-bottom: 8px;
}
.logo-pill {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 18px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--muted);
}
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.case {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.case:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.case__img {
  height: 176px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.case__img--1 { background: linear-gradient(135deg, #0c2d52 0%, #0369a1 100%); }
.case__img--2 { background: linear-gradient(135deg, #0a3526 0%, #059669 100%); }
.case__img--3 { background: linear-gradient(135deg, #2d1b69 0%, #7c3aed 100%); }
.case__img-code {
  font-family: monospace; font-size: 13px;
  color: rgba(255,255,255,0.22); line-height: 1.8;
  text-align: left; padding: 16px;
  position: absolute; inset: 0;
  white-space: pre;
  overflow: hidden;
  pointer-events: none;
}
.case__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 100px; padding: 4px 12px;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  color: var(--accent-strong);
}
.case__body { padding: 22px 24px; }
.case__body h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 8px;
  color: var(--heading); line-height: 1.3;
}
.case__body p {
  font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px;
}
.case__metrics {
  display: flex; gap: 20px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.case__metric b {
  display: block; font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--accent);
  line-height: 1;
}
.case__metric small { font-size: 12px; color: var(--muted); margin-top: 2px; display: block; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 72px; align-items: center;
}
.about-photo-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  background: linear-gradient(160deg, #bae6fd 0%, #e0f2fe 60%, #dbeafe 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-photo-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 22px,
    rgba(3,105,161,0.04) 22px, rgba(3,105,161,0.04) 24px
  );
}
.about-photo-placeholder {
  text-align: center; z-index: 1; padding: 24px;
}
.about-photo-placeholder svg {
  width: 64px; height: 64px; color: var(--accent-strong);
  opacity: 0.3; margin: 0 auto 12px;
}
.about-photo-placeholder p {
  font-family: monospace; font-size: 12px;
  color: var(--accent-strong); opacity: 0.45;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 14px 6px 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--heading); margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  margin-bottom: 18px; letter-spacing: -0.025em;
}
.about-content > p {
  font-size: 16px; color: var(--body); line-height: 1.8;
  margin-bottom: 32px;
}
.about-bullets { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--body); line-height: 1.6;
}
.about-bullets li .chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
[data-theme="dark"] .about-bullets li .chk { background: rgba(3,105,161,0.2); }
.about-bullets li .chk svg { width: 12px; height: 12px; color: var(--accent); }
.about-bullets li strong { color: var(--heading); font-weight: 700; }

/* ============================================================
   TECHNOLOGIES (MARQUEE)
   ============================================================ */
#tehnologii { overflow: hidden; }
.marquee-wrap {
  overflow: hidden; margin-top: 52px;
  display: flex; flex-direction: column; gap: 12px;
}
.marquee-track {
  display: flex; gap: 12px; width: max-content;
  animation: mq-left 36s linear infinite;
}
.marquee-track.rev { animation: mq-right 36s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes mq-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.mq-item {
  flex-shrink: 0; display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 20px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--heading); white-space: nowrap;
  transition: border-color 0.2s;
}
.mq-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimoniale { background: var(--surface-alt); }
.tst-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tst {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.tst:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.tst__quote {
  font-size: 15px; color: var(--body); line-height: 1.72;
  font-style: italic; flex: 1; margin-bottom: 20px;
}
.tst__who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.tst__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent-strong);
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tst__name { font-size: 14px; font-weight: 600; color: var(--heading); display: block; }
.tst__role { font-size: 13px; color: var(--muted); display: block; margin-top: 1px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pricing-card--featured {
  background: linear-gradient(145deg, var(--accent) 0%, #0284c7 100%);
  border: none;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(3,105,161,0.35);
}
.pricing-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(3,105,161,0.4);
}
.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(245,158,11,0.35);
}
.pricing-card-header { display: flex; flex-direction: column; gap: 8px; }
.pricing-icon {
  width: 46px; height: 46px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-icon--white {
  background: rgba(255,255,255,0.2);
  color: white;
}
.pricing-card-header h3 {
  font-size: 20px; font-weight: 700;
  color: var(--heading); margin: 0;
}
.pricing-card--featured .pricing-card-header h3 { color: white; }
.pricing-card-header p {
  font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0;
}
.pricing-card--featured .pricing-card-header p { color: rgba(255,255,255,0.72); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-price {
  border-color: rgba(255,255,255,0.2);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700;
  color: var(--heading); line-height: 1;
}
.pricing-card--featured .price-amount { color: white; }
.price-currency {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--muted); margin-bottom: 4px;
}
.pricing-card--featured .price-currency { color: rgba(255,255,255,0.7); }
.price-per {
  font-size: 13px; color: var(--muted); margin-left: 2px;
}
.pricing-card--featured .price-per { color: rgba(255,255,255,0.6); }
.pricing-features {
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--body); line-height: 1.5;
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.88); }
.pf-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.pf-check svg { width: 10px; height: 10px; }
.pf-check--white {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--navy); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: flex-start;
}
.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 42px); color: #f8fafc;
  margin-bottom: 16px; line-height: 1.18; letter-spacing: -0.025em;
}
.contact-info > p { font-size: 16px; color: #94a3b8; line-height: 1.75; margin-bottom: 36px; }
.trust-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.trust-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: #94a3b8; line-height: 1.55;
}
.trust-list li .tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(3,105,161,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-list li .tick svg { width: 12px; height: 12px; color: #7dd3fc; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: #64748b;
}
.contact-detail svg { width: 16px; height: 16px; color: #7dd3fc; flex-shrink: 0; }
.contact-detail a { color: #7dd3fc; transition: color 0.2s; }
.contact-detail a:hover { color: #bae6fd; }

/* Form */
.contact-form-wrap {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
/* WhatsApp card */
.wa-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 36px; gap: 16px;
}
.wa-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.wa-icon svg { width: 38px; height: 38px; }
.wa-card h3 { font-size: 1.5rem; margin: 0; }
.wa-card > p { color: var(--body); margin: 0; max-width: 280px; }
.wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 16px 32px; border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.2s; margin-top: 8px;
}
.wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.wa-note { font-size: 0.9rem; color: var(--muted); margin: 0; }
.wa-note a { color: var(--accent); font-weight: 600; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field:last-of-type { margin-bottom: 18px; }
.field label {
  font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--heading);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 16px;
  background: var(--surface-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 108px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  background-size: 20px; padding-right: 40px; cursor: pointer;
}
.form-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.form-btn {
  width: 100%; padding: 16px;
  background: var(--accent); color: white; border-radius: 100px;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.2s;
  box-shadow: 0 2px 20px var(--accent-glow);
}
.form-btn:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--accent-glow);
}
.form-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 24px; gap: 12px;
}
.form-success.active { display: flex; }
.form-success-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: #dcfce7;
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.form-success-ico svg { width: 32px; height: 32px; color: #16a34a; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--heading); }
.form-success p { font-size: 15px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy-2); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  display: flex; align-items: center;
}
.footer-logo-wrap {
  display: inline-flex;
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-tagline { font-size: 14px; color: #4b617a; line-height: 1.7; max-width: 230px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #4b617a; transition: all 0.2s;
}
.footer-social a:hover { color: #7dd3fc; border-color: rgba(125,211,252,0.3); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  color: #f1f5f9; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: #4b617a; transition: color 0.2s; line-height: 1.5;
}
.footer-col ul a:hover { color: #94a3b8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 13px; color: #334155;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #334155; transition: color 0.2s; }
.footer-legal a:hover { color: #64748b; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-d="1"] { transition-delay: 80ms; }
[data-reveal-d="2"] { transition-delay: 160ms; }
[data-reveal-d="3"] { transition-delay: 240ms; }
[data-reveal-d="4"] { transition-delay: 320ms; }
[data-reveal-d="5"] { transition-delay: 400ms; }
[data-reveal-d="6"] { transition-delay: 480ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero .lead { max-width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .svc--feature { grid-column: span 2; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid .case:last-child { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { aspect-ratio: 16/9; max-height: 300px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid .tst:last-child { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .svc--feature { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .cases-grid .case:last-child { display: block; }
  .tst-grid { grid-template-columns: 1fr; }
  .tst-grid .tst:last-child { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-selects { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; box-shadow: var(--shadow); }

  /* Mobile hero */
  .hero-inner { gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; white-space: normal; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); }

  /* Mobile WhatsApp card */
  .wa-card { padding: 32px 20px; gap: 12px; }
  .wa-btn { padding: 14px 20px; font-size: 0.9rem; justify-content: center; }
  .wa-card h3 { font-size: 1.25rem; }

  /* Mobile contact */
  .contact-inner { gap: 36px; }

  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  .btn { white-space: normal; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}
