/* ============================================================
   Auxium — Phone Systems Made Easy
   Stylesheet. Edit color tokens in :root to re-theme the site.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --indigo:        #2a2d7a;   /* primary brand */
  --indigo-700:    #23255f;
  --indigo-deep:   #181a45;   /* dark sections / overlays */
  --slate:         #53585b;   /* secondary / body neutral */
  --slate-soft:    #7a7f84;
  --accent:        #ff5800;   /* warm accent, used sparingly */

  /* Surfaces */
  --paper:    #ffffff;
  --paper-2:  #f5f6fa;        /* cool off-white */
  --ink:      #2b2d33;        /* primary text */
  --muted:    #6b7075;        /* secondary text */
  --line:     #e6e7ee;        /* hairlines / borders */

  /* Type */
  --font-head: "Roboto Condensed", "Arial Narrow", sans-serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 10px;
  --shadow: 0 18px 50px -18px rgba(24,26,69,.28);
  --shadow-sm: 0 6px 22px -12px rgba(24,26,69,.30);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.08; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }

/* ---------- Helpers ---------- */
.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 14px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); }
.section-head h2 {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px);
  color: var(--indigo);
}
.section-head p { color: var(--muted); font-size: 18px; margin-top: 16px; }
.section-head .rule { width: 64px; height: 3px; background: var(--accent); margin: 22px auto 0; border-radius: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 14px;
  padding: 15px 30px; border-radius: 8px; border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--indigo); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--indigo); border-color: var(--indigo); }
.btn-outline:hover { background: var(--indigo); color: #fff; transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--indigo-deep); color: rgba(255,255,255,.8);
  font-size: 13.5px; letter-spacing: .02em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; }
