/* ═══════════════════════════════════════════════════════════
   VIHAR EXPORTS — FRONTEND STYLESHEET
   Black & White theme · Electric Blue accents
   ═══════════════════════════════════════════════════════════ */
:root {
  --black:    #0A0A0F;
  --black2:   #111118;
  --white:    #FFFFFF;
  --blue:     #1D4ED8;
  --blue-lt:  #60A5FA;
  --border:   rgba(255,255,255,0.08);
  --muted:    #888;
  --radius:   16px;
  --radius-sm:10px;
  --ff-head:  'Bricolage Grotesque', sans-serif;
  --ff-body:  'Outfit', sans-serif;
  --ff-mono:  'JetBrains Mono', monospace;
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background:var(--black);
  color:var(--white);
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; }

/* ── USP TICKER ────────────────────────────────────────────── */
.usp-banner {
  background:var(--blue);
  overflow:hidden;
  height:36px;
  display:flex;
  align-items:center;
}
.usp-track {
  display:flex;
  animation:ticker 28s linear infinite;
  white-space:nowrap;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.usp-item {
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 32px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#fff;
}
.dot {
  width:6px; height:6px;
  background:#fff;
  border-radius:50%;
  opacity:0.6;
}
.dot.pulse {
  animation:pulse 2s infinite;
  background:var(--blue-lt);
  opacity:1;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,15,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.nav-inner {
  max-width:1280px;
  margin:0 auto;
  padding:0 28px;
  height:66px;
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-head);
  font-weight:700;
  font-size:1.2rem;
}
.nav-logo-icon { width:36px; height:36px; }
.nav-logo-text span { color:var(--blue-lt); }
.nav-links {
  display:flex;
  list-style:none;
  gap:4px;
  margin-left:auto;
}
.nav-links a {
  padding:6px 14px;
  border-radius:8px;
  font-size:0.9rem;
  font-weight:500;
  color:var(--muted);
  transition:all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color:var(--white);
  background:rgba(255,255,255,0.07);
}
.nav-cta {
  margin-left:8px;
  background:var(--blue);
  color:#fff;
  padding:8px 18px;
  border-radius:8px;
  font-size:0.88rem;
  font-weight:600;
  transition:background .2s;
  white-space:nowrap;
}
.nav-cta:hover { background:#1a45c4; }
.nav-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  margin-left:auto;
}
.nav-toggle span { width:22px; height:2px; background:var(--white); border-radius:2px; transition:.3s; }
@media(max-width:768px) {
  .nav-toggle { display:flex; }
  .nav-links { display:none; position:absolute; top:66px; left:0; right:0; background:var(--black2); flex-direction:column; padding:16px 28px; border-bottom:1px solid var(--border); }
  .nav-links.open { display:flex; }
  .nav-cta { display:none; }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:80px 28px;
}
.hero-grid-bg {
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 90%);
}
.hero-glow {
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 100%, rgba(29,78,216,0.25) 0%, transparent 70%);
}
.hero-inner { position:relative; z-index:1; max-width:860px; }
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  padding:6px 16px;
  border-radius:50px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--blue-lt);
  margin-bottom:28px;
}
.hero-title {
  font-family:var(--ff-head);
  font-size:clamp(2.8rem, 6vw, 5.5rem);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.02em;
  margin-bottom:20px;
}
.gradient-text {
  background:linear-gradient(135deg, var(--blue) 0%, var(--blue-lt) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub {
  font-size:1.1rem;
  color:var(--muted);
  margin-bottom:28px;
  letter-spacing:.02em;
}
.hero-usps {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:32px;
}
.usp-pill {
  background:rgba(29,78,216,0.15);
  border:1px solid rgba(29,78,216,0.3);
  color:var(--blue-lt);
  padding:6px 14px;
  border-radius:50px;
  font-size:0.82rem;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
}
.hero-ctas {
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--blue);
  color:#fff;
  padding:13px 28px;
  border-radius:10px;
  font-weight:600;
  font-size:0.95rem;
  transition:all .2s;
  border:none;
  cursor:pointer;
  text-align:center;
}
.btn-primary:hover { background:#1a45c4; transform:translateY(-1px); }
.btn-outline {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  color:var(--white);
  padding:12px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:0.95rem;
  border:1px solid var(--border);
  transition:all .2s;
  cursor:pointer;
  text-align:center;
}
.btn-outline:hover { border-color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.05); }
.btn-sm { padding:8px 18px; font-size:0.85rem; }
.btn-block { width:100%; justify-content:center; }
.hero-partners {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}
.partner-chip {
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  padding:5px 12px;
  border-radius:6px;
  font-size:0.72rem;
  color:var(--muted);
  font-family:var(--ff-mono);
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding:80px 28px; }
.section-dark { background:var(--black2); }
.container { max-width:1200px; margin:0 auto; }
.container-narrow { max-width:900px; margin:0 auto; }
.section-head {
  text-align:center;
  margin-bottom:56px;
}
.section-label {
  display:inline-block;
  background:rgba(29,78,216,0.15);
  color:var(--blue-lt);
  border:1px solid rgba(29,78,216,0.3);
  padding:4px 14px;
  border-radius:50px;
  font-size:0.76rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.section-head h2 {
  font-family:var(--ff-head);
  font-size:clamp(1.8rem, 4vw, 2.8rem);
  font-weight:800;
  line-height:1.2;
}
.section-cta { text-align:center; margin-top:40px; }

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
@media(max-width:960px) { .services-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px) { .services-grid { grid-template-columns:1fr; } }
.service-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 24px;
  transition:border-color .2s, transform .2s;
}
.service-card:hover { border-color:rgba(29,78,216,0.4); transform:translateY(-3px); }
.service-icon {
  width:44px; height:44px;
  background:rgba(29,78,216,0.15);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  color:var(--blue-lt);
  font-size:1.2rem;
}
.service-card h3 { font-size:1rem; font-weight:700; margin-bottom:8px; }
.service-card p { font-size:0.88rem; color:var(--muted); line-height:1.55; }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.products-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
@media(max-width:900px) { .products-grid { grid-template-columns:1fr; max-width:540px; margin:0 auto; } }
.product-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  transition:border-color .25s, transform .25s;
}
.product-card:hover { border-color:rgba(29,78,216,0.5); transform:translateY(-4px); }
.product-badge {
  position:absolute;
  top:16px; right:16px;
  background:var(--blue);
  color:#fff;
  font-size:0.7rem;
  font-weight:700;
  padding:3px 10px;
  border-radius:50px;
  letter-spacing:.06em;
}
.product-icon {
  font-size:2rem;
  color:var(--blue-lt);
}
.product-card h3 { font-family:var(--ff-head); font-size:1.25rem; font-weight:800; }
.product-tagline { color:var(--blue-lt); font-size:0.85rem; font-weight:600; }
.product-desc { color:var(--muted); font-size:0.88rem; line-height:1.55; }
.product-features { list-style:none; display:flex; flex-direction:column; gap:6px; }
.product-features li { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:rgba(255,255,255,0.75); }
.product-features li i { color:var(--blue-lt); font-size:0.7rem; }
.product-price { display:flex; align-items:baseline; gap:10px; margin-top:4px; }
.price-old { color:var(--muted); text-decoration:line-through; font-size:0.95rem; }
.price-current { font-size:1.6rem; font-weight:800; font-family:var(--ff-head); color:var(--white); }
.product-actions { display:flex; gap:10px; margin-top:auto; }

