/* ═══════════════════════════════════════════
   SIRM – Global Stylesheet
   wwwroot/css/sirm.css
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, svg { display: block; max-width: 100%; }

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds */
  --bg:        #060b18;
  --bg2:       #080f1e;
  --bg3:       #07101e;
  --panel:     #0a1020;
  --border:    #1a3050;

  /* Glass */
  --glass:          rgba(255,255,255,0.04);
  --glass-border:   rgba(255,255,255,0.10);
  --glass-hover:    rgba(255,255,255,0.07);

  /* Accent */
  --teal:      #00c8e0;
  --teal2:     #00e5ff;
  --teal-dim:  rgba(0,200,224,0.12);
  --cyan:      #00e5ff;
  --cyan-soft: rgba(0,229,255,0.12);
  --cyan-border: rgba(0,229,255,0.25);
  --gold:      #f0a500;

  /* Type */
  --white:     #ffffff;
  --muted:     rgba(255,255,255,0.55);
  --muted2:    rgba(255,255,255,0.25);
  --grey:      #7a9ab5;

  /* Fonts */
  --font-head: 'Space Grotesk', 'Exo 2', sans-serif;
  --font-ui:   'Space Grotesk', 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:     8px;
  --transition: 0.22s ease;
}

/* ── BASE ── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
a { color: var(--teal2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── TYPOGRAPHY HELPERS ── */
.heading-xl  { font-size: clamp(36px, 5.5vw, 64px); font-weight: 700; letter-spacing: -0.5px; }
.heading-lg  { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; }
.heading-md  { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }
.text-teal   { color: var(--teal2); font-style: normal; }
.text-grey   { color: var(--grey); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.cyan        { color: var(--cyan); }
.sg          { font-family: var(--font-head); }

/* ── EYEBROW / CHIP ── */
.eyebrow,
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
/* Pulse dot on eyebrow only */
.eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,229,255,.4); }
  50%      { opacity: .6; box-shadow: 0 0 0 6px rgba(0,229,255,0); }
}

/* ── LAYOUT ── */
.section {
  padding: 88px 52px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p,
.section-sub     { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 500px; margin-left: auto; margin-right: auto; }
.section-rule    { border: none; border-top: 1px solid var(--glass-border); margin-bottom: 56px; }
.bg-alt          { background: var(--bg2); padding: 88px 0; }
.mx-auto         { margin-left: auto; margin-right: auto; }
.centered        { text-align: center; margin-bottom: 56px; }

/* ── SECTION HEADINGS ── */
.sec-title {
  font-family: var(--font-head); font-size: clamp(26px, 4vw, 36px);
  font-weight: 700; line-height: 1.15; margin: 0 0 14px;
}
.sec-sub {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 500px; margin-bottom: 36px;
}
.svc-header { margin-bottom: 40px; text-align: center; }
.svc-header .sec-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  padding: 12px 26px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline,
.btn-ghost-border {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 600; font-size: 13px;
  padding: 12px 26px; border-radius: 8px; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover,
.btn-ghost-border:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: var(--white); }

.btn-solid,
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
  padding: 12px 26px; border-radius: 8px; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
  background: var(--cyan);
  color: var(--bg);
  border: none;
}
.btn-solid:hover,
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 13px; text-decoration: none;
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--white); }

/* ── ICON BOX ── */
.icon-box {
  width: 40px; height: 40px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
  color: var(--cyan);
}
.icon-box svg { width: 20px; height: 20px; }
.icon-box i   { font-size: 17px; }

/* ── CARD ── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color var(--transition), background var(--transition);
}
.card:hover { border-color: rgba(0,229,255,0.25); background: rgba(0,229,255,0.03); }
.card.text-center { text-align: center; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,11,24,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 52px;
  display: flex; align-items: center;
  height: 62px; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: auto; color: var(--white);
}
.nav-logo-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: 18px; letter-spacing: 0.08em; line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-family: var(--font-ui); font-weight: 500; font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--teal2); }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: ' ▾'; font-size: 10px; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(8,15,30,0.95); border: 1px solid var(--glass-border);
  border-radius: 10px; min-width: 160px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5); z-index: 200;
  backdrop-filter: blur(16px);
}
.has-drop:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown a {
  display: block; padding: 10px 16px; font-size: 13px;
  color: var(--muted); border-radius: 0; background: transparent;
}
.dropdown a:hover { background: rgba(0,229,255,0.06); color: var(--white); }

.nav-btns { display: flex; gap: 10px; margin-left: 24px; }
/* Main nav CTA */
.nav-cta {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 8px;
  background: var(--cyan); color: var(--bg);
  border: none; cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: all var(--transition);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: rgba(6,11,24,0.95);
  border-top: 1px solid var(--glass-border);
  padding: 64px 52px 28px;
}
.footer-inner  {}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-logo-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: 16px; letter-spacing: 0.08em; color: var(--white);
}
.footer-logo-text span { color: var(--teal2); }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 220px; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-ui); font-weight: 700;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.footer-col a,
.footer-link-btn {
  display: block; font-size: 13px; color: var(--muted);
  text-decoration: none; margin-bottom: 8px; cursor: pointer;
  transition: color var(--transition);
  background: none; border: none; text-align: left; padding: 0;
  font-family: var(--font-body);
}
.footer-col a:hover,
.footer-link-btn:hover { color: var(--teal2); }
.footer-email { font-size: 12px !important; }
.social-links { display: flex; gap: 10px; margin-bottom: 10px; }
.social-links a {
  width: 32px; height: 32px;
  border: 1px solid var(--glass-border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); margin-bottom: 0;
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--cyan); color: var(--teal2); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
}
.footer-bottom p,
.footer-bottom a { font-size: 12px; color: var(--muted); }
.footer-bottom a:hover { color: var(--teal2); }

