/* ==========================================================================
   ARSAB TECH — shared stylesheet
   Tokens
   ========================================================================== */
:root {
  --ink: #14131f;
  --ink-soft: #55536e;
  --base: #faf9f6;
  --base-alt: #f1efff;
  --line: #ECEAF0;
  --indigo: #4a3aff;
  --indigo-dark: #372bc7;
  --yellow: #ffc93c;
  --lilac: #eae6ff;
  --white: #ffffff;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --container: 1180px;
  --nav-h: 76px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--base);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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-display); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--yellow); display: inline-block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--indigo); transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(74,58,255,0.55); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--indigo); position: relative; flex-shrink: 0; }
.logo-mark::before, .logo-mark::after { content: ""; position: absolute; background: var(--yellow); border-radius: 3px; }
.logo-mark::before { width: 14px; height: 5px; left: 7px; top: 10px; }
.logo-mark::after { width: 9px; height: 5px; left: 7px; top: 19px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color 0.15s ease; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--indigo); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 5vw, 60px); margin: 18px 0 22px; }
.hero-copy h1 em { font-style: normal; color: var(--indigo); }
.hero-copy p.lead { font-size: 18px; color: var(--ink-soft); max-width: 480px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; height: 420px; }
.stack-card { position: absolute; border-radius: var(--radius-m); box-shadow: 0 24px 48px -20px rgba(20,19,31,0.28); }

.card-site {
  width: 78%; height: 280px; top: 10px; left: 0; background: var(--white);
  border: 1px solid var(--line); overflow: hidden; animation: floatA 7s ease-in-out infinite;
}
.card-site .bar { height: 30px; background: var(--base-alt); display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.card-site .bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.card-site .body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.card-site .row { height: 12px; background: var(--base-alt); border-radius: 4px; }
.card-site .row.w60 { width: 60%; }
.card-site .row.w40 { width: 40%; }
.card-site .block { height: 90px; background: var(--lilac); border-radius: 8px; margin-top: 6px; display: flex; align-items: center; justify-content: center; }
.card-site .block svg { width: 30px; height: 30px; color: var(--indigo); }

.card-design {
  width: 46%; height: 190px; right: 0; top: 0; background: var(--ink); color: var(--white);
  padding: 20px; animation: floatB 6s ease-in-out infinite; animation-delay: 0.4s;
}
.card-design .swatches { display: flex; gap: 8px; margin-top: 16px; }
.card-design .swatches i { width: 26px; height: 26px; border-radius: 50%; display: block; }
.card-design .swatches i:nth-child(1) { background: var(--yellow); }
.card-design .swatches i:nth-child(2) { background: var(--indigo); }
.card-design .swatches i:nth-child(3) { background: var(--white); }
.card-design small { font-family: var(--font-mono); font-size: 11px; opacity: 0.6; letter-spacing: 0.08em; }

.card-ad {
  width: 52%; height: 150px; right: 6%; bottom: 0; background: var(--yellow);
  padding: 18px; animation: floatA 6.5s ease-in-out infinite; animation-delay: 0.8s;
}
.card-ad .play { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card-ad .play svg { width: 14px; height: 14px; color: var(--white); }
.card-ad small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; }

@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(0.5deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(10px) rotate(1deg); } }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy p.lead { max-width: none; }
  .hero-visual { height: 340px; }
}

/* ==========================================================================
   Process strip
   ========================================================================== */
.process { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.process-item { display: flex; align-items: center; gap: 16px; }
.process-num { font-family: var(--font-mono); font-size: 13px; color: var(--indigo); }
.process-item h4 { font-size: 17px; margin-bottom: 4px; }
.process-item p { color: var(--ink-soft); font-size: 14px; }
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ==========================================================================
   Section heading
   ========================================================================== */
.section { padding: 90px 0; }
.section-head { max-width: 620px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section-alt { background: var(--base-alt); }

/* ==========================================================================
   Service cards
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px 28px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 40px -24px rgba(20,19,31,0.25); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--lilac); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon svg { width: 26px; height: 26px; color: var(--indigo); }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card > p { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; }
.service-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.service-list li { font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 9px; }
.service-list li svg { width: 14px; height: 14px; color: var(--indigo); flex-shrink: 0; }
.service-link { font-weight: 700; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }
@media (max-width: 940px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Work preview strip (home)
   ========================================================================== */
.work-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 940px) { .work-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-preview-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services detail page
   ========================================================================== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail.reverse { grid-template-columns: 1fr 1fr; }
.service-detail-copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 16px 0 14px; }
.service-detail-copy p { color: var(--ink-soft); font-size: 16px; }
.service-detail-visual { display: flex; align-items: center; }
@media (max-width: 860px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-copy { order: 1; }
  .service-detail.reverse .chip-grid { order: 2; }
}

.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.chip-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 24px 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chip-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -20px rgba(20,19,31,0.28); }
.chip-card svg { width: 24px; height: 24px; color: var(--indigo); }
.chip-card span { font-weight: 600; font-size: 14px; }
.chip-card { width: 100%; text-align: left; font-family: var(--font-body); }
@media (max-width: 640px) { .chip-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Portfolio filter bar + cards
   ========================================================================== */
.page-header { padding: 56px 0 40px; }
.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 14px; }
.page-header p { color: var(--ink-soft); font-size: 17px; max-width: 560px; }

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 14px 0 20px;
  margin-bottom: 24px;
  position: sticky;
  top: 74px;
  z-index: 40;
  background: rgba(250,250,251,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media(max-width:900px){ .filter-bar{ top: 62px; } }
@media(max-width:600px){ .filter-bar{ top: 54px; } }
.filter-btn {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink-soft);
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }


