/* =========================================================================
   Brutus CRM — design system
   Brand: neural-network head logo. Cyan→navy blues with red/orange accents.
   ========================================================================= */

:root {
  /* Brand */
  --cyan:        #29abe2;
  --cyan-bright: #4cc6ff;
  --blue:        #2f6fb0;
  --blue-deep:   #1c4a86;
  --red:         #e8412f;
  --red-soft:    #ff6a4d;

  /* Surfaces (dark theme) */
  --bg:        #070d18;
  --bg-2:      #0b1322;
  --panel:     #0f1b2e;
  --panel-2:   #131f34;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);

  /* Text */
  --ink:       #eef4ff;
  --muted:     #9fb1c9;
  --muted-2:   #6e8099;

  /* Effects */
  --grad-brand: linear-gradient(120deg, #4cc6ff 0%, #29abe2 38%, #2f6fb0 70%, #1c4a86 100%);
  --grad-hot:   linear-gradient(120deg, #ff6a4d 0%, #e8412f 100%);
  --grad-text:  linear-gradient(100deg, #8fe1ff 0%, #29abe2 45%, #6aa9ff 100%);
  --ring:       0 0 0 1px var(--line);
  --shadow:     0 24px 60px -24px rgba(0,0,0,.65);
  --shadow-glow:0 0 0 1px rgba(76,198,255,.18), 0 30px 80px -30px rgba(41,171,226,.45);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Space Grotesk', var(--font-body);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 50vw at 78% -8%, rgba(41,171,226,.22), transparent 60%),
    radial-gradient(48vw 42vw at 8% 12%, rgba(232,65,47,.13), transparent 60%),
    radial-gradient(60vw 60vw at 50% 110%, rgba(47,111,176,.18), transparent 60%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan-bright); text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; position: relative; }
.section--tight { padding: 64px 0; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cyan-bright);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(41,171,226,.10);
  border: 1px solid rgba(41,171,226,.28);
  margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-bright); box-shadow: 0 0 10px var(--cyan-bright); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-head.left { margin-left: 0; text-align: left; }

.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: var(--pad); border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { color: #04121f; background: var(--grad-brand); box-shadow: 0 12px 30px -10px rgba(41,171,226,.65); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(41,171,226,.8); }
.btn--hot { color: #fff; background: var(--grad-hot); box-shadow: 0 12px 30px -10px rgba(232,65,47,.6); }
.btn--hot:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(232,65,47,.75); }
.btn--ghost { color: var(--ink); background: rgba(255,255,255,.04); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.btn--lg { --pad: 17px 34px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(7,13,24,.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(7,13,24,.85); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -.01em; }
.brand img { height: 38px; width: auto; filter: drop-shadow(0 4px 14px rgba(41,171,226,.4)); }
.brand b { color: var(--red-soft); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--muted); font-weight: 500; font-size: .96rem;
  padding: 9px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 5px; }

.mobile-menu {
  display: none; position: fixed; inset: 74px 0 0; z-index: 55;
  background: rgba(7,13,24,.97); backdrop-filter: blur(16px);
  padding: 28px 24px; transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; padding: 16px 6px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: var(--muted-2); font-size: .9rem; }
.hero-trust .tick { color: var(--cyan-bright); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }

.hero-visual { position: relative; min-height: 440px; }

/* Neural network canvas wrapper */
.neural { position: relative; width: 100%; height: 100%; min-height: 440px; }
.neural svg { width: 100%; height: 100%; overflow: visible; }
.neural .edge { stroke: rgba(120,180,230,.28); stroke-width: 1.2; }
.neural .node { transform-box: fill-box; transform-origin: center; }
.neural .node.pulse { animation: nodePulse 3.4s var(--ease) infinite; }
@keyframes nodePulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* Floating product card on hero */
.hero-card {
  position: absolute; bottom: 6%; left: -2%;
  width: 280px; padding: 16px 18px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(19,31,52,.92), rgba(11,19,34,.92));
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.hero-card.two { top: 4%; right: -3%; bottom: auto; left: auto; animation-delay: -3s; width: 260px; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.hero-card .hc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-card .hc-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-brand); color: #051018; }
.hero-card .hc-ico.hot { background: var(--grad-hot); color: #fff; }
.hero-card .hc-title { font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.hero-card .hc-sub { color: var(--muted-2); font-size: .76rem; }
.hero-card .hc-body { font-size: .85rem; color: var(--muted); }
.hero-card .wave { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin-top: 8px; }
.hero-card .wave i { flex: 1; background: var(--grad-brand); border-radius: 2px; animation: eq 1.1s ease-in-out infinite; }
@keyframes eq { 0%,100%{ height: 22%; } 50%{ height: 100%; } }

/* ---------- Logo cloud ---------- */
.logos { padding: 36px 0 8px; }
.logos p { text-align: center; color: var(--muted-2); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logo-row span { font-family: var(--font-head); font-weight: 600; color: var(--muted-2); opacity: .8; font-size: 1.15rem; letter-spacing: .02em; }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.stat .n { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stat .l { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-2 { grid-template-columns: repeat(2,1fr); }

.card {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, rgba(76,198,255,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-glow); }
.card:hover::after { opacity: 1; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(41,171,226,.12); border: 1px solid rgba(41,171,226,.28); color: var(--cyan-bright);
  margin-bottom: 18px;
}
.card .ico.hot { background: rgba(232,65,47,.12); border-color: rgba(232,65,47,.3); color: var(--red-soft); }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 96px; }
.split.rev .split-media { order: -1; }
.split-media {
  position: relative; border-radius: var(--radius); padding: 26px;
  background: linear-gradient(160deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 280px;
}
.split h2 { font-size: clamp(1.6rem,2.6vw,2.2rem); }
.feat-list { list-style: none; margin: 18px 0 0; padding: 0; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--muted); }
.feat-list .ck { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(41,171,226,.14); color: var(--cyan-bright); margin-top: 1px; }
.feat-list b { color: var(--ink); font-weight: 600; }

/* ---------- Mock UI (product preview) ---------- */
.mock { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); background: var(--bg); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #2c3b52; }
.mock-bar i:nth-child(1){ background:#ff5f57; } .mock-bar i:nth-child(2){ background:#febc2e; } .mock-bar i:nth-child(3){ background:#28c840; }
.mock-bar .url { margin-left: 12px; font-size: .72rem; color: var(--muted-2); font-family: var(--font-head); }
.mock-body { padding: 16px; display: grid; gap: 12px; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); }
.mock-av { width: 36px; height: 36px; border-radius: 9px; flex: none; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #04121f; font-size: .85rem; }
.mock-row .minfo { flex: 1; min-width: 0; }
.mock-row .minfo b { display: block; font-size: .9rem; }
.mock-row .minfo span { font-size: .76rem; color: var(--muted-2); }
.mock-tag { font-size: .68rem; font-weight: 600; padding: 4px 9px; border-radius: 999px; font-family: var(--font-head); }
.mock-tag.hot { background: rgba(232,65,47,.16); color: var(--red-soft); }
.mock-tag.warm { background: rgba(254,188,46,.16); color: #ffd073; }
.mock-tag.cool { background: rgba(41,171,226,.16); color: var(--cyan-bright); }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 90px; padding: 8px; }
.mock-bars i { flex: 1; border-radius: 4px 4px 0 0; background: var(--grad-brand); opacity: .85; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.step .num { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .18em; color: var(--cyan-bright); }
.step h3 { margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; padding: 32px; border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%); border: 1px solid var(--line);
}
.plan.featured { border-color: rgba(41,171,226,.5); box-shadow: var(--shadow-glow); position: relative; }
.plan.featured::before {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #04121f; background: var(--grad-brand); padding: 6px 14px; border-radius: 999px;
}
.plan .pname { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; }
.plan .pdesc { color: var(--muted); font-size: .92rem; min-height: 42px; margin: 6px 0 16px; }
.plan .pprice { font-family: var(--font-head); font-size: 3rem; font-weight: 700; line-height: 1; }
.plan .pprice small { font-size: 1rem; color: var(--muted-2); font-weight: 500; }
.plan .pper { color: var(--muted-2); font-size: .86rem; margin: 8px 0 22px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.plan ul .ck { flex: none; width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; background: rgba(41,171,226,.14); color: var(--cyan-bright); }
.plan .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .pm { flex: none; width: 24px; height: 24px; position: relative; transition: transform .3s; }
.faq-q .pm::before,.faq-q .pm::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--cyan-bright); border-radius: 2px; }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .3s; }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a div { padding: 0 22px 20px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 26px; padding: 64px 48px; text-align: center; overflow: hidden;
  background: linear-gradient(140deg, rgba(41,171,226,.22), rgba(28,74,134,.18) 55%, rgba(232,65,47,.16));
  border: 1px solid var(--line-2); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms / Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info .ci-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(41,171,226,.12); border: 1px solid rgba(41,171,226,.26); color: var(--cyan-bright); }
.contact-info .ci-item b { display: block; font-family: var(--font-head); }
.contact-info .ci-item a, .contact-info .ci-item span { color: var(--muted); }

.form-panel { padding: 34px; border-radius: var(--radius); background: linear-gradient(165deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 500; color: var(--muted); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 11px; font: inherit; font-size: .97rem;
  background: rgba(7,13,24,.6); border: 1px solid var(--line-2); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(41,171,226,.18); }
.field--error input, .field--error textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,65,47,.16); }
.field__error { color: var(--red-soft); font-size: .82rem; margin-top: 6px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin-top: 16px; padding: 13px 16px; border-radius: 11px; font-size: .92rem; }
.form-msg--err { background: rgba(232,65,47,.12); border: 1px solid rgba(232,65,47,.32); color: var(--red-soft); }
.form-msg--ok { background: rgba(41,171,226,.12); border: 1px solid rgba(41,171,226,.32); color: var(--cyan-bright); }
.form-success { text-align: center; padding: 28px 10px; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-size: 1.8rem; color: #04121f; background: var(--grad-brand); }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 72px 0 28px; text-align: center; }
.page-hero .lead { max-width: 640px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 34px; margin-top: 40px; background: linear-gradient(180deg, transparent, rgba(11,19,34,.6)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-head); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: .95rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .86rem; }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--muted); transition: .2s; }
.footer-bottom .socials a:hover { color: var(--ink); border-color: var(--line-2); background: rgba(255,255,255,.08); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ---------- Exioite credit ---------- */
.exioite-credit { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; }
.exioite-credit__link { display: inline-flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-decoration: none; color: inherit; opacity: .72; transition: opacity .2s ease; }
.exioite-credit__link:hover { opacity: 1; }
.exioite-credit__caption { font-family: var(--font-head); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.exioite-credit__logo { display: block; height: 30px; width: auto; opacity: .9; }
.exioite-credit__sep { color: var(--muted-2); }
.exioite-credit__url { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }
@media (max-width: 480px) { .exioite-credit__logo { height: 26px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; } .reveal[data-d="2"]{ transition-delay: .16s; } .reveal[data-d="3"]{ transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { min-height: 360px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .grid-3, .steps, .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .grid-3, .grid-2, .steps, .price-grid, .footer-grid, .stats, .field-row { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .cta-band { padding: 44px 24px; }
  .footer-bottom { justify-content: flex-start; }
}
