/* =====================================================================
   Arrow Wise — frontend theme
   Class-based translation of the "Arrowwise Home" design.
   Self-contained: no Bootstrap, no framework CSS required.
   ===================================================================== */

/* ---------------------------------------------------------------- tokens */
:root{
  --aw-bg:          #0d1a25;
  --aw-bg-deep:     #0a151f;
  --aw-bg-footer:   #081119;
  --aw-panel:       #122130;
  --aw-panel-2:     #16283a;
  --aw-cream:       #f5f1e8;
  --aw-white:       #ffffff;

  --aw-accent:      #35b7f0;
  --aw-accent-soft: #7fd2f7;
  --aw-accent-deep: #1e9bd7;
  --aw-on-accent:   #062330;

  --aw-heading:     #f3f8fb;
  --aw-text:        #e6edf2;
  --aw-muted:       #a7bccb;
  --aw-dim:         #8ea3b2;
  --aw-faint:       #6f8494;

  --aw-ink:         #122130;
  --aw-ink-muted:   #4a5c68;
  --aw-ink-dim:     #5a6c78;
  --aw-ink-faint:   #6a7c88;

  --aw-line:        rgba(255,255,255,.07);
  --aw-line-strong: rgba(255,255,255,.16);
  --aw-line-ink:    rgba(18,33,48,.1);

  --aw-font:        'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --aw-font-head:   'Sora', 'DM Sans', system-ui, sans-serif;

  --aw-shell:       1320px;
  --aw-gutter:      32px;
  --aw-header-h:    80px;
}

/* ------------------------------------------------------------------ base */
*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:90px; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--aw-font);
  background:var(--aw-bg);
  color:var(--aw-text);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{ color:var(--aw-accent); text-decoration:none; transition:color .2s ease; }