.p-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo-dark); }

/* Legacy portfolio modal removed: current popup is generated by js/main.js. */
.video-embed { border-radius: var(--radius-s); overflow: hidden; background: var(--ink); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-mono); font-size: 13px; text-align: center; padding: 20px; }

/* ==========================================================================
   Gallery — justified, all images visible, width adjusts
   ========================================================================== */
.gallery { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 90px; }
.gallery-item {
  position: relative; height: 240px; flex-grow: var(--grow, 1.4);
  flex-basis: calc(var(--grow, 1.4) * 200px);
  border-radius: var(--radius-s); overflow: hidden; color: var(--white);
  display: flex; align-items: flex-end; padding: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
}
.gallery-item span.cap { position: relative; opacity: 0.9; }
.gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,19,31,0) 40%, rgba(20,19,31,0.55) 100%); }
@media (max-width: 700px) { .gallery-item { height: 170px; } }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { background: var(--ink); color: var(--white); border-radius: var(--radius-l); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 34px); max-width: 440px; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-top: 10px; font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.cta-banner .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.cta-banner .btn-primary { background: var(--yellow); color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--white); box-shadow: none; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding-bottom: 60px; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 36px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 24px 38px -24px rgba(20,19,31,0.25); }
.contact-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--lilac); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.contact-icon svg { width: 26px; height: 26px; color: var(--indigo); }
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card .value { font-family: var(--font-mono); font-size: 17px; color: var(--indigo-dark); margin: 10px 0 20px; word-break: break-all; }
.contact-note { max-width: 640px; color: var(--ink-soft); font-size: 15px; padding-bottom: 90px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer-tagline { color: var(--ink-soft); font-size: 14px; max-width: 260px; margin-top: 12px; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom { margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Arsab Tech additions — testimonials, service popup, real project gallery
   ========================================================================== */
.brand-logo { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; object-position: center 31%; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 14px 30px rgba(20,19,31,.28); transition: transform .18s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }.whatsapp-float svg { width: 31px; height: 31px; }
.testimonial-shell { display: grid; grid-template-columns: 110px 1fr 110px; align-items: center; gap: 24px; max-width: 960px; margin: 0 auto; }
.testimonial-photo { width: 94px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 5px solid var(--white); box-shadow: 0 12px 28px rgba(20,19,31,.16); }.testimonial-copy { text-align: center; }.testimonial-copy blockquote { font-family: var(--font-display); font-size: clamp(23px, 3vw, 34px); line-height: 1.2; margin: 0 0 18px; }.testimonial-copy cite { font-style: normal; color: var(--ink-soft); font-size: 14px; }.testimonial-ghost { opacity: .38; transform: scale(.76); justify-self: center; }
.service-search { width: min(100%, 560px); margin: -10px 0 42px; position: relative; }.service-search input { width: 100%; padding: 15px 18px 15px 46px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font: inherit; }.service-search svg { position: absolute; left: 17px; top: 16px; width: 20px; color: var(--indigo); }
.service-catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.catalog-card { text-align: left; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }.catalog-card:hover { border-color: var(--indigo); transform: translateY(-4px); box-shadow: 0 18px 32px -24px rgba(20,19,31,.35); }.catalog-card b { display:block; font-family:var(--font-display); font-size:18px; }.catalog-card span { display:block; font-size:13px; color:var(--ink-soft); margin-top:7px; }
.service-modal { position: fixed; inset: 0; z-index: 220; background: rgba(20,19,31,.63); display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }.service-modal.open { opacity:1; pointer-events:auto; }.service-modal-box { background:var(--white); border-radius:28px; width:min(860px,100%); max-height:min(690px,92vh); overflow:auto; display:grid; grid-template-columns: .9fr 1.1fr; position:relative; transform: translateY(14px); transition:transform .2s ease; }.service-modal.open .service-modal-box { transform:translateY(0); }.service-modal-work { min-height:430px; background:var(--ink); }.service-modal-work img { height:100%; width:100%; object-fit:cover; }.service-modal-content { padding:48px 40px 34px; }.service-modal-title { font-size:38px; margin:12px 0; }.service-modal-description { color:var(--ink-soft); }.service-modal-includes { margin:25px 0; display:grid; gap:10px; }.service-modal-includes li { color:var(--ink-soft); padding-left:24px; position:relative; }.service-modal-includes li::before { content:'✓'; position:absolute; left:0; color:var(--indigo); font-weight:800; }.service-modal-close { position:absolute; right:16px; top:16px; z-index:2; width:39px; height:39px; border:0; border-radius:50%; background:rgba(255,255,255,.92); font-size:26px; line-height:1; }
.gallery-item .cap { position:absolute; z-index:1; left:14px; bottom:12px; }.gallery-item:hover img { transform:scale(1.04); }.gallery-item img { transition:transform .3s ease; }
@media (max-width: 760px) { .testimonial-shell { grid-template-columns: 1fr; gap:14px; }.testimonial-ghost { display:none; }.testimonial-shell > img:first-child { margin:auto; }.service-catalog { grid-template-columns:repeat(2,1fr); }.service-modal-box { grid-template-columns:1fr; }.service-modal-work { min-height:220px; }.service-modal-content { padding:32px 24px; }.service-modal-title { font-size:30px; }.whatsapp-float { right:16px; bottom:16px; } }
/* ---------- Portfolio cards: clean vertical layout (image top, details below) ---------- */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  padding-bottom:90px;
}
.p-card{
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  background:var(--white);
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.p-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 34px -22px rgba(20,19,31,.3);
}
.p-thumb{
  position:relative;
  width:100%;
  height:0;
  padding-top:75%; /* 4:3 ratio, works on all mobile browsers */
  background:#f3f3f5;
  overflow:hidden;
}
.p-thumb img,
.p-thumb video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .35s ease;
}
.p-card:hover .p-thumb img,
.p-card:hover .p-thumb video{
  transform:scale(1.045);
}
.p-body{
  padding:18px 20px 22px;
}
.p-tag{
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--indigo-dark);
}
.p-card h3{
  font-family:var(--font-heading,var(--font-display));
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.02em;
  margin:8px 0 4px;
}
.p-card p{
  font-size:12.5px;
  line-height:1.5;
  color:var(--ink-soft);
  margin:0;
}
@media(max-width:940px){
  .portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:640px){
  .portfolio-grid{grid-template-columns:1fr;gap:18px;}
  .p-thumb{padding-top:62.5%;}
  .p-body{padding:16px 18px 20px;}
  .p-card h3{font-size:17px;}
}/* ---------- Project detail modal: image left/right, details opposite, no overlap ---------- */


