/* =========================================================
   CompuNet — Modern Site Stylesheet
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #0066ff;
  --primary-dark: #0046b3;
  --accent: #17b602;
  --accent-2: #e94434;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e6e9f0;
  --shadow-sm: 0 4px 12px rgba(15,23,42,.06);
  --shadow-md: 0 12px 30px rgba(15,23,42,.10);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.16);
  --radius: 16px;
  --radius-lg: 24px;
  --grad: linear-gradient(135deg, #0066ff 0%, #00c2ff 100%);
  --grad-2: linear-gradient(135deg, #17b602 0%, #00d4aa 100%);
  --grad-3: linear-gradient(135deg, #e94434 0%, #ff7a59 100%);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; transition: all .25s ease; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.2; letter-spacing: -.02em; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ========== Top Bar ========== */
.topbar {
  background: #0a0f1f;
  color: #cbd5e1;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: #fff; }
.topbar .info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .info i { color: #00c2ff; }
.topbar .social-mini { display: flex; gap: 14px; }
.topbar .social-mini a:hover { color: #00c2ff; transform: translateY(-1px); }

/* ========== Header / Nav ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.logo img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav a.nav-link {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 500;
  color: #1e293b;
  border-radius: 10px;
  position: relative;
}
.nav a.nav-link:hover, .nav a.nav-link.active {
  color: var(--primary);
  background: rgba(0,102,255,.08);
}
.nav .has-sub { position: relative; }
.nav .has-sub > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  margin-left: 6px;
  opacity: .6;
}
.nav .submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
}
.nav .has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .submenu a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: #334155;
}
.nav .submenu a:hover, .nav .submenu a.active { background: rgba(0,102,255,.08); color: var(--primary); }
.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0,102,255,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,102,255,.4); background: var(--grad) !important; color: #fff !important; }
.menu-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  cursor: pointer; color: #0f172a;
  font-size: 22px;
}
.menu-toggle:hover { background: rgba(0,102,255,.08); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  cursor: pointer; border: 0;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff !important; box-shadow: 0 12px 30px rgba(0,102,255,.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,102,255,.5); }
.btn-secondary { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn-accent { background: var(--grad-2); color: #fff; box-shadow: 0 12px 30px rgba(23,182,2,.35); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(23,182,2,.45); }
.btn-call { background: var(--grad-3); color: #fff; box-shadow: 0 12px 30px rgba(233,68,52,.35); }
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(233,68,52,.45); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* ========== Hero (home) ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #050b1f;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-bg .slide.active { opacity: 1; transform: scale(1); }
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,194,255,.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(23,182,2,.20), transparent 50%),
    linear-gradient(180deg, rgba(5,11,31,.55) 0%, rgba(5,11,31,.85) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #17b602; box-shadow: 0 0 0 4px rgba(23,182,2,.25); animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(23,182,2,.25); }
  50% { box-shadow: 0 0 0 10px rgba(23,182,2,0); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #00c2ff, #17b602);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: nowrap; gap: 12px; align-items: center; }
.hero-actions .btn { flex: 0 1 auto; }
@media (max-width: 1100px) {
  .hero-actions .btn { padding: 12px 16px; font-size: 14px; gap: 8px; }
}
@media (max-width: 720px) {
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { padding: 14px 22px; font-size: 15px; }
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.25rem; margin-bottom: 18px; }
.hero-card .quick-list { list-style: none; display: grid; gap: 12px; }
.hero-card .quick-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  transition: all .25s ease;
}
.hero-card .quick-list li:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.hero-card .quick-list i {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,194,255,.18);
  color: #00c2ff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-slide-indicators {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-slide-indicators button {
  width: 30px; height: 4px; border-radius: 4px; border: 0;
  background: rgba(255,255,255,.3); cursor: pointer;
  transition: all .25s ease;
}
.hero-slide-indicators button.active { background: #fff; width: 50px; }

/* ========== Page Hero (subpages) ========== */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  background: #050b1f;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,194,255,.3), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(23,182,2,.25), transparent 50%),
    linear-gradient(135deg, rgba(0,102,255,.15), rgba(0,0,0,.4));
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero .breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: .9rem; color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb .sep { opacity: .5; }
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 14px;
}
.page-hero h1 .accent {
  background: linear-gradient(90deg, #00c2ff, #17b602);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p.lead {
  max-width: 720px; margin: 0 auto;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
}
.page-hero .actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 28px;
}

/* ========== Stats ========== */
.stats { margin-top: -60px; position: relative; z-index: 5; }
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.stat { text-align: center; padding: 12px; }
.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat .label { color: var(--muted); font-size: 13px; margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

/* ========== Section Heading ========== */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-eyebrow {
  display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(0,102,255,.1); color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }

/* ========== Generic Card ========== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(0,102,255,.1); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* ========== Services grid (home) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,.18); color: #fff; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .arrow { color: #fff; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(0,102,255,.1);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all .35s ease;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; transition: color .35s; }
.service-card p { color: var(--muted); font-size: .95rem; transition: color .35s; }
.service-card .arrow {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--primary);
  transition: all .35s ease;
}
.service-card:hover .arrow { gap: 12px; }

/* ========== Welcome split ========== */
.welcome { background: #fff; }
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.welcome-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.welcome-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,.10), rgba(23,182,2,.10));
  pointer-events: none;
}
.welcome-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.welcome-content .highlight { color: var(--accent); font-weight: 700; }
.welcome-content p { color: #475569; margin-bottom: 14px; font-size: 1.02rem; }
.welcome-content .em { color: var(--accent-2); font-weight: 700; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.feature-pills span {
  padding: 8px 14px;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: #334155;
  display: inline-flex; align-items: center; gap: 8px;
}
.feature-pills i { color: var(--accent); }

/* ========== Brands strip ========== */
.brands { background: var(--bg); padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands img { margin: 0 auto; max-width: 100%; opacity: .85; transition: opacity .3s; }
.brands img:hover { opacity: 1; }

/* ========== Why Choose ========== */
.why { background: #0a0f1f; color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,194,255,.2), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(23,182,2,.2), transparent 40%);
}
.why .container { position: relative; }
.why .sec-head h2 { color: #fff; }
.why .sec-head p { color: rgba(255,255,255,.7); }
.why .sec-eyebrow { background: rgba(0,194,255,.15); color: #00c2ff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all .35s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(0,194,255,.3); }
.why-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.why-card p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ========== Reviews ========== */
.reviews { background: var(--bg); }
.review-block {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.review-block .review-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.review-block .review-head .icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
}
.review-block.google .icon { background: linear-gradient(135deg, #4285f4, #34a853); }
.review-block.yelp .icon { background: linear-gradient(135deg, #d32323, #e94434); }
.review-block .review-head h3 { font-size: 1.15rem; margin: 0; }
.review-block .review-head p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ========== Videos ========== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}
.video-card:hover { transform: translateY(-4px); }
.video-frame { position: relative; padding-top: 56.25%; background: #000; }
.video-frame iframe, .video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-card .meta { padding: 18px 22px; }
.video-card .meta .who { font-weight: 600; color: var(--text); }
.video-card .meta .role { color: var(--muted); font-size: .9rem; }
.video-card .stars { color: #f5b400; margin-top: 6px; }

/* ========== CTA Strip ========== */
.cta-strip {
  background: var(--grad);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.2), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(23,182,2,.3), transparent 40%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-strip p { font-size: 1.05rem; opacity: .9; margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-strip .btn-secondary { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.cta-strip .btn-secondary:hover { background: rgba(255,255,255,.25); }

/* ========== Floating Quick Actions ========== */
.floating-actions {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease;
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab.call { background: var(--grad-3); }
.fab.book { background: var(--grad-2); }
.fab.status { background: var(--grad); }

/* ========== Footer ========== */
.footer {
  background: #050b1f;
  color: #cbd5e1;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  color: #fff; font-size: 1.05rem; margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}
.footer p { font-size: .92rem; color: #94a3b8; margin-bottom: 12px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94a3b8; font-size: .92rem; transition: color .25s ease; }
.footer ul a:hover { color: #fff; }
.footer .contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: .92rem; color: #94a3b8; }
.footer .contact-line i { color: #00c2ff; margin-top: 4px; }
.footer .social { display: flex; gap: 10px; margin-top: 20px; }
.footer .social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #cbd5e1;
}
.footer .social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-logo img { height: 50px; margin-bottom: 18px; opacity: .85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .88rem; color: #64748b;
}

/* ========== Content blocks (subpages) ========== */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.content-img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
/* Welcome image inside split layouts also centers nicely */
.welcome-img { display: flex; align-items: center; justify-content: center; background: #fff; }
.welcome-img img { display: block; margin: 0 auto; max-width: 100%; height: auto; }
/* Brands strip: center the logo image within the container */
.brands .container { text-align: center; }
.brands img { margin: 0 auto; }
.prose h3 { font-size: 1.4rem; margin: 20px 0 10px; color: var(--text); }
.prose p { color: #475569; margin-bottom: 14px; font-size: 1.02rem; }
.prose ul { padding-left: 22px; margin-bottom: 14px; color: #475569; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a { color: var(--primary); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .em-green { color: var(--accent); font-weight: 700; }
.prose .em-red { color: var(--accent-2); font-weight: 700; }
.prose .em-blue { color: #156aab; font-weight: 700; }

.callout {
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(0,102,255,.06), rgba(23,182,2,.06));
  border: 1px solid rgba(0,102,255,.18);
  margin: 24px 0;
}
.callout.warn { background: linear-gradient(135deg, rgba(233,68,52,.06), rgba(255,122,89,.06)); border-color: rgba(233,68,52,.25); }
.callout.green { background: linear-gradient(135deg, rgba(23,182,2,.08), rgba(0,212,170,.08)); border-color: rgba(23,182,2,.25); }
.callout h3 { margin-bottom: 8px; font-size: 1.15rem; }
.callout p { color: #475569; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.feature-list li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: .95rem;
  color: #334155;
}
.feature-list li i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Pricing cards (data recovery) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all .35s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,102,255,.25); }
.price-card .head { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.price-card .amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--primary); }
.price-card .desc { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* Steps (ship to repair) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all .35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 24px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0,102,255,.3);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; margin-top: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* Contact info card */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-card .row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-card .row:last-child { border: 0; }
.contact-card .row .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,102,255,.1);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card .row .label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.contact-card .row .value { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-card .row a:hover { color: var(--primary); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-frame iframe { display: block; width: 100%; border: 0; }

/* ========== Mobile ========== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-grid, .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse { direction: ltr; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav > ul { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav.open > ul {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; padding: 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    border-top: 1px solid var(--border);
  }
  .nav .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 4px 0 4px 16px; min-width: auto; display: none; }
  .nav .has-sub.open .submenu { display: block; }
  .topbar .info { gap: 12px; font-size: 12px; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-actions { flex-wrap: wrap; }
  .cta-strip .actions { flex-direction: column; align-items: center; }
  .page-hero .actions { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 560px) {
  .stats { margin-top: -40px; }
  .stats .grid { grid-template-columns: 1fr 1fr; padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .cta-strip { padding: 40px 24px; }
  .page-hero { padding: 60px 0 50px; }
  .hero-card { padding: 20px; }
  .hero-actions .btn { padding: 12px 16px; font-size: 13px; }
  .container { padding: 0 16px; }
  .split-grid, .welcome-grid { gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .map-frame iframe { height: 300px; }

  /* Topbar: compact single row on mobile */
  .topbar { padding: 6px 0; }
  .topbar .container { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 8px; }
  .topbar .info { gap: 0; }
  .topbar .info span { display: none; }
  .topbar .info span:first-child { display: inline-flex; font-size: 12px; }
  .topbar .social-mini { display: none; }
  .lang-switch { margin: 0; }
}


/* ========== Language Switch ========== */
.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 3px;
  margin-left: 4px;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: #cbd5e1;
  font: 600 12px/1 'Inter', sans-serif;
  letter-spacing: .05em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active {
  background: linear-gradient(135deg, #0066ff, #00c2ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,102,255,.35);
}
@media (max-width: 560px) {
  .lang-switch { margin-left: 0; }
}