/* ── WHY ────────────────────────────────────────────────────── */
.why-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:900px;
  margin:0 auto;
}
@media(max-width:620px) { .why-grid { grid-template-columns:1fr; } }
.why-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:24px 26px;
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.why-card > i { font-size:1.5rem; color:var(--blue-lt); margin-top:2px; flex-shrink:0; }
.why-card h4 { font-size:1rem; font-weight:700; margin-bottom:6px; }
.why-card p { font-size:0.87rem; color:var(--muted); line-height:1.55; }

/* ── COUNTRIES ──────────────────────────────────────────────── */
.countries-grid {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  max-width:700px;
  margin:0 auto;
}
.country-chip {
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  padding:8px 18px;
  border-radius:50px;
  font-size:0.9rem;
  font-weight:500;
}
.country-chip.small { font-size:0.78rem; padding:5px 12px; }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background:linear-gradient(135deg, rgba(29,78,216,0.15) 0%, rgba(29,78,216,0.05) 100%);
  border-top:1px solid rgba(29,78,216,0.2);
  border-bottom:1px solid rgba(29,78,216,0.2);
  padding:70px 28px;
  text-align:center;
}
.cta-band h2 { font-family:var(--ff-head); font-size:clamp(1.8rem,4vw,2.6rem); font-weight:800; margin-bottom:12px; }
.cta-band p { color:var(--muted); margin-bottom:28px; font-size:1.05rem; }
.cta-band-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background:var(--black2);
  padding:80px 28px 90px;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.page-hero h1 { font-family:var(--ff-head); font-size:clamp(2rem,5vw,3.5rem); font-weight:800; margin-bottom:14px; }