/* ===== MERGED ABOUT PAGE STYLES ===== */

/* ==========================================================================
   TOKENS — everything is plain white/neutral, no colored background shades
   ========================================================================== */
.about-page{
  --ink: #14131f;
  --ink-soft: #55536e;
  --ink-faint: #8b899c;
  --white: #ffffff;
  --indigo: #4a3aff;
  --indigo-dark: #372bc7;
  --yellow: #ffc93c;
  --hairline: #eceaf0;

  --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --container: 1180px;
}

.about-page *{ box-sizing: border-box; }

.about-page{
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 18px;
}
.about-page img, .about-page video{ max-width: 100%; display: block; }
.about-page a{ color: inherit; text-decoration: none; }
.about-page ul{ margin: 0; padding: 0; list-style: none; }
.about-page h1, .about-page h2, .about-page h3, .about-page h4{ font-family: var(--font-display); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
.about-page p{ margin: 0; }
.about-page button{ font-family: inherit; cursor: pointer; }
.about-page :focus-visible{ outline: 3px solid var(--indigo); outline-offset: 3px; }

.about-page .container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.about-page .section{ padding: 90px 0; }
.about-page .section-head{ max-width: 620px; margin-bottom: 50px; }
.about-page .section-head h2{ font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 12px; }
.about-page .section-head p{ color: var(--ink-soft); font-size: 17px; }

.about-page .eyebrow{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.about-page .eyebrow::before{ content: ""; width: 22px; height: 2px; background: var(--yellow); display: inline-block; }

.about-page .btn{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.about-page .btn svg{ width: 17px; height: 17px; flex-shrink: 0; }
.about-page .btn-primary{ background: var(--ink); color: var(--white); }
.about-page .btn-primary:hover{ background: var(--indigo); transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(74,58,255,0.55); }
.about-page .btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.about-page .btn-outline:hover{ border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }

/* Reveal animation */
.about-page .reveal, .about-page [data-reveal]{ opacity: 0; transform: translateY(18px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.about-page .reveal.in, .about-page [data-reveal].visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   NAVBAR — now defined once in css/site.css (shared across all pages).
   Only page-specific spacing kept here.
   ========================================================================== */
@media(max-width:900px){
  .about-page{padding-top:12px;}
}

/* ==========================================================================
   HERO — kept as-is (top lines + images unchanged in intent)
   ========================================================================== */
.about-page .hero-about h1{
  background: linear-gradient(90deg, var(--ink), var(--indigo), var(--ink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4s linear infinite;
}
@keyframes textShine { to { background-position: 200% center; } }
.about-page .hero-about{ padding: 52px 0 60px; text-align: center; }
.about-page .hero-about-text{ max-width: 640px; margin: 0 auto 50px; }
.about-page .hero-about .lead{ font-size: 18px; color: var(--ink-soft); margin-bottom: 30px; }
.about-page .hero-actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.about-page .team-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.about-page .t-card{ background: var(--white); border: none; border-radius: 20px; padding: 0 0 24px 0; text-align: center; overflow: hidden; box-shadow: 0 16px 34px -26px rgba(20,19,31,0.35); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; cursor: pointer; text-decoration: none; color: var(--ink); }
.about-page .t-card:nth-child(1){ transform: rotate(-2deg); }
.about-page .t-card:nth-child(2){ transform: rotate(2deg); }
.about-page .t-card:nth-child(3){ transform: rotate(-1.5deg); }
.about-page .t-card:nth-child(4){ transform: rotate(1.5deg); }
.about-page .t-card:hover{ transform: rotate(0deg) scale(1.05) translateY(-8px); box-shadow: 0 24px 40px -16px rgba(20,19,31,0.2); z-index: 2; }
.about-page .t-card-img{ width: 100%; min-height: 200px; aspect-ratio: 4/3; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.about-page .t-card-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.about-page .t-card:hover .t-card-img img{ transform: scale(1.08); }
.about-page .t-card h4{ font-size: 18px; margin: 0 0 4px; font-family: var(--font-display); font-weight: 600; }
.about-page .t-card span{ font-size: 12px; color: var(--ink-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.about-page .t-card-cta{ background: var(--ink); color: var(--white); }
.about-page .t-card-cta h4{ color: var(--white); }
.about-page .t-card-cta span{ color: rgba(255,255,255,0.6); }
.about-page .cta-icon-box{ background: var(--ink); border-bottom-color: rgba(255,255,255,.08); }
.about-page .cta-icon-box svg{ width: 48px; height: 48px; color: var(--yellow); }
@media (max-width: 760px) { .about-page .team-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; } .about-page .t-card:nth-child(1), .about-page .t-card:nth-child(3){ transform: rotate(-1deg); } .about-page .t-card:nth-child(2), .about-page .t-card:nth-child(4){ transform: rotate(1deg); } }
@media (max-width: 480px) { .about-page .team-grid{ grid-template-columns: 1fr; max-width: 320px; } .about-page .t-card:nth-child(n){ transform: rotate(0deg); } }

/* ==========================================================================
   STATS STRIP — plain white cards, divided by hairlines only, no shade
   ========================================================================== */
.about-page .stats-strip{ display: grid; grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; border: 1px solid var(--hairline); border-radius: 24px; overflow: hidden; }
.about-page .stats-strip .stat-item{ padding: 36px 24px; text-align: center; border-right: 1px solid var(--hairline); }
.about-page .stats-strip .stat-item:last-child{ border-right: none; }
.about-page .stat-num{ font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--indigo); line-height: 1; display: block; }
.about-page .stats-strip .stat-label{ font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; display: block; }
@media (max-width: 700px) { .about-page .stats-strip{ grid-template-columns: 1fr; } .about-page .stats-strip .stat-item{ border-right: none; border-bottom: 1px solid var(--hairline); } .about-page .stats-strip .stat-item:last-child{ border-bottom: none; } }

/* ==========================================================================
   WHO WE ARE — plain white, divided by a rule above the heading
   ========================================================================== */
.about-page .who-section{ border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.about-page .about-split{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; max-width: 1080px; margin: 0 auto; }
.about-page .about-split .about-copy .eyebrow{ margin-bottom: 14px; }
.about-page .about-split .about-copy h2{ font-size: clamp(26px, 3vw, 34px); margin: 0 0 16px; }
.about-page .about-split .about-copy p{ color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.about-page .fact-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.about-page .fact-list li{ display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.about-page .fact-list .fact-icon{ flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--ink); color: var(--ink); display: grid; place-items: center; }
.about-page .fact-list .fact-icon svg{ width: 17px; height: 17px; }
.about-page .fact-list h4{ font-size: 15.5px; font-weight: 600; margin: 0 0 3px; font-family: var(--font-display); color: var(--ink); }
.about-page .fact-list p{ font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 860px) { .about-page .about-split{ grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   WHAT WE DO — interactive tabs, plain surfaces
   ========================================================================== */
.about-page .service-tabs{ max-width: 980px; margin: 0 auto; }
.about-page .tab-row{ display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; border-bottom: 1px solid var(--hairline); padding-bottom: 20px; }
.about-page .tab-btn{ font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--hairline); background: var(--white); color: var(--ink-soft); cursor: pointer; transition: all 0.2s ease; }
.about-page .tab-btn:hover{ border-color: var(--ink); color: var(--ink); }
.about-page .tab-btn.active{ background: var(--ink); color: var(--white); border-color: var(--ink); }
.about-page .tab-panels{ position: relative; }
.about-page .tab-panel{ display: none; }
.about-page .tab-panel.active{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; animation: panelIn 0.35s cubic-bezier(0.16,1,0.3,1); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.about-page .tab-panel-visual{ background: var(--white); border: 1px solid var(--hairline); border-radius: 24px; aspect-ratio: 4/3; display: grid; place-items: center; color: var(--ink); }
.about-page .tab-panel-visual svg{ width: 84px; height: 84px; }
.about-page .tab-panel-copy h3{ font-size: 24px; margin: 0 0 12px; }
.about-page .tab-panel-copy p{ color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 20px; }
.about-page .tab-panel-copy ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.about-page .tab-panel-copy ul li{ font-size: 14.5px; color: var(--ink); display: flex; gap: 10px; align-items: center; }
.about-page .tab-panel-copy ul li::before{ content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); flex-shrink: 0; }
@media (max-width: 760px) { .about-page .tab-panel.active{ grid-template-columns: 1fr; } .about-page .tab-panel-visual{ aspect-ratio: 16/9; } }

/* ==========================================================================
   MISSION — kept, gradient border is decorative not a flat shade
   ========================================================================== */
.about-page .mission-wrapper{ position: relative; max-width: 900px; margin: 0 auto; padding: 3px; border-radius: 28px; overflow: hidden; }
.about-page .mission-wrapper::before{ content: ""; position: absolute; inset: 0; border-radius: 28px; background: linear-gradient(90deg, var(--indigo), var(--yellow), var(--indigo), var(--yellow)); background-size: 300% 100%; animation: moveGradient 4s linear infinite; z-index: 0; }
@keyframes moveGradient { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.about-page .mission-box{ background: var(--white); color: var(--ink); border-radius: 25px; padding: 64px 48px; text-align:center; position: relative; z-index: 1; }
.about-page .mission-box .eyebrow{ color: var(--indigo-dark); justify-content: center; }
.about-page .mission-box h2{ color: var(--ink); }
.about-page .mission-box p{ color: var(--ink-soft); font-size: 18px; margin-bottom: 0; max-width: 600px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .about-page .mission-box{ padding: 40px 24px; } }

/* ==========================================================================
   WHY CHOOSE US — accordion, plain surfaces + hairlines
   ========================================================================== */
.about-page .accordion{ max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.about-page .acc-item{ border-bottom: 1px solid var(--hairline); background: var(--white); }
.about-page .acc-trigger{ width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 4px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); }
.about-page .acc-num{ font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); flex-shrink: 0; width: 24px; }
.about-page .acc-item.open .acc-num{ color: var(--indigo); }
.about-page .acc-title{ font-size: 16px; font-weight: 600; font-family: var(--font-display); color: var(--ink); flex: 1; }
.about-page .acc-plus{ flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--ink); color: var(--ink); display: grid; place-items: center; transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease; }
.about-page .acc-item.open .acc-plus{ background: var(--indigo); border-color: var(--indigo); color: var(--white); transform: rotate(45deg); }
.about-page .acc-plus svg{ width: 14px; height: 14px; }
.about-page .acc-panel{ max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1); }
.about-page .acc-item.open .acc-panel{ max-height: 200px; }
.about-page .acc-panel-inner{ padding: 0 4px 22px 44px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* ==========================================================================
   CLOSING — no colored block. A rule, a line of copy, socials, and text links.
   ========================================================================== */
.about-page .closing-section{ border-top: 1px solid var(--hairline); }
.about-page .closing-row{ display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--hairline); }
.about-page .closing-row h2{ font-size: clamp(30px, 4vw, 46px); max-width: 620px; }
.about-page .closing-row h2 em{ font-style: normal; color: var(--indigo); }
.about-page .closing-actions{ display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.about-page .closing-foot{ display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.about-page .closing-foot p{ color: var(--ink-soft); font-size: 15px; max-width: 380px; }
.about-page .social-row{ display: flex; gap: 10px; }
.about-page .social-icon{
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--white); border: 1.5px solid var(--hairline);
  color: var(--ink); transition: all 0.2s ease;
}
.about-page .social-icon svg{ width: 18px; height: 18px; }
.about-page .social-icon:hover{ background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-3px); }
@media (max-width: 640px) { .about-page .closing-foot{ flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.about-page .home-footer{width:min(1328px,calc(100% - 24px));margin:64px auto 12px;background:#211e1b;color:#f5f2f0;border-radius:20px;padding:54px 0 0;overflow:hidden}
.about-page .footer-shell{width:calc(100% - 112px);max-width:1200px;margin:0 auto}
.about-page .footer-main{display:grid;grid-template-columns:1.35fr .9fr .9fr 1.25fr;gap:56px;padding:0 0 64px}
.about-page .footer-logo{display:flex;align-items:center;gap:10px;font:700 20px var(--font-display);color:#f7f4f1}
.about-page .footer-logo img{width:42px;height:42px;border-radius:50%;object-fit:cover}
.about-page .footer-brand p{max-width:365px;color:#c5c0bb;font-size:14px;line-height:1.55;margin-top:17px}
.about-page .footer-socials{display:flex;gap:14px;margin-top:20px}
.about-page .footer-socials a{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;color:#d8d2cc;background:rgba(255,255,255,.06);transition:background .2s ease,color .2s ease}
.about-page .footer-socials a:hover{background:#fff;color:#211e1b}
.about-page .footer-col{display:flex;flex-direction:column;gap:13px;min-width:0}
.about-page .footer-col h5{margin:0 0 6px;font:600 13px/1 Inter,sans-serif;color:#f4f0ec;text-transform:uppercase;letter-spacing:.01em}
.about-page .footer-col a{font:400 14px/1.35 Inter,sans-serif;color:#cfc9c2}
.about-page .footer-col a:hover{color:#fff}
.about-page .footer-contact-col small{font:500 9px/1 JetBrains Mono,monospace;letter-spacing:.16em;color:#68728a;margin:-1px 0 4px}
.about-page .footer-quote{display:inline-flex!important;width:max-content;margin-top:6px;padding:11px 20px;border-radius:999px;background:#c62e2e;color:#fff!important;font:600 12px/1 Inter,sans-serif!important;letter-spacing:.02em;transition:background .2s ease,transform .2s ease}
.about-page .footer-quote:hover{background:#a82424;transform:translateY(-2px)}
.about-page .footer-bottom{min-height:62px;border-top:1px solid rgba(255,255,255,.14);display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;gap:20px;color:#aaa39b;font:400 10px/1 JetBrains Mono,monospace;letter-spacing:.03em}
.about-page .footer-bottom>span:nth-child(2){text-align:center}
.about-page .footer-legal{display:flex;justify-content:flex-end;gap:22px}
.about-page .footer-legal a{color:inherit}
.about-page .footer-legal a:hover{color:#fff}
@media(max-width:900px){
  .about-page .home-footer{width:calc(100% - 20px);border-radius:18px;padding-top:42px}
  .about-page .footer-shell{width:calc(100% - 44px)}
  .about-page .footer-main{grid-template-columns:1fr 1fr;gap:40px 34px;padding-bottom:46px}
  .about-page .footer-brand{grid-column:1/-1}
  .about-page .footer-contact-col{grid-column:1/-1}
  .about-page .footer-bottom{grid-template-columns:1fr;min-height:auto;padding:18px 0;gap:12px}
  .about-page .footer-bottom>span:nth-child(2){text-align:left}
  .about-page .footer-legal{justify-content:flex-start}
}
@media(max-width:600px){
  .about-page .footer-main{grid-template-columns:1fr;gap:30px}
  .about-page .footer-brand, .about-page .footer-contact-col{grid-column:auto}
  .about-page .footer-col{gap:11px}
  .about-page .footer-col h5{margin-bottom:4px}
  .about-page .footer-bottom{flex-direction:column;gap:10px}
}
.about-page .home-whatsapp{position:fixed;right:22px;bottom:22px;z-index:90;width:56px;height:56px;border-radius:50%;display:grid;place-items:center;background:#25d366;color:#fff;box-shadow:0 12px 30px rgba(20,19,31,.18);transition:transform .2s ease}
.about-page .home-whatsapp:hover{transform:translateY(-3px) scale(1.05)}

/* Scroll offset so the floating nav never overlaps content */
.about-page section[aria-labelledby], .about-page .accordion, .about-page .service-tabs, .about-page .acc-item, .about-page .stats-strip{ scroll-margin-top: 120px; }
.about-page main{ padding-top: 72px; }
@media(max-width:900px){ .about-page main{ padding-top: 64px; } }
@media(max-width:600px){ .about-page main{ padding-top: 56px; } }


/* ===== MERGED CONTACT PAGE STYLES ===== */
/* ==========================================================================
   ARSAB TECH — Contact page, clean minimal edition (Untitled UI style)
   Depends on tokens from css/site.css + css/style.css
   ========================================================================== */

.clean-contact{
  position:relative;
  padding:100px 0 0;
  overflow:hidden;
}

/* ---------- faded grid backdrop ---------- */
.clean-grid{
  position:absolute;
  inset:-40px 0 auto 0;
  height:520px;
  z-index:-1;
  background-image:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 128px),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 128px);
  -webkit-mask-image:radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 78%);
  mask-image:radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 78%);
  opacity:.9;
}

/* ---------- hero ---------- */
.clean-hero{max-width:620px;margin:0 auto;text-align:center;padding-bottom:52px;}
.clean-mark{
  width:44px;height:44px;margin:0 auto 22px;
  border-radius:12px;background:var(--white);border:1px solid var(--line);
  display:grid;place-items:center;box-shadow:0 8px 18px -10px rgba(20,19,31,.18);
}
.clean-mark img{width:26px;height:26px;border-radius:6px;object-fit:cover;}
.clean-hero h1{font-size:clamp(30px,4.4vw,42px);margin-bottom:12px;}
.clean-hero p{color:var(--muted);font-size:16px;}

/* ---------- 4-up card grid ---------- */
.clean-grid-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding-bottom:80px;
}
.clean-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px 22px 24px;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  display:block;
}
.clean-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 34px -24px rgba(20,19,31,.28);
  border-color:var(--indigo);
}
.clean-card-icon{
  width:40px;height:40px;border-radius:10px;
  background:var(--soft);border:1px solid var(--line);
  display:grid;place-items:center;margin-bottom:26px;color:var(--indigo);
}
.clean-card-icon svg{width:19px;height:19px;}
.clean-card[data-kind="instagram"] .clean-card-icon{color:#c62368;}
.clean-card[data-kind="facebook"] .clean-card-icon{color:#1877f2;}
.clean-card[data-kind="whatsapp"] .clean-card-icon{color:#1f9e52;}
.clean-card h3{font-size:16px;margin-bottom:5px;}
.clean-card p{color:var(--muted);font-size:14px;margin-bottom:14px;}
.clean-card .clean-link{
  font-size:14px;font-weight:600;color:var(--ink);
  text-decoration:underline;text-underline-offset:3px;text-decoration-color:var(--line);
  transition:text-decoration-color .15s ease,color .15s ease;
}
.clean-card:hover .clean-link{color:var(--indigo);text-decoration-color:var(--indigo);}

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

/* ---------- FAQ ---------- */
.clean-faq{max-width:720px;margin:0 auto;padding-bottom:100px;}
.clean-faq h2{text-align:center;font-size:clamp(26px,3.4vw,34px);margin-bottom:34px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item:first-child{border-top:1px solid var(--line);}
.faq-q{
  width:100%;
  display:flex;align-items:center;gap:16px;
  padding:22px 4px;
  background:none;border:0;text-align:left;
  font-family:var(--body);color:var(--ink);
}
.faq-q-icon{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  background:var(--soft);border:1px solid var(--line);
  display:grid;place-items:center;color:var(--indigo);
}
.faq-q-icon svg{width:17px;height:17px;}
.faq-q-text{flex:1;font-size:16px;font-weight:600;}
.faq-chevron{flex-shrink:0;color:var(--muted);transition:transform .25s ease;}
.faq-chevron svg{width:18px;height:18px;}
.faq-item.open .faq-chevron{transform:rotate(180deg);}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .3s ease,opacity .25s ease;
  opacity:0;
}
.faq-item.open .faq-a{opacity:1;}
.faq-a-inner{padding:0 4px 24px 68px;color:var(--muted);font-size:14.5px;line-height:1.65;max-width:560px;}

@media(max-width:600px){
  .faq-a-inner{padding-left:4px;}
}


/* Navbar visuals now live entirely in css/site.css — single source of truth. */

/* ARSAB PORTFOLIO — FROM-SCRATCH POPUP */
.filter-bar{position:static !important;top:auto !important}
body.portfolio-popup-open{overflow:hidden}
.arsab-portfolio-popup{
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .22s ease,visibility .22s ease;
  font-family:"Bricolage Grotesque",sans-serif;
}
.arsab-portfolio-popup.is-open{opacity:1;visibility:visible}
.arsab-popup-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,15,18,.68);
  backdrop-filter:blur(8px);
}
.arsab-popup-panel{
  position:relative;
  z-index:1;
  width:min(1080px,100%);
  height:min(880px,92vh);
  max-height:92vh;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  background:#fff;
  color:#111;
  border-radius:26px;
  box-shadow:0 28px 90px rgba(0,0,0,.28);
}
.arsab-popup-media-stage{
  min-height:0;
  height:100%;
  background:#f3f3f1;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.arsab-popup-media{
  display:block !important;
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:78vh !important;
  object-fit:contain !important;
  object-position:center !important;
  position:static !important;
  inset:auto !important;
}
.arsab-popup-info{
  min-width:0;
  min-height:0;
  height:100%;
  padding:52px 38px 40px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  scrollbar-gutter:stable;
}
.arsab-popup-kicker,.arsab-popup-label{
  font-size:10px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.13em;
  opacity:.52;
}
.arsab-popup-info h2{
  font-family:"Kaushan Script",cursive;
  font-weight:400;
  font-size:clamp(38px,4vw,58px);
  line-height:.98;
  margin:13px 0 18px;
}
.arsab-popup-label{
  display:block;
  font-family:"Kaushan Script",cursive !important;
  font-weight:700 !important;
  font-size:22px;
  line-height:1.05;
  letter-spacing:0;
  text-transform:none;
  opacity:1;
  color:#11111a;
}
.arsab-popup-description{
  font-size:15px;
  line-height:1.65;
  color:#555;
  margin:0 0 26px;
}
.arsab-popup-section{
  padding:17px 0;
  border-top:1px solid rgba(17,17,17,.1);
}
.arsab-popup-section p{
  font-size:13px;
  line-height:1.6;
  color:#333;
  margin:8px 0 0;
}
.arsab-popup-visible{
  font-style:normal;
}
.arsab-popup-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:24px;
}
.arsab-popup-close.secondary,.arsab-popup-live{
  border:1px solid rgba(17,17,17,.12);
  border-radius:999px;
  padding:12px 18px;
  font:600 13px "Bricolage Grotesque",sans-serif;
  text-decoration:none;
  cursor:pointer;
}
.arsab-popup-close.secondary{
  background:linear-gradient(135deg,#fdfbfb,#ebedee);
  color:#111;
  box-shadow:0 8px 24px rgba(0,0,0,.16),inset 0 1px rgba(255,255,255,.8);
}
.arsab-popup-live{background:#111;color:#fff;border-color:#111}
.arsab-popup-close:not(.secondary){
  position:absolute;
  z-index:3;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  color:#111;
  font:400 25px/1 "Bricolage Grotesque",sans-serif;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.arsab-popup-close:hover,.arsab-popup-live:hover,.arsab-popup-close.secondary:hover{
  transform:translateY(-1px);
}
@media(max-width:820px){
  .arsab-portfolio-popup{padding:12px}
  .arsab-popup-panel{
    grid-template-columns:1fr;
    height:94vh;
    max-height:94vh;
    border-radius:20px;
    overflow:hidden;
  }
  .arsab-popup-media-stage{
    min-height:0;
    height:48vh;
    max-height:440px;
  }
  .arsab-popup-media{
    max-height:48vh !important;
  }
  .arsab-popup-info{
    min-height:0;
    height:100%;
    padding:32px 22px 28px;
    overflow-y:auto;
    overflow-x:hidden;
  }
  .arsab-popup-info h2{font-size:42px}
}
@media(max-width:480px){
  .arsab-popup-media-stage{
    min-height:220px;
    height:42vh;
  }
  .arsab-popup-media{max-height:42vh !important}
  .arsab-popup-info{padding:30px 18px 24px;min-height:0;height:100%;overflow-y:auto;overflow-x:hidden}
  .arsab-popup-info h2{font-size:36px}
  .arsab-popup-description{font-size:14px}
}