/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(4,8,18,0.88);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: rgba(8,15,30,0.97);
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 40px;
  width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: slideUp 0.28s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  border: 1px solid var(--glass-border); border-radius: 8px;
  background: transparent; color: var(--muted); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.modal-close:hover { border-color: var(--cyan); color: var(--teal2); }
.modal-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal2); margin-bottom: 10px;
}
.modal-tag i { font-size: 14px; }
.modal h2 { font-size: 28px; line-height: 1.2; margin-bottom: 8px; }
.modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); border-radius: 8px;
  padding: 12px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--cyan); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: ''; pointer-events: none;
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
}
.form-select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); border-radius: 8px;
  padding: 12px 40px 12px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none;
  cursor: pointer; transition: border-color var(--transition);
}
.form-select:focus { border-color: var(--cyan); }
.form-select option { background: #0a1628; color: var(--white); }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--cyan); color: var(--bg);
  border: none; border-radius: 8px;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px;
  cursor: pointer; transition: opacity var(--transition); margin-bottom: 20px;
}
.btn-submit:hover { opacity: .88; }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-error { font-size: 13px; color: #ff6b6b; margin-bottom: 12px; }
.modal-or    { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.modal-email { display: block; text-align: center; font-size: 13px; color: var(--teal2); margin-bottom: 20px; }
.social-row  { display: flex; justify-content: center; gap: 20px; }
.social-row a { color: var(--muted); transition: color var(--transition); }
.social-row a:hover { color: var(--teal2); }
@media (max-width: 600px) {
  .modal { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   HOME – HERO
════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 120px 52px 0; text-align: center; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(0,229,255,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0,80,180,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(0,160,220,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #060b18 0%, #080f1e 50%, #060b18 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 80%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.16em; color: var(--cyan); text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 6px 18px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(36px, 6vw, 64px);
  font-weight: 700; line-height: 1.04; letter-spacing: -1px; margin-bottom: 22px;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.8;
  max-width: 520px; margin: 0 auto 36px; font-weight: 300;
}
.hero p {
  font-size: 15px; color: var(--muted); max-width: 520px;
  margin: 0 auto 36px;
}
.hero-actions,
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}

/* Stats pill */
.hero-stats {
  display: flex; gap: 0; margin: 0 auto;
  max-width: 480px; width: 100%;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; overflow: hidden;
  backdrop-filter: blur(12px);
  position: relative; z-index: 2;
}
.hero-stat { flex: 1; padding: 18px 20px; text-align: center; border-right: 1px solid var(--glass-border); }
.hero-stat:last-child { border-right: none; }
.stat-n { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.stat-n em { color: var(--cyan); font-style: normal; }
.stat-l { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.02em; }

/* Browser mockup */
.hero-screen {
  position: relative; z-index: 2;
  width: 100%; max-width: 940px; margin: 44px auto 0;
}
.hero-screen::before {
  content: ""; position: absolute;
  bottom: -40px; left: 10%; right: 10%; height: 120px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.18) 0%, transparent 70%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.h-badge {
  position: absolute; z-index: 5;
  background: rgba(8,15,30,0.85);
  border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 10px 16px;
  backdrop-filter: blur(16px);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.h-badge.left  { left: -20px; top: 30%; }
.h-badge.right { right: -20px; top: 20%; }
.hb-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,229,255,0.12); border: 1px solid rgba(0,229,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 14px; flex-shrink: 0;
}
.hb-label { font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.hb-val   { font-family: var(--font-head); font-size: 13px; font-weight: 600; }
.live-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #22c55e;
  margin-right: 5px; animation: pulse 2s infinite;
}
.browser {
  background: rgba(10,16,32,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px 12px 0 0;
  overflow: hidden; position: relative; z-index: 1;
  backdrop-filter: blur(20px);
  box-shadow: 0 -1px 0 rgba(255,255,255,.06), 0 32px 64px rgba(0,0,0,0.5);
}
.b-chrome {
  height: 40px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; padding: 0 16px; gap: 7px;
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-dot.r { background: #ff5f57; } .b-dot.y { background: #ffbd2e; } .b-dot.g { background: #28ca42; }
.b-url {
  flex: 1; height: 22px; background: rgba(255,255,255,0.06);
  border-radius: 6px; margin: 0 14px;
  display: flex; align-items: center; padding: 0 12px;
  font-size: 11px; color: var(--muted); font-family: var(--font-body);
}
.b-body { display: grid; grid-template-columns: 190px 1fr; min-height: 300px; }.b-sidebar {
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 20px 14px; display: flex; flex-direction: column; gap: 5px;
}
.b-row { height: 28px; border-radius: 6px; display: flex; align-items: center; gap: 8px; padding: 0 10px; }
.b-row.on { background: rgba(0,229,255,0.1); }
.b-rdot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.b-rdot.c { background: var(--cyan); }
.b-rline  { height: 5px; border-radius: 2px; background: rgba(255,255,255,0.1); flex: 1; }
.b-rline.c { background: rgba(0,229,255,0.45); }
.b-main { padding: 28px 28px 20px; display: flex; flex-direction: column; gap: 20px; }
.b-hero-r { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.b-text { display: flex; flex-direction: column; gap: 8px; }
.bl { border-radius: 3px; }
.bl-h  { height: 12px; background: rgba(255,255,255,.7); }
.bl-h2 { height: 12px; background: rgba(255,255,255,.7); width: 78%; }
.bl-m  { height: 6px; background: rgba(255,255,255,.18); width: 88%; }
.bl-s  { height: 6px; background: rgba(255,255,255,.12); width: 65%; }
.b-btns { display: flex; gap: 8px; margin-top: 6px; }
.b-btn1 { height: 24px; border-radius: 6px; width: 86px; background: var(--cyan); }
.b-btn2 { height: 24px; border-radius: 6px; width: 64px; background: transparent; border: 1px solid rgba(255,255,255,.18); }
.b-img-box {
  background: rgba(255,255,255,.04); border-radius: 10px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.07);
}
.b-img-inner {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 24px;
}
.b-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.b-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 12px;
}
.bc-ico { width: 20px; height: 20px; border-radius: 4px; background: rgba(0,229,255,.1); border: 1px solid rgba(0,229,255,.2); margin-bottom: 7px; }
.bc-l  { height: 4px; border-radius: 2px; background: rgba(255,255,255,.45); margin-bottom: 4px; }
.bc-ls { height: 4px; border-radius: 2px; background: rgba(255,255,255,.16); width: 65%; }

/* ── STRIPE / INTRO BAND ── */
.stripe {
  background: rgba(7,16,30,0.9);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 52px; text-align: center;
}
.stripe-heading { font-size: 20px; margin-bottom: 8px; }
.stripe p { font-size: 14px; color: var(--muted); max-width: 680px; margin: 0 auto; }

/* ════════════════════════════════════════
   HOME – SERVICES GRID
════════════════════════════════════════ */
.svc-section {
  padding: 88px 52px; position: relative; overflow: hidden;
}
.svc-section::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid,
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.service-card,
.svc-card {
  background: var(--bg); padding: 28px;
  transition: background var(--transition);
  display: flex; flex-direction: column;
}
.service-card .icon-box,
.svc-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--cyan); font-size: 17px;
  overflow: hidden;
}
.svc-ico img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card h3,
.svc-card .svc-t { font-family: var(--font-head); font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.service-card p,
.svc-card .svc-d { font-size: 12px; color: var(--muted); line-height: 1.65; flex: 1; }
.svc-card.featured {
  background: linear-gradient(135deg, rgba(0,229,255,0.07) 0%, rgba(0,229,255,0.02) 100%);
}

/* ════════════════════════════════════════
   HOME – WHY CHOOSE ME
════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.why-card:hover { border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.03); transform: translateY(-2px); }
.why-card .icon-box { margin: 0 auto 16px; }
.why-card h3 { font-size: 15px; margin-bottom: 10px; }
.why-card p  { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════
   HOME – PROCESS STEPS
════════════════════════════════════════ */
.process-section {
  padding: 88px 52px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.process-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.process-inner { position: relative; z-index: 1; }
.process-inner hr, .process-inner .section-rule { display: none; }
.steps-row {
  display: grid; grid-template-columns: repeat(4,1fr); position: relative;
}
.steps-row::before {
  content: ""; position: absolute;
  top: 26px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-border), var(--cyan-border), transparent);
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--cyan); background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.25); backdrop-filter: blur(4px);
}
.step-num.active {
  background: var(--cyan); color: var(--bg); border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,0.35);
}
.step-t { font-family: var(--font-head); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.step-d { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── LEGACY step-card (used in existing About views) ── */
.how-work-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.step-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px 18px; text-align: center;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover { border-color: rgba(0,229,255,0.4); transform: translateY(-2px); }
.step-card .step-num {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: auto; height: auto; border-radius: 10px;
  background: var(--cyan); color: var(--bg);
  font-family: var(--font-ui); font-weight: 700; font-size: 11px;
  padding: 2px 10px; box-shadow: none;
}
.step-card h3 { font-size: 14px; margin-bottom: 8px; }
.step-card p  { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section {
  padding: 88px 52px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg3) 100%);
}
.faq-section::before {
  content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.faq-inner   { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.faq-inner > p { font-size: 14px; color: var(--muted); margin: 8px 0 32px; }
.faq-inner hr, .faq-inner .section-rule { display: none; }
.faq-list    { text-align: left; max-width: 760px; margin: 0 auto; }
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  transition: all var(--transition);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-q-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.5; transition: color var(--transition); }
/* div variant used in Home.cshtml BlockList FAQ */
div.faq-q {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85); line-height: 1.5;
  transition: color var(--transition);
}
.faq-item:hover div.faq-q { color: var(--white); }
/* button variant used in existing _FaqSection */
button.faq-q {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 20px 0;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  background: transparent; color: rgba(255,255,255,0.85);
  border: none; cursor: pointer; text-align: left;
  transition: color var(--transition);
}
button.faq-q:hover { color: var(--white); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(0,229,255,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 11px; font-family: var(--font-ui);
}
.faq-answer,
.faq-a {
  font-size: 13px; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.3s;
}
.faq-item.open .faq-answer { max-height: 220px; padding-top: 12px; }
.faq-a[hidden] { display: none; }
/* legacy faq-a visible state */
.faq-a:not([hidden]) { padding: 0 0 16px; }
.faq-chevron { margin-left: auto; color: rgba(0,229,255,0.5); font-size: 16px; flex-shrink: 0; transition: transform var(--transition), color var(--transition); }
.faq-item:hover .faq-chevron { color: var(--cyan); }
.faq-item.open .faq-chevron,
button.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(90deg); color: var(--cyan); }
.faq-left { flex: 1; }
.faq-item.cta {
  margin-top: 16px; padding: 18px 22px;
  background: rgba(0,229,255,0.06); border: 1px solid rgba(0,229,255,0.22);
  border-radius: 10px;
}
.faq-item.cta .faq-q-text { color: var(--cyan); }
.still-q span[aria-hidden] { color: var(--teal); font-size: 16px; }
.faq-item--still {
  background: var(--glass); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  margin-top: 10px; border: 1px solid var(--glass-border);
}
.faq-cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 24px; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-hero,
.about-section {
  position: relative;
  padding: 88px 52px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(0,60,140,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 0%, rgba(0,30,80,0.18) 0%, transparent 55%),
    #04090f;
  overflow: hidden;
}
.about-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,229,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 0%, transparent 75%);
}
.about-inner { position: relative; z-index: 1; }
.svc-inner   {}
.about-header { text-align: center; margin-bottom: 64px; }
.about-header p { font-size: 14px; color: var(--muted); max-width: 520px; margin: 12px auto 0; line-height: 1.8; font-weight: 300; }
.hero-intro { font-size: 15px; color: var(--muted); max-width: 640px; margin-bottom: 16px; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1200px; margin: 0 auto; }
.team-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.team-card:hover { border-color: rgba(0,229,255,0.25); background: rgba(0,229,255,0.03); }
.team-photo { position: relative; height: 420px; overflow: hidden; }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  display: block; transition: transform 0.5s;
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-photo::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(6,11,24,0.95) 0%, transparent 100%);
}
.team-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px 28px; }
.about-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; }
.about-role { font-size: 12px; color: var(--cyan); margin-top: 3px; letter-spacing: 0.03em; }
.team-body { padding: 24px 28px 28px; }
.team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tag { font-size: 11px; border: 1px solid rgba(0,229,255,0.22); color: rgba(0,229,255,0.85); padding: 4px 12px; border-radius: 100px; background: rgba(0,229,255,0.06); letter-spacing: 0.02em; }

