/* =====================================================
   Senad Computers — Design System
   Blue / White, modern, conversion-focused
   ===================================================== */

:root {
  /* Palette */
  --c-primary: #0a2a6b;          /* deep navy blue */
  --c-primary-dark: #061a47;
  --c-primary-light: #1e40af;
  --c-accent: #3b82f6;            /* bright blue */
  --c-accent-light: #60a5fa;
  --c-accent-soft: #dbeafe;
  --c-success: #10b981;
  --c-warning: #f59e0b;
  --c-danger: #ef4444;

  /* Neutrals */
  --c-white: #ffffff;
  --c-bg: #f8fafc;
  --c-bg-alt: #f1f5f9;
  --c-border: #e2e8f0;
  --c-border-strong: #cbd5e1;
  --c-text: #0f172a;
  --c-text-muted: #475569;
  --c-text-light: #64748b;

  /* Typography */
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --sh-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --sh-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --sh-xl: 0 24px 60px rgba(10, 42, 107, 0.18);
  --sh-blue: 0 12px 32px rgba(59, 130, 246, 0.25);

  /* Layout */
  --container: 1180px;
  --header-h: 88px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--c-accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-primary); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--c-text); letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }

/* ----- Skip link ----- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-primary); color: #fff; padding: .75rem 1rem;
  z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
main { min-height: 60vh; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: .95rem; line-height: 1;
  text-decoration: none; transition: all .2s ease; cursor: pointer; white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--c-accent); color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(10, 42, 107, .3); }
.btn-secondary { background: var(--c-white); color: var(--c-primary); border-color: var(--c-primary); }
.btn-secondary:hover { background: var(--c-primary); color: #fff; }
.btn-light { background: #fff; color: var(--c-primary); }
.btn-light:hover { background: var(--c-bg); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-large { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ----- Header ----- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--c-border); }
.header-bar { padding: .9rem 0; }
.header-inner { display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; color: var(--c-primary); letter-spacing: -0.01em; }
.brand:hover { color: var(--c-primary); }
.brand svg { width: 180px; height: 48px; display: block; }
.brand-footer-logo { display: inline-block; }
.brand-footer-logo svg { width: 200px; height: 54px; display: block; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 2rem; }
.main-nav a,
.main-nav button { color: var(--c-text); font-weight: 500; font-size: .95rem; padding: .5rem 0; position: relative; font-family: inherit; background: none; border: 0; cursor: pointer; }
.main-nav a:hover,
.main-nav button:hover { color: var(--c-accent); }
.main-nav .active > a,
.main-nav .active > button { color: var(--c-primary); font-weight: 600; }
.main-nav .has-submenu,
.main-nav .has-mega { position: relative; }
.main-nav .has-submenu > a,
.main-nav .has-mega > button { display: inline-flex; align-items: center; gap: .35rem; }
.caret { transition: transform .2s ease; }
.has-submenu:hover .caret,
.has-mega:hover .caret { transform: rotate(180deg); }

/* ----- Legacy dropdown ----- */
.submenu {
  position: absolute; top: 100%; left: -1rem; min-width: 240px;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 50;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: .55rem .75rem; border-radius: var(--r-sm); font-size: .9rem; }
.submenu li a:hover { background: var(--c-accent-soft); color: var(--c-primary); }

