
:root {
  --bg: #0a0806;
  --dark: #120d08;
  --card: #1a1208;
  --card2: #1f1609;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.1);
  --white: #eef2ff;
  --muted: rgba(238,242,255,0.42);
  --muted2: rgba(238,242,255,0.65);
  --blue: #e85d04;
  --blue-light: #f48c06;
  --cyan: #fb923c;
  --glow: rgba(232,93,4,0.28);
  --glow2: rgba(244,140,6,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(4,8,15,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--cyan); }
nav ul {
  list-style: none;
  display: flex; gap: 2rem;
}
nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 40%, rgba(37,99,235,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(6,182,212,0.07) 0%, transparent 60%);
}
.grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.7s 0.1s forwards;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  max-width: 820px;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}
h1 .blue { color: var(--blue-light); }
h1 .cyan { color: var(--cyan); }
.hero-sub {
  margin-top: 1.8rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted2);
  max-width: 560px;
  line-height: 1.7;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--glow);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border2);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.hero-badges {
  margin-top: 3.5rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted2);
}
.badge-icon {
  width: 30px; height: 30px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--blue-light);
  border-radius: 50%;
}

/* ── SECTIONS ── */
section { padding: 90px 5vw; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--cyan);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── ABOUT ── */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.about-left .section-title { margin-bottom: 1.5rem; max-width: 500px; }
.about-text { color: var(--muted2); line-height: 1.75; font-size: 0.95rem; margin-bottom: 1rem; }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.8rem;
}
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue-light);
}
.pill-cyan {
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.2);
  color: var(--cyan);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-box {
  background: var(--card);
  padding: 1.8rem;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--blue-light);
  line-height: 1;
}
.stat-num.cyan { color: var(--cyan); }
.stat-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── NOTEBOOKS ── */
.notebooks-section { }
.notebooks-header { margin-bottom: 1rem; }
.notebooks-intro {
  color: var(--muted2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 3rem;
}
.notebooks-intro strong { color: var(--white); font-weight: 600; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.brand-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.brand-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.brand-card:hover { background: var(--card2); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-logo-wrap {
  width: 100%;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
}
/* SVG brand logos */
.brand-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.notebooks-cta-box {
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(6,182,212,0.05) 100%);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 16px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.notebooks-cta-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.notebooks-cta-box p { font-size: 0.88rem; color: var(--muted2); line-height: 1.6; }
.bundle-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1rem;
}
.bundle-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.18);
  color: var(--cyan);
}

/* ── SERVICES ── */
.services-section { background: var(--dark); }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.svc-card {
  background: var(--card);
  padding: 2.2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.svc-card:hover { background: var(--card2); }
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}
.svc-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.svc-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--blue-light);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.svc-link:hover { gap: 0.55rem; color: var(--cyan); }
.svc-highlight {
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(6,182,212,0.08)) !important;
  border: 1px solid rgba(37,99,235,0.15) !important;
}

/* ── ITB BACKUP ── */
.backup-section { }
.backup-inner {
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(6,182,212,0.07) 100%);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5vw;
  align-items: center;
  position: relative; overflow: hidden;
}
.backup-inner::before {
  content: '🛡️';
  position: absolute;
  right: -20px; top: -20px;
  font-size: 12rem;
  opacity: 0.04;
  line-height: 1;
}
.backup-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}
.backup-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.backup-inner h2 span { color: var(--cyan); }
.backup-inner p { color: var(--muted2); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.backup-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.backup-feat {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: var(--muted2);
}
.backup-feat::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.backup-visual {
  background: rgba(4,8,15,0.6);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1.8rem;
}
.bv-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.bv-row:last-child { border-bottom: none; }
.bv-label { color: var(--muted); }
.bv-val { font-weight: 600; color: var(--cyan); }
.bv-val.green { color: #4ade80; }
.bv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--white);
}

/* ── PARTNERS ── */
.partners-section { background: var(--dark); }
.partners-grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem;
  margin-top: 3rem;
}
.partner-pill {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}
.partner-pill:hover {
  border-color: rgba(37,99,235,0.35);
  background: var(--card2);
}
.partner-icon { font-size: 1.3rem; }
.partner-role {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 1px;
}

/* ── CONTACT ── */
.contact-section { }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6vw;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-left .section-title { margin-bottom: 1.2rem; }
.contact-left p { color: var(--muted2); font-size: 0.92rem; line-height: 1.7; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.cd {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.cd:hover { border-color: rgba(37,99,235,0.3); }
.cd-icon {
  width: 34px; height: 34px;
  background: rgba(37,99,235,0.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.cd-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; display: block; }
.cd-val { font-size: 0.88rem; color: var(--white); font-weight: 500; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.fg select option { background: var(--dark); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: rgba(37,99,235,0.5);
}
.fg textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: #fff;
  border: none;
  padding: 0.95rem;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--glow);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.fs-check {
  width: 56px; height: 56px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.85rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-section { background: var(--dark); padding: 60px 5vw; }
.cta-inner {
  background: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(6,182,212,0.06) 100%);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 18px;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.cta-sub { color: var(--muted2); font-size: 0.92rem; max-width: 500px; line-height: 1.6; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.3);
}

/* ── FOOTER ── */
footer {
  padding: 3rem 5vw 1.8rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.8rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 30px; height: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s;
}
.social-link:hover { border-color: var(--blue-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav ul { display: none; }
  .about-grid, .contact-grid, .cta-inner, .backup-inner { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .notebooks-cta-box { grid-template-columns: 1fr; }
}

/* ── SERVICE PAGE EXTRAS (built on top of the site's own tokens) ── */

.breadcrumb {
  padding: 100px 5vw 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan); }

.page-hero {
  padding: 40px 5vw 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 55% 55% at 75% 20%, rgba(232,93,4,0.10) 0%, transparent 65%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5vw;
  align-items: center;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.page-hero-sub {
  margin-top: 1.4rem;
  font-size: 1rem;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 56ch;
}
.page-hero-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 1.8rem;
}
.page-hero-card ul { list-style: none; display: grid; gap: 0.9rem; }
.page-hero-card li { display: flex; gap: 0.6rem; font-size: 0.85rem; color: var(--muted2); }
.page-hero-card li b { color: var(--white); }
.check { color: var(--cyan); flex-shrink: 0; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem; font-weight: 600; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--cyan); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 0.8rem; font-size: 0.88rem; color: var(--muted2); line-height: 1.7; max-width: 68ch; }

.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.related-card { background: var(--card); padding: 1.6rem; text-decoration: none; transition: background 0.2s; display: block; }
.related-card:hover { background: var(--card2); }
.related-card h4 { font-family: 'Space Grotesk', sans-serif; color: var(--white); font-size: 0.92rem; margin-bottom: 0.35rem; }
.related-card span { color: var(--muted); font-size: 0.78rem; }

.page-cta {
  background: linear-gradient(135deg, rgba(232,93,4,0.10) 0%, rgba(251,146,60,0.06) 100%);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}
.page-cta h2 { font-family:'Space Grotesk',sans-serif; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 0.7rem; }
.page-cta p { color: var(--muted2); max-width: 52ch; margin: 0 auto; font-size: 0.92rem; line-height: 1.6; }
.page-cta-actions { margin-top: 1.4rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
