:root{
  --red:#e02525;
  --red-soft:#fff3f3;
  --navy:#1f2a44;
  --navy-deep:#101828;
  --navy-soft:#20314f;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --card:#f9fafb;
  --card-strong:#ffffff;
  --surface:#f3f6fa;
  --surface-2:#eef2f7;
  --border:#e5e7eb;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow-soft: 0 16px 50px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, .16);
  --radius:14px;
  --radius-lg:24px;
  --max: 1180px;
}

/* =========================
   Accessibility + Polish
   ========================= */
:focus { outline: none; }

:focus-visible{
  outline: 3px solid rgba(31, 42, 68, 0.45);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  border-radius: 10px;
}

.nav a[aria-current="page"],
.nav-links a[aria-current="page"]{
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dropdown{ position: relative; }

.dropdown::after{
  content:"";
  position:absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown > a:focus-visible{
  outline: 3px solid rgba(31, 42, 68, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}

.dropdown-menu a:focus-visible{
  outline: 3px solid rgba(31, 42, 68, 0.45);
  outline-offset: 2px;
  border-radius: 10px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  z-index: 9999;
  font-weight: 800;
}
.skip-link:focus{
  left: 10px;
}

*{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  padding:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 14% -6%, rgba(224,37,37,.2), transparent 34%),
    radial-gradient(circle at top, rgba(31,42,68,.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--red-soft) 45%, #ffffff 100%);
}
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:3px;
  transform-origin:left center;
  transform:scaleX(0);
  background: linear-gradient(90deg, var(--red) 0%, #ff6b57 100%);
  z-index:120;
  pointer-events:none;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width: min(100% - 32px, var(--max)); margin: 0 auto; }

/* ===== NAV ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,248,248,.88) 100%);
  border-bottom: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .045);
  backdrop-filter: blur(10px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 22px;
  position: relative;
}
.nav-toggle{
  display:none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  align-items:center;
  justify-content:center;
}
.nav-toggle:focus{
  outline: 2px solid rgba(31,42,68,25);
  outline-offset: 2px;
}
.nav-toggle .bars{
  display:grid;
  gap:5px;
}
.nav-toggle .bar{
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-nav{
  display:none;
  position:absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  z-index: 60;
}
.mobile-nav.is-open{
  display:block;
}
.mobile-nav .nav-links{
  display:flex;
  flex-direction:column;
  gap: 4px;
  align-items: stretch;
  letter-spacing: .2px;
}
.mobile-nav .nav-links a{
  padding: 12px 10px;
  border-radius: 10px;
}
.mobile-nav .nav-links a:hover{
  background: #f3f4f6;
}
.mobile-nav .dropdown-menu{
  position: static;
  min-width: unset;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 6px 0;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav .dropdown-menu a{
  padding: 10px 10px 10px 18px;
  font-weight: 800;
  color: var(--ink);
}
.mobile-nav .dropdown-menu a:hover{
  background: #f3f4f6;
}
.mobile-nav .nav-cta{
  display:flex;
  gap:10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.brand{
  display:flex;
  align-items:center;
  min-width: 180px;
}
.brand-logo{
  display:block;
  width:auto;
  height:72px;
}
.brand-mark{
  width:44px; height:44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, #fff 35%, #dbeafe 36%, #93c5fd 100%);
  border: 2px solid var(--navy);
  display:grid; place-items:center;
  font-weight:800;
  color: var(--navy);
}
.brand-name{
  line-height:1.1;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
  font-weight:600;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 24px;
  font-weight: 750;
  letter-spacing: .08em;
  font-size: 13px;
}
.nav-links a{
  padding: 12px 4px;
  position:relative;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left: 4px;
  right: 4px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(224,37,37,.35));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease;
}
.nav-links a:hover{
  color: var(--navy);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after{
  transform: scaleX(1);
}

.dropdown{
  position:relative;
}
.dropdown > a{
  display:flex;
  align-items:center;
  gap:8px;
}
.caret{
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-top: 2px;
  opacity: .8;
}

/* Dropdown menu (pure CSS) */
.dropdown-menu{
  position:absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  pointer-events:none;
}
.dropdown-menu a{
  display:block;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing:.2px;
}
.dropdown-menu a:hover{
  background: rgba(255,255,255,.12);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events:auto;
}

.nav-cta{
  display:flex;
  gap:12px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 800;
  line-height: 1;
  position: relative;
  isolation:isolate;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.btn::after{
  content:"";
  position:absolute;
  inset:auto 18px 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224,37,37,.22), rgba(224,37,37,0) 72%);
  opacity: 0;
  transform: translateY(6px) scale(.85);
  transition: opacity .22s ease, transform .22s ease;
  z-index:-1;
  pointer-events:none;
}
.btn-primary{
  background: linear-gradient(135deg, #f03a36 0%, #cf2020 100%);
  border-color: rgba(207,32,32,.95);
  color:#fff;
  box-shadow: 0 14px 32px rgba(224,37,37,.28);
}
.btn-primary:hover{
  filter: brightness(.98);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(224,37,37,.34);
}
.btn-ghost{
  background: rgba(255,255,255,.82);
  border-color: rgba(148,163,184,.28);
}
.btn-ghost:hover{
  background:#fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}
.btn:hover::after,
.btn:focus-visible::after{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== HERO ===== */
.hero{
  --hero-image: url("assets/banner/hero_1.png");
  position:relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:#fff;
  overflow:hidden;
  isolation:isolate;
}
.hero.hero-banner-alt-1{
  --hero-image: url("assets/home/home-commercial.jpg");
}
.hero.hero-banner-alt-2{
  --hero-image: url("assets/home/home-project.jpg");
}
.hero-video-wrap{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
  display:none;
}
.hero.hero-video-enabled .hero-video-wrap{
  display:block;
}
.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.8;
  transform: translate3d(0, 0, 0) scale(1.03);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 18%, rgba(224,37,37,.20), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(
      98deg,
      rgba(8,12,22,0.92) 0%,
      rgba(15,23,42,0.80) 36%,
      rgba(15,23,42,0.42) 70%,
      rgba(15,23,42,0.32) 100%
    );
  z-index: 1;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto auto -150px -80px;
  width:420px;
  height:420px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(224,37,37,.24), rgba(224,37,37,0) 72%);
  z-index:1;
}
.hero .container::before{
  content:"";
  position:absolute;
  top: 72px;
  right: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,0) 72%);
  z-index: 1;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index: 2;
  padding: 132px 0 112px;
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 42px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px 0;
  padding:9px 16px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-copy{
  max-width: 760px;
  animation: hero-rise .7s ease-out both;
}
.hero h1{
  margin:0 0 22px 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height:.94;
  letter-spacing: -.045em;
  max-width: 12ch;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0,0,0,.26);
}
.hero p{
  margin:0 0 16px 0;
  color: rgba(255,255,255,.82);
  font-weight: 560;
  max-width: 62ch;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height:1.8;
}
.hero-copy p:first-of-type{
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.7;
  max-width: 58ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-actions .btn{
  min-height: 52px;
  padding-inline: 22px;
}
.hero-actions .btn-primary{
  position:relative;
  overflow:hidden;
}
.hero-actions .btn-primary::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  pointer-events:none;
}
.hero-actions .btn-primary::after,
.hero-actions .btn-ghost::after{
  inset:auto 24px 8px;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.11) 100%);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 18px 40px rgba(2, 8, 23, .18);
  animation: hero-rise .7s ease-out .14s both;
}
.hero-panel-title{
  margin:0 0 12px 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}
