/* Alameda Cybersecurity opening site — purple–blue gradient theme. */

:root {
  --bg: #07041c;
  --bg-2: #0b0728;
  --bg-elev: #14102e;
  --card: #16122f;
  --card-2: #1c1738;
  --line: rgba(167, 139, 250, 0.18);
  --line-strong: rgba(96, 165, 250, 0.45);
  --text: #f4f6fb;
  --muted: #b4b8d0;
  --muted-2: #7c82a0;
  --accent: #8b7cff;
  --accent-dim: #6366f1;
  --accent-ink: #ffffff;
  --blue: #3b82f6;
  --purple: #7c3aed;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #4f46e5 48%, #2563eb 100%);
  --danger: #ff5a6a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(37, 18, 90, 0.45);
  --max: 1200px;
  --header-h: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(ellipse 80% 55% at 8% -8%, rgba(124, 58, 237, 0.42), transparent 52%),
    radial-gradient(ellipse 70% 50% at 92% 0%, rgba(37, 99, 235, 0.38), transparent 50%),
    linear-gradient(180deg, #07041c 0%, #0a0828 42%, #070616 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.35), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(37, 99, 235, 0.3), transparent 50%),
    var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-mark {
  width: auto;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: #eceef2;
  padding: 8px 14px 8px 8px;
  display: grid;
  place-items: center;
}

.preloader-mark img {
  height: 56px;
  width: auto;
}

.preloader-pct {
  font-family: Rajdhani, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(7, 4, 28, 0.55);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 4, 28, 0.94);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(340px, 58vw);
  object-fit: contain;
  border-radius: 12px;
  background: #e8eaee;
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.logo-footer img {
  height: 72px;
  max-width: min(380px, 90vw);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-accent {
  background: var(--gradient);
  color: var(--accent-ink);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-dark {
  background: #111;
  color: var(--text);
  border: 1px solid var(--line);
}

.icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid;
  place-items: center;
}

.btn-accent .icon-circle {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-dark {
  background: #111;
  color: var(--text);
  border: 1px solid var(--line);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(37, 99, 235, 0.22), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 78px);
  max-width: 11ch;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-phone .phone-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.hero-phone small {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
}

.hero-phone strong {
  font-size: 16px;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-orb {
  position: absolute;
  inset: 40px 20px auto;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(124, 58, 237, 0.35), transparent 55%),
    conic-gradient(from 210deg, rgba(99, 102, 241, 0.35), transparent 40%, rgba(37, 99, 235, 0.4), transparent 75%);
  filter: blur(8px);
}

.shield-stage {
  position: relative;
  z-index: 1;
  height: 520px;
}

.contact-badge {
  position: absolute;
  right: 8px;
  bottom: 48px;
  z-index: 2;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
  animation: spin-slow 18s linear infinite;
}

.contact-badge span {
  animation: spin-slow 18s linear infinite reverse;
  display: block;
  max-width: 78px;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ── Stats ─────────────────────────────────────────────────── */
.stats {
  padding: 28px 0 70px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: linear-gradient(180deg, var(--bg-elev), var(--card));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}

.stat {
  text-align: center;
  padding: 12px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: Rajdhani, sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 15px;
}

/* ── Section helpers ───────────────────────────────────────── */
.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 8px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
}

.left-head {
  text-align: left;
  margin: 0 0 36px;
  max-width: none;
}

/* ── Services ──────────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.service-num {
  font-family: Rajdhani, sans-serif;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 26px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-card ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-card li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
}

.service-card li svg { color: var(--accent); flex: none; }

.more-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.more-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

/* ── About ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.16), transparent 40%),
    linear-gradient(160deg, #1c1450, #0c0828 60%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  background: var(--gradient);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 18px rgba(124, 58, 237, 0.12);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
}

.feature h4 { font-size: 20px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 14px; }

.feature-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}

/* ── Hours band ────────────────────────────────────────────── */
.hours-band {
  background:
    radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.14), transparent 40%),
    linear-gradient(90deg, #1a1040, #0c0828);
  border-block: 1px solid var(--line);
  padding: 64px 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 28px;
  align-items: center;
}

.hours-grid h2 { font-size: clamp(28px, 3.4vw, 42px); }
.hours-points { display: grid; gap: 14px; }
.hours-points div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

/* ── Portfolio ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-bar button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.filter-bar button.is-on,
.filter-bar button:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.folio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.folio-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--card);
}

.folio-card.is-hidden { display: none; }

.folio-art {
  height: 210px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.team-photo,
.blog-art {
  display: grid;
  place-items: center;
  color: var(--accent);
}

.folio-card figcaption {
  padding: 16px 18px 20px;
}

.folio-card small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.folio-card h3 { font-size: 22px; margin-top: 4px; }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
}

.marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: Rajdhani, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.marquee i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── Why us ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.why-item h4 { font-size: 18px; }
.why-item p { color: var(--muted); font-size: 14px; margin-top: 2px; }

.why-visual {
  min-height: 420px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.18), transparent 45%),
    linear-gradient(180deg, #1c1458, #0c0828);
  position: relative;
  overflow: hidden;
}

/* ── Pricing ───────────────────────────────────────────────── */






/* ── Team ──────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.team-photo {
  height: 220px;
}

.team-card h3 { font-size: 22px; padding: 16px 16px 0; }
.team-card .role { color: var(--accent); font-size: 13px; padding: 4px 16px 0; }
.team-card .mail { color: var(--muted); font-size: 13px; padding: 6px 16px 18px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: Rajdhani, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.faq-item .ans {
  display: none;
  color: var(--muted);
  padding: 0 0 18px;
}

.faq-item.is-open .ans { display: block; }
.faq-item.is-open button { color: var(--accent); }

.faq-visual {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.12), transparent 50%),
    linear-gradient(160deg, #1c1450, #0c0828);
}

/* ── Testimonials ──────────────────────────────────────────── */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.t-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.stars { color: var(--accent); letter-spacing: 2px; margin: 10px 0 16px; }
.t-card p { color: var(--muted); }
.t-who { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent-ink);
}

/* ── Blog ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.blog-art { height: 180px; }
.blog-card .meta { color: var(--muted-2); font-size: 13px; padding: 16px 18px 0; }
.blog-card h3 { font-size: 22px; padding: 8px 18px 0; }
.blog-card a.more { display: inline-block; padding: 14px 18px 20px; color: var(--accent); font-weight: 600; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.contact-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.contact-list { list-style: none; padding: 0; margin: 20px 0 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.field span { font-size: 13px; color: var(--muted); }
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.field input:focus,
.field textarea:focus { border-color: var(--accent); }
.form-note {
  display: none;
  margin-top: 12px;
  color: var(--accent);
}
.form-note.is-on { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  background: #08061a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h4 { font-size: 18px; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: 14px; }
.site-footer a:hover { color: var(--accent); }
.foot-links { display: grid; gap: 8px; }
.legal {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 13px;
}

/* ── Decorative SVG fills ──────────────────────────────────── */
.art-a { background: linear-gradient(145deg, #2a1458 0%, #14102e 40%, #0e1a48 100%); }
.art-b { background: linear-gradient(145deg, #142060 0%, #14102e 55%, #3b1a6a 100%); }
.art-c { background: linear-gradient(145deg, #3b1458 0%, #14102e 50%, #123060 100%); }
.art-d { background: linear-gradient(145deg, #1a1860 0%, #14102e 60%, #4c1d95 100%); }
.art-e { background: linear-gradient(145deg, #102060 0%, #14102e 55%, #2e1060 100%); }
.art-f { background: linear-gradient(145deg, #3b1860 0%, #14102e 50%, #123a6a 100%); }

.grid-overlay {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.scan-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scan 3.6s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scan {
  0% { top: 18%; }
  50% { top: 78%; }
  100% { top: 18%; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s ease forwards;
}

@keyframes reveal {
  to { opacity: 1; transform: none; }
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0b0728;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    align-items: flex-start;
  }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid,
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .folio-grid,
  .t-grid,
  .blog-grid,
  .stats-row,
  .team-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .hero-art { min-height: 380px; }
  .shield-stage { height: 380px; }
  .header-cta .btn { display: none; }
}

@media (max-width: 640px) {
  .service-grid,
  .folio-grid,
  .t-grid,
  .blog-grid,
  .stats-row,
  .team-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .legal { flex-direction: column; gap: 8px; }
  .hero { padding-top: 36px; }
}

/* ── Brand lockup: eagle emblem (top-left) + company name in Inter ── */
.site-header .logo { gap: 12px; }
.site-header .logo img {
  height: 52px;
  width: auto;
  max-width: none;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: inherit;
}
.brand-name .n1 {
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.brand-name .n2 {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.72;
}
@media (max-width: 520px) {
  .brand-name .n2 { display: none; }
  .site-header .logo img { height: 44px; }
}

/* ── 3D spinning logo (replaces the hero shield SVG) ── */
.logo-3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.logo-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
}
