/* ============================================================
   BOBBYTECH BRAND THEME
   Palette:
     --ink        #0B1220   deep circuit-board navy (bg/dark sections)
     --blue       #145DA0   primary brand blue
     --blue-deep  #0B3D6B   pressed/dark blue
     --orange     #FF7A1A   signal orange (CTAs, accents)
     --orange-dim #FFB077   soft orange for hover glows
     --mist       #F4F7FB   light background
     --line       #DCE6F2   hairline borders on light bg
   Typography:
     Display: "Space Grotesk" (technical, geometric)
     Body:    "Inter"
   ============================================================ */

:root {
  --ink: #0B1220;
  --blue: #145DA0;
  --blue-deep: #0B3D6B;
  --orange: #FF7A1A;
  --orange-dim: #FFB077;
  --mist: #F4F7FB;
  --line: #DCE6F2;
  --white: #FFFFFF;
  --text: #16202E;
  --text-soft: #55647A;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 18, 32, 0.10);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top nav (present on every page) ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topnav::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
  background-size: 200% 100%;
  opacity: 0.7;
  animation: nav-glow-shift 6s linear infinite;
}
@keyframes nav-glow-shift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.brand .bolt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--orange-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(20,93,160,0.35);
}
.brand .dot { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a:not(.nav-cta):not(.nav-icon-link) {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:not(.nav-cta):not(.nav-icon-link):hover { background: var(--mist); color: var(--blue-deep); }
.nav-links a:not(.nav-cta):not(.nav-icon-link)::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a.active::after,
.nav-links a:not(.nav-cta):not(.nav-icon-link):hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-deep); font-weight: 600; }

.nav-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--mist);
  color: var(--ink);
  margin-left: 4px;
  font-size: 1.05rem;
}
.nav-icon-link:hover { background: #E8EFF8; }
.nav-icon-link .cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--orange), #FF9142);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 6px;
  box-shadow: 0 6px 16px rgba(255,122,26,0.3);
}
.nav-cta:hover { box-shadow: 0 8px 20px rgba(255,122,26,0.4); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    display: none;
    box-shadow: 0 12px 24px rgba(11,18,32,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.nav-cta):not(.nav-icon-link) { padding: 12px 8px; }
  .nav-links a:not(.nav-cta):not(.nav-icon-link)::after { display: none; }
  .nav-cta, .nav-icon-link { margin: 6px 0 0; width: 100%; border-radius: 8px; }
  .nav-icon-link { justify-content: flex-start; gap: 8px; padding: 0 12px; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero: the "3-second" statement ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 15% -10%, rgba(20,93,160,0.55), transparent 60%),
              radial-gradient(900px 500px at 100% 10%, rgba(255,122,26,0.25), transparent 55%),
              linear-gradient(160deg, var(--ink) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 84px;
}
.hero::after {
  /* subtle circuit-grid texture, purely decorative */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: 0.5;
}
/* Floating glow orbs — pure CSS, no images, very "tech" without being busy */
.hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.55;
  animation: float-orb 9s ease-in-out infinite;
}
.hero .orb-orange { width: 260px; height: 260px; background: var(--orange); top: -60px; right: 8%; animation-delay: 0s; }
.hero .orb-blue { width: 320px; height: 320px; background: #2E8BE6; bottom: -100px; left: -60px; animation-delay: 2.4s; }
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.06); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,122,26,0.14);
  border: 1px solid rgba(255,122,26,0.4);
  color: var(--orange-dim);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.06;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--orange), #FFC48A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  color: #C9D8EA;
  font-size: 1.12rem;
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #FF9142);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(255, 122, 26, 0.4);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255, 122, 26, 0.5); color: var(--white); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.12); }

/* Trust stats row under the hero CTAs */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: #9FB0C6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* The signature element: a device-status card that swaps between
   "Booking a repair" and "Shopping" states — this is what makes the
   hero read as a single blended action instead of two competing CTAs. */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-card-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-card-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C9D8EA;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero-card-tab.active {
  background: linear-gradient(135deg, var(--orange), #FF9142);
  color: var(--white);
}
.hero-card-body { color: #D8E4F2; font-size: 0.92rem; }
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.hero-card-row:last-child { border-bottom: none; }

/* ---------- Homepage flip-rotator hero (Book a Repair / Shop Now) ---------- */
.bthero-wrap {
  position: relative;
  width: 100%;
  height: 460px;
  perspective: 1600px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.98);
  animation: bthero-entrance 0.6s ease-out forwards;
}
@keyframes bthero-entrance { to { opacity: 1; transform: scale(1); } }

.bthero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 32px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  color: #fff;
}
.bthero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.bthero-slide > * { position: relative; z-index: 1; }