.topbar a { color: rgba(255,255,255,.8); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar .tb-left .sep { opacity: .4; }
.topbar .tb-social { display: flex; gap: 6px; }
.topbar .tb-social a {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.topbar .tb-social a:hover { background: var(--accent); color: #fff; }
.x-ico { width: .92em; height: .92em; fill: currentColor; display: block; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(24,26,69,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.brand img { height: 30px; width: auto; }
.menu { display: flex; align-items: center; gap: 4px; }
.menu a {
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 14px;
  color: var(--slate); padding: 10px 14px; border-radius: 6px; position: relative;
  white-space: nowrap;
  transition: color .2s;
}
.menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.menu a:hover, .menu a.active { color: var(--indigo); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 0; color: var(--indigo); font-size: 24px; padding: 8px; }

/* ---- Tweakable nav layout ---- */
.site-header[data-logo="off"] .brand { display: none; }
.nav { justify-content: flex-start; }
.brand { order: 0; }
.menu { order: 1; }
.nav-cta { order: 2; margin-left: 10px; }
.menu-toggle { order: 3; }
.site-header[data-nav-align="left"]   .menu { margin-right: auto; }
.site-header[data-nav-align="center"] .menu { margin-left: auto; margin-right: auto; }
.site-header[data-nav-align="right"]  .menu { margin-left: auto; }
.menu-toggle { margin-left: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: clamp(560px, 78vh, 760px);
  display: grid; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,22,58,.90) 0%, rgba(20,22,58,.66) 30%, rgba(20,22,58,.22) 60%, rgba(20,22,58,0) 100%),
    linear-gradient(180deg, rgba(20,22,58,.12) 0%, rgba(20,22,58,0) 42%, rgba(20,22,58,.48) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding: 60px 0; }
.hero-inner { max-width: 760px; }
.hero h1 {
  text-transform: uppercase; letter-spacing: .01em; font-weight: 700;
  font-size: clamp(42px, 7.2vw, 86px); line-height: .98;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero h1 .hl { color: var(--accent); }
.hero-logo { margin: 4px 0 6px; }
.hero-logo img { display: block; width: clamp(260px, 40vw, 520px); height: auto; filter: drop-shadow(0 6px 20px rgba(0,0,0,.45)); }
.hero p.lede {
  font-size: clamp(18px, 2.4vw, 23px); font-weight: 300; max-width: 600px;
  margin: 22px 0 34px; color: rgba(255,255,255,.92);
  text-transform: uppercase; letter-spacing: .04em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.78); letter-spacing: .04em;
}
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Welcome strip ---------- */
.welcome { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.welcome .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px 0; flex-wrap: wrap; }
.welcome h2 {
  text-transform: uppercase; letter-spacing: .02em; font-weight: 300;
  font-size: clamp(24px, 3.2vw, 36px); color: var(--ink); max-width: 760px;
}
.welcome h2 strong { color: var(--indigo); font-weight: 700; }

/* ---------- About cards ---------- */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.about-card {
  text-align: center; padding: 38px 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.icon-ring {
  width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px;
  color: var(--indigo); border: 2px solid var(--indigo); font-size: 30px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.about-card:hover .icon-ring { background: var(--indigo); color: #fff; transform: scale(1.06); }
.about-card h3 { text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: 19px; color: var(--indigo); margin-bottom: 12px; }
.about-card p { color: var(--muted); font-size: 15px; font-weight: 300; margin: 0; }

/* ---------- Who we are ---------- */
.who { background: var(--paper-2); }
.who-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.who-photo { position: relative; }
.who-photo img {
  width: 240px; height: 240px; border-radius: 50%; object-fit: cover; margin: 0 auto;
  border: 6px solid #fff; box-shadow: var(--shadow);
}
.who-photo .badge {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  background: var(--indigo); color: #fff; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700;
  padding: 8px 18px; border-radius: 30px; white-space: nowrap;
}
.who-text h2 { text-transform: uppercase; letter-spacing: .03em; font-weight: 700; font-size: clamp(28px, 3.6vw, 40px); color: var(--indigo); }
.who-text .who-sub { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-weight: 700; font-size: 14px; margin: 8px 0 20px; }
.who-text p { color: var(--slate); font-size: 16px; font-weight: 300; }
.who-stats { display: flex; gap: 40px; margin-top: 28px; flex-wrap: wrap; }
.who-stats .stat .n { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: var(--indigo); line-height: 1; }
.who-stats .stat .l { text-transform: uppercase; letter-spacing: .08em; font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Who intro (centered) + Team ---------- */
.who-intro { text-align: center; max-width: 840px; margin: 0 auto clamp(48px, 7vw, 80px); }
.who-intro .who-stats { justify-content: center; }
.team-title { text-align: center; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; font-size: clamp(22px, 3vw, 30px); color: var(--indigo); margin-bottom: clamp(32px, 5vw, 48px); position: relative; }
.team-title::after { content: ""; display: block; width: 56px; height: 3px; background: var(--accent); border-radius: 3px; margin: 16px auto 0; }
.team-featured { display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(34px, 5vw, 50px); }
.team-row { display: flex; justify-content: center; gap: clamp(36px, 7vw, 90px); flex-wrap: wrap; }
.team-member { display: flex; flex-direction: column; align-items: center; }
.team-photo { border-radius: 50%; padding: 5px; background: #fff; box-shadow: var(--shadow); margin-bottom: 18px; transition: transform .3s var(--ease); }
.team-photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; display: block; }
.team-photo.lg img { width: 196px; height: 196px; }
.team-featured:hover .team-photo, .team-member:hover .team-photo { transform: translateY(-5px); }
.t-name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: 21px; color: var(--ink); }
.t-role { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 13px; color: var(--accent); margin-top: 5px; }
.team-featured .t-name { font-size: 25px; }

/* ---------- Featured phone (dark) ---------- */
.feature-phone { background: var(--indigo-deep); color: #fff; overflow: hidden; }
.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.fp-text .eyebrow { color: var(--accent); }
.fp-text h2 { text-transform: uppercase; letter-spacing: .03em; font-weight: 700; font-size: clamp(30px, 4vw, 50px); }
.fp-text h2 span { color: rgba(255,255,255,.55); font-weight: 300; }
.fp-text p { color: rgba(255,255,255,.82); font-weight: 300; font-size: 16px; }
.fp-list { display: grid; gap: 12px; margin: 24px 0 32px; }
.fp-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.9); font-weight: 300; }
.fp-list i { color: var(--accent); margin-top: 5px; }
.fp-photo { position: relative; }
.fp-photo img { width: 100%; border-radius: var(--radius); }
.fp-photo .glow { position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(42,45,122,.55), transparent 60%); z-index: -1; filter: blur(30px); }

/* ---------- Why choose (accordion + certs) ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.why-head .eyebrow { color: var(--accent); }
.why-head h2 { text-transform: uppercase; letter-spacing: .03em; font-weight: 700; font-size: clamp(30px, 4vw, 46px); color: var(--indigo); margin-bottom: 12px; }
.why-head h2 span { color: var(--accent); }
.why-head > p { color: var(--muted); font-size: 17px; font-weight: 300; margin-bottom: 26px; }
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: 0; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  font-size: 17px; color: var(--ink); transition: color .2s; display: flex; gap: 14px; align-items: center;
}
.acc-trigger:hover { color: var(--indigo); }
.acc-trigger .chk { color: var(--accent); font-size: 15px; }
.acc-trigger .pm {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line);
  display: grid; place-items: center; color: var(--indigo); font-size: 12px; transition: all .25s var(--ease);
}
.acc-item.open .acc-trigger .pm { background: var(--indigo); border-color: var(--indigo); color: #fff; transform: translateY(-50%) rotate(180deg); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.acc-panel-inner { padding: 0 0 24px; color: var(--slate); font-weight: 300; font-size: 15.5px; }
.acc-panel-inner ul { columns: 2; column-gap: 28px; margin-top: 6px; }
.acc-panel-inner ul li { position: relative; padding-left: 18px; margin-bottom: 6px; font-size: 14px; break-inside: avoid; }
.acc-panel-inner ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.certs { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.certs h3 { text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: 16px; color: var(--indigo); margin-bottom: 6px; }
.certs > p { color: var(--muted); font-size: 14px; font-weight: 300; margin-bottom: 22px; }
.cert-logos { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.cert-logos img { height: 44px; width: auto; filter: saturate(.9); }
.cert-list li { display: flex; gap: 10px; font-size: 14px; color: var(--slate); font-weight: 300; margin-bottom: 8px; }
.cert-list i { color: var(--indigo); margin-top: 5px; font-size: 11px; }

/* ---------- Services (band) ---------- */
.services { position: relative; color: #fff; }
.services-bg { position: absolute; inset: 0; z-index: 0; }
.services-bg img { width: 100%; height: 100%; object-fit: cover; }
.services-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,26,69,.94), rgba(35,37,95,.94)); }
.services .wrap { position: relative; z-index: 1; }
.services .section-head h2 { color: #fff; }
.services .section-head p { color: rgba(255,255,255,.78); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); }
.service-card .s-ico { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,88,0,.16); color: var(--accent); font-size: 24px; margin-bottom: 20px; transition: background .3s, color .3s; }
.service-card:hover .s-ico { background: var(--accent); color: #fff; }
.service-card .s-ico.solid { background: var(--accent); color: #fff; }
.service-card h3 { text-transform: uppercase; letter-spacing: .05em; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,.78); font-weight: 300; font-size: 15px; margin: 0; }

/* ---------- Testimonials ---------- */
.testi { background: var(--paper-2); }
.testi-stage { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark { font-size: 60px; color: var(--indigo); opacity: .14; line-height: .6; }
.testi-track { position: relative; min-height: 220px; }
.testi-item { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease); }
.testi-item.active { opacity: 1; visibility: visible; position: relative; }
.testi-item blockquote { font-size: clamp(19px, 2.4vw, 26px); font-weight: 300; line-height: 1.5; color: var(--ink); margin: 0 0 22px; }
.testi-item .who-name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--indigo); font-size: 15px; }
.testi-item .who-role { color: var(--muted); font-size: 14px; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.testi-arrow { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--line); background: #fff; color: var(--indigo); display: grid; place-items: center; transition: all .25s var(--ease); }
.testi-arrow:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.testi-dots { display: flex; gap: 9px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); transition: all .25s; padding: 0; }
.testi-dots button.active { background: var(--accent); width: 26px; border-radius: 6px; }

/* ---------- CTA / contact band ---------- */
.cta { background: var(--indigo); color: #fff; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-left { display: flex; align-items: center; gap: 22px; }
.cta-ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; font-size: 26px; flex-shrink: 0; }
.cta h2 { text-transform: uppercase; letter-spacing: .03em; font-weight: 700; font-size: clamp(24px, 3.4vw, 36px); }
.cta h2 span { color: var(--accent); }
.cta p { margin: 4px 0 0; color: rgba(255,255,255,.8); font-weight: 300; }
.cta .btn-white { background: #fff; color: var(--indigo); }
.cta .btn-white:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: var(--indigo-deep); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer .brand img { height: 30px; margin-bottom: 18px; }
.footer-about p { font-weight: 300; font-size: 15px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-col h4 { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-weight: 300; font-size: 15px; display: flex; gap: 12px; align-items: flex-start; }
.footer-col ul li i { color: var(--accent); margin-top: 5px; width: 16px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; font-weight: 300; }
.footer-disclaimer { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.45); max-width: 940px; margin: 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); line-height: 1.55; }
.footer-disclaimer + .footer-bottom { border-top: 0; padding-top: 14px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%; background: var(--indigo); color: #fff; border: 0;
  display: grid; place-items: center; font-size: 16px; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, background .25s; box-shadow: var(--shadow-sm);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile menu panel ---------- */
.mobile-panel {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: #fff; z-index: 80;
  transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
  padding: 26px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-panel.open { transform: none; }
.mobile-panel .mp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-panel .mp-head img { height: 26px; }
.mobile-panel .mp-close { background: none; border: 0; font-size: 24px; color: var(--indigo); }
.mobile-panel a { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--slate); padding: 14px 10px; border-bottom: 1px solid var(--line); }
.mobile-panel a:hover { color: var(--indigo); }
.scrim { position: fixed; inset: 0; background: rgba(24,26,69,.45); z-index: 75; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; text-align: center; }
  .who-photo img { width: 200px; height: 200px; }
  .who-stats { justify-content: center; }
  .fp-grid { grid-template-columns: 1fr; }
  .fp-photo { order: -1; max-width: 460px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .menu, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .topbar .tb-left .tb-hide { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .acc-panel-inner ul { columns: 1; }
  .cta .wrap { flex-direction: column; text-align: center; }
  .cta-left { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