/* Legacy bio-card */
.bio-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 36px 40px; margin-top: 48px;
  display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center;
  max-width: 720px;
}
.about-avatar {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 32px rgba(0,229,255,0.2);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2);
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bio-text h2 { font-size: 20px; margin-bottom: 12px; }
.bio-text p  { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* Tech tags */
.tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0; }
.ttag, .tech-badge {
  font-size: 11px; border: 1px solid rgba(0,229,255,0.22);
  color: rgba(0,229,255,0.85); padding: 4px 12px; border-radius: 100px;
  background: rgba(0,229,255,0.06); letter-spacing: 0.02em;
  transition: all var(--transition);
}
.ttag:hover, .tech-badge:hover { background: rgba(0,229,255,0.12); border-color: rgba(0,229,255,0.4); }
.tech-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* Philosophy items */
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.phil {
  padding: 16px 18px; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
}
.phil:hover { border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.05); }
.phil-ico { color: var(--cyan); font-size: 18px; margin-bottom: 8px; }
.phil-t { font-family: var(--font-head); font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.phil-d { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* Mini stats row */
.about-stats-row {
  display: flex; gap: 0; margin-top: 28px;
  border: 1px solid var(--glass-border); border-radius: 12px;
  overflow: hidden; background: var(--glass); backdrop-filter: blur(8px);
}
.mini-s { flex: 1; padding: 18px 0; text-align: center; border-right: 1px solid var(--glass-border); }
.mini-s:last-child { border-right: none; }
.mini-n { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--cyan); }
.mini-l { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════ */
.services-hero,
.faq-page-hero {
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,229,255,0.08) 0%, transparent 60%), var(--bg2);
  border-bottom: 1px solid var(--glass-border);
  padding: 72px 52px; text-align: center;
}
.services-hero p,
.faq-page-hero p { font-size: 15px; color: var(--muted); max-width: 560px; margin: 12px auto 0; }

