/* ============================================================
   Amana Digital Studio — premium agency design system
   Brand: red (#F10F1A) + deep navy (#061E63)
   Supporting: charcoal, white, light gray
   ============================================================ */

/* ----------------------- TOKENS ----------------------- */
:root{
  --red:#F10F1A;
  --red-600:#D00C16;
  --navy:#061E63;
  --navy-700:#0A2A85;
  --charcoal:#0B0B0F;
  --ink:#101015;
  --white:#FFFFFF;
  --gray:#F5F5F5;
  --gray-2:#FAFAFA;
  --border:#E7E7E7;
  --muted:#6B6B73;
  --muted-d:#9A9AA6;        /* muted text on dark */

  --display:'Archivo', system-ui, sans-serif;
  --body:'Inter', system-ui, sans-serif;

  --maxw:1240px;
  --radius:22px;
  --radius-sm:14px;
  --shadow:0 18px 50px -24px rgba(6,30,99,.28);
  --shadow-soft:0 10px 30px -18px rgba(11,11,15,.25);
  --ease:cubic-bezier(.2,.7,.2,1);
}

/* ----------------------- RESET ----------------------- */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  background:var(--white); color:var(--ink);
  font-family:var(--body); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; cursor:pointer; background:none; border:none; }
ul{ list-style:none; }
::selection{ background:var(--red); color:#fff; }

h1,h2,h3,h4{ font-family:var(--display); font-weight:800; line-height:1.02; letter-spacing:-0.025em; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
@media(max-width:640px){ .wrap{ padding:0 20px; } }

.red{ color:var(--red); }
.navy{ color:var(--navy); }

/* ----------------------- SHARED BITS ----------------------- */
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--display); font-weight:700; font-size:12.5px;
  letter-spacing:0.16em; text-transform:uppercase; color:var(--red);
}
.kicker::before{ content:""; width:24px; height:2px; background:var(--red); }
.kicker--ondark{ color:#fff; }
.kicker--ondark::before{ background:var(--red); }

.eyebrow{
  font-family:var(--display); font-weight:700; font-size:12.5px;
  letter-spacing:0.16em; text-transform:uppercase; color:var(--navy);
}

/* buttons */
.btn{
  font-family:var(--display); font-weight:700; font-size:15px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 26px; border-radius:999px; white-space:nowrap;
  transition:transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), color .2s, border-color .2s;
}
.btn svg{ width:18px; height:18px; }
.btn--red{ background:var(--red); color:#fff; box-shadow:0 12px 26px -12px rgba(241,15,26,.6); }
.btn--red:hover{ transform:translateY(-2px); background:var(--red-600); }
.btn--navy{ background:var(--navy); color:#fff; }
.btn--navy:hover{ transform:translateY(-2px); background:var(--navy-700); }
.btn--navy-outline{ border:1.6px solid var(--navy); color:var(--navy); }
.btn--navy-outline:hover{ background:var(--navy); color:#fff; transform:translateY(-2px); }
.btn--dark{ background:var(--ink); color:#fff; }
.btn--dark:hover{ transform:translateY(-2px); background:#000; }
.btn--ghost-light{ border:1.5px solid rgba(255,255,255,.35); color:#fff; }
.btn--ghost-light:hover{ background:#fff; color:var(--ink); transform:translateY(-2px); }
.btn--white{ background:#fff; color:var(--ink); }
.btn--white:hover{ transform:translateY(-2px); }
.btn--lg{ padding:17px 32px; font-size:16px; }
.btn--block{ width:100%; }

/* section shell */
.section{ padding:104px 0; }
.section--gray{ background:var(--gray); }
.section--dark{ background:var(--charcoal); color:#fff; }
.section--navy{ background:var(--navy); color:#fff; }
.section--tight{ padding:80px 0; }

.section__head{ max-width:760px; margin:0 auto 60px; text-align:center; }
.section__head--left{ margin-left:0; text-align:left; }
.section__head h2{ font-size:clamp(2.2rem,5vw,3.9rem); margin-top:18px; }
.section__head p{ color:var(--muted); margin-top:18px; font-size:1.1rem; }
.section--dark .section__head p, .section--navy .section__head p{ color:var(--muted-d); }

/* ----------------------- HEADER ----------------------- */
.header{
  position:sticky; top:0; z-index:200; background:rgba(255,255,255,.86);
  backdrop-filter:saturate(160%) blur(14px); border-bottom:1px solid var(--border);
}
.header__in{
  max-width:var(--maxw); margin:0 auto; padding:0 28px; height:120px;
  display:flex; align-items:center; justify-content:space-between; gap:22px;
}
.brand{ display:flex; align-items:center; }
.brand img{ height:114px; width:auto; object-fit:contain; }
@media(max-width:600px){ .header__in{ height:88px; } .brand img{ height:76px; } }
.nav{ display:flex; align-items:center; gap:36px; }
.nav__links{ display:flex; gap:30px; }
.nav__links a{
  font-family:var(--display); font-weight:600; font-size:14.5px; color:var(--ink);
  position:relative; padding:6px 0;
}
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--red); transition:width .26s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after{ width:100%; }
.nav__links a.is-active{ color:var(--red); }
.burger{ display:none; width:44px; height:44px; align-items:center; justify-content:center; flex-direction:column; gap:5px; }
.burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:.25s var(--ease); }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:78px 0 auto 0; z-index:190; background:#fff;
  border-bottom:1px solid var(--border); padding:18px 28px 26px;
  transform:translateY(-120%); transition:transform .3s var(--ease); box-shadow:var(--shadow-soft);
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav a{ display:block; font-family:var(--display); font-weight:700; font-size:20px; padding:13px 0; border-bottom:1px solid var(--border); }
.mobile-nav .btn{ margin-top:18px; }

@media(max-width:900px){
  .nav__links, .header__cta{ display:none; }
  .burger{ display:flex; }
}

/* ----------------------- HERO ----------------------- */
.hero{ position:relative; padding:74px 0 90px; overflow:hidden; }
.hero::before{
  content:""; position:absolute; top:-200px; right:-160px; width:620px; height:620px;
  background:radial-gradient(circle, rgba(6,30,99,.10), transparent 62%); z-index:0; pointer-events:none;
}
.hero::after{
  content:""; position:absolute; bottom:-220px; left:-180px; width:560px; height:560px;
  background:radial-gradient(circle, rgba(241,15,26,.08), transparent 62%); z-index:0; pointer-events:none;
}
.hero__grid{
  position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr;
  gap:54px; align-items:center;
}
.hero__label{
  display:inline-flex; align-items:center; gap:10px; padding:8px 16px; border-radius:999px;
  background:var(--gray); border:1px solid var(--border);
  font-family:var(--display); font-weight:700; font-size:12.5px; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--navy);
}
.hero__label .dot{ width:8px; height:8px; border-radius:50%; background:var(--red); }
.hero h1{
  font-size:clamp(2.7rem,6vw,5.1rem); margin:26px 0 0; max-width:14ch;
}
.hero__sub{ color:var(--muted); font-size:1.18rem; max-width:46ch; margin-top:24px; }
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:34px; }
.hero__trust{
  display:flex; align-items:center; gap:14px; margin-top:30px; flex-wrap:wrap;
  color:var(--muted); font-size:14px; font-weight:500;
}
.hero__stars{ display:inline-flex; gap:2px; color:#FBBF24; }
.hero__stars svg{ width:17px; height:17px; }

@media(max-width:900px){
  .hero{ padding:44px 0 56px; }
  .hero__grid{ grid-template-columns:1fr; gap:34px; }
  .hero h1{ max-width:18ch; }
}
@media(max-width:520px){
  .hero h1{ font-size:clamp(2.3rem,8.4vw,3rem); }
  .hero__sub{ font-size:1.05rem; }
}

/* ---- HERO reel video ---- */
.hero__visual--reel{ display:flex; justify-content:center; align-items:center; min-height:0; }
.hero__reel{ position:relative; width:100%; max-width:340px; aspect-ratio:9/16; border-radius:30px; overflow:hidden; background:#000; border:1px solid var(--border); box-shadow:0 44px 90px -34px rgba(6,30,99,.45); }
.hero__reel-vid{ width:100%; height:100%; object-fit:cover; display:block; }
.hero__reel-sound{ position:absolute; bottom:16px; right:16px; z-index:2; width:44px; height:44px; border-radius:50%; border:none; background:rgba(11,11,15,.55); color:#fff; display:grid; place-items:center; cursor:pointer; -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); transition:background .2s, transform .2s; }
.hero__reel-sound:hover{ background:var(--red); transform:scale(1.06); }
.hero__reel-sound svg{ width:20px; height:20px; }
.hero__reel-sound .i-on{ display:none; }
.hero__reel-sound:not(.is-muted) .i-off{ display:none; }
.hero__reel-sound:not(.is-muted) .i-on{ display:block; }
@media(max-width:900px){ .hero__reel{ max-width:300px; } }

/* ---- HERO floating-card visual ---- */
.hero__visual{ position:relative; min-height:480px; }
.card{
  position:absolute; background:#fff; border:1px solid var(--border);
  border-radius:var(--radius-sm); box-shadow:var(--shadow); padding:18px;
}
.float{ animation:float 6s ease-in-out infinite; }
.float--2{ animation-delay:-2s; } .float--3{ animation-delay:-4s; }
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@media(prefers-reduced-motion:reduce){ .float{ animation:none; } }

/* website preview card */
.card--site{ top:0; left:0; width:320px; z-index:3; }
.card--site .winbar{ display:flex; gap:6px; margin-bottom:12px; }
.card--site .winbar i{ width:10px; height:10px; border-radius:50%; background:var(--border); }
.card--site .winbar i:nth-child(1){ background:#FF5F57; }
.card--site .winbar i:nth-child(2){ background:#FEBC2E; }
.card--site .winbar i:nth-child(3){ background:#28C840; }
.card--site .hb{ height:60px; border-radius:8px; background:linear-gradient(120deg,var(--navy),var(--navy-700)); position:relative; overflow:hidden; }
.card--site .hb::after{ content:""; position:absolute; right:-20px; bottom:-20px; width:90px; height:90px; border-radius:50%; background:rgba(241,15,26,.5); }
.card--site .ln{ height:9px; border-radius:6px; background:var(--gray); margin-top:11px; }
.card--site .ln.s{ width:62%; }
.card--site .pill{ display:inline-block; margin-top:13px; padding:7px 14px; border-radius:999px; background:var(--red); color:#fff; font-size:11px; font-weight:700; font-family:var(--display); }

/* ads dashboard card */
.card--ads{ top:96px; right:0; width:248px; z-index:4; }
.card--ads .lab{ font-family:var(--display); font-weight:700; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.card--ads .big{ font-family:var(--display); font-weight:800; font-size:30px; color:var(--ink); margin-top:4px; letter-spacing:-0.03em; }
.card--ads .big em{ font-style:normal; color:var(--red); font-size:14px; margin-left:6px; }
.card--ads .bars{ display:flex; align-items:flex-end; gap:7px; height:58px; margin-top:14px; }
.card--ads .bars span{ flex:1; border-radius:5px 5px 0 0; background:var(--gray); }
.card--ads .bars span.a{ background:var(--navy); }
.card--ads .bars span.b{ background:var(--red); }

/* social content card */
.card--social{ bottom:34px; left:24px; width:208px; z-index:5; }
.card--social .ph{ height:128px; border-radius:10px; background:linear-gradient(150deg,#1a1a22,var(--charcoal)); position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:12px; }
.card--social .ph::before{ content:""; position:absolute; top:-30px; right:-30px; width:110px; height:110px; border-radius:50%; background:radial-gradient(circle,rgba(241,15,26,.55),transparent 70%); }
.card--social .play{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.card--social .play svg{ width:14px; height:14px; color:var(--ink); margin-left:2px; }
.card--social .meta{ position:relative; z-index:2; color:#fff; font-size:11px; font-weight:600; }
.card--social .row{ display:flex; justify-content:space-between; margin-top:11px; font-family:var(--display); font-weight:700; font-size:12px; color:var(--muted); }
.card--social .row b{ color:var(--red); }

/* studio tag chip */
.chip{
  position:absolute; bottom:-6px; right:6px; z-index:6; background:var(--navy); color:#fff;
  border-radius:999px; padding:11px 18px; display:flex; align-items:center; gap:9px;
  font-family:var(--display); font-weight:700; font-size:13px; box-shadow:var(--shadow);
}
.chip svg{ width:16px; height:16px; color:#fff; }

@media(max-width:1100px){ .card--ads{ right:0; } }
@media(max-width:520px){
  .hero__visual{ min-height:430px; transform:scale(.86); transform-origin:top left; }
}

/* ----------------------- TRUST STRIP ----------------------- */
.trust{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--white); padding:38px 0; }
.trust__txt{ text-align:center; color:var(--muted); font-size:14.5px; font-weight:500; margin-bottom:24px; }
.trust__row{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }
.trust__chip{
  display:flex; align-items:center; gap:10px; padding:13px 22px; border-radius:14px;
  background:var(--gray); border:1px solid var(--border);
  font-family:var(--display); font-weight:700; font-size:15px; color:var(--navy);
}
.trust__chip .d{ width:9px; height:9px; border-radius:50%; background:var(--red); }
/* moving marquee of industry pills (Mariq-style logo strip) */
.marquee{ margin-top:24px; overflow:hidden; -webkit-mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.marquee__track{ display:flex; gap:14px; width:max-content; padding:2px 0; animation:marquee 34s linear infinite; }
.marquee:hover .marquee__track{ animation-play-state:paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media(prefers-reduced-motion:reduce){ .marquee__track{ animation:none; flex-wrap:wrap; justify-content:center; width:auto; } }

/* ----------------------- SERVICES ----------------------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:900px){ .grid-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .grid-3{ grid-template-columns:1fr; } }

.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media(max-width:980px){ .grid-4{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .grid-4{ grid-template-columns:1fr; } }

.scard{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:30px;
  transition:transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s;
  position:relative; overflow:hidden;
}
.scard::after{
  content:""; position:absolute; left:0; top:0; height:4px; width:0; background:var(--red);
  transition:width .3s var(--ease);
}
.scard:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
.scard:hover::after{ width:100%; }
.scard__icon{
  width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:rgba(241,15,26,.08); color:var(--red); margin-bottom:20px;
}
.scard__icon svg{ width:26px; height:26px; }
.scard h3{ font-size:1.35rem; color:var(--navy); }
.scard p{ color:var(--muted); margin-top:10px; font-size:15.5px; }
.scard__more{ display:inline-flex; align-items:center; gap:7px; margin-top:18px; font-family:var(--display); font-weight:700; font-size:14px; color:var(--red); }
.scard__more svg{ width:15px; height:15px; transition:transform .25s var(--ease); }
.scard:hover .scard__more svg{ transform:translateX(4px); }

/* ----------------------- ABOUT PREVIEW ----------------------- */
.aboutp{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.aboutp h2{ font-size:clamp(2rem,4.4vw,3.4rem); }
.aboutp h2 .red{ color:var(--red); }
.aboutp p{ color:var(--muted); margin-top:22px; font-size:1.08rem; }
.aboutp__tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.tag{ padding:9px 16px; border-radius:999px; background:var(--gray); border:1px solid var(--border); font-family:var(--display); font-weight:700; font-size:13px; color:var(--navy); }
.aboutp__visual{
  border-radius:var(--radius); overflow:hidden; aspect-ratio:5/4; position:relative;
  background:linear-gradient(150deg,var(--navy),var(--charcoal)); display:flex; align-items:flex-end; padding:34px; color:#fff;
}
.aboutp__visual::before{ content:""; position:absolute; top:-60px; right:-60px; width:240px; height:240px; border-radius:50%; background:radial-gradient(circle,rgba(241,15,26,.45),transparent 70%); }
.aboutp__visual .stat{ position:relative; z-index:2; }
.aboutp__visual .stat b{ display:block; font-family:var(--display); font-weight:900; font-size:clamp(2.4rem,5vw,3.6rem); letter-spacing:-0.03em; }
.aboutp__visual .stat span{ color:var(--muted-d); font-size:15px; }
@media(max-width:860px){ .aboutp{ grid-template-columns:1fr; gap:40px; } }

/* ----------------------- PORTFOLIO ----------------------- */
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
@media(max-width:780px){ .grid-2{ grid-template-columns:1fr; } }

/* horizontal side-scrolling row with side arrows (portfolio) */
.hscroll{ position:relative; }
.hrow{
  display:flex; gap:24px; overflow-x:auto; overflow-y:hidden;
  scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
  padding:10px 2px 6px; margin:0 -2px;
  scrollbar-width:none; -ms-overflow-style:none;
}
.hrow::-webkit-scrollbar{ display:none; }
.hrow > .pcard{ flex:0 0 370px; scroll-snap-align:start; }
.hscroll__btn{
  position:absolute; top:125px; transform:translateY(-50%);
  width:50px; height:50px; border-radius:50%; background:#fff; color:var(--navy);
  border:1px solid var(--border); box-shadow:0 10px 26px -10px rgba(0,0,0,.28);
  display:grid; place-items:center; cursor:pointer; z-index:6;
  transition:opacity .25s var(--ease), background .2s, color .2s;
}
.hscroll__btn svg{ width:22px; height:22px; }
.hscroll__btn--prev{ left:-14px; } .hscroll__btn--next{ right:-14px; }
.hscroll__btn:hover{ background:var(--red); color:#fff; border-color:var(--red); }
.hscroll__btn:active{ transform:translateY(-50%) scale(.94); }
.hscroll__btn[disabled]{ opacity:0; pointer-events:none; }
@media(max-width:600px){
  .hrow{ gap:16px; } .hrow > .pcard{ flex-basis:85%; }
  .hscroll__btn{ display:none; }
}

.pcard{
  border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; background:#fff;
  transition:transform .28s var(--ease), box-shadow .28s var(--ease); display:flex; flex-direction:column;
}
.pcard:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.pcard__shot{
  aspect-ratio:16/10; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; padding:26px;
}
.pcard__shot--navy{ background:linear-gradient(145deg,var(--navy),#03134a); }
.pcard__shot--red{ background:linear-gradient(145deg,var(--red),#a60a12); }
.pcard__shot--dark{ background:linear-gradient(145deg,#1b1b22,var(--charcoal)); }
.pcard__shot--steel{ background:linear-gradient(145deg,#2a3550,#121826); }
.pcard__shot--gray{ background:linear-gradient(145deg,#3a3a44,#16161b); }
.pcard__shot img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.pcard__mock{
  width:86%; background:#fff; border-radius:10px; box-shadow:0 20px 40px -20px rgba(0,0,0,.5); overflow:hidden;
}
.pcard__mock .bar{ height:26px; background:var(--gray); display:flex; align-items:center; gap:5px; padding:0 12px; }
.pcard__mock .bar i{ width:8px; height:8px; border-radius:50%; background:#cfcfd6; }
.pcard__mock .body{ padding:16px; }
.pcard__mock .body .h{ height:34px; border-radius:6px; background:linear-gradient(120deg,var(--navy),var(--navy-700)); }
.pcard__mock .body .l{ height:8px; border-radius:5px; background:var(--gray); margin-top:9px; }
.pcard__mock .body .l.s{ width:60%; }
.pcard__mock .body .l.r{ width:40%; background:rgba(241,15,26,.4); }
.pcard__bigtype{ position:absolute; top:14px; left:20px; font-family:var(--display); font-weight:900; font-size:5rem; line-height:.8; color:rgba(255,255,255,.10); letter-spacing:-0.04em; }
.pcard__body{ padding:26px 26px 28px; display:flex; flex-direction:column; flex:1; }
.pcard__cat{ font-family:var(--display); font-weight:700; font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--red); }
.pcard__name{ font-family:var(--display); font-weight:800; font-size:1.5rem; color:var(--navy); margin-top:8px; letter-spacing:-0.02em; }
.pcard__desc{ color:var(--muted); font-size:15px; margin-top:10px; flex:1; }
.pcard__meta{ font-size:13px; color:var(--muted); margin-top:14px; }
.pcard__meta b{ color:var(--ink); font-weight:600; }
.pcard__link{ display:inline-flex; align-items:center; gap:8px; margin-top:20px; font-family:var(--display); font-weight:700; font-size:14.5px; color:var(--navy); }
.pcard__link svg{ width:16px; height:16px; transition:transform .25s var(--ease); }
.pcard:hover .pcard__link svg{ transform:translateX(4px); }
.pcard__link:hover{ color:var(--red); }

/* ----------------------- STUDIO RENTAL (dark) ----------------------- */
.studio{ position:relative; overflow:hidden; }
.studio::before{ content:""; position:absolute; top:-120px; right:-120px; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle,rgba(241,15,26,.20),transparent 65%); }
.studio::after{ content:""; position:absolute; bottom:-160px; left:-100px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle,rgba(6,30,99,.45),transparent 65%); }
.studio__grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.studio__grid h2{ font-size:clamp(2.1rem,4.8vw,3.6rem); }
.studio__grid p{ color:var(--muted-d); margin-top:20px; font-size:1.1rem; max-width:46ch; }
.studio__cta{ margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; }
.studio__features{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.feat{ background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:22px; }
.feat svg{ width:24px; height:24px; color:var(--red); }
.feat b{ display:block; font-family:var(--display); font-weight:700; font-size:16px; margin-top:14px; }
.feat span{ color:var(--muted-d); font-size:13.5px; }
@media(max-width:860px){ .studio__grid{ grid-template-columns:1fr; gap:40px; } }

/* ----------------------- PROCESS ----------------------- */
.proc{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.pstep{ position:relative; padding:30px; border-radius:var(--radius); background:#fff; border:1px solid var(--border); transition:transform .26s var(--ease), box-shadow .26s; }
.pstep:hover{ transform:translateY(-5px); box-shadow:var(--shadow-soft); }
.pstep__n{ font-family:var(--display); font-weight:900; font-size:14px; letter-spacing:.1em; color:var(--red); }
.pstep__bar{ height:3px; width:46px; background:var(--navy); border-radius:3px; margin:14px 0 18px; }
.pstep h3{ font-size:1.25rem; color:var(--navy); }
.pstep p{ color:var(--muted); font-size:14.5px; margin-top:10px; }
@media(max-width:900px){ .proc{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:460px){ .proc{ grid-template-columns:1fr; } }

/* ----------------------- REVIEWS ----------------------- */
.rrating{ display:flex; flex-direction:column; align-items:center; gap:8px; margin-bottom:48px; }
.rrating__stars{ display:inline-flex; gap:4px; color:#FBBF24; }
.rrating__stars svg{ width:26px; height:26px; }
.rrating b{ font-family:var(--display); font-weight:800; font-size:1.3rem; }
.rrating span{ color:var(--muted); font-size:14px; }
.review{ background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:30px; display:flex; flex-direction:column; }
.review__stars{ display:inline-flex; gap:3px; color:#FBBF24; margin-bottom:16px; }
.review__stars svg{ width:17px; height:17px; }
.review__q{ font-size:1.05rem; color:var(--ink); flex:1; line-height:1.6; }
.review__by{ display:flex; align-items:center; gap:12px; margin-top:22px; }
.review__av{ width:44px; height:44px; border-radius:50%; background:linear-gradient(140deg,var(--navy),var(--red)); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--display); font-weight:800; }
.review__name{ font-family:var(--display); font-weight:700; font-size:15px; }
.review__role{ color:var(--muted); font-size:13px; }

/* ----------------------- FAQ ----------------------- */
.faq{ max-width:820px; margin:0 auto; }
.faq__item{ border-bottom:1px solid var(--border); }
.faq__q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; text-align:left; padding:26px 4px; font-family:var(--display); font-weight:700; font-size:clamp(1.05rem,2vw,1.3rem); color:var(--ink); }
.faq__q .ic{ flex-shrink:0; width:34px; height:34px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; transition:.25s var(--ease); }
.faq__q .ic svg{ width:16px; height:16px; color:var(--navy); transition:transform .25s var(--ease); }
.faq__item.open .ic{ background:var(--red); border-color:var(--red); }
.faq__item.open .ic svg{ color:#fff; transform:rotate(45deg); }
.faq__a{ overflow:hidden; max-height:0; transition:max-height .3s var(--ease); }
.faq__a p{ color:var(--muted); padding:0 4px 26px; font-size:1.02rem; max-width:64ch; }

/* ----------------------- FINAL CTA ----------------------- */
.finalcta{ position:relative; overflow:hidden; text-align:center; }
.finalcta::before{ content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:760px; height:760px; max-width:120%; border-radius:50%; background:radial-gradient(circle,rgba(6,30,99,.55),transparent 62%); }
.finalcta::after{ content:""; position:absolute; bottom:-160px; right:-120px; width:440px; height:440px; border-radius:50%; background:radial-gradient(circle,rgba(241,15,26,.22),transparent 65%); }
.finalcta__in{ position:relative; z-index:2; max-width:760px; margin:0 auto; }
.finalcta h2{ font-size:clamp(2.3rem,5.6vw,4.4rem); }
.finalcta p{ color:var(--muted-d); margin:22px 0 36px; font-size:1.18rem; }
.finalcta__cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ----------------------- PAGE HERO (inner pages) ----------------------- */
.phero{ padding:70px 0 60px; position:relative; overflow:hidden; }
.phero::before{ content:""; position:absolute; top:-160px; right:-120px; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle,rgba(6,30,99,.08),transparent 64%); }
.phero__in{ position:relative; z-index:2; max-width:780px; }
.phero h1{ font-size:clamp(2.4rem,5.6vw,4.4rem); margin-top:18px; }
.phero h1 .red{ color:var(--red); }
.phero p{ color:var(--muted); font-size:1.18rem; margin-top:20px; max-width:54ch; }
.phero__grid{ display:grid; grid-template-columns:1.08fr .92fr; gap:48px; align-items:center; }
.phero__grid .phero__in{ max-width:none; }
.phero__img img{ width:100%; border-radius:var(--radius); }
@media(max-width:860px){ .phero__grid{ grid-template-columns:1fr; gap:8px; } .phero__img{ display:none; } }

/* ----------------------- ABOUT PAGE ----------------------- */
.prose-block{ display:grid; grid-template-columns:.9fr 1.1fr; gap:54px; align-items:start; }
.prose-block .eyebrow{ margin-bottom:14px; display:block; }
.prose-block h2{ font-size:clamp(1.8rem,3.6vw,2.7rem); position:sticky; top:110px; }
.prose-block p{ color:var(--muted); font-size:1.08rem; }
.prose-block p + p{ margin-top:18px; }
@media(max-width:820px){ .prose-block{ grid-template-columns:1fr; gap:24px; } .prose-block h2{ position:static; } }

.diff-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:880px){ .diff-grid{ grid-template-columns:1fr; } }
.diff{ padding:28px; border-radius:var(--radius); background:#fff; border:1px solid var(--border); }
.diff .n{ font-family:var(--display); font-weight:900; font-size:1.6rem; color:var(--red); }
.diff h3{ font-size:1.2rem; color:var(--navy); margin-top:12px; }
.diff p{ color:var(--muted); font-size:15px; margin-top:8px; }

/* ----------------------- PORTFOLIO FILTERS ----------------------- */
.filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:46px; }
.filter{
  padding:11px 20px; border-radius:999px; border:1px solid var(--border); background:#fff;
  font-family:var(--display); font-weight:700; font-size:14px; color:var(--muted); transition:.22s var(--ease);
}
.filter:hover{ color:var(--ink); border-color:var(--navy); }
.filter.is-active{ background:var(--navy); color:#fff; border-color:var(--navy); }
.pcard.is-hidden{ display:none; }

/* ----------------------- CONTACT ----------------------- */
.contact-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:start; }
@media(max-width:880px){ .contact-grid{ grid-template-columns:1fr; gap:40px; } }
.form{ background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-soft); }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--display); font-weight:700; font-size:13px; color:var(--ink); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--body); font-size:15px; color:var(--ink);
  padding:14px 16px; border:1.5px solid var(--border); border-radius:12px; background:var(--gray-2);
  transition:border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--navy); background:#fff; }
.field textarea{ min-height:120px; resize:vertical; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.form__note{ font-size:13px; color:var(--muted); margin-top:14px; text-align:center; }

.contact-side .ccard{ background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:26px; margin-bottom:18px; }
.contact-side .ccard h3{ font-size:1.15rem; color:var(--navy); margin-bottom:6px; }
.contact-side .crow{ display:flex; align-items:flex-start; gap:14px; padding:12px 0; }
.contact-side .crow svg{ width:20px; height:20px; color:var(--red); flex-shrink:0; margin-top:3px; }
.contact-side .crow .l{ font-family:var(--display); font-weight:700; font-size:13px; color:var(--muted); }
.contact-side .crow .v{ font-size:16px; color:var(--ink); font-weight:500; }
.contact-side .cbtns{ display:flex; flex-direction:column; gap:12px; margin-top:6px; }
.map{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); aspect-ratio:16/9; background:var(--gray); position:relative; display:flex; align-items:center; justify-content:center; }
.map iframe{ width:100%; height:100%; border:0; }
.map__ph{ text-align:center; color:var(--muted); }
.map__ph svg{ width:40px; height:40px; color:var(--navy); margin:0 auto 10px; }

/* ----------------------- FOOTER ----------------------- */
.footer{ background:var(--charcoal); color:#fff; padding:72px 0 32px; }
.footer__top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
.footer__logo{ background:#fff; border-radius:12px; padding:10px 14px; display:inline-block; }
.footer__logo img{ height:34px; }
.footer__tag{ color:var(--muted-d); margin-top:18px; font-size:15px; max-width:32ch; }
.footer__social{ display:flex; gap:12px; margin-top:20px; }
.footer__social a{ width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; transition:.22s var(--ease); }
.footer__social a:hover{ background:var(--red); border-color:var(--red); }
.footer__social svg{ width:18px; height:18px; }
.footer__col h4{ font-family:var(--display); font-weight:700; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-d); margin-bottom:18px; }
.footer__col a, .footer__col p{ display:block; color:rgba(255,255,255,.78); padding:6px 0; font-size:15px; }
.footer__col a:hover{ color:#fff; }
.footer__bar{ margin-top:54px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; color:var(--muted-d); font-size:13.5px; }
@media(max-width:820px){ .footer__top{ grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:480px){ .footer__top{ grid-template-columns:1fr; } }

/* ----------------------- WHATSAPP FLOAT ----------------------- */
.wa-float{
  position:fixed; bottom:22px; right:22px; z-index:300; width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -8px rgba(37,211,102,.6); transition:transform .22s var(--ease);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:30px; height:30px; color:#fff; }

/* ----------------------- REVEAL ANIMATION ----------------------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; } }

/* ============ REAL-IMAGE ENHANCEMENTS ============ */
/* hero website card now shows a real screenshot */
.card--site .shot{ height:148px; border-radius:8px; overflow:hidden; margin-bottom:11px; border:1px solid var(--border); }
.card--site .shot img{ width:100%; height:100%; object-fit:cover; object-position:top; }
/* hero reel card now shows a real studio photo */
.card--social .ph img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.card--social .ph .play, .card--social .ph .meta{ z-index:2; }
.card--social .ph::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(11,11,15,.1),rgba(11,11,15,.55)); z-index:1; }

/* portfolio cards: real screenshots fill the shot, anchored to top */
.pcard__shot img{ object-position:top; z-index:1; }
.pcard__shot--shot{ background:#0e1430; }
/* whole-card link variant */
a.pcard--link{ color:inherit; }
a.pcard--link .pcard__link{ color:var(--navy); }
a.pcard--link:hover .pcard__link{ color:var(--red); }
a.pcard--link:hover .pcard__link svg{ transform:translateX(4px); }
.pcard__link svg{ transition:transform .25s var(--ease); }
.pcard__link--muted{ color:var(--muted); }
.pcard__link--muted:hover{ color:var(--muted); }
/* concept badge on the shot */
.pcard__badge{ position:absolute; top:14px; left:14px; z-index:3; background:rgba(11,11,15,.78); color:#fff; backdrop-filter:blur(4px); font-family:var(--display); font-weight:700; font-size:11px; letter-spacing:.08em; text-transform:uppercase; padding:7px 13px; border-radius:999px; }

/* studio section real photo + use-cases */
.studio__photo{ border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.12); position:relative; box-shadow:0 30px 60px -30px rgba(0,0,0,.6); }
.studio__photo img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:4/3; }
.studio__photo .badge{ position:absolute; left:16px; bottom:16px; z-index:2; background:var(--red); color:#fff; font-family:var(--display); font-weight:700; font-size:12.5px; padding:8px 14px; border-radius:999px; display:flex; align-items:center; gap:8px; }
.studio__photo .badge svg{ width:15px; height:15px; }
/* studio click-to-play video */
.studio__photo--video{ cursor:pointer; }
.studio__video{ display:none; width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; background:#000; }
.studio__play{ position:absolute; inset:0; margin:auto; width:84px; height:84px; border:none; border-radius:50%; background:var(--red); color:#fff; display:grid; place-items:center; cursor:pointer; z-index:3; box-shadow:0 14px 40px -8px rgba(241,15,26,.6); transition:transform .2s var(--ease), background .2s; }
.studio__play svg{ width:34px; height:34px; margin-left:4px; }
.studio__photo--video:hover .studio__play{ transform:scale(1.08); background:#ff2630; }
.studio__photo--playing{ cursor:default; }
.studio__photo--playing .studio__poster,
.studio__photo--playing .studio__play,
.studio__photo--playing .badge{ display:none; }
.studio__photo--playing .studio__video{ display:block; }
.usecases{ display:flex; flex-wrap:wrap; gap:9px; margin-top:24px; }
.usecase{ padding:9px 15px; border-radius:999px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.04); font-family:var(--display); font-weight:700; font-size:12.5px; color:#fff; display:flex; align-items:center; gap:8px; }
.usecase .d{ width:7px; height:7px; border-radius:50%; background:var(--red); }

/* compact CTA band (portfolio page) */
.ctaband{ text-align:center; }
.ctaband h2{ font-size:clamp(2rem,4.6vw,3.4rem); max-width:18ch; margin:0 auto; }
.ctaband p{ color:var(--muted-d); margin:18px 0 30px; font-size:1.12rem; }
.ctaband__cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============ LANGUAGE SWITCHER ============ */
.langsw{ display:flex; align-items:center; border:1px solid var(--border); border-radius:999px; overflow:hidden; background:#fff; }
.langsw button{ font-family:var(--display); font-weight:700; font-size:12px; padding:7px 9px; color:var(--muted); line-height:1; transition:background .2s,color .2s; }
.langsw button + button{ border-left:1px solid var(--border); }
.langsw button:hover{ color:var(--ink); }
.langsw button.on{ background:var(--ink); color:#fff; }
.langsw__zgh{ font-size:14px; }
@media(max-width:900px){ .header .langsw{ display:none; } }
.mobile-nav .langsw{ display:inline-flex; margin-top:14px; }

/* ============ RTL (Arabic) ============ */
body.is-arabic{ direction:rtl; }
body.is-arabic .hero__sub, body.is-arabic .section__head{ text-align:inherit; }
body.is-arabic .nav__links a::after{ left:auto; right:0; }
body.is-arabic .kicker::before, body.is-arabic .hero__label .dot{ }
body.is-arabic .pcard__link svg, body.is-arabic .scard__more svg, body.is-arabic .btn svg{ transform:scaleX(-1); }
body.is-arabic .hero__cta, body.is-arabic .studio__cta, body.is-arabic .finalcta__cta, body.is-arabic .filters{ }

/* Arabic & Amazigh webfonts */
body.is-arabic{ font-family:'Tajawal', system-ui, sans-serif; }
body.is-arabic h1, body.is-arabic h2, body.is-arabic h3, body.is-arabic h4,
body.is-arabic .kicker, body.is-arabic .hero__label, body.is-arabic .btn, body.is-arabic .nav__links a,
body.is-arabic .eyebrow{ font-family:'Tajawal', system-ui, sans-serif; letter-spacing:0; }
body.is-arabic h1{ line-height:1.18; }
body.is-amazigh{ font-family:'Noto Sans Tifinagh', system-ui, sans-serif; }
body.is-amazigh h1, body.is-amazigh h2, body.is-amazigh h3, body.is-amazigh h4,
body.is-amazigh .kicker, body.is-amazigh .hero__label, body.is-amazigh .btn, body.is-amazigh .nav__links a,
body.is-amazigh .eyebrow{ font-family:'Noto Sans Tifinagh', system-ui, sans-serif; letter-spacing:0; line-height:1.3; }
body.is-amazigh h1{ line-height:1.25; }

/* utilities */
.center{ text-align:center; }
.mt-40{ margin-top:40px; }
.mt-28{ margin-top:28px; }