/* ----- Mega menu ----- */
.mega-panel {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, 8px);
  width: 760px; max-width: calc(100vw - 32px);
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
  padding: 1.5rem; opacity: 0; visibility: hidden;
  transition: all .2s ease; z-index: 50;
}
.mega-panel::before {
  content: ""; position: absolute; top: -8px; left: calc(50% - 8px);
  width: 16px; height: 16px; background: #fff; transform: rotate(45deg);
  border-top: 1px solid var(--c-border); border-left: 1px solid var(--c-border);
  border-radius: 2px;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem .75rem;
}
.mega-item {
  display: flex; gap: .85rem; padding: .75rem; border-radius: var(--r-md);
  text-decoration: none; color: var(--c-text); transition: all .15s;
}
.mega-item:hover { background: var(--c-bg); color: var(--c-primary); transform: translateX(2px); }
.mega-ico {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--c-accent-soft); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mega-item:hover .mega-ico { background: var(--c-accent); color: #fff; }
.mega-txt { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.mega-txt strong { font-size: .92rem; font-weight: 700; color: var(--c-text); }
.mega-item:hover .mega-txt strong { color: var(--c-primary); }
.mega-txt em { font-size: .78rem; color: var(--c-text-muted); font-style: normal; line-height: 1.35; }
.mega-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-top: 1rem; margin-top: 1rem;
  border-top: 1px solid var(--c-border);
  font-size: .85rem; color: var(--c-text-muted);
}
.mega-foot a { font-weight: 600; }
.mega-all { white-space: nowrap; }

.header-cta { display: flex; align-items: center; gap: .75rem; }
.btn-call {
  display: flex; align-items: center; gap: .55rem; padding: .55rem .9rem;
  border-radius: var(--r-md); color: var(--c-primary);
  border: 1.5px solid var(--c-border); font-size: .85rem;
}
.btn-call:hover { background: var(--c-accent-soft); border-color: var(--c-accent); color: var(--c-primary); }
.call-label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.call-line { font-size: .7rem; color: var(--c-text-light); }
.call-label strong { font-size: .92rem; }
.btn-book { padding: .65rem 1.25rem; font-size: .9rem; }

.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: .5rem; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--c-primary); border-radius: 2px; transition: all .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { background: #fff; border-top: 1px solid var(--c-border); padding: 1rem 0; }
.mobile-nav ul { display: flex; flex-direction: column; padding: 0 var(--sp-6); }
.mobile-nav li a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--c-border); color: var(--c-text); font-weight: 500; }
.mobile-nav .mobile-call { color: var(--c-primary); font-weight: 700; }
.mobile-nav .mobile-book { color: var(--c-accent); font-weight: 700; border-bottom: 0; }

/* ----- Hero ----- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #061a47 0%, #0a2a6b 45%, #1e40af 100%);
  color: #fff; padding: 5rem 0 5.5rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(59,130,246,.35), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; right: -120px; bottom: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,.25), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .9fr; gap: 4rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: .5rem 1rem; border-radius: var(--r-pill); font-size: .85rem;
  margin-bottom: 1.5rem; backdrop-filter: blur(6px);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 12px #10b981; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--c-accent-light); }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat strong { display: block; font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat span { color: rgba(255,255,255,.75); font-size: .85rem; margin-top: .25rem; display: block; }

.hero-card {
  position: relative; background: #fff; color: var(--c-text);
  border-radius: var(--r-2xl); padding: 2rem; box-shadow: var(--sh-xl);
}
.hero-card-title { font-size: 1.1rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.hero-card-title .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--c-success); position: relative; }
.hero-card-title .pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--c-success); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(2.5); opacity: 0; } }
.quick-list { display: flex; flex-direction: column; gap: .75rem; }
.quick-list li { display: flex; align-items: center; gap: .65rem; padding: .85rem 1rem; background: var(--c-bg); border-radius: var(--r-md); font-size: .92rem; font-weight: 500; transition: all .15s; }
.quick-list li:hover { background: var(--c-accent-soft); transform: translateX(4px); }
.quick-list svg { color: var(--c-accent); flex-shrink: 0; }
.hero-card .btn { width: 100%; margin-top: 1.25rem; }

/* ----- Trust row ----- */
.trust-row { background: var(--c-bg); padding: 1.75rem 0; border-bottom: 1px solid var(--c-border); }
.trust-row ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.trust-row li { display: flex; align-items: center; gap: .85rem; color: var(--c-text-muted); font-size: .92rem; }
.trust-row li svg { color: var(--c-accent); flex-shrink: 0; }
.trust-row li strong { color: var(--c-text); font-weight: 700; }