.hero-service-list{
  display:grid;
  gap:12px;
  margin: 0 0 22px 0;
  padding: 0;
  list-style:none;
}
.hero-service-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: rgba(255,255,255,.90);
  font-weight: 700;
  line-height:1.5;
}
.hero-service-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  margin-top:8px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(224,37,37,.18);
  flex:0 0 auto;
}
.kpi{
  display:grid;
  gap:10px;
}
.kpi-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.kpi-row:last-child{ border-bottom:0; }
.kpi strong{ font-size: 17px; }
.kpi span{ color: rgba(255,255,255,.78); font-weight:700; }

@media (prefers-reduced-motion: reduce){
  .hero.hero-video-enabled .hero-video-wrap{
    display:none;
  }
}

.trust-strip{
  margin-top: -46px;
  position: relative;
  z-index: 2;
}
.trust-strip-inner{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,250,252,.88) 100%);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
}
.trust-item{
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.54);
  transition: transform .24s ease, background-color .24s ease, box-shadow .24s ease;
}
.trust-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 28px rgba(15,23,42,.08);
}
.trust-item strong{
  display:block;
  margin-bottom:6px;
  font-size: 15px;
}
.trust-item span{
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .62s cubic-bezier(.22, 1, .36, 1), transform .62s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }
.reveal-delay-4{ transition-delay: .32s; }

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }
  .hero-video{
    transform:none;
  }
  .reveal,
  .reveal.is-visible{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes hero-rise{
  from{
    opacity:0;
    transform: translateY(18px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
.section{ padding: 76px 0; }
.section h2{
  margin:0 0 14px 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.03em;
}
.section p.lead{
  margin:0 0 22px 0;
  color: var(--muted);
  font-weight: 600;
  max-width: 75ch;
  line-height: 1.75;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,247,247,.86) 0%, rgba(255,255,255,.92) 100%);
}
.section-featured-work{
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.98) 22%, #ffffff 100%);
}
.section-dark{
  background:
    radial-gradient(circle at top right, rgba(224,37,37,.14), transparent 28%),
    linear-gradient(180deg, #101828 0%, #182338 100%);
  color:#fff;
}
.section-dark h2,
.section-dark h3{
  color:#fff;
}
.section-dark p,
.section-dark .lead,
.section-dark .helper,
.section-dark .feature-card p{
  color: rgba(255,255,255,.76);
}
.section-dark .process-step h3{
  color: var(--ink);
}
.section-dark .process-step p{
  color: var(--muted);
}
.section-intro{
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 22px;
  align-items:start;
  margin-bottom: 26px;
}
.section-intro > .lead{
  margin-top: 40px;
}
.section-intro-first > .lead{
  margin-top: 8px;
}
.intro-callout{
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: linear-gradient(180deg, rgba(255,250,250,.94) 0%, rgba(255,255,255,.92) 100%);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.section-kicker{
  display:inline-block;
  margin:0 0 10px 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.service-page-top{
  padding-top: 46px;
  padding-bottom: 26px;
}
.gradient-anchored .section.section-alt.service-page-top{
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 62%, #fff2f2 100%);
}
.gradient-anchored .service-page-top + .section.section-transition{
  background: linear-gradient(180deg, #fff2f2 0%, #fff7f7 46%, #ffffff 100%);
  padding-top: 22px;
}
.gradient-anchored .section.section-transition + .section{
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,.98) 56%, rgba(255,247,247,.9) 100%);
}
.service-page-top .section-intro{
  margin-bottom: 8px;
}
.service-page-top h1{
  margin: 0;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(249,250,251,.98) 100%);
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.card-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:14px;
}
.service-overview-card{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.service-overview-card .card-actions{
  margin-top:auto;
}
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.feature-card{
  background: rgba(255,255,255,.95);
}
.feature-card h3{
  margin-bottom:10px;
}
.feature-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background: rgba(31,42,68,.08);
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}
.service-card{
  position:relative;
  overflow:hidden;
}
.service-card::after{
  content:"";
  position:absolute;
  inset:auto -20px -40px auto;
  width:140px;
  height:140px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(31,42,68,.08), rgba(31,42,68,0) 72%);
  pointer-events:none;
}
.project-preview-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.project-preview-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.project-preview-card .project-thumb{
  aspect-ratio: 4 / 3;
}
.project-preview-copy{
  display:grid;
  gap:8px;
}
.mini-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.mini-meta span{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(31,42,68,.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}
.process-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.process-step{
  position:relative;
  padding-top:72px;
}
.process-step-number{
  position:absolute;
  top:22px;
  left:22px;
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background: var(--red);
  color:#fff;
  font-weight:900;
  box-shadow: 0 10px 24px rgba(224,37,37,.2);
}
.cta-shell{
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(224,37,37,.18), transparent 26%),
    linear-gradient(180deg, #172234 0%, #101828 100%);
  color:#fff;
  box-shadow: var(--shadow-lg);
}
.cta-shell .cta{
  background: transparent;
  border: 0;
  padding: 0;
}
.cta-shell h3{
  color:#fff;
  margin-top:0;
}
.cta-shell p{
  color: rgba(255,255,255,.76);
}
/* ===== CONTACT FORM ===== */
.form{
  display:grid;
  gap: 12px;
}
.field{
  display:grid;
  gap: 6px;
}
.field label{
  font-weight: 900;
  letter-spacing: .2px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
  font-weight: 650;
  color: var(--ink);
}
.field textarea{
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: 2px solid rgba(31,42,68,25);
  outline-offset: 2px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.helper{
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
}
.alert{
  display:none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.alert.is-show{
  display:block;
}

/* ===== Extras: Testimonials / FAQ / Logos ===== */
.testimonial{
  display:grid;
  gap: 10px;
}

.quote{
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.quote:before{ content: '"'; }
.quote:after{ content: '"'; }

.attribution{
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}

.logo-strip{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.logo-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
  color: var(--muted);
  font-size: 13px;
}
.logo-pill-img{
  width: auto;
  height: 22px;
  max-width: 120px;
  object-fit: contain;
  flex: 0 1 auto;
}
.logo-pill-icon{
  width: 18px;
  height: 18px;
  max-width: 18px;
  flex: 0 0 18px;
}

.faq details{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.faq details + details{
  margin-top: 10px;
}

.faq summary{
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
  list-style: none;
}

.faq summary::-webkit-details-marker{ display:none; }

.faq .answer{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}
/* ===== PROJECTS ===== */
.project-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.project-card{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.client-card-name{
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--navy);
}
.project-thumb{
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, var(--card) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--muted);
  overflow:hidden;
}
.project-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.client-logo-link{
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.project-thumb .client-logo{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
}
.project-thumb.sordoni-tile{
  background: linear-gradient(180deg, #5f6776 0%, #4d5565 100%);
  border-color: #c7cfda;
}
.project-thumb.sordoni-tile .client-logo{
  padding: 18px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.22));
}
.section-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.project-meta{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 800;
  font-size: 12px;
  color: var(--ink);
}
.scope{
  margin: 0 0 0 18px;
  padding: 0;
}
.scope li{
  margin: 6px 0;
  color: var(--muted);
  font-weight: 650;
}
.card-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.breadcrumb{
  display:flex;
  gap: 8px;
  align-items:center;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}
.breadcrumb a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.card h3{ margin:0 0 8px 0; font-size: 18px; }
.card p{ margin:0; color: var(--muted); font-weight:600; }
.kicker{
  display:block;
  font-weight: 900;
  letter-spacing: .25px;
  color: var(--navy);
  margin: 0 0 6px 0;
  text-transform: uppercase;
  font-size: 12px;
}
.checklist{
  margin: 10px 0 0 18px;
  padding: 0;
}
.checklist li{
  margin: 6px 0;
  color: var(--muted);
  font-weight: 600;
}
.note{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background:#fff;
  border:1px solid var(--border);
  font-weight:850;
  margin-bottom: 10px;
}
.contact-card-title{
  margin-top:0;
}
.contact-stack{
  display:grid;
  gap:8px;
}
.contact-stack p{
  margin:0;
}
.contact-stack a{
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1080px){
  .hero-grid,
  .section-intro{
    grid-template-columns: 1fr;
  }
  .section-intro > .lead{
    margin-top: 0;
  }
  .section-intro-first > .lead{
    margin-top: 0;
  }
  .gradient-anchored .service-page-top + .section.section-transition{
    padding-top: 16px;
  }
  .intro-callout{
    padding: 0;
    border-left: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .trust-strip-inner,
  .feature-grid,
  .project-preview-grid,
  .process-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 820px){
  .hero-inner{
    padding: 98px 0 82px;
  }
  .hero h1{
    max-width:none;
  }
  .trust-strip{
    margin-top: -26px;
  }
  .trust-strip-inner,
  .grid-2,
  .grid-3,
  .feature-grid,
  .project-preview-grid,
  .process-grid,
  .project-grid,
  .split,
  .form-row{
    grid-template-columns: 1fr !important;
  }
  .card-img{
    height: 200px;
  }
  .cta-shell{
    padding: 24px;
  }
  .hero-card{
    padding: 22px;
  }
  .hero-actions .btn{
    width: 100%;
  }
  .scroll-progress{
    height: 2px;
  }
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.markets{
  position:relative;
  overflow:hidden;
}
.markets::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url("assets/home/home-markets-bg.jpg");
  background-size:cover;
  background-position:center;
  z-index:0;
}
.markets .container{
  position:relative;
  z-index:1;
}

.cta{
  background: linear-gradient(135deg, #ffffff, #fff5f5);
  border: 1px solid #fee2e2;
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  box-shadow: var(--shadow);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
}
.cta h3{ margin:0; }
.cta p{ margin: 6px 0 0 0; color: var(--muted); font-weight:600; }

/* ===== FOOTER ===== */
.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--muted);
  font-weight:600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .project-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:inline-flex; }
}