.why-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-item { text-align: center; }
.icon-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.why-item h3 { font-size: 15px; margin-bottom: 8px; }
.why-item p  { font-size: 12px; color: var(--muted); }

.all-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.svc-row-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.svc-row-card:hover { border-color: rgba(0,229,255,0.4); background: rgba(0,229,255,0.03); transform: translateY(-2px); }
.svc-row-card .icon-box { margin: 0; flex-shrink: 0; }
.svc-row-card h3 { font-size: 15px; margin-bottom: 4px; }
.svc-row-card p  { font-size: 12px; color: var(--muted); }

.cta-box {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 40px 48px;
  display: flex; align-items: flex-start; gap: 32px; margin-top: 48px;
}
.cta-box .icon-box { flex-shrink: 0; margin: 0; width: 60px; height: 60px; }
.cta-box h3 { font-size: 22px; margin-bottom: 8px; }
.cta-box p  { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

/* ════════════════════════════════════════
   PORTFOLIO PAGE
════════════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.port-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 20px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.port-card:hover { border-color: rgba(0,229,255,0.4); background: rgba(0,229,255,0.03); transform: translateY(-2px); }
.port-card--placeholder { opacity: 0.7; }
.port-thumb {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.port-thumb img { width: 100%; height: 100%; object-fit: cover; }
.port-thumb svg { width: 28px; height: 28px; }
.port-info h3    { font-size: 15px; margin-bottom: 2px; }
.port-sub        { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.port-desc       { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }
.port-feat       { font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }

/* Work preview grid — see HOME – WORK PREVIEW section below */
.wp-card:hover .wp-thumb img { transform: scale(1.04); }
.wp-info { padding: 18px 20px; }
.wp-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; }