a:hover{ color:var(--aw-accent-soft); }
img{ display:block; max-width:100%; height:auto; }
h1,h2,h3,h4,h5,h6{ font-family:var(--aw-font-head); color:var(--aw-heading); margin:0; }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }
button{ font-family:inherit; }
::selection{ background:var(--aw-accent); color:var(--aw-bg); }
:focus-visible{ outline:2px solid var(--aw-accent); outline-offset:3px; border-radius:4px; }
.aw-sr{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ------------------------------------------------------------ animations */
/* Loader mark: fades and settles in, then holds while the bar completes.
   Starts at 0% — it used to wait for an icon mark to dissolve out first. */
@keyframes awLogoIn{ 0%{opacity:0;transform:scale(.92) translateY(6px)} 35%{opacity:1;transform:scale(1) translateY(0)} 100%{opacity:1;transform:scale(1) translateY(0)} }
@keyframes awBarGrow{ 0%{width:0} 100%{width:100%} }
@keyframes awFadeUp{ 0%{opacity:0;transform:translateY(24px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes awHeaderIn{ from{transform:translateY(-100%);opacity:0} to{transform:translateY(0);opacity:1} }
@keyframes awSpin{ to{ transform:rotate(360deg); } }

/* Reveal-on-scroll (JS adds .is-in) */
.aw-reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.aw-reveal.is-in{ opacity:1; transform:none; }
.aw-reveal[data-delay="1"]{ transition-delay:.08s; }
.aw-reveal[data-delay="2"]{ transition-delay:.16s; }
.aw-reveal[data-delay="3"]{ transition-delay:.24s; }
.aw-reveal[data-delay="4"]{ transition-delay:.32s; }
.aw-reveal[data-delay="5"]{ transition-delay:.40s; }

/* ---------------------------------------------------------------- loader */
.aw-loader{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  background:var(--aw-bg);
  transition:opacity .7s ease, visibility .7s ease;
}
.aw-loader.is-done{ opacity:0; visibility:hidden; pointer-events:none; }
.aw-loader__marks{
  position:relative; width:min(70vw,520px); height:min(70vw,520px);
  display:flex; align-items:center; justify-content:center;
}
/* Belt and braces: if an older header.php is still deployed and emits the
   icon mark, keep it hidden so only one image can ever show. */
.aw-loader__icon{ display:none !important; }
.aw-loader__logo{ position:absolute; width:88%; height:auto; object-fit:contain; animation:awLogoIn 2.4s ease-in-out forwards; }
.aw-loader__bar{
  position:absolute; bottom:16%; width:180px; height:3px; border-radius:3px;
  background:rgba(255,255,255,.08); overflow:hidden;
}
.aw-loader__bar span{ display:block; height:100%; background:linear-gradient(90deg,var(--aw-accent),var(--aw-accent-soft)); animation:awBarGrow 2.3s ease-out forwards; }

/* ---------------------------------------------------------------- header */
.aw-header{
  position:fixed; top:0; left:0; right:0; z-index:60;
  animation:awHeaderIn .6s ease .05s both;
  background:linear-gradient(180deg,rgba(13,26,37,.92),rgba(13,26,37,.5) 60%,transparent);
  transition:background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.aw-header.is-stuck{
  background:rgba(9,17,25,.94);
  box-shadow:0 12px 34px -14px rgba(0,0,0,.7);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
}
/* Inner pages sit under a solid header from the start */
.aw-header.is-solid{ background:rgba(9,17,25,.94); }

.aw-header__bar{
  max-width:var(--aw-shell); margin:0 auto; padding:0 var(--aw-gutter);
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  height:var(--aw-header-h); transition:height .35s ease;
}
.aw-header.is-stuck .aw-header__bar{ height:64px; }
.aw-header__logo{ display:flex; align-items:center; flex:none; }
.aw-header__logo img{ width:auto; height:36px; display:block; transition:height .35s ease; }
.aw-header.is-stuck .aw-header__logo img{ height:28px; }

.aw-nav{ display:flex; align-items:center; gap:30px; }
.aw-nav a{
  position:relative; font-size:15px; font-weight:500;
  color:rgba(230,237,242,.82); white-space:nowrap;
}
.aw-nav a::after{
  content:''; position:absolute; left:0; bottom:-7px; height:2px; width:0;
  background:var(--aw-accent); transition:width .28s ease;
}
.aw-nav a:hover,.aw-nav a.is-active{ color:var(--aw-accent); }
.aw-nav a:hover::after,.aw-nav a.is-active::after{ width:100%; }

.aw-header__right{ display:flex; align-items:center; gap:14px; }
.aw-menu-btn{
  display:none; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:12px;
  background:rgba(255,255,255,.08); border:1px solid var(--aw-line-strong);
  color:var(--aw-text); font-size:20px; line-height:1; cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.aw-menu-btn:hover{ background:rgba(53,183,240,.16); border-color:rgba(53,183,240,.5); }

.aw-mobile-menu{
  overflow:hidden; background:#0b1620; border-top:1px solid rgba(255,255,255,.08);
  max-height:0; opacity:0;
  transition:max-height .35s ease, opacity .3s ease;
}
.aw-mobile-menu.is-open{ max-height:80vh; opacity:1; overflow-y:auto; }
.aw-mobile-menu__inner{ padding:8px var(--aw-gutter) 26px; display:flex; flex-direction:column; }
.aw-mobile-menu a{
  padding:13px 4px; font-size:16px; font-weight:500; color:#cdd9e2;
  border-bottom:1px solid var(--aw-line);
}
.aw-mobile-menu a:hover,.aw-mobile-menu a.is-active{ color:var(--aw-accent); }
.aw-mobile-menu .aw-btn{ margin-top:18px; justify-content:center; border-bottom:none; }

/* --------------------------------------------------------------- buttons */
.aw-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 30px; border-radius:999px;
  font-weight:700; font-size:16px; line-height:1;
  border:1px solid transparent; cursor:pointer; text-align:center;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.aw-btn--primary{ background:var(--aw-accent); color:var(--aw-on-accent); }
.aw-btn--primary:hover{ background:var(--aw-accent-soft); color:var(--aw-on-accent); transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(53,183,240,.6); }
.aw-btn--ghost{ border-color:rgba(255,255,255,.28); color:var(--aw-text); font-weight:600; }
.aw-btn--ghost:hover{ border-color:var(--aw-accent); color:var(--aw-accent); transform:translateY(-2px); }
.aw-btn--ink{ background:var(--aw-bg); color:#fff; }
.aw-btn--ink:hover{ background:var(--aw-accent); color:var(--aw-on-accent); transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(53,183,240,.5); }
.aw-btn--sm{ padding:13px 24px; font-size:14px; }
.aw-btn--block{ width:100%; justify-content:center; }
.aw-header__cta{ flex:none; padding:12px 22px; font-size:14px; }

.aw-readmore{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color:var(--aw-accent); }
.aw-readmore .aw-arrow{ display:inline-block; transition:transform .25s ease; }
.aw-readmore:hover .aw-arrow{ transform:translateX(6px); }

/* -------------------------------------------------------------- sections */
.aw-sec{ padding:110px var(--aw-gutter); }
.aw-sec--dark{ background:var(--aw-bg); }
.aw-sec--deep{ background:var(--aw-bg-deep); }
.aw-sec--cream{ background:var(--aw-cream); color:var(--aw-ink); }
.aw-sec--tight{ padding-top:40px; }
.aw-shell{ max-width:var(--aw-shell); margin:0 auto; width:100%; }

.aw-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--aw-accent-soft); font-weight:700; font-size:13px;
  letter-spacing:.16em; text-transform:uppercase; margin-bottom:16px;
}
.aw-eyebrow::before{ content:''; width:26px; height:2px; background:var(--aw-accent); flex:none; }
.aw-sec--cream .aw-eyebrow{ color:var(--aw-accent-deep); }

.aw-h2{
  font-family:var(--aw-font-head); font-weight:800;
  font-size:clamp(30px,3.6vw,46px); line-height:1.1; letter-spacing:-.02em;
  margin:0; color:var(--aw-heading); text-wrap:balance;
}
.aw-sec--cream .aw-h2{ color:var(--aw-ink); }
.aw-lede{ font-size:16px; line-height:1.65; color:var(--aw-muted); }
.aw-sec--cream .aw-lede{ color:var(--aw-ink-muted); }

.aw-sec-head{ text-align:center; max-width:680px; margin:0 auto 52px; }
.aw-sec-head--split{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:32px; margin-bottom:48px; flex-wrap:wrap; text-align:left; max-width:none;
}

/* ----------------------------------------------------------------- grids */
.aw-grid{ display:grid; gap:24px; }
.aw-grid--2{ grid-template-columns:repeat(2,1fr); }
.aw-grid--3{ grid-template-columns:repeat(3,1fr); }
.aw-grid--4{ grid-template-columns:repeat(4,1fr); gap:22px; }
.aw-grid--5{ grid-template-columns:repeat(5,1fr); gap:20px; }
.aw-two-col{ display:grid; grid-template-columns:1.05fr 1fr; gap:72px; align-items:center; }
.aw-two-col--flip{ grid-template-columns:1fr 1.1fr; }
.aw-two-col--top{ align-items:start; }
.aw-two-col--faq{ grid-template-columns:.9fr 1.1fr; align-items:start; }

/* ------------------------------------------------------------------ hero */
.aw-hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  overflow:hidden; background:var(--aw-bg);
}
.aw-hero__layer{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.1s ease;
}
.aw-hero__layer.is-active{ opacity:1; }
.aw-hero__scrim{ position:absolute; inset:0; background:linear-gradient(90deg,rgba(11,22,32,.95) 0%,rgba(11,22,32,.8) 42%,rgba(11,22,32,.42) 100%); }
.aw-hero__glow{ position:absolute; top:-160px; right:4%; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(53,183,240,.16),transparent 68%); pointer-events:none; }
.aw-hero__inner{ position:relative; max-width:var(--aw-shell); margin:0 auto; padding:140px var(--aw-gutter) 96px; width:100%; }
.aw-hero__body{ max-width:720px; }

.aw-hero__eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 16px; border:1px solid rgba(53,183,240,.4); border-radius:999px;
  background:rgba(53,183,240,.08); color:var(--aw-accent-soft);
  font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  animation:awFadeUp .6s ease both;
}
.aw-hero__eyebrow::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--aw-accent); flex:none; }
.aw-hero__title{
  font-family:var(--aw-font-head); font-weight:800;
  font-size:clamp(38px,5.2vw,70px); line-height:1.04; letter-spacing:-.03em;
  margin:24px 0 20px; color:var(--aw-heading); text-wrap:balance;
  animation:awFadeUp .7s ease .05s both;
}
.aw-hero__sub{ font-size:20px; line-height:1.5; color:#c2d3df; max-width:560px; margin:0 0 36px; animation:awFadeUp .8s ease .1s both; }
.aw-hero__actions{ display:flex; flex-wrap:wrap; gap:16px; animation:awFadeUp .9s ease .15s both; }
.aw-hero__dots{ display:flex; gap:12px; margin-top:52px; }
.aw-hero__dots button{
  width:12px; height:8px; border-radius:8px; border:none; padding:0; cursor:pointer;
  background:rgba(255,255,255,.25); transition:width .3s ease, background-color .3s ease;
}
.aw-hero__dots button.is-active{ width:40px; background:var(--aw-accent); }

/* ------------------------------------------------------------- USP strip */
.aw-usp-wrap{ background:var(--aw-bg); padding:0 var(--aw-gutter); }
.aw-usp-overlap{ max-width:var(--aw-shell); margin:0 auto; transform:translateY(-50%); position:relative; z-index:5; }
.aw-usp{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-radius:20px; overflow:hidden;
  background:linear-gradient(180deg,var(--aw-panel-2),var(--aw-panel));
  border:1px solid var(--aw-line);
  box-shadow:0 30px 70px -30px rgba(0,0,0,.7);
}
.aw-usp__item{ padding:34px 32px; display:flex; align-items:center; gap:18px; border-right:1px solid var(--aw-line); }
.aw-usp__item:last-child{ border-right:none; }
.aw-usp__num{
  flex:none; width:52px; height:52px; border-radius:13px;
  background:rgba(53,183,240,.12); color:var(--aw-accent);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--aw-font-head); font-weight:700; font-size:18px;
}
.aw-usp__text{ font-family:var(--aw-font-head); font-weight:600; font-size:17px; line-height:1.3; color:var(--aw-text); }