.page-hero p { color:var(--muted); font-size:1.05rem; max-width:600px; margin:0 auto; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:40px;
  align-items:start;
}
@media(max-width:768px) { .contact-grid { grid-template-columns:1fr; } }
.contact-info h3 { font-size:1.2rem; font-weight:700; margin-bottom:20px; }
.contact-item {
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:20px;
  font-size:0.9rem;
}
.contact-item > i { color:var(--blue-lt); font-size:1rem; margin-top:3px; }
.contact-item a { color:var(--blue-lt); }
.contact-form-wrap { background:var(--black2); border:1px solid var(--border); border-radius:var(--radius); padding:32px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:560px) { .form-row { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 14px;
  color:var(--white);
  font-family:var(--ff-body);
  font-size:0.92rem;
  transition:border-color .2s;
  outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--blue); }
.form-group select option { background:var(--black2); }
.form-error { color:#f87171; font-size:0.78rem; }
.alert-success {
  background:rgba(34,197,94,0.12);
  border:1px solid rgba(34,197,94,0.3);
  color:#86efac;
  padding:12px 16px;
  border-radius:8px;
  margin-bottom:20px;
  font-size:0.9rem;
}
.alert-error {
  background:rgba(239,68,68,0.12);
  border:1px solid rgba(239,68,68,0.3);
  color:#fca5a5;
  padding:12px 16px;
  border-radius:8px;
  margin-bottom:20px;
  font-size:0.9rem;
}

/* ── CHECKOUT ───────────────────────────────────────────────── */
.checkout-grid {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:40px;
  align-items:start;
}
@media(max-width:768px) { .checkout-grid { grid-template-columns:1fr; } }
.checkout-summary {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
}
.checkout-summary h3 { margin-bottom:20px; font-weight:700; }
.summary-product {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
  margin-bottom:16px;
}
.summary-icon { font-size:1.8rem; color:var(--blue-lt); }
.summary-product strong { font-size:1rem; }
.summary-product p { font-size:0.82rem; color:var(--muted); margin-top:4px; }
.summary-line, .summary-total {
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  font-size:0.9rem;
  border-bottom:1px solid var(--border);
}
.summary-total { font-weight:800; font-size:1.1rem; border-bottom:none; margin-top:4px; }
.summary-line.discount span:last-child { color:#4ade80; }
.summary-features {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:16px;
}
.summary-features li { font-size:0.84rem; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:8px; }
.summary-features li i { color:var(--blue-lt); font-size:0.72rem; }
.checkout-form-wrap {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
}
.checkout-form-wrap h3 { margin-bottom:20px; font-weight:700; }

/* ── PRODUCT DETAIL ─────────────────────────────────────────── */
.product-detail-grid {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:40px;
  align-items:start;
}
@media(max-width:900px) { .product-detail-grid { grid-template-columns:1fr; } }
.sidebar-card {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  position:sticky;
  top:80px;
}
.sidebar-price { flex-direction:column; align-items:flex-start; gap:6px; margin-bottom:14px; }
.sidebar-note { font-size:0.82rem; color:var(--muted); line-height:1.7; margin-bottom:16px; }
.discount-badge {
  background:var(--blue);
  color:#fff;
  padding:2px 10px;
  border-radius:50px;
  font-size:0.72rem;
  font-weight:700;
}
.feature-list-big { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:12px; }
.feature-list-big li { display:flex; align-items:center; gap:10px; font-size:0.95rem; }
.feature-list-big li i { color:var(--blue-lt); font-size:0.85rem; }

/* ── SUCCESS / FAILED PAGE ──────────────────────────────────── */
.success-icon { font-size:5rem; color:#4ade80; margin-bottom:20px; }
.failed-icon { color:#f87171; }
.order-receipt {
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  max-width:480px;
  margin:0 auto;
  padding:8px 0;
}
.receipt-row {
  display:flex;
  justify-content:space-between;
  padding:12px 20px;
  border-bottom:1px solid var(--border);
  font-size:0.9rem;
}
.receipt-row:last-child { border-bottom:none; }
.receipt-row span { color:var(--muted); }

/* ── ABOUT / PROSE ──────────────────────────────────────────── */
.prose-section h2 { font-family:var(--ff-head); font-size:1.6rem; font-weight:800; margin:32px 0 12px; }
.prose-section p { color:rgba(255,255,255,0.75); line-height:1.75; margin-bottom:16px; }
.partners-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px; }
@media(max-width:560px) { .partners-grid { grid-template-columns:1fr; } }
.partner-card {
  background:var(--black2);
  border:1px solid var(--border);
  padding:14px 16px;
  border-radius:8px;
  font-size:0.87rem;
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.75);
}
.partner-card i { color:var(--blue-lt); }

/* ── CHAT WIDGET ─────────────────────────────────────────────── */
.chat-fab {
  position:fixed;
  bottom:28px;
  right:28px;
  width:58px; height:58px;
  background:var(--blue);
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 4px 20px rgba(29,78,216,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  transition:transform .2s;
}
.chat-fab:hover { transform:scale(1.1); }
.chat-fab svg { width:28px; height:28px; }
.chat-window {
  position:fixed;
  bottom:100px;
  right:28px;
  width:340px;
  max-height:480px;
  background:var(--black2);
  border:1px solid var(--border);
  border-radius:16px;
  display:flex;
  flex-direction:column;
  z-index:200;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  transform:scale(0) translateY(20px);
  transform-origin:bottom right;
  opacity:0;
  transition:all .25s cubic-bezier(.34,1.56,.64,1);
  pointer-events:none;
}
.chat-window.open { transform:scale(1) translateY(0); opacity:1; pointer-events:all; }
.chat-header {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
}
.chat-avatar {
  width:36px; height:36px;
  background:var(--blue);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
}
.chat-name { font-weight:700; font-size:0.92rem; }
.chat-status { font-size:0.72rem; color:#4ade80; }
.chat-close {
  margin-left:auto;
  background:none;
  border:none;
  color:var(--muted);
  font-size:1.4rem;
  cursor:pointer;
  line-height:1;
}
.chat-body { flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px; }
.chat-msg {
  max-width:85%;
  padding:9px 13px;
  border-radius:12px;
  font-size:0.86rem;
  line-height:1.5;
}
.chat-msg.bot { background:rgba(255,255,255,0.06); border:1px solid var(--border); align-self:flex-start; }
.chat-msg.user { background:var(--blue); color:#fff; align-self:flex-end; }
.chat-footer { display:flex; gap:8px; padding:10px 12px; border-top:1px solid var(--border); }
.chat-footer input {
  flex:1;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 12px;
  color:var(--white);
  font-family:var(--ff-body);
  font-size:0.85rem;
  outline:none;
}
.chat-footer input:focus { border-color:var(--blue); }
.chat-footer button {
  background:var(--blue);
  border:none;
  color:#fff;
  width:34px; height:34px;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background:var(--black2);
  border-top:1px solid var(--border);
}
.footer-inner {
  max-width:1200px;
  margin:0 auto;
  padding:60px 28px 40px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
}
@media(max-width:900px) { .footer-inner { grid-template-columns:1fr 1fr; } }
@media(max-width:560px) { .footer-inner { grid-template-columns:1fr; } }
.footer-brand p { color:var(--muted); font-size:0.88rem; margin-top:12px; max-width:240px; }
.footer-socials { display:flex; gap:12px; margin-top:16px; }
.footer-socials a { width:34px; height:34px; background:rgba(255,255,255,0.06); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--muted); transition:all .2s; }
.footer-socials a:hover { background:var(--blue); color:#fff; }
.footer-links h4, .footer-contact h4 { font-size:0.85rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-bottom:16px; }
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links li a { color:rgba(255,255,255,0.65); font-size:0.88rem; transition:color .2s; }
.footer-links li a:hover { color:var(--blue-lt); }
.footer-contact p { display:flex; align-items:center; gap:10px; font-size:0.88rem; color:rgba(255,255,255,0.65); margin-bottom:10px; }
.footer-contact i { color:var(--blue-lt); width:14px; }
.footer-contact a { color:rgba(255,255,255,0.65); transition:color .2s; }
.footer-contact a:hover { color:var(--blue-lt); }
.footer-bottom {
  border-top:1px solid var(--border);
  padding:18px 28px;
  text-align:center;
  font-size:0.8rem;
  color:var(--muted);
}