.btn-sm {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-weight: 700; font-size: 12px; letter-spacing: 0.05em;
  padding: 5px 14px; border-radius: 6px;
  border: 1px solid var(--glass-border); background: transparent; color: var(--muted);
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.btn-sm:hover { border-color: var(--cyan); color: var(--teal2); }
.btn-sm:disabled { opacity: 0.4; cursor: default; }
.port-divider { border: none; border-top: 1px solid var(--glass-border); max-width: 1200px; margin: 40px auto 0; }
.port-cta-bar { text-align: center; padding: 40px; }
.port-cta-bar h3 { font-size: 20px; margin-bottom: 16px; }

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-badge {
  display: inline-block; background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.22); color: var(--cyan);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 22px;
}

/* ════════════════════════════════════════
   PORTFOLIO – WORK CTA
════════════════════════════════════════ */
.work-cta {
  padding: 72px 52px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #060b18 0%, #07101e 50%, #060b18 100%);
}
.work-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,229,255,0.07) 0%, transparent 65%);
}
.work-cta::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.work-cta-inner { position: relative; z-index: 1; }
.work-cta h2 {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; margin-bottom: 16px; line-height: 1.15;
}
.work-cta p {
  font-size: 15px; color: var(--muted); margin-bottom: 32px;
  font-weight: 300; max-width: 400px; margin-left: auto; margin-right: auto;
}

.cta-section {
  padding: 100px 52px; text-align: center;
  position: relative; overflow: hidden; background: var(--bg);
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,229,255,0.08) 0%, transparent 65%);
}
.cta-section::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-h { font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.cta-p { font-size: 15px; color: var(--muted); margin-bottom: 36px; max-width: 440px; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   PRIVACY PAGE
════════════════════════════════════════ */
.privacy-content { max-width: 720px; margin: 0 auto; padding: 64px 40px; }
.privacy-content h1 { font-size: 38px; margin-bottom: 6px; }
.eff-date  { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.privacy-content > p,
.privacy-content p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.privacy-content h2 { font-size: 18px; color: var(--teal2); margin: 32px 0 10px; }
.privacy-content ul { padding-left: 20px; margin: 8px 0 12px; }
.privacy-content li { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.privacy-content a  { color: var(--teal2); }

/* ════════════════════════════════════════
   FADE-UP ANIMATION (optional JS hook)
════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 72px 52px; }
  .hero { padding: 80px 52px 0; }
  .process-section,
  .svc-section,
  .work-cta,
  .faq-section,
  .work-preview,
  .cta-section,
  .services-hero,
  .faq-page-hero,
  .about-section,
  .about-hero { padding-left: 52px; padding-right: 52px; }
  .site-footer { padding-left: 52px; padding-right: 52px; }
  .site-nav { padding: 0 52px; }
}
@media (max-width: 960px) {
  .work-preview { padding: 64px 52px; }
  .work-preview-grid { grid-template-columns: 1fr 1fr; }
  .work-preview-header { display: block; }
}
@media (max-width: 900px) {
  .services-grid,
  .svc-grid,
  .grid-4,
  .how-work-grid,
  .why-row,
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .h-badge { display: none; }
}
@media (max-width: 768px) {
  .section,
  .hero,
  .process-section,
  .svc-section,
  .work-cta,
  .faq-section,
  .work-preview,
  .cta-section,
  .services-hero,
  .faq-page-hero,
  .about-section,
  .about-hero { padding-left: 32px; padding-right: 32px; }
  .site-footer { padding-left: 32px; padding-right: 32px; }
  .site-nav { padding: 0 32px; }
}
@media (max-width: 680px) {
  /* sections */
  .svc-section,
  .work-cta { padding: 64px 32px; }
  .section,
  .process-section,
  .faq-section,
  .work-preview,
  .cta-section,
  .services-hero,
  .faq-page-hero,
  .about-section,
  .about-hero { padding-left: 32px; padding-right: 32px; }
  .site-footer { padding-left: 32px; padding-right: 32px; }

  /* hero */
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 48px; padding-left: 32px; padding-right: 32px; }
  .hero h1 { font-size: clamp(28px, 8vw, 44px); }
  .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 22px; }
  .hero-screen { display: none; }
  .hero-actions,
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px; }
  .hero-actions a,
  .hero-actions button { text-align: center; justify-content: center; }
  .hero-stats { max-width: 100%; }
  .hero-stat { padding: 14px 10px; }
  .stat-n { font-size: 22px; }
  .stat-l { font-size: 10px; line-height: 1.3; }

  /* typography */
  .sec-title { font-size: clamp(22px, 6vw, 30px); }

  /* process — go 1-col and switch to horizontal step layout */
  .steps-row { grid-template-columns: 1fr; gap: 24px; }
  .step { display: flex; align-items: flex-start; gap: 18px; text-align: left; padding: 0; }
  .step-num { flex-shrink: 0; width: 44px; height: 44px; font-size: 13px; }
  .step-t,
  .step-d { text-align: left; }

  /* grids */
  .grid-3,
  .why-grid,
  .all-services-grid,
  .portfolio-grid,
  .work-preview-grid,
  .services-grid,
  .svc-grid { grid-template-columns: 1fr; }
  .bio-card { grid-template-columns: 1fr; text-align: center; }
  .cta-box  { flex-direction: column; }

  /* cta */
  .cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-btns a { text-align: center; justify-content: center; }

  /* nav */
  .nav-links,
  .nav-btns { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(6,11,24,0.97); border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px; gap: 4px;
    backdrop-filter: blur(20px);
  }

  /* footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .work-preview-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* team */
  .team-photo { height: 300px; }

  /* work cards */
  .wp-thumb { height: 200px; }
}