/* -------------------------------------------------------- highlight card */
.aw-highlight{
  position:relative; border-radius:20px; overflow:hidden; min-height:340px;
  display:flex; flex-direction:column; justify-content:space-between; gap:28px;
  padding:32px; background:var(--aw-panel); border:1px solid var(--aw-line);
  transition:border-color .25s ease, transform .25s ease;
}
.aw-highlight:hover{ border-color:rgba(53,183,240,.4); transform:translateY(-4px); }
.aw-highlight__bg{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:.4; }
.aw-highlight__scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(13,26,37,.2),rgba(13,26,37,.92)); }
.aw-highlight__icon{
  position:relative; width:56px; height:56px; border-radius:14px;
  background:var(--aw-accent); color:var(--aw-on-accent);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; font-weight:800; font-family:var(--aw-font-head);
}
.aw-highlight__body{ position:relative; }
.aw-highlight__body h3{ font-weight:700; font-size:22px; margin:0 0 10px; }
.aw-highlight__body p{ margin:0; color:var(--aw-muted); font-size:15px; line-height:1.5; }

/* --------------------------------------------------------- about + stats */
.aw-figure{ position:relative; border-radius:22px; overflow:hidden; background:#dfe6df; }
.aw-figure--43{ aspect-ratio:4/3.4; }
.aw-figure--11{ aspect-ratio:1/1; }
.aw-figure img{ width:100%; height:100%; object-fit:cover; }
.aw-badge-year{
  position:absolute; left:24px; bottom:24px;
  background:var(--aw-bg); color:#fff; border-radius:16px; padding:22px 26px;
  display:flex; align-items:center; gap:16px;
  box-shadow:0 20px 40px -18px rgba(0,0,0,.5);
}
.aw-badge-year strong{ font-family:var(--aw-font-head); font-weight:800; font-size:40px; color:var(--aw-accent); line-height:1; }
.aw-badge-year span{ font-size:14px; line-height:1.35; color:var(--aw-muted); }

.aw-stats{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:44px; border-top:1px solid rgba(18,33,48,.12); padding-top:32px;
}
.aw-sec--dark .aw-stats{ border-top-color:var(--aw-line); }
.aw-stats__value{ font-family:var(--aw-font-head); font-weight:800; font-size:40px; color:var(--aw-ink); line-height:1; }
.aw-sec--dark .aw-stats__value{ color:var(--aw-heading); }
.aw-stats__label{ font-size:13px; color:var(--aw-ink-dim); margin-top:8px; line-height:1.4; }
.aw-sec--dark .aw-stats__label{ color:var(--aw-dim); }

/* -------------------------------------------------------- why choose us  */
.aw-sec__glow{ position:absolute; top:-140px; left:-120px; width:460px; height:460px; border-radius:50%; background:radial-gradient(circle,rgba(53,183,240,.14),transparent 70%); pointer-events:none; }
.aw-adv-list{ display:flex; flex-direction:column; gap:22px; }
.aw-adv{ display:flex; gap:18px; padding:22px; border-radius:16px; background:var(--aw-panel); border:1px solid var(--aw-line); }
.aw-adv__tick{
  flex:none; width:44px; height:44px; border-radius:11px;
  background:rgba(53,183,240,.14); color:var(--aw-accent);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-family:var(--aw-font-head);
}
.aw-adv h4{ font-weight:600; font-size:18px; margin:0 0 6px; }
.aw-adv p{ margin:0; font-size:14.5px; line-height:1.55; color:var(--aw-muted); }

.aw-callcard{
  position:absolute; left:24px; right:24px; bottom:24px;
  background:rgba(13,26,37,.72);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12); border-radius:16px;
  padding:22px 24px; display:flex; align-items:center; gap:18px;
}
.aw-callcard__icon{
  flex:none; width:52px; height:52px; border-radius:50%;
  background:var(--aw-accent); color:var(--aw-on-accent);
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.aw-callcard small{ display:block; font-size:13px; color:var(--aw-muted); text-transform:uppercase; letter-spacing:.1em; }
.aw-callcard a{ font-family:var(--aw-font-head); font-weight:700; font-size:20px; color:#fff; }
.aw-callcard a:hover{ color:var(--aw-accent-soft); }
.aw-figure__scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(13,26,37,0),rgba(13,26,37,.7)); }

