/* ===================================================
   InterXDB Website Stylesheet
   Brand colours extracted from official logo:
     Gold    #C8922A  — "INTER" letterforms
     Black   #1A1A1A  — X shape, tagline, "D"
     Crimson #8B1A1A  — "B" in DB
   =================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand palette ── */
  --gold:      #C8922A;   /* primary — "INTER" gold        */
  --gold-lt:   #E0A83A;   /* hover / lighter gold          */
  --gold-dk:   #A87520;   /* pressed gold                  */
  --crimson:   #8B1A1A;   /* secondary — "B" in DB         */
  --crimson-lt:#B02222;
  --ink:       #1A1A1A;   /* near-black — X, lines         */
  --ink2:      #2D2D2D;   /* slightly lighter ink          */

  /* ── Neutral / layout ── */
  --bg:        #FFFFFF;
  --bg-alt:    #F7F4EF;   /* warm off-white (matches gold tone) */
  --bg-dark:   #111111;   /* footer / dark sections        */
  --text:      #1E1E1E;
  --muted:     #6B6558;   /* warm grey                     */
  --border:    #E0D8CC;   /* warm border                   */

  /* ── Utility ── */
  --green:   #2E7D32;
  --amber:   #C8922A;     /* reuse gold for amber alerts   */
  --radius:  12px;
  --shadow:  0 4px 24px rgba(26,26,26,.10);
  --shadow-lg: 0 12px 48px rgba(26,26,26,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--ink); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--ink); }