/* ── 480px – small mobile ── */
@media (max-width: 480px) {
  .site-nav { padding: 0 20px; }
  .hero { padding-left: 20px; padding-right: 20px; padding-top: 64px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(24px, 8.5vw, 34px); letter-spacing: -0.5px; margin-bottom: 14px; }
  .hero-eyebrow { font-size: 9px; padding: 5px 14px; margin-bottom: 18px; }
  .hero-sub { margin-bottom: 16px; }
  .hero-actions, .hero-btns { margin-bottom: 20px; }
  .hero-stat { padding: 10px 6px; }
  .stat-n { font-size: 18px; }
  .stat-l { font-size: 9px; line-height: 1.3; }
  .sec-title { font-size: clamp(20px, 6.5vw, 26px); }
  .section,
  .about-section,
  .process-section,
  .faq-section,
  .work-preview,
  .cta-section,
  .svc-section,
  .work-cta,
  .about-hero,
  .services-hero,
  .faq-page-hero { padding-left: 20px; padding-right: 20px; }
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .team-photo { height: 260px; }
  .wp-thumb { height: 180px; }
  .svc-card { padding: 20px; }
  .svc-ico { width: 36px; height: 36px; margin-bottom: 12px; }
  .cta-h { font-size: clamp(20px, 7vw, 28px); }
  .cta-p { font-size: 14px; }
  div.faq-q { font-size: 13px; }
  .step-num { width: 40px; height: 40px; font-size: 12px; }
  .work-preview-header .sec-title { font-size: clamp(20px, 6vw, 26px); }
}

/* ════════════════════════════════════════
   PORTFOLIO – PAGE HEADER
════════════════════════════════════════ */
.page-header {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 60% 40%;
  height: calc(100vh - 62px); max-height: 960px; min-height: 640px;
}
.page-header::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 50%, rgba(0,229,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 90%, rgba(0,80,180,0.07) 0%, transparent 55%);
}
.page-header::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 100% at 20% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 20% 50%, black, transparent 80%);
}
.ph-inner {
  position: relative; z-index: 1;
  padding: 104px 52px 96px;
  display: flex; flex-direction: column; justify-content: center;
}
.page-header h1 {
  font-family: var(--font-head); font-size: clamp(60px, 6.5vw, 84px); font-weight: 700;
  line-height: 1.04; margin-bottom: 16px; letter-spacing: -1.5px;
}
.page-header h1 em { color: var(--cyan); font-style: normal; }
.page-header p { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 460px; font-weight: 300; }
.ph-stats { display: flex; gap: 56px; margin-top: 56px; }
.ph-stat-n { font-family: var(--font-head); font-size: 38px; font-weight: 700; }
.ph-stat-n em { color: var(--cyan); font-style: normal; }
.ph-stat-l { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Scrolling reel */
.ph-reel {
  position: relative; overflow: hidden;
  background: rgba(0,0,0,0.25);
  border-left: 1px solid rgba(255,255,255,0.07);
}
.ph-reel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, #060b18, transparent); z-index: 2; pointer-events: none;
}
.ph-reel::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, #060b18, transparent); z-index: 2; pointer-events: none;
}
.ph-reel-track {
  display: flex; flex-direction: column; gap: 10px; padding: 10px;
  animation: reelScroll 32s linear infinite;
}
.ph-reel-track:hover { animation-play-state: paused; }
@keyframes reelScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.reel-thumb {
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; transition: border-color var(--transition);
  min-height: 120px; background: var(--bg2);
  display: flex; align-items: flex-end;
}
.reel-thumb:hover { border-color: rgba(0,229,255,0.35); }
.reel-thumb img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
.reel-thumb:hover img { transform: scale(1.03); }
.reel-thumb--placeholder { min-height: 140px; }
.reel-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(6,11,24,0.92), transparent);
  font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--white);
}
.reel-cat { font-size: 9px; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }


/* ════════════════════════════════════════
   PORTFOLIO – FILTER BAR
════════════════════════════════════════ */
.filter-bar {
  position: sticky; top: 62px; z-index: 100;
  background: rgba(6,11,24,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.filter-bar-inner {
  padding: 0 52px;
  display: flex; align-items: center; gap: 0;
  min-width: max-content;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  font-size: 12px; font-family: var(--font-body);
  padding: 18px 22px; border: none;
  border-bottom: 2px solid transparent;
  background: transparent; color: rgba(255,255,255,0.65);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  flex-shrink: 0;
}
.filter-btn:hover { color: var(--white); }
.filter-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); }


/* ════════════════════════════════════════
   PORTFOLIO – PROJECT ROWS
════════════════════════════════════════ */
#projectList { padding: 0 52px 60px; }
.project-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  min-height: 440px; position: relative;
  transition: background var(--transition);
}
.project-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.project-row:hover { background: rgba(0,229,255,0.018); }
.project-row.reverse { direction: rtl; }
.project-row.reverse > * { direction: ltr; }

/* Image side */
.pr-image {
  position: relative; overflow: hidden;
  background: var(--bg2); min-height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.pr-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  display: block; position: absolute; inset: 0;
  transition: transform 0.7s ease;
}
.project-row:hover .pr-image img { transform: scale(1.03); }
.pr-image-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 440px;
}
.pr-num {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: 0.14em;
  background: rgba(6,11,24,0.8); border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 13px; border-radius: 100px; backdrop-filter: blur(10px);
}
.pr-hover {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(6,11,24,0.6); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.project-row:hover .pr-hover { opacity: 1; }
.pr-visit {
  background: var(--cyan); color: var(--bg);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 12px 28px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none;
  transform: translateY(10px); transition: transform var(--transition);
}
.project-row:hover .pr-visit { transform: translateY(0); }

/* Text side */
.pr-text {
  padding: 44px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.pr-text::before {
  content: ""; position: absolute; top: 10%; bottom: 10%; left: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,229,255,0.35) 30%, rgba(0,229,255,0.35) 70%, transparent);
}
.project-row.reverse .pr-text::before { left: auto; right: 0; }
.pr-cat {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px; font-weight: 500;
}
.pr-name {
  font-family: var(--font-head); font-size: 28px; font-weight: 700;
  line-height: 1.15; margin-bottom: 14px;
}
.pr-desc {
  font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.8;
  font-weight: 300; margin-bottom: 24px; max-width: 420px;
}
.pr-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 32px; }
.ptag {
  font-size: 11px; border: 1px solid rgba(0,229,255,0.2);
  color: rgba(0,229,255,0.8); padding: 4px 12px; border-radius: 100px;
  background: rgba(0,229,255,0.06);
}
.pr-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15); padding: 10px 24px;
  border-radius: 8px; background: var(--glass); backdrop-filter: blur(8px);
  width: fit-content; transition: all var(--transition);
}
.pr-link:hover { border-color: rgba(0,229,255,0.4); background: rgba(0,229,255,0.07); color: var(--cyan); }
.pr-link i { font-size: 14px; }


/* ════════════════════════════════════════
   HOME – WORK PREVIEW
════════════════════════════════════════ */
.work-preview {
  padding: 88px 52px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #060b18 0%, #07101e 50%, #060b18 100%);
}
.work-preview::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 80%);
}
.work-preview-inner { position: relative; z-index: 1; }
.work-preview-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; flex-wrap: wrap; gap: 16px;
}
.work-preview-header .sec-title { margin-bottom: 6px; }
.work-preview-header p { font-size: 14px; color: var(--muted); max-width: 420px; line-height: 1.7; font-weight: 300; }

.view-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--cyan); text-decoration: none;
  border: 1px solid rgba(0,229,255,0.25); padding: 9px 20px; border-radius: 8px;
  background: rgba(0,229,255,0.07); backdrop-filter: blur(8px);
  transition: all var(--transition); white-space: nowrap;
}
.view-all:hover { background: rgba(0,229,255,0.14); border-color: rgba(0,229,255,0.45); color: var(--white); }