/* ------------------------------------------------------------ media card */
.aw-zoom{ overflow:hidden; }
.aw-zoom > *{ transition:transform .5s ease; }
.aw-card:hover .aw-zoom > *{ transform:scale(1.06); }

.aw-media{ background-size:cover; background-position:center; width:100%; height:100%; }

/* ---------------------------------------------------------- service card */
.aw-card{
  display:block; border-radius:18px; overflow:hidden;
  background:var(--aw-panel); border:1px solid var(--aw-line);
  transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.aw-card:hover{ border-color:rgba(53,183,240,.4); transform:translateY(-4px); box-shadow:0 26px 50px -30px rgba(0,0,0,.8); }
.aw-card__thumb{ aspect-ratio:4/3; overflow:hidden; background:var(--aw-panel-2); display:block; }
.aw-card__thumb--wide{ aspect-ratio:16/10; }
.aw-card__body{ padding:24px; }
.aw-card__num{ font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--aw-accent); margin-bottom:10px; }
.aw-card__title{ font-family:var(--aw-font-head); font-weight:600; font-size:19px; margin:0 0 10px; color:var(--aw-heading); line-height:1.35; }
.aw-card__title a{ color:inherit; }
.aw-card__title a:hover{ color:var(--aw-accent); }
.aw-card__text{ margin:0; font-size:14px; line-height:1.55; color:var(--aw-muted); }
.aw-card__meta{ display:flex; flex-wrap:wrap; gap:16px; font-size:13px; color:var(--aw-dim); margin-bottom:14px; }
.aw-card__body .aw-readmore{ margin-top:18px; }

/* ------------------------------------------------------------------ FAQ  */
.aw-faq{ display:flex; flex-direction:column; gap:14px; }
.aw-faq__item{ border-radius:14px; background:#fff; border:1px solid var(--aw-line-ink); overflow:hidden; transition:border-color .2s ease; }
.aw-faq__item.is-open{ border-color:rgba(53,183,240,.5); }
.aw-sec--dark .aw-faq__item{ background:var(--aw-panel); border-color:var(--aw-line); }
.aw-faq__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px 26px; background:none; border:none; cursor:pointer; text-align:left;
  font-family:var(--aw-font-head); font-weight:600; font-size:18px; color:var(--aw-ink);
}
.aw-sec--dark .aw-faq__q{ color:var(--aw-heading); }
.aw-faq__icon{
  flex:none; width:30px; height:30px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:400; line-height:1;
  background:rgba(18,33,48,.06); color:var(--aw-ink);
  transition:background-color .25s ease, color .25s ease, transform .25s ease;
}
.aw-sec--dark .aw-faq__icon{ background:rgba(255,255,255,.08); color:var(--aw-text); }
.aw-faq__item.is-open .aw-faq__icon{ background:var(--aw-accent); color:var(--aw-on-accent); transform:rotate(45deg); }
.aw-faq__body{ overflow:hidden; max-height:0; opacity:0; transition:max-height .3s ease, opacity .3s ease; }
.aw-faq__item.is-open .aw-faq__body{ opacity:1; }
.aw-faq__body p{ margin:0; padding:0 26px 24px; font-size:15px; line-height:1.6; color:var(--aw-ink-muted); }
.aw-sec--dark .aw-faq__body p{ color:var(--aw-muted); }

/* ---------------------------------------------------------------- meters */
.aw-meters{ display:flex; flex-direction:column; gap:26px; }
.aw-meter__head{ display:flex; justify-content:space-between; font-weight:600; font-size:15px; margin-bottom:10px; color:var(--aw-ink); }
.aw-sec--dark .aw-meter__head{ color:var(--aw-heading); }
.aw-meter__track{ height:8px; border-radius:8px; background:rgba(18,33,48,.1); overflow:hidden; }
.aw-sec--dark .aw-meter__track{ background:rgba(255,255,255,.08); }
.aw-meter__fill{ height:100%; border-radius:8px; width:0; background:linear-gradient(90deg,var(--aw-accent-deep),var(--aw-accent)); transition:width 1.2s cubic-bezier(.22,1,.36,1); }