h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
h4 { font-size: 1rem;   font-weight: 700; color: var(--ink); }
p  { font-size: .95rem; color: var(--muted); }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
/* Hero eyebrow — 5pt larger than base eyebrow */
.hero-eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title { text-align: center; margin-bottom: 12px; }
.section-sub   { text-align: center; margin-bottom: 48px; max-width: 540px;
                 margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

/* Compact nav button — keeps the header on a single line with 9 nav links */
.nav-inner .btn {
  padding: 8px 16px;
  font-size: .78rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

/* WhatsApp — subtle icon link, not a prominent button */
.wa-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 16px;
  transition: color .2s;
  text-decoration: none;
}
.wa-icon-link:hover { color: #25D366; }
.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── LOGO MARK (HTML rendered) ── */
.logo-mark {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
}
.logo-inter   { color: var(--gold); }
.logo-x       { color: var(--ink); }
.logo-d       { color: var(--ink); }
.logo-b       { color: var(--crimson); }
.logo-tagline {
  display: block;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-top: 2px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.nav-links {
  display: flex;
  gap: 14px;
  flex: 1;
  flex-wrap: nowrap;       /* force single line */
  white-space: nowrap;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 4px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border: none; }

/* ── HERO ── */
.hero { padding: 80px 0 100px; background: var(--bg); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 20px; }
.hero-sub  { font-size: 1.05rem; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Gold underline on H1 key phrase */
.hero-copy h1 span { color: var(--gold); }

.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.trust-badges span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(46,125,50,.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(46,125,50,.2);
}

/* ── DASHBOARD MOCKUP — SmartBuild colour scheme (navy / gold / white) ── */
/* Real dashboard screenshot */
.dashboard-screenshot {
  width: 100%;
  max-width: 540px;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(10,37,64,.45);
  display: block;
}

.dashboard-mock {
  background: #0a2540;          /* SmartBuild navy blue */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(10,37,64,.45);
  border: 2px solid var(--gold);
}
.mock-bar {
  background: #071a2e;          /* deeper navy for title bar */
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(200,146,42,.3);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red    { background: #e53e3e; }
.mock-dot.amber  { background: var(--gold); }
.mock-dot.green  { background: #38a169; }
.mock-title { font-size: .75rem; color: rgba(255,255,255,.4); margin-left: 8px; }

.mock-body { padding: 20px; }
.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.mock-card { padding: 14px; border-radius: 10px; text-align: center; }

/* Label: bright white uppercase */
.mock-label {
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FFFFFF;              /* bright white */
}

/* Values: bold bright white — all cards */
.mock-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;              /* bright white — max readability */
  margin-top: 6px;
  text-shadow: 0 0 12px rgba(255,255,255,.25);
}

.mock-card.gold-c {
  background: rgba(200,146,42,.18);
  border: 1px solid rgba(200,146,42,.5);
}
.mock-card.gold-c .mock-val { color: #FFFFFF; }

.mock-card.amber-c {
  background: rgba(56,120,180,.18);   /* blue tint for water */
  border: 1px solid rgba(56,120,180,.45);
}

.mock-card.green-c {
  background: rgba(56,180,120,.15);
  border: 1px solid rgba(56,180,120,.4);
}
/* Cost card — bright white, slightly larger for CFO visibility */
.mock-card.green-c .mock-val {
  color: #FFFFFF;
  font-size: 1.45rem;
  font-weight: 900;
}

.mock-card.crim-c {
  background: rgba(200,146,42,.1);
  border: 1px solid rgba(200,146,42,.25);
}

/* Chart */
.mock-chart {
  padding: 12px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  border: 1px solid rgba(200,146,42,.15);
}
.chart-label {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  margin-bottom: 10px;
}
.chart-bars { display: flex; align-items: flex-end; gap: 3px; height: 60px; }
.bar        { flex: 1; background: rgba(255,255,255,.55); border-radius: 2px 2px 0 0; }
.bar.active { background: #ffffff; box-shadow: 0 0 6px rgba(255,255,255,.6); }

/* ── PAIN STRIP ── */
.pain-strip {
  background: #FDF8F0;
  border-top: 1px solid #EDDBB8;
  border-bottom: 1px solid #EDDBB8;
  padding: 32px 0;
}
.pain-inner { display: flex; align-items: center; justify-content: center;
              gap: 32px; flex-wrap: wrap; }
.pain-item  { display: flex; align-items: center; gap: 12px; }
.pain-icon  { font-size: 1.4rem; color: var(--crimson); }
.pain-item p { font-size: .9rem; font-weight: 600; color: #5C2A00; }
.pain-divider { width: 1px; height: 40px; background: #EDDBB8; }

/* ── PRODUCT SECTIONS ── */
.product-section { padding: 96px 0; }
.alt-bg { background: var(--bg-alt); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-copy { display: flex; flex-direction: column; gap: 24px; }
.split-copy p { font-size: 1rem; }

/* Product visual cards — gold theme for SmartBuild, crimson for LandlordApp */
.product-card-visual {
  border-radius: var(--radius);
  padding: 40px 36px;
  color: white;
  box-shadow: var(--shadow-lg);
}
.sb-theme {
  background: var(--ink);
  border-left: 5px solid var(--gold);
}
.ll-theme {
  background: var(--ink);
  border-left: 5px solid var(--crimson);
}

.pv-icon { font-size: 3rem; margin-bottom: 12px; }
.product-card-visual h3 { color: #FFFFFF; font-size: 1.4rem; margin-bottom: 20px; }
.sb-theme h3 { color: #FFFFFF; }
.ll-theme h3 { color: #FFFFFF; }
.pv-list { display: flex; flex-direction: column; gap: 10px; }
.pv-list li { font-size: .9rem; color: #FFFFFF; }
.pv-link { display: inline-block; margin-top: 24px; font-size: .85rem;
           font-weight: 700; color: #FFFFFF; }
.ll-theme .pv-link { color: #FFFFFF; }
.pv-link:hover { color: rgba(255,255,255,.75); }

/* SmartBuild demo + watch video buttons on the same row */
.sb-btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Benefits grid */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit      { display: flex; gap: 14px; align-items: flex-start; }
.b-icon       { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.benefit strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: 4px; }
.benefit p    { font-size: .83rem; }

/* ── WHO SECTION ── */
.who-section { padding: 96px 0; background: var(--bg); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--ink);
  border: 1px solid rgba(200,146,42,.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  border-top: 4px solid var(--gold);
}
.who-card:nth-child(2) { border-top-color: var(--gold); }
.who-card:nth-child(4) { border-top-color: var(--gold); }
.who-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.who-icon  { font-size: 2.4rem; margin-bottom: 16px; }
.who-card h3 { margin-bottom: 10px; color: #FFFFFF; }
.who-card p  { font-size: .87rem; color: rgba(255,255,255,.7); }

/* ── METRICS BAR ── */
.metrics-bar { background: var(--ink); padding: 52px 0; }
.metrics-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.metric       { text-align: center; padding: 12px 48px; }
.metric-val   { display: block; font-size: 2.4rem; font-weight: 900; color: var(--gold); }
.metric-label { display: block; font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.metric-divider { width: 1px; height: 60px; background: rgba(255,255,255,.12); }

/* ── DIFFERENTIATORS ── */
.diff-section { padding: 96px 0; background: var(--bg-alt); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diff-item {
  background: var(--ink);
  border: 1px solid rgba(200,146,42,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.diff-item:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.diff-icon { font-size: 2rem; margin-bottom: 12px; display: block; color: var(--gold); }
.diff-item:nth-child(even) .diff-icon { color: var(--gold); }
.diff-item h4 { margin-bottom: 8px; color: #FFFFFF; }
.diff-item p  { font-size: .87rem; color: rgba(255,255,255,.7); }

/* ── CONTACT ── */
.contact-section {
  background: var(--ink);
  padding: 96px 0;
  border-top: 4px solid var(--gold);
}
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-copy h2 { color: white; margin-bottom: 16px; }
.contact-copy h2 span { color: var(--gold); }
.contact-copy p  { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 32px; }
.contact-options { display: flex; gap: 16px; justify-content: center;
                   flex-wrap: wrap; margin-bottom: 20px; }
.contact-note  { font-size: .88rem; color: rgba(255,255,255,.45); }
.contact-note strong { color: rgba(255,255,255,.75); }

/* ── FOOTER ── */
.site-footer { background: #0D0D0D; padding: 64px 0 0; border-top: 3px solid var(--gold); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo-mark { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-links h4 { color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .1em;
                   text-transform: uppercase; margin-bottom: 16px; }
.footer-links a  { display: block; font-size: .85rem; color: rgba(255,255,255,.4);
                   margin-bottom: 10px; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.2); }

/* ====================================================
   HARDWARE PAGE
   ==================================================== */
.hw-hero {
  padding: 100px 0 56px;
  background: var(--ink);
  text-align: center;
  border-bottom: 4px solid var(--gold);
}
.hw-hero h1 { color: white; }
.hw-hero .eyebrow { color: var(--gold); }
.hw-hero .hero-sub { color: rgba(255,255,255,.65); max-width: 560px;
                     margin: 16px auto 32px; font-size: 1rem; }

.hw-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover  { border-color: var(--gold-lt); color: var(--gold-lt); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: white; }

.hw-grid-section { padding: 64px 0 80px; background: var(--bg-alt); }
.hw-grid { display: flex; flex-direction: column; gap: 24px; }

.hw-card {
  display: flex;
  gap: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.hw-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gold); }

.hw-icon-wrap {
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-icon { font-size: 2.8rem; }

/* Category colour tints — all warm to match brand */
.breaker-col { background: rgba(200,146,42,.1); }   /* gold tint */
.wifi-col    { background: rgba(139,26,26,.09); }    /* crimson tint */
.water-col   { background: rgba(26,100,139,.1); }    /* blue-ink tint */
.energy-col  { background: rgba(200,146,42,.08); }   /* gold tint */
.gateway-col { background: rgba(26,26,26,.06); }     /* ink tint */

.hw-info { padding: 24px 24px 24px 0; }

.hw-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.breaker-badge { background: rgba(200,146,42,.12); color: var(--gold-dk); }
.wifi-badge    { background: rgba(139,26,26,.1);   color: var(--crimson); }
.water-badge   { background: rgba(26,100,139,.1);  color: #1A648B; }
.energy-badge  { background: rgba(200,146,42,.1);  color: var(--gold-dk); }
.gateway-badge { background: rgba(26,26,26,.07);   color: var(--ink2); }

.hw-info h3 { margin-bottom: 8px; }
.hw-info > p { font-size: .9rem; margin-bottom: 16px; }

.hw-specs { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.hw-specs li { font-size: .82rem; color: var(--muted); }
.hw-specs li strong { color: var(--text); }

/* Compatibility banner */
.compat-section { padding: 56px 0; background: var(--ink); border-top: 3px solid var(--gold); }
.compat-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.compat-icon { font-size: 2.5rem; flex-shrink: 0; color: var(--gold); }
.compat-inner h3 { color: white; margin-bottom: 8px; }
.compat-inner p  { color: rgba(255,255,255,.55); margin-bottom: 20px; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .who-grid  { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner > .btn-primary { display: none; }
  .nav-toggle { display: block; }

  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }

  .split         { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }

  .benefit-grid { grid-template-columns: 1fr; }
  .who-grid     { grid-template-columns: 1fr 1fr; }
  .diff-grid    { grid-template-columns: 1fr; }

  .metrics-inner { gap: 8px; }
  .metric        { padding: 12px 24px; }
  .metric-divider{ display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hw-card      { flex-direction: column; }
  .hw-icon-wrap { min-width: unset; padding: 24px; }
  .hw-info      { padding: 0 20px 24px; }
  .compat-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .who-grid        { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; }
  .pain-inner      { flex-direction: column; }
  .pain-divider    { display: none; }
  .hero-btns       { flex-direction: column; }
  .contact-options { flex-direction: column; align-items: center; }
}

/* ====================================================
   SERVICES PAGE
   ==================================================== */
.svc-block  { padding: 60px 0; }
.svc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 0;
}

/* Section sub-title within service blocks */
.svc-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Service header */
.svc-header { max-width: 720px; margin-bottom: 40px; }
.svc-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  margin: 10px 0 16px;
}
.svc-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* 3-column service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.svc-card {
  background: var(--ink);
  border-radius: 12px;
  padding: 28px 24px;
  color: #fff;
}
.svc-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.svc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* Bottom call-out bar */
.svc-cta-bar {
  background: rgba(200,146,42,.1);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 16px 20px;
}
.svc-cta-bar p {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   SCREENSHOTS PAGE
   ==================================================== */
/* Product section divider heading */
.ss-product-heading {
  margin: 0 0 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}
.ss-product-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 4px 0 0;
}
.ss-product-heading h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--ink);
  margin: 10px 0 0;
}

.ss-group       { margin-bottom: 56px; }
.ss-group-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ss-card {
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.ss-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.ss-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.ss-caption {
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* Lightbox */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-overlay.open { display: flex; }
.lb-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.lb-box img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lb-box p {
  padding: 12px 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.lb-close {
  position: absolute;
  top: 10px; right: 12px;
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 900px) {
  .ss-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ss-grid { grid-template-columns: 1fr; }
}