.bthero-slide-repair {
  background: radial-gradient(1100px 550px at 12% -10%, rgba(255,255,255,0.10), transparent 55%),
              linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  transform: rotateY(0deg);
  z-index: 2;
}
.bthero-slide-shop {
  background: radial-gradient(1100px 550px at 88% -10%, rgba(255,255,255,0.12), transparent 55%),
              linear-gradient(135deg, #B94F00 0%, var(--orange) 55%, #FF9A4D 100%);
  transform: rotateY(180deg);
  z-index: 1;
}
.bthero-wrap.bthero-flip .bthero-slide-repair { transform: rotateY(-180deg); }
.bthero-wrap.bthero-flip .bthero-slide-shop { transform: rotateY(0deg); }

.bthero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.bthero-slide h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.bthero-slide p {
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 0 28px;
  opacity: 0.92;
  color: #EAF0F8;
}
.bthero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.bthero-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); color: #fff; }

.bthero-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.bthero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bthero-dot.active { background: #fff; transform: scale(1.3); }

@supports not (backdrop-filter: blur(1px)) {
  .bthero-btn { background: rgba(255,255,255,0.3); }
}
@media (max-width: 700px) {
  .bthero-wrap { height: 400px; }
}

/* ---------- Banner / ad carousel (dashboard-managed) ---------- */
.ad-strip {
  background: var(--mist);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.ad-track {
  display: flex;
  gap: 16px;
  animation: scroll-ads 28s linear infinite;
  width: max-content;
}
.ad-track:hover { animation-play-state: paused; }
@keyframes scroll-ads {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ad-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
  white-space: nowrap;
}
.ad-pill .fire { color: var(--orange); font-weight: 700; }

/* ---------- Banner carousel (hero rotating images) ---------- */
.banner-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--blue-deep);
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.banner-slide.active { opacity: 1; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.section-title { font-size: 1.8rem; margin-bottom: 8px; }
.section-sub { color: var(--text-soft); margin-bottom: 32px; max-width: 60ch; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-body { padding: 18px; }
.card img { aspect-ratio: 4/3; object-fit: cover; }
.price { color: var(--blue-deep); font-weight: 700; font-size: 1.1rem; }
.price .was { color: var(--text-soft); text-decoration: line-through; font-weight: 400; font-size: 0.9rem; margin-right: 6px; }
.badge-fire {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.footer {
  position: relative;
  background: var(--ink);
  color: #B7C4D8;
  padding: 0 0 24px;
  margin-top: 40px;
  overflow: hidden;
}
.footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
}
.footer::after {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}
.footer-top { padding: 48px 0 32px; position: relative; z-index: 1; }

.footer-cta {
  background: linear-gradient(135deg, rgba(20,93,160,0.35), rgba(255,122,26,0.16));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-cta h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.footer-cta p { color: #B7C4D8; margin: 0; font-size: 0.9rem; }

/* Star ratings */
.stars {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 6px 0;
}
.rating-line .stars { font-size: 0.85rem; }

/* ---------- Premium service cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card .photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .photo-wrap img { transform: scale(1.06); }
.service-card .photo-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,32,0.55), transparent 50%);
}
.service-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.service-card p.desc { color: var(--text-soft); font-size: 0.88rem; flex: 1; }
.service-card .btn-primary { margin-top: 12px; width: 100%; justify-content: center; padding: 11px; font-size: 0.92rem; }

/* ---------- Tutorials ---------- */
.tutorial-card {
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.tutorial-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.tutorial-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.2s ease, transform 0.3s ease; }
.tutorial-thumb:hover img { opacity: 1; transform: scale(1.04); }
.tutorial-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 122, 26, 0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: none;
}
.tutorial-body { padding: 16px; }
.tutorial-body h4 { color: #fff; font-size: 0.98rem; margin-bottom: 6px; }
.tutorial-body p { color: #A9B8CC; font-size: 0.85rem; margin-bottom: 12px; }
.tutorial-body .btn-primary { padding: 8px 16px; font-size: 0.85rem; }

/* Video modal (used when clicking a tutorial thumbnail) */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 10, 18, 0.88);
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; }
.video-modal-inner .frame-wrap { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; }
.video-modal-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  color: #fff; text-align: right; margin-bottom: 10px; cursor: pointer; font-size: 0.9rem;
}

/* ---------- Stats bar (trust indicators, dashboard-editable) ---------- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
}
.stats-bar .stat { text-align: center; }
.stats-bar .stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-deep);
}
.stats-bar .stat .label { color: var(--text-soft); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Simple review form ---------- */
.review-form { background: var(--mist); border-radius: 12px; padding: 20px; margin-top: 20px; }
.star-picker { display: flex; gap: 4px; font-size: 1.6rem; cursor: pointer; margin-bottom: 12px; }
.star-picker span { color: #D8E0EC; transition: color 0.15s ease; }
.star-picker span.filled { color: var(--orange); }

.footer .social { display: flex; gap: 12px; margin-top: 14px; position: relative; z-index: 1; }
.footer a { color: #DDE7F5; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: 14px; }
.footer p { font-size: 0.9rem; }
.footer .social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.footer .social a:hover {
  background: linear-gradient(135deg, var(--orange), #FF9142);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 18px;
  font-size: 0.82rem;
  color: #7C8BA3;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero { padding: 56px 0 70px; }
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