/* -------------------------------------------------------- project cards  */
.aw-project{ position:relative; border-radius:18px; overflow:hidden; aspect-ratio:3/4; display:block; transition:transform .25s ease, box-shadow .25s ease; }
.aw-project:hover{ transform:translateY(-6px); box-shadow:0 28px 52px -28px rgba(0,0,0,.85); }
.aw-project__scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(13,26,37,.05),rgba(13,26,37,.9)); }
.aw-project__body{ position:absolute; left:22px; right:22px; bottom:22px; }
.aw-tag{
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--aw-on-accent); background:var(--aw-accent);
  padding:5px 11px; border-radius:999px; margin-bottom:12px;
}
.aw-project__body h3{ font-weight:700; font-size:19px; margin:0; color:#fff; line-height:1.25; }

/* ---------------------------------------------------------- testimonials */
.aw-quote{
  border-radius:20px; padding:34px; background:#fff;
  border:1px solid rgba(18,33,48,.08);
  box-shadow:0 22px 50px -32px rgba(18,33,48,.4);
  display:flex; flex-direction:column; gap:22px; height:100%;
}
.aw-sec--dark .aw-quote{ background:var(--aw-panel); border-color:var(--aw-line); box-shadow:none; }
.aw-stars{ color:var(--aw-accent); font-size:15px; letter-spacing:2px; }
.aw-quote p{ margin:0; font-size:16px; line-height:1.6; color:var(--aw-ink-muted); flex:1; }
.aw-sec--dark .aw-quote p{ color:var(--aw-muted); }
.aw-quote__who{ display:flex; align-items:center; gap:14px; }
.aw-quote__avatar{ flex:none; width:52px; height:52px; border-radius:50%; background:#e5e0d5 center/cover no-repeat; }
.aw-quote__name{ font-family:var(--aw-font-head); font-weight:600; font-size:16px; color:var(--aw-ink); }
.aw-sec--dark .aw-quote__name{ color:var(--aw-heading); }
.aw-quote__role{ font-size:13px; color:var(--aw-ink-faint); }
.aw-sec--dark .aw-quote__role{ color:var(--aw-dim); }

/* ---------------------------------------------------------------- footer */
.aw-footer{ background:var(--aw-bg-footer); padding:80px var(--aw-gutter) 32px; }
.aw-footer__grid{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08);
}
.aw-footer__logo{ height:40px; width:auto; margin-bottom:22px; }
.aw-footer__about{ font-size:15px; line-height:1.6; color:var(--aw-dim); max-width:360px; margin:0 0 24px; }
.aw-socials{ display:flex; gap:12px; }
.aw-socials a{
  width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
  color:var(--aw-muted); font-size:15px;
  transition:background-color .2s ease, color .2s ease;
}
.aw-socials a:hover{ background:var(--aw-accent); color:var(--aw-on-accent); }
.aw-footer h4{ font-weight:600; font-size:16px; color:var(--aw-heading); margin:0 0 20px; }
.aw-footer__links{ display:flex; flex-direction:column; gap:12px; }
.aw-footer__links a{ font-size:14.5px; color:var(--aw-dim); }
.aw-footer__links a:hover{ color:var(--aw-accent); }
.aw-footer__bottom{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px;
  padding-top:28px; font-size:14px; color:var(--aw-faint);
}
.aw-footer__bottom a{ color:var(--aw-dim); }
.aw-footer__bottom a:hover{ color:var(--aw-accent); }
.aw-footer__contact{ display:flex; gap:24px; flex-wrap:wrap; }

/* ------------------------------------------------------------- back-to-top */
.aw-top{
  position:fixed; right:24px; bottom:24px; z-index:50;
  width:46px; height:46px; border-radius:50%; border:none; cursor:pointer;
  background:var(--aw-accent); color:var(--aw-on-accent); font-size:18px;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .2s ease;
  box-shadow:0 12px 26px -10px rgba(53,183,240,.7);
}
.aw-top.is-on{ opacity:1; visibility:visible; transform:none; }
.aw-top:hover{ background:var(--aw-accent-soft); }

/* ===================================================================
   INNER PAGES
   =================================================================== */

/* ------------------------------------------------------------ page hero */
.aw-phero{
  position:relative; padding:calc(var(--aw-header-h) + 80px) var(--aw-gutter) 80px;
  background:var(--aw-bg-deep); overflow:hidden;
}
.aw-phero__bg{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:.28; }
.aw-phero__scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,21,31,.86),rgba(10,21,31,.96)); }
.aw-phero__inner{ position:relative; max-width:var(--aw-shell); margin:0 auto; }
.aw-phero h1{
  font-weight:800; font-size:clamp(30px,4.4vw,54px); line-height:1.08;
  letter-spacing:-.025em; margin:0 0 14px; text-wrap:balance;
}
.aw-phero p{ color:var(--aw-muted); font-size:17px; max-width:640px; margin:0; }
.aw-crumbs{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:14px; color:var(--aw-dim); margin-top:18px; }
.aw-crumbs a{ color:var(--aw-dim); }
.aw-crumbs a:hover{ color:var(--aw-accent); }
.aw-crumbs span[aria-current]{ color:var(--aw-accent); }
.aw-crumbs .aw-crumbs__sep{ opacity:.5; }

