/* ================================================================
   style.css — Plugscenes LLC · Main Site Stylesheet
   Brand: #FF0101 red · #FFE600 yellow · #333333 charcoal
   Font:  Inter (all weights)
   ================================================================ */

/* ── CSS Variables: Dark (default) ── */
:root {
  --red: #FF0101; --red-dk: #cc0000; --red-lt: rgba(255,1,1,.1);
  --yellow: #FFE600; --charcoal: #333333;
  --bg: #0a0a0a; --bg-2: #111; --bg-3: #1a1a1a; --bg-4: #222;
  --surface: #1a1a1a; --surface-2: #222;
  --text: #fff; --text-2: rgba(255,255,255,.62); --text-3: rgba(255,255,255,.32);
  --border: rgba(255,255,255,.08); --border-2: rgba(255,255,255,.14);
  --shadow: 0 4px 24px rgba(0,0,0,.4); --shadow-lg: 0 16px 56px rgba(0,0,0,.55);
  --nav-bg: rgba(10,10,10,.97); --nav-text: rgba(255,255,255,.78);
  --nav-hover: rgba(255,255,255,.06); --nav-border: rgba(255,255,255,.08);
  --dd-bg: #1a1a1a; --dd-text: rgba(255,255,255,.7); --dd-hover: rgba(255,1,1,.1);
  --card-bg: #1a1a1a; --card-border: rgba(255,255,255,.08);
  --input-bg: #1a1a1a; --input-brd: rgba(255,255,255,.14); --input-txt: #fff;
  --toggle-bg: rgba(255,255,255,.08); --toggle-color: rgba(255,255,255,.7);
  --mob-bg: #111; --mob-text: rgba(255,255,255,.75);
  --t: background .28s ease, color .28s ease, border-color .28s ease;
}

/* ── CSS Variables: Light ── */
html[data-theme="light"] {
  --bg: #fff; --bg-2: #f7f7f7; --bg-3: #f0f0f0; --bg-4: #e8e8e8;
  --surface: #fff; --surface-2: #f7f7f7;
  --text: #1a1a1a; --text-2: #555; --text-3: #999;
  --border: rgba(0,0,0,.09); --border-2: rgba(0,0,0,.15);
  --shadow: 0 4px 24px rgba(0,0,0,.07); --shadow-lg: 0 16px 56px rgba(0,0,0,.12);
  --nav-bg: rgba(255,255,255,.97); --nav-text: #333;
  --nav-hover: rgba(0,0,0,.04); --nav-border: rgba(0,0,0,.09);
  --dd-bg: #fff; --dd-text: #444; --dd-hover: rgba(255,1,1,.06);
  --card-bg: #fff; --card-border: rgba(0,0,0,.09);
  --input-bg: #f7f7f7; --input-brd: #d8d8d8; --input-txt: #1a1a1a;
  --toggle-bg: rgba(0,0,0,.06); --toggle-color: #555;
  --mob-bg: #fff; --mob-text: #333;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; transition: var(--t); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── Utilities ── */
.btn-red { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--red); border-radius: 4px; font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .5px; transition: background .2s, transform .2s; }
.btn-red:hover { background: var(--red-dk); transform: translateY(-1px); }
.section-tag { display: inline-flex; align-items: center; gap: 7px; padding: 4px 12px; background: var(--red-lt); border: 1px solid rgba(255,1,1,.28); border-radius: 3px; font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }

/* ── TOPBAR ── */
.topbar { background: #0d0d0d; border-bottom: 1px solid rgba(255,255,255,.05); padding: 7px 5%; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 12.5px; }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.42); }
.topbar-left i { color: var(--red); font-size: 11px; }
.topbar-left a { color: rgba(255,255,255,.42); transition: color .2s; }
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; gap: 8px; }
.topbar-right a { width: 26px; height: 26px; border-radius: 4px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; font-size: 11.5px; color: rgba(255,255,255,.38); transition: all .2s; }
.topbar-right a:hover { background: var(--red); color: #fff; }
.hide-sm { display: none; }
@media (min-width: 900px) { .hide-sm { display: flex; } }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 900; background: var(--nav-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--nav-border); transition: var(--t); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; transition: filter .3s; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 8px 14px; font-size: 13.5px; font-weight: 500; color: var(--nav-text); border-radius: 6px; cursor: pointer; white-space: nowrap; transition: color .2s, background .2s; }
.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active { color: var(--red); background: var(--nav-hover); }
.nav-link i { font-size: 10px; transition: transform .3s; }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; background: var(--dd-bg); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .25s; z-index: 200; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: 13.5px; color: var(--dd-text); transition: background .15s, color .15s; }
.dropdown a:first-child { border-radius: 10px 10px 0 0; }
.dropdown a:last-child  { border-radius: 0 0 10px 10px; }
.dropdown a:hover { background: var(--dd-hover); color: var(--text); }
.dropdown a i { width: 16px; text-align: center; color: var(--red); font-size: 13px; }
.nav-cta { padding: 10px 24px; background: var(--red); border-radius: 6px; font-size: 13.5px; font-weight: 700; color: #fff; letter-spacing: .3px; border: none; cursor: pointer; white-space: nowrap; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--red-dk); transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 38px; height: 38px; border-radius: 8px; background: var(--toggle-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--toggle-color); font-size: 16px; transition: background .2s, color .2s, transform .15s; flex-shrink: 0; }
.theme-toggle:hover { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.08); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--nav-text); border-radius: 2px; transition: all .3s; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; top: 70px; background: var(--mob-bg); z-index: 850; overflow-y: auto; padding: 20px 5% 40px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--mob-text); border-bottom: 1px solid var(--border); transition: color .2s; }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mcta { display: block; margin-top: 20px; padding: 14px; text-align: center; background: var(--red); border-radius: 6px; font-weight: 700; font-size: 15px; color: #fff; border-bottom: none; }
.mob-theme-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.mob-theme-row span { font-size: 14px; font-weight: 500; color: var(--mob-text); }
.mob-toggle { width: 46px; height: 26px; border-radius: 13px; background: var(--red); border: none; cursor: pointer; position: relative; transition: background .3s; }
.mob-toggle::after { content: ''; position: absolute; width: 20px; height: 20px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: left .3s; }
html[data-theme="light"] .mob-toggle::after { left: 23px; }

/* ── HERO ── (always dark) */
.hero { background: #0a0a0a; padding: 100px 5% 90px; position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: center; border-bottom: 3px solid var(--red); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; top: -120px; right: -120px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,1,1,.08) 0%, transparent 65%); }
.hero-glow-2 { position: absolute; bottom: -100px; left: 20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,230,0,.04) 0%, transparent 65%); }
.hero-pixel { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 380px; opacity: .06; }
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; padding: 4px 12px; background: rgba(255,1,1,.12); border: 1px solid rgba(255,1,1,.3); border-radius: 3px; font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 22px; }
.hero-tag .dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }
.hero h1 { font-size: clamp(40px,6vw,76px); font-weight: 900; color: #fff; line-height: 1.02; letter-spacing: -2.5px; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p { font-size: clamp(15px,1.8vw,18px); font-weight: 300; color: rgba(255,255,255,.58); max-width: 580px; line-height: 1.8; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .outline { padding: 12px 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .3px; transition: border-color .2s, color .2s; }
.hero-btns .outline:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.h-stat .num { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.h-stat .num span { color: var(--red); }
.h-stat .lbl { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }

/* ── STATS STRIP ── (always red) */
.stats-strip { background: var(--red); padding: 28px 5%; }
.stats-row-strip { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; max-width: 1100px; margin: 0 auto; }
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.stat-lbl { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 88px 5%; transition: var(--t); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px,4vw,46px); font-weight: 800; color: var(--text); line-height: 1.1; letter-spacing: -1px; margin-bottom: 14px; }
.section-head h2 span { color: var(--red); }
.section-head p { font-size: 16px; font-weight: 300; color: var(--text-2); max-width: 600px; line-height: 1.8; }

/* ── ENTITY CARDS ── */
.entities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.entity-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 36px 28px; position: relative; overflow: hidden; transition: var(--t), transform .3s, box-shadow .3s; }
.entity-card:hover { border-color: rgba(255,1,1,.35); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.entity-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.entity-icon { width: 52px; height: 52px; border-radius: 10px; background: var(--red-lt); border: 1px solid rgba(255,1,1,.2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--red); margin-bottom: 20px; }
.entity-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.entity-card p { font-size: 14px; font-weight: 300; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.entity-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.entity-link:hover { gap: 10px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.svc-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; padding: 28px 24px; transition: var(--t), transform .3s; }
.svc-card:hover { border-color: rgba(255,1,1,.3); transform: translateY(-3px); }
.svc-icon { font-size: 22px; color: var(--red); margin-bottom: 14px; }
.svc-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-card p { font-size: 13.5px; font-weight: 300; color: var(--text-2); line-height: 1.7; }

/* ── PORTFOLIO ── */
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.pf { padding: 8px 18px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--text-2); background: transparent; cursor: pointer; transition: all .2s; }
.pf:hover, .pf.active { border-color: var(--red); color: var(--red); background: var(--red-lt); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.port-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; overflow: hidden; transition: var(--t), transform .3s, box-shadow .3s; }
.port-card:hover { border-color: rgba(255,1,1,.3); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.port-thumb { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.port-thumb i { font-size: 40px; color: rgba(255,255,255,.5); position: relative; z-index: 1; }
.port-tag { position: absolute; top: 12px; left: 12px; padding: 3px 9px; background: var(--red); border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; z-index: 2; }
.port-body { padding: 20px; }
.port-body h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.port-body p { font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65; }
.port-techs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.port-tech { padding: 3px 9px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 3px; font-size: 11px; font-weight: 500; color: var(--text-3); }

/* ── WHY US / FEATURES ── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why-card { display: flex; gap: 16px; padding: 24px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; transition: var(--t), border-color .2s; }
.why-card:hover { border-color: rgba(255,1,1,.25); }
.why-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--red-lt); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--red); flex-shrink: 0; }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.why-card p { font-size: 13.5px; font-weight: 300; color: var(--text-2); line-height: 1.7; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; overflow: hidden; text-align: center; transition: var(--t), transform .3s; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(255,1,1,.25); }
.team-photo { height: 180px; background: linear-gradient(135deg,#1a1a1a,#2a2a2a); display: flex; align-items: center; justify-content: center; font-size: 48px; font-weight: 800; color: rgba(255,255,255,.2); }
.team-body { padding: 20px; }
.team-name { font-size: 16px; font-weight: 700; color: var(--text); }
.team-role { font-size: 12px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: .8px; margin: 4px 0 8px; }
.team-bio  { font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65; }

/* ── MEDIA SECTION (always dark) ── */
.media-section { background: #0d0d0d !important; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.t-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; padding: 28px 24px; transition: var(--t); }
.t-card .stars { color: var(--yellow); font-size: 13px; margin-bottom: 14px; }
.t-card blockquote { font-size: 14.5px; font-weight: 300; color: var(--text-2); line-height: 1.78; font-style: italic; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-av { width: 36px; height: 36px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; }
.t-name { font-size: 14px; font-weight: 600; color: var(--text); }
.t-co   { font-size: 12px; color: var(--text-3); }

/* ── CTA BAND (always red) ── */
.cta-band { background: var(--red) !important; padding: 70px 5%; text-align: center; }
.cta-band h2 { font-size: clamp(26px,4vw,44px); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -1px; }
.cta-band p  { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-band .btn-white { padding: 14px 36px; background: #fff; border-radius: 4px; font-size: 14px; font-weight: 700; color: var(--red); letter-spacing: .3px; transition: transform .2s, box-shadow .2s; display: inline-block; }
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.contact-info p  { font-size: 14.5px; font-weight: 300; color: var(--text-2); line-height: 1.8; margin-bottom: 28px; }
.c-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.c-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--red-lt); border: 1px solid rgba(255,1,1,.2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--red); flex-shrink: 0; }
.c-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 3px; }
.c-val { font-size: 14px; font-weight: 500; color: var(--text); }
.c-val a { color: var(--text); transition: color .2s; }
.c-val a:hover { color: var(--red); }

/* Contact form */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 36px; }
.contact-form h4 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--text-3); }
.fg input, .fg select, .fg textarea { padding: 11px 14px; background: var(--input-bg); border: 1px solid var(--input-brd); border-radius: 6px; font-size: 14px; color: var(--input-txt); font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-3); }
.fg select option { background: var(--bg); }
.fg textarea { height: 110px; resize: vertical; }
.btn-submit { width: 100%; padding: 14px; background: var(--red); border: none; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: .5px; cursor: pointer; transition: background .2s, transform .15s; }
.btn-submit:hover { background: var(--red-dk); transform: translateY(-1px); }
#formMsg { margin-top: 12px; font-size: 13.5px; }