/* ----- Sections ----- */
section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-eyebrow { display: inline-block; color: var(--c-accent); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .75rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--c-text-muted); font-size: 1.1rem; }

/* ----- Service cards grid ----- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 2rem 1.75rem;
  text-decoration: none; color: var(--c-text); transition: all .25s ease;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--c-accent); box-shadow: var(--sh-lg); color: var(--c-text); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-accent-soft), #fff);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary); margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: .65rem; font-size: 1.2rem; }
.service-card p { color: var(--c-text-muted); font-size: .95rem; flex: 1; }
.service-card .arrow { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.25rem; color: var(--c-accent); font-weight: 600; font-size: .9rem; }
.service-card:hover .arrow svg { transform: translateX(4px); }
.service-card .arrow svg { transition: transform .2s ease; }
.service-card .price { display: inline-block; background: var(--c-accent-soft); color: var(--c-primary); font-size: .8rem; font-weight: 700; padding: .25rem .65rem; border-radius: var(--r-pill); margin-bottom: .85rem; }

/* ----- Process / how it works ----- */
.process { background: var(--c-bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { background: #fff; border-radius: var(--r-xl); padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--c-border); position: relative; }
.process-step .num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--c-primary); color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p { color: var(--c-text-muted); font-size: .9rem; }

/* ----- Two-col ----- */
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.two-col-image { background: linear-gradient(135deg, var(--c-accent-soft), #eef2ff); border-radius: var(--r-2xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--c-primary); }
.two-col-photo { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-xl); }
.two-col-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ----- Hero photo card ----- */
.hero-card-photo { padding: 0; overflow: hidden; }
.hero-card-photo .hero-photo { display: block; }
.hero-card-photo .hero-photo img { width: 100%; height: 360px; object-fit: cover; display: block; }
.hero-card-photo .hero-card-body { padding: 1.5rem 1.75rem 1.75rem; }
.hero-card-photo .hero-card-title { margin-bottom: .5rem; }
.hero-card-photo .btn { width: 100%; }

/* ----- Showcase grid (featured recent work) ----- */
.showcase-section { background: #fff; }
.showcase-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.5rem; max-width: 1180px; margin: 0 auto; }
.showcase-item { background: var(--c-bg); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-md); position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.showcase-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; }
.showcase-item.showcase-tall img { aspect-ratio: 3/5; }
.showcase-item figcaption { position: absolute; inset: auto 0 0 0; background: linear-gradient(to top, rgba(6, 26, 71, 0.95), rgba(6, 26, 71, 0) 100%); color: #fff; padding: 2rem 1.25rem 1rem; display: flex; flex-direction: column; gap: .1rem; }
.showcase-item figcaption strong { font-size: 1rem; font-weight: 700; }
.showcase-item figcaption span { font-size: .82rem; opacity: .85; }

@media (max-width: 860px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-item.showcase-tall { grid-column: 1 / -1; }
  .showcase-item.showcase-tall img { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item.showcase-tall img { aspect-ratio: 4/5; }
}

/* ----- Before / after gallery ----- */
.ba-section { background: var(--c-bg); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; }
.ba-pair { background: #fff; border-radius: var(--r-2xl); padding: 1.25rem; box-shadow: var(--sh-md); display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.ba-pair figcaption { grid-column: 1 / -1; text-align: center; color: var(--c-text-muted); font-size: .92rem; padding-top: .25rem; font-weight: 500; }
.ba-images { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/4; background: #000; }
.ba-images img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-tag { position: absolute; top: .65rem; left: .65rem; padding: .3rem .7rem; border-radius: var(--r-pill); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; backdrop-filter: blur(8px); }
.ba-before { background: rgba(239, 68, 68, .9); color: #fff; }
.ba-after { background: rgba(16, 185, 129, .9); color: #fff; }
.ba-note { text-align: center; margin-top: 2rem; color: var(--c-text-muted); font-size: 1rem; }
.ba-note a { font-weight: 600; }

/* ----- Service page hero photo ----- */
.service-hero-photo { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--sh-md); }
.service-hero-photo img { width: 100%; height: auto; display: block; }

/* ----- Testimonial cards ----- */
.testimonials { background: var(--c-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial { background: #fff; border-radius: var(--r-xl); padding: 2rem; border: 1px solid var(--c-border); }
.stars { color: var(--c-warning); margin-bottom: 1rem; font-size: 1rem; }
.testimonial p { color: var(--c-text); font-style: italic; margin-bottom: 1.25rem; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--c-primary), var(--c-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-author strong { display: block; font-size: .95rem; color: var(--c-text); }
.testimonial-author span { color: var(--c-text-muted); font-size: .85rem; }

/* ----- CTA strip ----- */
.cta-strip { background: linear-gradient(135deg, #0a2a6b 0%, #1e40af 100%); color: #fff; padding: 3.5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; margin-bottom: .5rem; }
.cta-strip p { color: rgba(255,255,255,.85); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ----- FAQ accordion ----- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--c-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--c-accent); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--c-primary); }
.faq-answer { padding: 0 1.5rem 1.5rem; color: var(--c-text-muted); }

/* ----- Footer ----- */
.site-footer { background: linear-gradient(135deg, #061a47 0%, #0a2a6b 100%); color: #fff; padding: 4rem 0 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.brand-footer { color: #fff; }
.brand-footer:hover { color: #fff; }
.brand-footer .brand-text { color: #fff; }
.footer-tag { color: rgba(255,255,255,.75); margin-top: 1rem; font-size: .95rem; line-height: 1.6; }
.footer-promise { color: var(--c-accent-light); margin-top: 1rem; font-size: .9rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.25rem; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { color: rgba(255,255,255,.75); font-size: .92rem; }
.footer-col a:hover { color: var(--c-accent-light); }
.contact-list li { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.85); font-size: .92rem; }
.contact-list svg { color: var(--c-accent-light); margin-top: .15rem; flex-shrink: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.85); font-size: .9rem; padding: .25rem 0; }
.hours-list span { color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,.6); font-size: .85rem; }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: rgba(255,255,255,.6); font-size: .85rem; }
.legal-links a:hover { color: #fff; }

/* ----- Mobile action bar ----- */
.mobile-action-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: #fff; border-top: 1px solid var(--c-border); padding: .55rem; gap: .45rem; box-shadow: 0 -8px 24px rgba(0,0,0,.08); }
.mobile-action-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .75rem .5rem; border-radius: var(--r-md); font-weight: 700; font-size: .88rem; }
.mab-call { background: var(--c-bg); color: var(--c-primary); }
.mab-sms { background: #e8faef; color: #0a6e3b; }
.mab-sms:hover { color: #0a6e3b; }
.mab-book { background: var(--c-accent); color: #fff; box-shadow: var(--sh-blue); }
.mab-book:hover { color: #fff; }

/* ----- Floating SMS / iMessage bubble ----- */
.sms-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 98;
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem 1.1rem .65rem .75rem;
  background: linear-gradient(135deg, #4EEC8F 0%, #30D158 60%, #28b94a 100%);
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 32px rgba(48, 209, 88, 0.35), 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  font-family: var(--ff-sans);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: sms-pulse 2.6s ease-in-out infinite;
}
.sms-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(48, 209, 88, 0.45), 0 4px 10px rgba(0,0,0,0.12);
  animation: none;
}
.sms-float-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sms-float-label { display: flex; flex-direction: column; line-height: 1.1; }
.sms-float-bold { font-weight: 700; font-size: .95rem; }
.sms-float-sub { font-size: .78rem; opacity: .92; margin-top: 2px; }
@keyframes sms-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(48, 209, 88, 0.35), 0 2px 6px rgba(0,0,0,0.1), 0 0 0 0 rgba(48, 209, 88, 0.5); }
  50%      { box-shadow: 0 12px 32px rgba(48, 209, 88, 0.35), 0 2px 6px rgba(0,0,0,0.1), 0 0 0 12px rgba(48, 209, 88, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .sms-float { animation: none; }
}

/* ----- Page hero (subpage) ----- */
.page-hero {
  background: linear-gradient(135deg, #061a47 0%, #0a2a6b 100%);
  color: #fff; padding: 4rem 0 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(59,130,246,.25), transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; }
.breadcrumbs { display: flex; gap: .5rem; align-items: center; color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 1rem; }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: rgba(255,255,255,.4); }
.page-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 800px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 720px; }
.page-hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ----- Service detail page ----- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.service-content > section { padding: 0 0 3rem; }
.service-content h2 { margin-bottom: 1rem; color: var(--c-primary); }
.service-content h3 { margin: 2rem 0 .75rem; }
.service-content p { color: var(--c-text-muted); margin-bottom: 1rem; }
.service-content ul.bullets { display: flex; flex-direction: column; gap: .65rem; margin: 1rem 0 1.5rem; }
.service-content ul.bullets li { display: flex; gap: .65rem; padding-left: 0; color: var(--c-text); }
.service-content ul.bullets li::before { content: "✓"; color: var(--c-success); font-weight: 800; flex-shrink: 0; }

.service-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; }
.sidebar-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 1.75rem; box-shadow: var(--sh-md); margin-bottom: 1.5rem; }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--c-primary); }
.sidebar-card .price-block { font-size: 2rem; font-weight: 800; color: var(--c-primary); }
.sidebar-card .price-block small { display: block; font-size: .8rem; color: var(--c-text-muted); font-weight: 500; }
.sidebar-card ul { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0; }
.sidebar-card ul li { display: flex; gap: .5rem; font-size: .92rem; color: var(--c-text-muted); }
.sidebar-card ul li::before { content: "✓"; color: var(--c-success); font-weight: 700; }
.sidebar-card .btn { width: 100%; margin-top: .5rem; }

/* ----- Pricing table ----- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.price-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 2.25rem 1.75rem; text-align: center; position: relative; transition: all .25s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--c-accent); }
.price-card.featured { border-color: var(--c-accent); border-width: 2px; box-shadow: var(--sh-blue); }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--c-accent); color: #fff; padding: .35rem 1rem; border-radius: var(--r-pill); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.price-card h3 { color: var(--c-primary); margin-bottom: .5rem; }
.price-card .price-tag { font-size: 2.5rem; font-weight: 800; color: var(--c-primary); margin: 1rem 0; }
.price-card .price-tag small { font-size: .9rem; color: var(--c-text-muted); font-weight: 500; }
.price-card ul { text-align: left; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .55rem; }
.price-card ul li { display: flex; gap: .5rem; color: var(--c-text-muted); font-size: .92rem; }
.price-card ul li::before { content: "✓"; color: var(--c-success); flex-shrink: 0; font-weight: 700; }

/* ----- Forms ----- */
.form-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-2xl); padding: 2.5rem; box-shadow: var(--sh-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-weight: 600; font-size: .9rem; color: var(--c-text); }
.form-field label .req { color: var(--c-danger); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: .85rem 1rem; border: 1.5px solid var(--c-border-strong); border-radius: var(--r-md);
  background: #fff; transition: all .15s; width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 4px rgba(59,130,246,.12); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-checkbox { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--c-text-muted); }
.form-checkbox input { margin-top: .15rem; flex-shrink: 0; }
.form-actions { margin-top: 1rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form-actions button { padding: 1rem 2rem; }
.form-status { padding: 1rem 1.25rem; border-radius: var(--r-md); margin-bottom: 1.5rem; display: none; }
.form-status.success { background: #d1fae5; color: #065f46; border: 1px solid #10b981; display: block; }
.form-status.error { background: #fee2e2; color: #991b1b; border: 1px solid #ef4444; display: block; }

/* ----- Service area pills ----- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .75rem; max-width: 880px; margin: 0 auto; }
.area-pill { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 1rem; text-align: center; color: var(--c-text); font-weight: 500; text-decoration: none; transition: all .15s; }
.area-pill:hover { border-color: var(--c-accent); background: var(--c-accent-soft); color: var(--c-primary); transform: translateY(-2px); }

/* ----- Article / prose ----- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 1.25rem; color: var(--c-text-muted); }
.prose h2 { margin: 2.5rem 0 1rem; color: var(--c-primary); }
.prose h3 { margin: 2rem 0 .75rem; }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.25rem; }
.prose ul li, .prose ol li { margin-bottom: .5rem; color: var(--c-text-muted); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

/* ----- Bottom padding for mobile action bar ----- */
@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .mobile-action-bar { display: flex; }
  /* On mobile, the green bubble collapses to icon only above the action bar */
  .sms-float { bottom: 92px; right: 14px; padding: 0; width: 56px; height: 56px; justify-content: center; }
  .sms-float-icon { width: 40px; height: 40px; }
  .sms-float-label { display: none; }
  .header-cta .btn-call .call-label { display: none; }
  .header-cta .btn-book { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 3rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.4rem; }
  section { padding: 3.5rem 0; }
  .trust-row ul { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.25rem; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
  .ba-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-card-photo .hero-photo img { height: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 2rem; }
  .trust-row ul { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ----- Focus visible ----- */
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 4px; }

/* =====================================================
   REDESIGN: Gaming PCs, Illustrations, Mobile Polish
   ===================================================== */

/* ----- What We Do — character illustrations ----- */
.what-we-do { background: #fff; }
.illustration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.illustration-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 0;
  text-decoration: none;
  color: var(--c-text);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.illustration-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
  box-shadow: var(--sh-lg);
  color: var(--c-text);
}
.illustration-wrap {
  padding: 1.25rem 1.25rem 0;
}
.illustration-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}
.illustration-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: var(--sh-md);
  color: #fff;
  z-index: 2;
}
.illustration-badge.blue { background: var(--c-accent); }
.illustration-badge.purple { background: #8b5cf6; }
.illustration-badge.green { background: var(--c-success); }
.illustration-badge.amber { background: var(--c-warning); }
.illustration-body {
  padding: 1.25rem 1.5rem 1.75rem;
}
.illustration-body h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: var(--c-text);
}
.illustration-body p {
  color: var(--c-text-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.illustration-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--c-accent);
  font-weight: 600;
  font-size: .9rem;
}
.illustration-card:hover .illustration-link svg { transform: translateX(4px); }
.illustration-link svg { transition: transform .2s ease; }

/* ----- Gaming PC cards + spec dropdowns ----- */
.gaming-section {
  background: linear-gradient(180deg, var(--c-bg) 0%, #fff 100%);
}
.gaming-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.gaming-section-head > div:first-child { max-width: 640px; }
.gaming-section-head h2 { margin-bottom: .5rem; }
.gaming-section-head p { color: var(--c-text-muted); font-size: 1.05rem; }
.gaming-section-head .btn { flex-shrink: 0; }

.gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.gaming-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: all .3s ease;
  position: relative;
}
.gaming-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-xl);
  border-color: var(--c-accent);
}
.gaming-card.featured {
  border-color: var(--c-accent);
  border-width: 2px;
  box-shadow: var(--sh-blue);
}
.gaming-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0f172a;
}
.gaming-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gaming-card:hover .gaming-card-image img { transform: scale(1.04); }
.gaming-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-accent);
  color: #fff;
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--sh-md);
}
.gaming-card-body {
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gaming-card-body h3 {
  font-size: 1.4rem;
  color: var(--c-primary);
  margin-bottom: .25rem;
}
.gaming-card-tagline {
  color: var(--c-text-muted);
  font-size: .9rem;
  margin-bottom: 1.1rem;
}
.gaming-card-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--c-border);
}
.gaming-card-price .from {
  font-size: .8rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.gaming-card-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.gaming-card-price .amount::before { content: "$"; font-size: 1.2rem; vertical-align: super; margin-right: 2px; }
.quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem .85rem;
  margin-bottom: 1.25rem;
}
.quick-specs li {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.quick-specs .spec-label {
  font-size: .68rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.quick-specs .spec-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-text);
}
.spec-dropdowns {
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--c-border);
}
.spec-group {
  border-bottom: 1px solid var(--c-border);
}
.spec-group summary {
  list-style: none;
  cursor: pointer;
  padding: .85rem 0;
  font-weight: 600;
  font-size: .88rem;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.spec-group summary::-webkit-details-marker { display: none; }
.spec-group summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--c-accent);
  transition: transform .2s ease;
  width: 18px;
  text-align: center;
}
.spec-group[open] summary::after { transform: rotate(45deg); }
.spec-group[open] summary { color: var(--c-primary); }
.spec-detail {
  padding: 0 0 .85rem;
  font-size: .85rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.spec-detail strong {
  display: block;
  color: var(--c-text);
  font-weight: 600;
  margin-bottom: .25rem;
}
.gaming-card-actions {
  display: flex;
  gap: .65rem;
  margin-top: auto;
}
.gaming-card-actions .btn {
  flex: 1;
}

/* Custom build CTA card */
.custom-build-card {
  background: linear-gradient(135deg, #0a2a6b 0%, #1e40af 50%, #8b5cf6 100%);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.custom-build-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, .5), transparent 70%);
  pointer-events: none;
}
.custom-build-card h3 { color: #fff; font-size: 1.75rem; margin-bottom: .75rem; position: relative; }
.custom-build-card p { color: rgba(255,255,255,.85); font-size: 1.02rem; margin-bottom: 1.5rem; position: relative; }
.custom-build-card-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}
.custom-build-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.custom-build-card .btn { position: relative; }

/* ----- Condensed header (tighter spacing) ----- */
.header-bar { padding: .65rem 0; }
.header-inner { gap: 1.5rem; }
.btn-book { padding: .65rem 1.35rem; font-size: .92rem; }

/* ----- Mobile nav improvements ----- */
.mobile-nav { max-height: calc(100vh - 70px); overflow-y: auto; padding-bottom: 2rem; }
.mobile-group details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--c-border);
  font-weight: 500;
  cursor: pointer;
}
.mobile-group details summary::-webkit-details-marker { display: none; }
.mobile-group details summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--c-accent);
  font-weight: 300;
  transition: transform .2s;
}
.mobile-group details[open] summary::after { transform: rotate(45deg); }
.mobile-sub {
  display: flex;
  flex-direction: column;
  padding: .25rem 0 .5rem 0;
}
.mobile-sub li a {
  padding: .6rem 0 .6rem 1rem;
  border-bottom: 0;
  font-size: .9rem;
  color: var(--c-text-muted);
}
.mobile-sub li a:hover { color: var(--c-accent); }
.mobile-nav .mobile-sms {
  color: var(--c-success);
  font-weight: 700;
}

/* =====================================================
   Mobile "flush" polish
   ===================================================== */
@media (max-width: 768px) {
  /* Full-bleed hero on mobile */
  .hero { padding: 2.25rem 0 3rem; }
  .hero::after { width: 280px; height: 280px; right: -80px; bottom: -80px; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .hero-sub { font-size: 1.02rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 1rem 1.5rem; padding-top: 1.5rem; }
  .hero-stat strong { font-size: 1.3rem; }

  /* Brand — more compact on mobile */
  .brand svg { width: 138px; height: 38px; }
  .header-inner { gap: .75rem; }
  .header-cta { display: none; }

  /* Tighter section padding */
  section { padding: 3rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: 1.65rem; }
  .section-head p { font-size: .98rem; }

  /* Ensure nothing overflows */
  body, html { overflow-x: hidden; }
  .container { padding: 0 1rem; }

  /* Cards edge-to-edge feel (but keep readable padding) */
  .service-card,
  .illustration-card,
  .gaming-card,
  .testimonial,
  .ba-pair { border-radius: var(--r-lg); }
  .service-card { padding: 1.5rem 1.25rem; }
  .illustration-wrap { padding: 1rem 1rem 0; }
  .illustration-body { padding: 1rem 1.25rem 1.5rem; }
  .gaming-card-body { padding: 1.25rem 1.25rem 1rem; }

  /* Hero card photo shorter */
  .hero-card-photo .hero-photo img { height: 240px; }
  .hero-card-photo .hero-card-body { padding: 1rem 1.25rem 1.25rem; }

  /* Showcase: stacked, taller image */
  .showcase-grid { grid-template-columns: 1fr; gap: 1rem; }
  .showcase-item.showcase-tall img,
  .showcase-item img { aspect-ratio: 16/10; }

  /* Before/after: stack pairs, larger tap targets */
  .ba-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ba-pair { padding: 1rem; gap: .5rem; }
  .ba-note { font-size: .9rem; padding: 0 .5rem; }

  /* Process cards stack 2x2 */
  .process-grid { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .process-step { padding: 1.5rem 1rem; }
  .process-step .num { width: 40px; height: 40px; font-size: 1rem; }
  .process-step h3 { font-size: .95rem; }
  .process-step p { font-size: .82rem; }

  /* Testimonials single column, tighter */
  .testimonial { padding: 1.5rem; }

  /* CTA strip stacks + flush */
  .cta-strip { padding: 2.5rem 0; }
  .cta-inner { text-align: center; gap: 1.25rem; }
  .cta-actions .btn { width: 100%; }
  .cta-strip h2 { font-size: 1.6rem; }

  /* Gaming section header stacks */
  .gaming-section-head { flex-direction: column; align-items: stretch; }
  .gaming-section-head .btn { align-self: flex-start; }
  .gaming-grid { gap: 1.25rem; }
  .gaming-card-body { padding: 1.25rem; }
  .gaming-card-body h3 { font-size: 1.2rem; }
  .gaming-card-price .amount { font-size: 1.75rem; }
  .quick-specs { gap: .5rem .75rem; }

  /* Custom build card: stack */
  .custom-build-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .custom-build-card h3 { font-size: 1.4rem; }
  .custom-build-card p { font-size: .95rem; }

  /* Form: tighter */
  .form-card { padding: 1.5rem 1.25rem; border-radius: var(--r-lg); }
  .form-field input, .form-field select, .form-field textarea { padding: .85rem .9rem; }

  /* Page hero: compact */
  .page-hero { padding: 2.5rem 0 2.25rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p { font-size: 1rem; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn { width: 100%; }

  /* Trust row: 2x2 grid, tight */
  .trust-row { padding: 1rem 0; }
  .trust-row ul { gap: .75rem; }
  .trust-row li { font-size: .82rem; gap: .5rem; }
  .trust-row li svg { width: 18px; height: 18px; }

  /* Mega menu hidden on mobile — replaced by mobile details */
  .mega-panel { display: none !important; }

  /* SMS bubble stays above action bar, but smaller */
  .sms-float { bottom: 88px; }

  /* Footer: single column already, just tighten */
  .site-footer { padding: 3rem 0 0; margin-top: 2.5rem; }
  .footer-grid { padding-bottom: 2rem; }
  .footer-bottom { padding: 1rem 0; font-size: .78rem; }
  .brand-footer-logo svg { width: 170px; height: 46px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .quick-specs { grid-template-columns: 1fr 1fr; gap: .4rem .65rem; }
  .quick-specs .spec-value { font-size: .82rem; }
  .gaming-card-actions { flex-direction: column; }
  .hero-card-photo .hero-photo img { height: 200px; }
}