/* ------------------------------------------------------------ prose/CMS */
.aw-prose{ font-size:16.5px; line-height:1.75; color:var(--aw-muted); }
.aw-sec--cream .aw-prose{ color:var(--aw-ink-muted); }
.aw-prose h1,.aw-prose h2,.aw-prose h3,.aw-prose h4,.aw-prose h5{ margin:1.8em 0 .6em; line-height:1.25; }
.aw-prose h1:first-child,.aw-prose h2:first-child,.aw-prose h3:first-child{ margin-top:0; }
.aw-prose h2{ font-size:28px; font-weight:700; }
.aw-prose h3{ font-size:22px; font-weight:600; }
.aw-prose h4{ font-size:18px; font-weight:600; }
.aw-sec--cream .aw-prose h1,.aw-sec--cream .aw-prose h2,
.aw-sec--cream .aw-prose h3,.aw-sec--cream .aw-prose h4{ color:var(--aw-ink); }
.aw-prose ul,.aw-prose ol{ padding-left:22px; margin:0 0 1.2em; }
.aw-prose li{ margin-bottom:.5em; }
.aw-prose ul{ list-style:none; padding-left:0; }
.aw-prose ul li{ position:relative; padding-left:28px; }
.aw-prose ul li::before{
  content:''; position:absolute; left:6px; top:.62em;
  width:8px; height:8px; border-radius:50%; background:var(--aw-accent);
}
.aw-prose ol li::marker{ color:var(--aw-accent); font-weight:700; }
.aw-prose img{ border-radius:16px; margin:1.4em 0; }
.aw-prose a{ text-decoration:underline; text-underline-offset:3px; }
.aw-prose blockquote{
  margin:1.6em 0; padding:20px 26px; border-left:3px solid var(--aw-accent);
  background:rgba(53,183,240,.07); border-radius:0 12px 12px 0; font-size:17px;
}
.aw-prose table{ width:100%; border-collapse:collapse; margin:1.4em 0; font-size:15px; }
.aw-prose th,.aw-prose td{ padding:12px 14px; border:1px solid var(--aw-line); text-align:left; }
.aw-sec--cream .aw-prose th,.aw-sec--cream .aw-prose td{ border-color:var(--aw-line-ink); }
.aw-prose th{ background:rgba(53,183,240,.1); font-weight:600; }
.aw-prose-wrap{ overflow-x:auto; }