.work-preview-grid {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px; padding-top: 4px;
}
.wp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.wp-card:hover { border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.03); transform: translateY(-4px); }
.wp-thumb { position: relative; overflow: hidden; background: rgba(255,255,255,0.03); height: 220px; }
.wp-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block; transition: transform 0.5s;
}
.wp-card:hover .wp-thumb img { transform: scale(1.04); }
.wp-overlay {
  position: absolute; inset: 0;
  background: rgba(6,11,24,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.wp-card:hover .wp-overlay { opacity: 1; }
.wp-overlay-btn {
  background: var(--cyan); color: var(--bg);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 9px 20px; border-radius: 7px;
  display: inline-flex; align-items: center; gap: 6px;
}
.wp-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2);
}
.wp-meta,
.wp-body {
  padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1;
}
.wp-cat {
  font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 5px; opacity: 0.8;
}
.wp-name {
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  line-height: 1.3; margin-bottom: 7px;
}
.wp-desc {
  font-size: 12px; color: var(--muted); line-height: 1.65; font-weight: 300;
  flex: 1; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.wp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.wp-tag {
  font-size: 10px; border: 1px solid rgba(0,229,255,0.20);
  color: rgba(0,229,255,0.75); padding: 2px 9px; border-radius: 100px;
  background: rgba(0,229,255,0.06);
}
.wp-tag:hover { background: rgba(0,229,255,0.12); border-color: rgba(0,229,255,0.4); }

/* work-preview responsive — must be after the base definition above */
@media (max-width: 960px) {
  .work-preview { padding: 64px 52px; }
  .work-preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .work-preview { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 680px) {
  .work-preview { padding-left: 32px; padding-right: 32px; }
  .work-preview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .work-preview { padding-left: 20px; padding-right: 20px; }
}

/* ════════════════════════════════════════
   PORTFOLIO – RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ph-inner { padding: 80px 52px 80px; }
  .filter-bar-inner { padding: 0 52px; }
  #projectList { padding: 0 52px 60px; }
  .pr-text { padding: 44px 40px; }
}
@media (max-width: 768px) {
  /* Page header: stack to single column */
  .page-header { grid-template-columns: 1fr; height: auto; min-height: auto; max-height: none; }
  .ph-reel { display: none; }
  .ph-inner { padding: 80px 32px 64px; }
  .page-header h1 { font-size: clamp(36px, 9vw, 60px); }
  .ph-stats { gap: 36px; margin-top: 40px; }

  /* Filter bar */
  .filter-bar-inner { padding: 0 20px; }
  .filter-btn { padding: 14px 14px; font-size: 12px; }

  /* Project rows: stack image on top, text below */
  #projectList { padding: 0 32px 48px; }
  .project-row { grid-template-columns: 1fr; min-height: auto; direction: ltr; }
  .project-row.reverse { direction: ltr; }
  .pr-image { min-height: 280px; height: 280px; }
  .pr-image-placeholder { min-height: 280px; }
  .pr-text { padding: 32px 28px; }
  .pr-text::before { display: none; }
  .pr-name { font-size: 22px; }
  .pr-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .ph-inner { padding: 64px 20px 52px; }
  .page-header h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1px; }
  .ph-stats { flex-direction: column; gap: 20px; margin-top: 32px; }
  .ph-stat-n { font-size: 30px; }
  .filter-bar-inner { padding: 0 16px; }
  #projectList { padding: 0 20px 40px; }
  .pr-image { min-height: 220px; height: 220px; }
  .pr-image-placeholder { min-height: 220px; }
  .pr-text { padding: 24px 20px; }
  .pr-name { font-size: 20px; }
}

/* ════════════════════════════════════════
   LARGE MONITORS (1400px+)
   Cap inner content width so layouts don't
   stretch across ultra-wide screens.
════════════════════════════════════════ */
.footer-inner {
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.svc-inner,
.process-inner,
.work-cta-inner,
.about-inner {
  max-width: 1280px; margin-left: auto; margin-right: auto;
}

@media (min-width: 1400px) {
  .hero { padding-left: 72px; padding-right: 72px; }
  .site-nav { padding: 0 72px; }
  .site-footer { padding-left: 72px; padding-right: 72px; }
  .process-section,
  .svc-section,
  .work-preview,
  .work-cta,
  .faq-section,
  .cta-section,
  .about-section,
  .about-hero,
  .services-hero,
  .faq-page-hero { padding-left: 72px; padding-right: 72px; }
  .filter-bar-inner { padding: 0 72px; }
  #projectList { padding: 0 72px 60px; }
  .ph-inner { padding: 104px 72px 96px; }
}

/* ════════════════════════════════════════
   MOBILE / TABLET PATCHES
════════════════════════════════════════ */

/* Stripe — missing responsive padding */
@media (max-width: 768px) {
  .stripe { padding: 40px 32px; }
}
@media (max-width: 480px) {
  .stripe { padding: 32px 20px; }
  .stripe-heading { font-size: 17px; }
}

/* About — philosophy grid collapses to 1-col on mobile */
@media (max-width: 680px) {
  .phil-grid { grid-template-columns: 1fr; }
}

/* About — stats row stacks vertically on small screens */
@media (max-width: 480px) {
  .about-stats-row { flex-direction: column; }
  .mini-s {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 20px;
  }
  .mini-s:last-child { border-bottom: none; }
}

/* Tech badges — tighten gap on mobile */
@media (max-width: 480px) {
  .tech-grid { gap: 8px; margin-top: 20px; }
}

/* Nav CTA buttons — shrink on tablet before they get hidden */
@media (max-width: 768px) and (min-width: 681px) {
  .nav-btns .btn { padding: 7px 14px; font-size: 12px; }
}

/* Footer brand description — remove fixed max-width on mobile */
@media (max-width: 680px) {
  .footer-brand-desc { max-width: 100%; }
  .footer-brand { text-align: center; }
  .footer-logo { justify-content: center; }
}

/* Work-cta section on mobile */
@media (max-width: 480px) {
  .work-cta { text-align: center; }
  .work-cta .cta-btns,
  .work-cta .hero-actions { align-items: center; }
}

/* FAQ font scaling below 480px */
@media (max-width: 480px) {
  .faq-q,
  button.faq-q { font-size: 13px; padding: 14px 0; }
  .faq-a { font-size: 13px; }
}

/* Portfolio port-cta-bar on mobile */
@media (max-width: 480px) {
  .port-cta-bar { padding: 32px 20px; }
  .port-cta-bar h3 { font-size: 17px; }
}