/* ── FOOTER (always dark) ── */
footer { background: #1a1a1a; padding: 60px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.42); line-height: 1.8; margin: 16px 0 24px; }
.f-socials { display: flex; gap: 8px; }
.f-socials a { width: 34px; height: 34px; border-radius: 5px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.38); transition: all .2s; }
.f-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.26); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.42); transition: color .2s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-bottom .hi { color: var(--red); }

/* ── SHARED PAGE ELEMENTS ── */
.results-header { margin-bottom: 20px; font-size: 14px; color: var(--text-2); }
.results-header strong { color: var(--text); }
.clear-filter { margin-left: 12px; color: var(--red); font-weight: 600; font-size: 13px; }
.no-posts { text-align: center; padding: 60px 20px; }
.no-posts i { font-size: 48px; color: var(--text-3); margin-bottom: 16px; display: block; }
.no-posts h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.no-posts p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pag-btn { width: 38px; height: 38px; border-radius: 6px; border: 1px solid var(--border); background: transparent; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--text-2); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
a.pag-btn { text-decoration: none; }
.pag-btn.active, .pag-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-lt); }
.pag-btn.arrow { font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .entities-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .entities-grid, .services-grid, .portfolio-grid, .testimonials-grid, .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
  .hero { min-height: auto; padding: 70px 5% 60px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1.5px; }
  .hero-stats { gap: 24px; }
}