/* --------------------------------------------------------------- panels */
.aw-panel{ background:var(--aw-panel); border:1px solid var(--aw-line); border-radius:20px; padding:32px; }
.aw-sec--cream .aw-panel{ background:#fff; border-color:rgba(18,33,48,.08); box-shadow:0 22px 50px -34px rgba(18,33,48,.35); }
.aw-panel__head{ font-family:var(--aw-font-head); font-weight:700; font-size:20px; margin:0 0 18px; color:var(--aw-heading); }
.aw-sec--cream .aw-panel__head{ color:var(--aw-ink); }

/* ------------------------------------------------------------- sidebars */
.aw-with-side{ display:grid; grid-template-columns:1fr 360px; gap:48px; align-items:start; }
.aw-with-side--left{ grid-template-columns:340px 1fr; }
.aw-side{ display:flex; flex-direction:column; gap:24px; position:sticky; top:100px; }
.aw-side__list{ display:flex; flex-direction:column; gap:2px; }
.aw-side__list a{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:13px 16px; border-radius:10px; font-size:15px; font-weight:500;
  color:var(--aw-muted); background:rgba(255,255,255,.03);
}
.aw-side__list a:hover,.aw-side__list a.is-active{ background:rgba(53,183,240,.14); color:var(--aw-accent); }
.aw-side__list a .aw-count{ font-size:13px; opacity:.7; }

.aw-mini{ display:flex; gap:14px; align-items:center; }
.aw-mini + .aw-mini{ margin-top:18px; padding-top:18px; border-top:1px solid var(--aw-line); }
.aw-mini__thumb{ flex:none; width:74px; height:64px; border-radius:10px; background:var(--aw-panel-2) center/cover no-repeat; }
.aw-mini__title{ font-family:var(--aw-font-head); font-weight:600; font-size:15px; line-height:1.35; color:var(--aw-heading); }
.aw-mini__title:hover{ color:var(--aw-accent); }
.aw-mini__date{ font-size:12.5px; color:var(--aw-dim); margin-top:5px; }

.aw-chips{ display:flex; flex-wrap:wrap; gap:9px; }
.aw-chips a{
  padding:8px 15px; border-radius:999px; font-size:13.5px; font-weight:500;
  background:rgba(255,255,255,.05); color:var(--aw-muted); border:1px solid var(--aw-line);
}
.aw-chips a:hover,.aw-chips a.is-active{ background:var(--aw-accent); color:var(--aw-on-accent); border-color:var(--aw-accent); }

/* ----------------------------------------------------------------- forms */
.aw-form{ display:grid; gap:18px; }
.aw-form--2{ grid-template-columns:1fr 1fr; }
.aw-field{ display:flex; flex-direction:column; gap:8px; }
.aw-field--full{ grid-column:1/-1; }
.aw-field label{ font-size:13.5px; font-weight:600; letter-spacing:.04em; color:var(--aw-muted); }
.aw-sec--cream .aw-field label{ color:var(--aw-ink-dim); }
.aw-field .aw-req{ color:var(--aw-accent); }
.aw-input,.aw-textarea,.aw-select{
  width:100%; padding:14px 16px; border-radius:12px;
  background:rgba(255,255,255,.04); border:1px solid var(--aw-line-strong);
  color:var(--aw-text); font-family:inherit; font-size:15px; line-height:1.5;
  transition:border-color .2s ease, background-color .2s ease;
}
.aw-sec--cream .aw-input,.aw-sec--cream .aw-textarea,.aw-sec--cream .aw-select{
  background:#fff; border-color:rgba(18,33,48,.14); color:var(--aw-ink);
}
.aw-input::placeholder,.aw-textarea::placeholder{ color:var(--aw-faint); }
.aw-input:focus,.aw-textarea:focus,.aw-select:focus{ outline:none; border-color:var(--aw-accent); background:rgba(53,183,240,.06); }
.aw-sec--cream .aw-input:focus,.aw-sec--cream .aw-textarea:focus,.aw-sec--cream .aw-select:focus{ background:#fff; }
.aw-textarea{ min-height:140px; resize:vertical; }
.aw-select{ appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2335b7f0' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center; background-size:12px; padding-right:42px;
}

/* --------------------------------------------------------------- alerts */
.aw-alert{ padding:15px 20px; border-radius:12px; font-size:15px; margin-bottom:22px; border:1px solid transparent; }
.aw-alert--ok{ background:rgba(53,183,240,.12); border-color:rgba(53,183,240,.4); color:var(--aw-accent-soft); }
.aw-alert--err{ background:rgba(240,84,84,.12); border-color:rgba(240,84,84,.4); color:#ff9d9d; }
.aw-sec--cream .aw-alert--ok{ color:var(--aw-accent-deep); }
.aw-sec--cream .aw-alert--err{ color:#c0392b; background:rgba(240,84,84,.1); }

/* ------------------------------------------------------------ empty state */
.aw-empty{
  text-align:center; padding:72px 24px; border-radius:20px;
  border:1px dashed var(--aw-line-strong); background:rgba(255,255,255,.02);
  color:var(--aw-muted);
}
.aw-sec--cream .aw-empty{ border-color:rgba(18,33,48,.16); background:rgba(255,255,255,.6); color:var(--aw-ink-muted); }
.aw-empty h3{ font-size:20px; margin:0 0 8px; }
.aw-sec--cream .aw-empty h3{ color:var(--aw-ink); }

/* ---------------------------------------------------------- pagination  */
.aw-pager{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:48px; }
.aw-pager a,.aw-pager strong,.aw-pager span{
  min-width:44px; height:44px; padding:0 14px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:600;
  border:1px solid var(--aw-line-strong); color:var(--aw-muted); background:rgba(255,255,255,.03);
}
.aw-pager a:hover{ border-color:var(--aw-accent); color:var(--aw-accent); }
.aw-pager strong{ background:var(--aw-accent); border-color:var(--aw-accent); color:var(--aw-on-accent); }

/* ---------------------------------------------------------- logo grids  */
.aw-logo-card{
  display:flex; align-items:center; justify-content:center;
  aspect-ratio:16/10; padding:26px; border-radius:16px;
  background:#fff; border:1px solid rgba(18,33,48,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.aw-logo-card:hover{ transform:translateY(-4px); box-shadow:0 22px 44px -26px rgba(0,0,0,.5); }
.aw-logo-card img{ max-height:100%; max-width:100%; width:auto; object-fit:contain; }
.aw-logo-card__name{ font-family:var(--aw-font-head); font-weight:600; font-size:16px; color:var(--aw-ink); text-align:center; }

.aw-cert{
  border-radius:16px; overflow:hidden; background:var(--aw-panel);
  border:1px solid var(--aw-line); transition:border-color .25s ease, transform .25s ease;
}
.aw-cert:hover{ border-color:rgba(53,183,240,.4); transform:translateY(-4px); }
.aw-cert__img{ aspect-ratio:3/4; background:var(--aw-panel-2) center/cover no-repeat; display:block; }
.aw-cert__name{ padding:16px 18px; font-family:var(--aw-font-head); font-weight:600; font-size:15px; color:var(--aw-heading); text-align:center; }

/* -------------------------------------------------------------- gallery */
.aw-gal{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.aw-gal__item{ position:relative; display:block; border-radius:16px; overflow:hidden; aspect-ratio:4/3; background:var(--aw-panel-2); cursor:zoom-in; }
.aw-gal__item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.aw-gal__item:hover img{ transform:scale(1.06); }
.aw-gal__cap{
  position:absolute; inset:auto 0 0 0; padding:34px 18px 16px;
  background:linear-gradient(180deg,transparent,rgba(13,26,37,.9));
  color:#fff; font-size:14.5px; font-weight:600; font-family:var(--aw-font-head);
  opacity:0; transform:translateY(8px); transition:opacity .25s ease, transform .25s ease;
}
.aw-gal__item:hover .aw-gal__cap{ opacity:1; transform:none; }

.aw-lightbox{
  position:fixed; inset:0; z-index:9998; display:none;
  align-items:center; justify-content:center; padding:32px;
  background:rgba(6,14,21,.94); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
}
.aw-lightbox.is-open{ display:flex; }
.aw-lightbox img{ max-width:100%; max-height:86vh; border-radius:14px; object-fit:contain; }
.aw-lightbox__close,.aw-lightbox__nav{
  position:absolute; width:48px; height:48px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(255,255,255,.1); color:#fff; font-size:22px; line-height:1;
  display:flex; align-items:center; justify-content:center; transition:background-color .2s ease;
}
.aw-lightbox__close:hover,.aw-lightbox__nav:hover{ background:var(--aw-accent); color:var(--aw-on-accent); }
.aw-lightbox__close{ top:24px; right:24px; }
.aw-lightbox__nav--prev{ left:24px; top:50%; transform:translateY(-50%); }
.aw-lightbox__nav--next{ right:24px; top:50%; transform:translateY(-50%); }

/* ------------------------------------------------------------ info tiles */
.aw-info{ display:flex; gap:18px; padding:26px; border-radius:16px; background:var(--aw-panel); border:1px solid var(--aw-line); height:100%; }
.aw-sec--cream .aw-info{ background:#fff; border-color:rgba(18,33,48,.08); }
.aw-info__icon{
  flex:none; width:48px; height:48px; border-radius:12px;
  background:rgba(53,183,240,.14); color:var(--aw-accent);
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.aw-info h4{ font-weight:600; font-size:17px; margin:0 0 6px; }
.aw-sec--cream .aw-info h4{ color:var(--aw-ink); }
.aw-info p,.aw-info a{ margin:0; font-size:15px; line-height:1.55; color:var(--aw-muted); }
.aw-sec--cream .aw-info p,.aw-sec--cream .aw-info a{ color:var(--aw-ink-muted); }
.aw-info a:hover{ color:var(--aw-accent); }

.aw-map{ border-radius:20px; overflow:hidden; border:1px solid var(--aw-line); line-height:0; }
.aw-map iframe{ width:100%; height:420px; border:0; display:block; filter:grayscale(.3); }

/* --------------------------------------------------------------- detail */
.aw-detail__hero{ border-radius:22px; overflow:hidden; margin-bottom:38px; aspect-ratio:16/8; background:var(--aw-panel-2); }
.aw-detail__hero img{ width:100%; height:100%; object-fit:cover; }
.aw-detail__meta{ display:flex; flex-wrap:wrap; gap:18px; font-size:14px; color:var(--aw-dim); margin-bottom:24px; }
.aw-detail__meta strong{ color:var(--aw-accent); font-weight:600; }

.aw-spec{ display:grid; gap:0; margin:0; }
.aw-spec__row{ display:grid; grid-template-columns:170px 1fr; gap:16px; padding:14px 0; border-bottom:1px solid var(--aw-line); font-size:15px; }
.aw-spec__row:last-child{ border-bottom:none; }
.aw-spec__row dt{ color:var(--aw-dim); font-weight:500; }
.aw-spec__row dd{ margin:0; color:var(--aw-text); }

/* ------------------------------------------------------------------ 404 */
.aw-404{ text-align:center; padding:160px var(--aw-gutter) 120px; }
.aw-404__code{ font-family:var(--aw-font-head); font-weight:800; font-size:clamp(90px,18vw,190px); line-height:1; color:var(--aw-accent); letter-spacing:-.04em; }
.aw-404 h1{ font-size:clamp(26px,3.4vw,40px); margin:8px 0 14px; }
.aw-404 p{ color:var(--aw-muted); max-width:520px; margin:0 auto 32px; }

/* =============================================================== responsive */
@media (max-width:1180px){
  .aw-nav{ gap:22px; }
  .aw-nav a{ font-size:14px; }
}
@media (max-width:1080px){
  .aw-nav{ display:none!important; }
  .aw-menu-btn{ display:inline-flex!important; }
  .aw-header__cta{ display:none!important; }
  .aw-with-side,.aw-with-side--left{ grid-template-columns:1fr; }
  .aw-side{ position:static; }
}
@media (max-width:960px){
  .aw-two-col,.aw-two-col--flip,.aw-two-col--faq{ grid-template-columns:1fr!important; gap:40px!important; }
  .aw-grid--4,.aw-grid--5{ grid-template-columns:repeat(2,1fr); }
  .aw-usp{ grid-template-columns:1fr; }
  .aw-usp__item{ border-right:none; border-bottom:1px solid var(--aw-line); }
  .aw-usp__item:last-child{ border-bottom:none; }
  .aw-usp-overlap{ transform:none!important; margin-top:-40px; }
  .aw-sec{ padding-top:76px!important; padding-bottom:76px!important; }
  .aw-footer__grid{ grid-template-columns:1fr 1fr; gap:36px; }
  .aw-gal{ grid-template-columns:repeat(2,1fr); }
  .aw-detail__hero{ aspect-ratio:16/10; }
  .aw-phero{ padding-top:calc(var(--aw-header-h) + 56px); padding-bottom:56px; }
}
@media (max-width:640px){
  :root{ --aw-gutter:20px; }
  .aw-grid--2,.aw-grid--3,.aw-grid--4,.aw-grid--5,.aw-gal{ grid-template-columns:1fr; }
  .aw-footer__grid{ grid-template-columns:1fr; }
  .aw-stats{ grid-template-columns:1fr 1fr; }
  .aw-sec{ padding-top:64px!important; padding-bottom:64px!important; }
  .aw-usp-overlap{ margin-top:-24px; }
  .aw-form--2{ grid-template-columns:1fr; }
  .aw-hero__inner{ padding-top:120px; padding-bottom:72px; }
  .aw-hero__sub{ font-size:17px; }
  .aw-btn{ padding:14px 24px; font-size:15px; }
  .aw-sec-head--split{ align-items:flex-start; }
  .aw-spec__row{ grid-template-columns:1fr; gap:4px; }
  .aw-quote{ padding:26px; }
  .aw-panel{ padding:24px; }
  .aw-badge-year{ left:16px; right:16px; bottom:16px; padding:16px 18px; }
  .aw-badge-year strong{ font-size:32px; }
  .aw-lightbox__nav{ width:40px; height:40px; }
  .aw-lightbox__nav--prev{ left:8px; }
  .aw-lightbox__nav--next{ right:8px; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  html{ scroll-behavior:auto; }
  .aw-reveal{ opacity:1; transform:none; }
}
