/* ================================================================
   SWATI SWITCHGEARS - styles.css (Complete Production Build)
   Font: Montserrat | Brand: #C60016
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

/* -- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff; color: #0f172a;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* -- Variables ------------------------------------------------ */
:root {
  --red:   #C60016;
  --dark:  #0F172A;
  --slate: #1e293b;
  --w:     #ffffff;
}

/* -- Container ------------------------------------------------ */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* -- Keyframes ------------------------------------------------ */
@keyframes fadeUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeIn    { from{opacity:0}                            to{opacity:1} }
@keyframes float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes shine     { 0%{left:-70%} 100%{left:160%} }
@keyframes pulse     { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.9)} }
@keyframes spinConic { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes glow      { 0%,100%{transform:translate(-25%,-25%)} 50%{transform:translate(25%,25%)} }
@keyframes scrollL   { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollR   { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
@keyframes slideShow {
  0%,22%   {transform:translateX(0)}
  33%,55%  {transform:translateX(-100%)}
  66%,88%  {transform:translateX(-200%)}
  100%     {transform:translateX(-300%)}
}
@keyframes bubble {
  0%   {transform:translateY(-8px);opacity:0}
  15%  {opacity:.35}
  100% {transform:translateY(380px);opacity:0}
}
@keyframes arrowPing { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
@keyframes rotRefresh{ from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes wink{ 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

/* -- Visibility helpers --------------------------------------- */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.reveal.in { opacity:1; transform:none; }
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.reveal-right { opacity:0; transform:translateX( 40px); transition:opacity .7s ease,transform .7s ease; }
.reveal-left.in,.reveal-right.in { opacity:1; transform:none; }

/* -- Badge (section title pill) ------------------------------- */
.badge {
  display:inline-flex; align-items:center; gap:.75rem;
  background:#fff; padding:.65rem 1.6rem;
  border-radius:9999px; border:2px solid var(--red);
  box-shadow:0 4px 20px rgba(0,0,0,.09);
  font-weight:700; font-size:.93rem; letter-spacing:.08em;
  text-transform:uppercase; color:var(--red); margin-bottom:.75rem;
}
.badge-dots { display:flex; gap:.22rem; }
.badge-dots span {
  width:.38rem; height:.38rem; border-radius:50%;
  background:var(--red); display:inline-block;
}
.badge.sm { font-size:.72rem; padding:.45rem 1.15rem; }
.badge.sm .badge-dots span { width:.28rem; height:.28rem; }

/* -- Section header ------------------------------------------- */
.sec-head { text-align:center; margin-bottom:3.5rem; }
.sec-head h2 {
  font-size:clamp(1.75rem,3.5vw,2.75rem);
  font-weight:700; color:var(--dark); margin-top:.5rem; line-height:1.2;
}
.sec-head h2 span { color:var(--red); }
.sec-head p { color:#64748b; max-width:40rem; margin:.75rem auto 0; font-size:.97rem; line-height:1.7; }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position:sticky; top:0; z-index:1000;
  background:#fff;
  border-top:3px solid var(--red);
  border-bottom:3px solid var(--red);
  box-shadow:0 2px 16px rgba(0,0,0,.07);
}
.header-inner {
  max-width:1440px; margin:0 auto;
  padding:3px 1rem; display:flex;
  align-items:center; justify-content:space-between;
}

/* Logo */
.logo-link { display:flex; align-items:center; gap:0; }
.logo-link .emblem { width:80px; height:80px; object-fit:contain; flex-shrink:0; }
.logo-link .wordmark {
  width:300px;
  height:auto;
  object-fit:contain;
  display:block;
  background-color:#fff;
  mix-blend-mode:normal;
  margin-left:0;
  flex-shrink:0;
}
.logo-text { display:flex; flex-direction:column; }
.logo-text .brand { font-size:1.45rem; font-weight:900; color:var(--red); letter-spacing:.04em; line-height:1; }
.logo-text .sub   { font-size:.87rem; font-weight:700; color:#000; letter-spacing:.02em; }

/* Desktop nav */
.nav-desk { display:flex; align-items:center; gap:2rem; }
.nav-desk > a {
  font-size:1.05rem; font-weight:700; color:var(--red);
  transition:color .2s; white-space:nowrap;
}
.nav-desk > a:hover { color:#7f000e; }
.nav-desk > .nav-link-btn {
  font-size:1.05rem; font-weight:700; color:var(--red);
  transition:color .2s; white-space:nowrap;
  background:none; border:none; cursor:pointer;
}
.nav-desk > .nav-link-btn:hover { color:#7f000e; }

/* Services dropdown */
.dropdown-wrap { position:relative; }
.dropdown-trigger {
  display:flex; align-items:center; gap:.3rem;
  font-size:1.05rem; font-weight:700; color:var(--red);
  background:none; border:none; cursor:pointer; padding:0;
  transition:color .2s;
}
.dropdown-trigger:hover { color:#7f000e; }
.dropdown-trigger .chevron {
  width:1rem; height:1rem;
  stroke:currentColor; fill:none; stroke-width:2.5;
  transition:transform .25s;
}
.dropdown-wrap:hover .chevron { transform:rotate(180deg); }
.dropdown-wrap.is-open .chevron { transform:rotate(180deg); }

.dropdown-box {
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%);
  width:700px; background:#fff;
  border:1px solid #e5e7eb; border-radius:1rem;
  box-shadow:0 20px 60px rgba(0,0,0,.14);
  padding:1rem; opacity:0; pointer-events:none;
  transition:opacity .2s, transform .2s;
  transform-origin:top;
}
.dropdown-wrap:hover .dropdown-box {
  opacity:1; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.dropdown-wrap.is-open .dropdown-box {
  opacity:1; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.dd-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.6rem; }

/* Service card inside dropdown */
.dd-card {
  display:block; background:#fff;
  border:2px solid #f3f4f6; border-radius:.75rem;
  padding:.9rem; overflow:hidden; position:relative;
  transition:transform .3s, box-shadow .3s; text-decoration:none;
}
.dd-card:hover { transform:translateY(-7px); box-shadow:0 14px 36px rgba(0,0,0,.14); }
.dd-card::after {
  content:''; position:absolute; inset:0; z-index:0;
  border-radius:.75rem; opacity:0; transition:opacity .35s;
}
.dd-card.red::after  { background:linear-gradient(135deg,#ef4444,#991b1b); }
.dd-card.gray::after { background:linear-gradient(135deg,#374151,#111827); }
.dd-card.grn::after  { background:linear-gradient(135deg,#16a34a,#14532d); }
.dd-card:hover::after { opacity:1; }
.dd-card-in { position:relative; z-index:1; }
.dd-icon {
  width:2.2rem; height:2.2rem; border-radius:.45rem;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:.6rem; transition:background .3s;
}
.dd-icon svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2.5; transition:stroke .3s; }
.dd-icon img { width:1rem; height:1rem; object-fit:contain; display:block; }
.dd-card.red  .dd-icon { background:var(--red); }
.dd-card.gray .dd-icon { background:#374151; }
.dd-card.grn  .dd-icon { background:#16a34a; }
.dd-card:hover .dd-icon { background:#fff; }
.dd-card.red:hover  .dd-icon svg { stroke:var(--red); }
.dd-card.gray:hover .dd-icon svg { stroke:#374151; }
.dd-card.grn:hover  .dd-icon svg { stroke:#16a34a; }
.dd-card h3 { font-size:.78rem; font-weight:700; color:#111; margin-bottom:.3rem; transition:color .3s; }
.dd-card p  { font-size:.68rem; color:#6b7280; line-height:1.5; margin-bottom:.4rem; transition:color .3s; }
.dd-card ul { list-style:none; margin-bottom:.5rem; }
.dd-card ul li { font-size:.67rem; color:#374151; display:flex; align-items:center; gap:.25rem; margin-bottom:.15rem; transition:color .3s; }
.dd-card ul li::before { content:''; width:.45rem; height:.45rem; border-radius:50%; border:1.5px solid var(--red); flex-shrink:0; transition:border-color .3s; }
.dd-card .dd-cta { font-size:.67rem; font-weight:700; color:var(--red); display:flex; align-items:center; gap:.2rem; transition:color .3s; }
.dd-card .dd-cta svg { width:.7rem; height:.7rem; stroke:currentColor; fill:none; stroke-width:2.5; }
.dd-card:hover h3,.dd-card:hover p,.dd-card:hover ul li,.dd-card:hover .dd-cta { color:#fff; }
.dd-card:hover ul li::before { border-color:#fff; }

/* Header socials */
.h-socials { display:flex; align-items:center; gap:.85rem; margin-right:2rem; }
.h-socials a {
  width:2rem;
  height:2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:transform .2s;
}
.h-socials a svg,
.h-socials a img {
  width:2rem;
  height:2rem;
  display:block;
  object-fit:contain;
}
.h-socials .h-ig-icon{
  object-fit:cover;
  border-radius:8px;
  transform:scale(1.14);
}
.h-socials a img { transition:transform .2s ease; }
.h-socials a:hover img { transform:scale(1.06); }
.h-socials a:hover .h-ig-icon { transform:scale(1.2); }
.h-socials a:hover { transform:scale(1.12); }

/* Hamburger */
.hamburger {
  display:none; background:none; border:none;
  cursor:pointer; color:var(--red); padding:.4rem;
}
.hamburger svg { width:1.75rem; height:1.75rem; stroke:currentColor; fill:none; stroke-width:2; display:block; }

/* Mobile Nav */
.mob-nav {
  position:fixed; inset:0; z-index:999;
  background:#fff; border-top:4px solid var(--red);
  padding:5rem 1.5rem 2rem;
  display:none; flex-direction:column; gap:1.25rem;
  overflow-y:auto;
}
.mob-nav.open { display:flex; }
.mob-nav-close {
  position:absolute; top:1.25rem; right:1.25rem;
  background:none; border:none; cursor:pointer; color:var(--red);
}
.mob-nav-close svg { width:1.75rem; height:1.75rem; stroke:currentColor; fill:none; stroke-width:2; }
.mob-nav a {
  font-size:1.2rem; font-weight:700; color:var(--red);
  border-bottom:1px solid #f1f5f9; padding-bottom:1rem;
}
.mob-nav .mob-link-btn {
  font-size:1.2rem; font-weight:700; color:var(--red);
  border-bottom:1px solid #f1f5f9; padding-bottom:1rem;
  background:none; border-left:none; border-right:none; border-top:none;
  text-align:left; width:100%; cursor:pointer;
}
.mob-nav .mob-sub { padding-left:1rem; display:flex; flex-direction:column; gap:.6rem; margin-bottom:.75rem; }
.mob-nav .mob-sub a { font-size:.97rem; font-weight:600; color:#475569; border:none; padding-bottom:0; }
.mob-nav .mob-socials {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  padding: 1rem 0 .25rem;
  -webkit-overflow-scrolling: touch;
}
.mob-nav .mob-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border: none;
  padding: 0;
}
.mob-nav .mob-socials a svg,
.mob-nav .mob-socials a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position:relative; width:100%; height:90vh;
  display:flex; align-items:center; justify-content:center;
  background:#000; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:url("images/1.JPG") center/cover no-repeat;
  opacity:.35;
}
/* watermark */
.hero-wm {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  pointer-events:none; user-select:none; overflow:hidden;
  padding:0; transform:translateY(-2.2rem);
  font-size:clamp(3.6rem,8vw,8.5rem); color:rgba(255,255,255,.06); font-weight:700;
  text-transform:uppercase; letter-spacing:.08em; text-align:center;
  line-height:.85; -webkit-text-stroke:1px rgba(0,0,0,.15);
}
.hero-wm > div {
  white-space:nowrap;
}
.hero-wm > div + div {
  margin-top:.06em;
}
.wm-char { opacity:0; }
.wm-char.show { animation:fadeIn .12s ease forwards; }
@media (max-width: 768px) {
  .hero-wm {
    font-size:clamp(2.4rem,11vw,4.5rem);
    letter-spacing:.06em;
    transform:translateY(-1.2rem);
  }
}

/* hero content */
.hero-body {
  position:relative; z-index:10; text-align:center;
  padding:0 1rem; margin-top:-9rem;
  opacity:0; animation:fadeUp .9s .5s ease forwards;
}
.hero-body h1 {
  font-size:clamp(2.2rem,5.5vw,4.25rem);
  font-weight:700; color:#fff; line-height:1.2;
  text-shadow:0 2px 10px rgba(0,0,0,.7);
}

/* 40+ badge */
.hero-badge {
  position:absolute; bottom:2rem; right:2rem;
  width:10rem; height:10rem;
  background:var(--red); color:#fff;
  border-radius:1.25rem;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  box-shadow:0 20px 50px rgba(198,0,22,.45);
  animation:float 4s ease-in-out infinite;
  overflow:hidden; z-index:20; text-align:center;
}
.hb-shine {
  position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  animation:shine 2.5s linear infinite;
}
.hb-num  { font-size:2.4rem; font-weight:700; position:relative; z-index:1; }
.hb-line { width:2rem; height:.22rem; background:rgba(255,255,255,.45); border-radius:9999px; margin:.3rem 0; }
.hb-lbl  { font-size:.52rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; line-height:1.65; position:relative; z-index:1; }

/* ================================================================
   ABOUT US
================================================================ */
.about { padding:3.5rem 0 0; }
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:center;
}
.about-imgbox {
  border-radius:.85rem; overflow:hidden; height:360px;
  position:relative; display:flex; align-items:center; justify-content:center;
  background:transparent; box-shadow:none;
}
.about-imgbox img { width:100%; height:100%; object-fit:contain; background:transparent; }
.about-imgbox::after { display:none; }
.about .about-imgbox img { width:82%; height:82%; }
.about h5 { font-size:1.65rem; font-weight:700; color:var(--dark); margin-bottom:1rem; line-height:1.25; }
.about-text p { color:#475569; line-height:1.8; margin-bottom:.75rem; font-size:.96rem; }
.checks { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; margin-top:1rem; }
.check-row { display:flex; align-items:center; gap:.5rem; font-size:.86rem; font-weight:600; color:var(--dark); }
.check-row svg { width:1.1rem; height:1.1rem; stroke:#b91c1c; flex-shrink:0; fill:none; stroke-width:2.5; }

/* Stats strip */
.stats-section { padding:1rem; margin:3.5rem auto 2rem; display:flex; justify-content:center; }
.stats-border {
  border-radius:1rem; padding:1px;
  box-shadow:0 0 32px rgba(198,0,22,.28);
  position:relative; overflow:hidden;
}
.stats-conic {
  position:absolute; inset:-150%;
  background:conic-gradient(from 0deg at 50% 50%,
    transparent 0deg,transparent 80deg,
    #C60016 120deg,transparent 160deg,
    transparent 260deg,#C60016 300deg,transparent 340deg);
  animation:spinConic 6s linear infinite;
}
.stats-inner {
  position:relative; background:var(--dark); border-radius:1rem;
  padding:2rem; display:grid;
  grid-template-columns:repeat(5,1fr); gap:1rem; overflow:hidden;
}
.stats-glow {
  position:absolute; inset:-50%; pointer-events:none; opacity:.18;
  background:radial-gradient(circle at center,#C60016 0%,transparent 50%);
  filter:blur(60px); animation:glow 8s ease-in-out infinite;
}
.stat-item {
  position:relative; z-index:1; display:flex; flex-direction:column;
  align-items:center; text-align:center; padding:1.4rem .8rem;
  opacity:0; transform:translateY(2rem);
  transition:opacity .6s ease,transform .6s ease;
}
.stat-item.vis { opacity:1; transform:none; }
.stat-item:first-child { border-left:4px solid var(--red); }
.stat-icon { width:2rem; height:2rem; margin-bottom:.7rem; }
.stat-icon svg { width:2rem; height:2rem; stroke:var(--red); fill:none; stroke-width:2; }
.stat-num   { font-size:1.8rem; font-weight:700; color:#fff; margin-bottom:.2rem; }
.stat-label { font-size:.67rem; color:#cbd5e1; text-transform:uppercase; letter-spacing:.08em; }

/* ================================================================
   INDUSTRIES
================================================================ */
.industries {
  position:relative; background:#000; overflow:hidden; padding:0;
}
.ind-bg {
  position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1400&q=70') center/cover;
  opacity:.35;
}
.ind-overlay { position:absolute; inset:0; background:rgba(0,0,0,.62); }
.ind-body { position:relative; z-index:10; padding:3.5rem 0 0; }
.ind-body .sec-head h3 {
  font-size:clamp(1.5rem,3vw,2.25rem); font-weight:700; color:#fff; margin-top:.5rem;
}
.ind-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1rem; max-width:1100px; margin:1.5rem auto 0; padding-bottom:3rem;
}
.ind-card {
  position:relative; min-height:200px; cursor:pointer;
  border-radius:2rem; overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
  background:rgba(0,0,0,.72);
  transition:border-color .4s, box-shadow .4s, transform .3s;
}
.ind-card:hover {
  border-color:var(--red);
  box-shadow:0 0 45px rgba(198,0,22,.6);
  transform:translateY(-6px);
}
.ind-card.active {
  border-color:var(--red);
  box-shadow:0 0 80px rgba(198,0,22,.7);
  transform:scale(1.02);
}
.ind-card-glow {
  position:absolute; top:-50%; left:-50%;
  width:200%; height:200%; pointer-events:none; opacity:.28;
  mix-blend-mode:screen;
  background:radial-gradient(circle at center,rgba(255,255,255,.4) 0%,transparent 60%);
  animation:glow 5s ease-in-out infinite;
}
.ind-card.active .ind-card-glow {
  background:radial-gradient(circle at center,#c60016 0%,transparent 70%);
}
.ind-card-inner { position:relative; z-index:2; padding:1.25rem 1rem 1.5rem; height:100%; display:flex; flex-direction:column; }
.ind-num { position:absolute; top:.9rem; right:1.2rem; font-size:2.2rem; font-weight:700; font-family:monospace; color:rgba(255,255,255,.1); }
.ind-card.active .ind-num { color:rgba(198,0,22,.3); }
.ind-icon { color:var(--red); margin-bottom:.75rem; }
.ind-icon svg { width:1.75rem; height:1.75rem; stroke:currentColor; fill:none; stroke-width:1.5; }
.ind-card h4 { font-size:1rem; font-weight:700; color:#fff; margin-bottom:.6rem; transition:color .3s; }
.ind-card.active h4 { color:var(--red); }
.ind-card p { font-size:.77rem; color:#cbd5e1; line-height:1.7; }

/* -- Client Logos Ticker -- */
.clients-strip {
  background:#fff; border-top:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0;
  padding:3.5rem 0; overflow:hidden;
}
.ticker-row { position:relative; overflow:hidden; }
.ticker-row + .ticker-row { margin-top:2rem; }
.ticker-fade-l, .ticker-fade-r {
  position:absolute; top:0; bottom:0; width:8rem; z-index:5; pointer-events:none;
}
.ticker-fade-l { left:0;  background:linear-gradient(to right,#fff,transparent); }
.ticker-fade-r { right:0; background:linear-gradient(to left, #fff,transparent); }
.ticker-track { display:flex; align-items:center; width:max-content; }
.ticker-track.left  { animation:scrollL 38s linear infinite; }
.ticker-track.right { animation:scrollR 38s linear infinite; }
.ticker-item { padding:0 3rem; flex-shrink:0; }
.ticker-item img { height:3.5rem; object-fit:contain; filter:grayscale(1); opacity:.35; transition:filter .3s,opacity .3s; }
.ticker-item img:hover { filter:none; opacity:1; }
.ticker-item .logo-text-pill {
  height:3.5rem; display:flex; align-items:center;
  background:#f8fafc; border:1px solid #e2e8f0;
  border-radius:.5rem; padding:0 1rem;
  font-size:.8rem; font-weight:700; color:#475569;
  white-space:nowrap;
}

/* ================================================================
   SOLUTIONS
================================================================ */
.solutions {
  padding:4.5rem 0;
  background:linear-gradient(180deg,#fff,#f8fafc,#fff);
  overflow:hidden; position:relative;
}
.sol-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.sol-card-wrap { perspective:1000px; }
.sol-card {
  display:block; position:relative;
  background:#fff; border:2px solid #f3f4f6;
  border-radius:1.25rem; padding:1.5rem;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
  overflow:hidden; transition:box-shadow .35s, transform .35s;
  height:100%; text-decoration:none;
}
.sol-card::before {
  content:''; position:absolute; inset:0; z-index:0;
  border-radius:1.25rem; opacity:0; transition:opacity .4s;
}
.sol-card.red::before  { background:linear-gradient(135deg,#ef4444,#991b1b); }
.sol-card.gray::before { background:linear-gradient(135deg,#374151,#111827); }
.sol-card.grn::before  { background:linear-gradient(135deg,#16a34a,#14532d); }
.sol-card:hover { transform:translateY(-10px) scale(1.02); box-shadow:0 22px 56px rgba(0,0,0,.18); }
.sol-card:hover::before { opacity:1; }
.sol-inner { position:relative; z-index:1; }
.sol-icon {
  width:2.5rem; height:2.5rem; border-radius:.5rem;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:1rem; transition:background .3s;
}
.sol-icon svg { width:1.25rem; height:1.25rem; stroke:#fff; fill:none; stroke-width:2.5; transition:stroke .3s; }
.sol-card.red  .sol-icon { background:var(--red); }
.sol-card.gray .sol-icon { background:#374151; }
.sol-card.grn  .sol-icon { background:#16a34a; }
.sol-card:hover .sol-icon { background:#fff; }
.sol-card.red:hover  .sol-icon svg { stroke:var(--red); }
.sol-card.gray:hover .sol-icon svg { stroke:#374151; }
.sol-card.grn:hover  .sol-icon svg { stroke:#16a34a; }
.sol-card h3 { font-size:1.08rem; font-weight:700; color:#111; margin-bottom:.65rem; transition:color .3s; }
.sol-card p  { font-size:.83rem; color:#6b7280; line-height:1.65; margin-bottom:1.25rem; transition:color .3s; }
.sol-card ul { list-style:none; margin-bottom:1.25rem; display:flex; flex-direction:column; gap:.35rem; }
.sol-card ul li { font-size:.8rem; color:#374151; display:flex; align-items:center; gap:.4rem; transition:color .3s; }
.sol-card ul li svg { width:.85rem; height:.85rem; stroke:var(--red); fill:none; stroke-width:2.5; flex-shrink:0; transition:stroke .3s; }
.sol-card .learn { font-size:.8rem; font-weight:700; color:var(--red); display:flex; align-items:center; gap:.3rem; transition:color .3s; }
.sol-card .learn svg { width:.85rem; height:.85rem; stroke:currentColor; fill:none; stroke-width:2.5; }
.sol-card:hover h3,.sol-card:hover p,.sol-card:hover ul li,.sol-card:hover .learn { color:#fff; }
.sol-card:hover ul li svg,.sol-card:hover .learn svg { stroke:#fff; }
/* shine */
.sol-shine {
  position:absolute; top:0; left:-70%; height:100%; width:40%; z-index:2;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transform:skewX(-12deg); pointer-events:none; opacity:0; transition:opacity 0s;
}
.sol-card:hover .sol-shine { animation:shine .8s ease forwards; opacity:1; }

/* ================================================================
   AWARDS & EVENTS
================================================================ */
.ae-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(145deg, #5a000d 0%, #8b0010 25%, #c60016 60%, #dc2626 100%);
}
.atm-glow-tl, .atm-glow-br {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.atm-glow-tl {
  top: -10rem;
  left: -10rem;
  width: 37.5rem;
  height: 37.5rem;
  background: radial-gradient(circle, rgba(255,210,0,.12) 0%, transparent 65%);
}
.atm-glow-br {
  bottom: -10rem;
  right: -10rem;
  width: 43.75rem;
  height: 43.75rem;
  background: radial-gradient(circle, rgba(0,200,255,.08) 0%, transparent 65%);
}
.backdrop-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: .25em;
  color: rgba(255,255,255,.03);
}
#confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}
.ae-body {
  position: relative;
  z-index: 30;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.ae-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  animation: aeFadeUp .7s cubic-bezier(.22,1,.36,1) both;
}
.ae-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9999px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ae-badge .sparkle { color: #fde047; }
.ae-title {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 1;
  color: #fff;
  font-weight: 900;
}
.ae-title-highlight { position: relative; display: inline-block; }
.ae-title-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: .15em;
  height: .2em;
  border-radius: 9999px;
  z-index: 0;
  opacity: .45;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #FFD700, #FF69B4);
  animation: aeSlideInX .7s .55s ease forwards;
}
.ae-subtitle {
  max-width: 42rem;
  color: rgba(255,255,255,.7);
  font-size: clamp(.9rem,2vw,1.05rem);
  line-height: 1.7;
}
.ae-dots { display: flex; align-items: center; gap: .75rem; }
.ae-dots-line { width: 6rem; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,.25)); }
.ae-dots-line.rev { background: linear-gradient(to left, transparent, rgba(255,255,255,.25)); }
.ae-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #fde047;
  animation: aeDotPulse 1.5s ease-in-out infinite;
}
.ae-dot:nth-child(2) { animation-delay: .25s; }
.ae-dot:nth-child(3) { animation-delay: .5s; }

.ae-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.ae-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.card-accent { height: 5px; width: 100%; }
.events .card-accent { background: linear-gradient(90deg,#c60016,#FF69B4); }
.awards .card-accent { background: linear-gradient(90deg,#FFD700,#c60016); }
.card-body {
  position: relative;
  z-index: 10;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-head-left { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.events .card-icon { background: linear-gradient(135deg,#fff0f3,#ffe4e8); }
.awards .card-icon { background: linear-gradient(135deg,#fffbeb,#fef3c7); }
.card-title { font-size: 1.4rem; font-weight: 900; color: #0f172a; line-height: 1.2; }
.card-sub { font-size: .82rem; color: #94a3b8; margin-top: .15rem; }
.card-count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.events .card-count { background: linear-gradient(135deg,#c60016,#dc2626); }
.awards .card-count { background: linear-gradient(135deg,#d97706,#f59e0b); }
.card-count svg { width: .9rem; height: .9rem; stroke: #fff; fill: none; stroke-width: 2.5; }
.card-divider { height: 1px; }
.events .card-divider { background: linear-gradient(90deg,transparent,rgba(198,0,22,.25),transparent); }
.awards .card-divider { background: linear-gradient(90deg,transparent,rgba(255,215,0,.35),transparent); }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  min-height: 240px;
}
.carousel-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 50%; min-height: 240px; padding: .5rem; }
.c-slide-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: .75rem;
  background: #e2e8f0;
  cursor: pointer;
}
.c-slide-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.c-slide-inner:hover img { transform: scale(1.08); }
.c-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.c-slide-inner:hover .c-overlay { background: rgba(0,0,0,.32); }
.c-caption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: .5rem .75rem;
  background: linear-gradient(to top,rgba(0,0,0,.75),transparent);
  transform: translateY(100%);
  transition: transform .3s;
}
.c-slide-inner:hover .c-caption { transform: translateY(0); }
.c-caption p { color: #fff; font-size: .65rem; font-weight: 600; }
.carousel-nav { display: flex; justify-content: center; gap: .4rem; margin-top: .6rem; }
.carousel-dot {
  width: .45rem;
  height: .45rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0,0,0,.15);
  transition: all .2s;
}
.carousel-dot.active { background: #c60016; transform: scale(1.4); }
.awards .carousel-dot.active { background: #d97706; }

.card-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.card-tag {
  padding: .3rem .85rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 600;
}
.events .card-tag { background: rgba(198,0,22,.08); color: #c60016; border: 1px solid rgba(198,0,22,.18); }
.awards .card-tag { background: rgba(217,119,6,.08); color: #b45309; border: 1px solid rgba(217,119,6,.22); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; animation: fadeIn .25s ease; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev { top: 50%; left: .75rem; transform: translateY(-50%); }
.lb-next { top: 50%; right: .75rem; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 1.2rem; height: 1.2rem; stroke: #fff; fill: none; stroke-width: 2.5; }
.lb-inner {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-cat {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(198,0,22,.5);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lb-caption { text-align: center; }
.lb-caption p { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600; }
.lb-caption span { color: rgba(255,255,255,.4); font-size: .72rem; }
.lb-dots { display: flex; gap: .5rem; }
.lb-dot {
  width: .5rem;
  height: .5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.3);
}
.lb-dot.active { background: #fff; transform: scale(1.3); }

@keyframes aeFadeUp { from { opacity: 0; transform: translateY(2rem); } to { opacity: 1; transform: none; } }
@keyframes aeSlideInX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes aeDotPulse { 0%,100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.7); opacity: 1; } }

@media (max-width: 900px) {
  .ae-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ae-body { padding: 2.5rem 1rem 3rem; }
  .ae-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .card-body { padding: 1.25rem; }
  .carousel-slide { flex: 0 0 100%; }
}

/* ================================================================
   BLOGS
================================================================ */
.blogs {
  padding:4.5rem 0; position:relative; overflow:hidden;
  background:var(--dark);
}
.blogs-bg {
  position:absolute; inset:0; z-index:0;
  background:url('https://images.unsplash.com/photo-1738918937796-743064feefa1?w=1400&q=70') center/cover;
  opacity:.12;
}
.blogs-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(15,23,42,.95),rgba(15,23,42,.92)); }
.blogs-inner { position:relative; z-index:2; }
.blogs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:0; }

.blog-card {
  position:relative; background:linear-gradient(135deg,#1e293b,#0f172a);
  border:2px solid #334155; border-radius:1.75rem;
  overflow:hidden; display:flex; flex-direction:column;
  transition:border-color .35s, box-shadow .35s, transform .35s;
  height:100%;
}
.blog-card:hover { border-color:var(--red); box-shadow:0 20px 50px rgba(0,0,0,.4); transform:translateY(-6px); }
.blog-card-bg {
  position:absolute; inset:0;
  transition:opacity .5s;
}
.blog-card-bg img { width:100%; height:100%; object-fit:cover; opacity:.18; transition:opacity .5s; }
.blog-card:hover .blog-card-bg img { opacity:.28; }
.blog-card-bg-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(30,41,59,.9),rgba(15,23,42,.9)); }
/* dot pattern */
.blog-dots {
  position:absolute; inset:0; z-index:1; pointer-events:none;
  display:grid; grid-template-columns:repeat(8,1fr);
  gap:.75rem; padding:1rem; opacity:.04;
}
.blog-dots span { width:.4rem; height:.4rem; background:#fff; border-radius:50%; }
.blog-cat {
  position:absolute; top:1.4rem; left:1.4rem; z-index:3;
  background:linear-gradient(to right,var(--red),#b91c1c);
  color:#fff; padding:.4rem 1rem; border-radius:9999px;
  font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.blog-card-body { position:relative; z-index:2; padding:1.75rem; flex:1; display:flex; flex-direction:column; }
.blog-img-wrap {
  border-radius:1rem; overflow:hidden; height:11rem;
  margin-top:2.5rem; margin-bottom:1.25rem;
  position:relative; box-shadow:0 8px 24px rgba(0,0,0,.3);
}
.blog-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.blog-card:hover .blog-img-wrap img { transform:scale(1.08); }
.blog-img-wrap .blog-grad { position:absolute; inset:0; background:linear-gradient(to top,rgba(15,23,42,.7),transparent); }
.blog-icon-pill {
  position:absolute; bottom:.75rem; right:.75rem;
  width:2.75rem; height:2.75rem; background:var(--red);
  border-radius:.65rem; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,.4);
  transition:transform .3s, rotate .3s;
}
.blog-card:hover .blog-icon-pill { transform:scale(1.1) rotate(6deg); }
.blog-icon-pill svg { width:1.25rem; height:1.25rem; stroke:#fff; fill:none; stroke-width:2; }
.blog-card h3 {
  font-size:1rem; font-weight:700; color:#fff; margin-bottom:.75rem; text-align:center;
  transition:color .3s; line-height:1.4;
}
.blog-card:hover h3 { color:var(--red); }
.blog-card p {
  font-size:.8rem; color:#94a3b8; line-height:1.7; text-align:center; margin-bottom:1.25rem;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.blog-btn {
  width:100%; padding:.85rem; margin-top:auto;
  background:#fff; color:var(--dark); border:none;
  border-radius:.75rem; font-family:inherit; font-size:.85rem; font-weight:700;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.5rem;
  transition:background .3s, color .3s, transform .15s;
}
.blog-btn:hover { background:var(--red); color:#fff; transform:scale(1.02); }
.blog-btn svg { width:.9rem; height:.9rem; stroke:currentColor; fill:none; stroke-width:2.5; transition:transform .3s; }
.blog-btn:hover svg { transform:translateX(4px); }

/* Blog modal */
.blog-modal-back {
  position:fixed; inset:0; background:rgba(0,0,0,.75); z-index:8000;
  display:none; align-items:flex-start; justify-content:center;
  padding:2rem 1rem; overflow-y:auto;
}
.blog-modal-back.open { display:flex; }
.blog-modal {
  background:#fff; border-radius:1.25rem; max-width:780px; width:100%;
  position:relative; overflow:hidden; margin:auto;
}
.bm-head { background:var(--dark); padding:2rem 2rem 1.5rem; position:relative; }
.bm-head .bm-cat {
  background:linear-gradient(to right,var(--red),#b91c1c); color:#fff;
  padding:.35rem .9rem; border-radius:9999px; font-size:.7rem;
  font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  display:inline-block; margin-bottom:.75rem;
}
.bm-head h2 { font-size:1.35rem; font-weight:700; color:#fff; line-height:1.35; }
.bm-head .bm-meta { margin-top:.5rem; font-size:.78rem; color:#94a3b8; display:flex; gap:1rem; flex-wrap:wrap; }
.bm-close {
  position:absolute; top:1rem; right:1rem;
  background:rgba(255,255,255,.1); border:none; cursor:pointer; color:#fff;
  width:2rem; height:2rem; border-radius:.4rem;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.bm-close:hover { background:var(--red); }
.bm-close svg { width:1.1rem; height:1.1rem; stroke:currentColor; fill:none; stroke-width:2.5; }
.bm-body { padding:2rem; max-height:70vh; overflow-y:auto; }
.bm-body p { color:#475569; line-height:1.85; margin-bottom:1rem; font-size:.92rem; }
.bm-body h3 { font-size:1.05rem; font-weight:700; color:var(--dark); margin:1.5rem 0 .75rem; border-left:3px solid var(--red); padding-left:.75rem; }
.bm-body ul { list-style:none; margin-bottom:1rem; display:flex; flex-direction:column; gap:.5rem; }
.bm-body ul li { font-size:.9rem; color:#475569; display:flex; align-items:flex-start; gap:.5rem; line-height:1.65; }
.bm-body ul li::before { content:''; width:.45rem; height:.45rem; min-width:.45rem; border-radius:50%; background:var(--red); margin-top:.5rem; }
.bm-body strong { font-weight:700; color:var(--dark); }
.bm-body .bm-feature { background:#f8fafc; border:1px solid #e2e8f0; border-radius:.75rem; padding:1rem 1.25rem; margin-bottom:1rem; }
.bm-body .bm-feature p { margin-bottom:0; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  padding:3rem 0 1.5rem; background:#fff;
  overflow:hidden;
}
.testi-card {
  max-width:900px; margin:0 auto;
  background:rgba(198,0,22,.07); border:1px solid rgba(198,0,22,.18);
  border-radius:2rem; padding:2.5rem 3rem;
  box-shadow:0 8px 32px rgba(0,0,0,.08);
  position:relative; overflow:hidden;
}
.testi-bg { position:absolute; inset:0; pointer-events:none; }
.testi-bg img { width:100%; height:100%; object-fit:cover; opacity:.08; transform:translateY(3rem); }
.testi-inner { display:flex; align-items:center; gap:2.5rem; position:relative; z-index:2; }
.testi-avatar {
  width:9rem; height:9rem; border-radius:50%; overflow:hidden;
  border:4px solid #fff; box-shadow:0 4px 20px rgba(0,0,0,.18); flex-shrink:0;
}
.testi-avatar img { width:100%; height:100%; object-fit:cover; }
.testi-slides { flex:1; overflow:hidden; }
.testi-track { display:flex; animation:slideShow 12s ease-in-out infinite; }
.testi-slide { min-width:100%; }
.stars { display:flex; gap:.25rem; color:#fbbf24; margin-bottom:.9rem; }
.stars svg { width:1.2rem; height:1.2rem; fill:currentColor; }
.testi-quote { font-size:.95rem; color:#475569; font-style:italic; line-height:1.85; margin-bottom:1.25rem; }
.testi-author h4 { font-size:1rem; font-weight:700; color:var(--dark); }
.testi-author p  { font-size:.85rem; color:#64748b; }

/* ================================================================
   COLLABORATIONS
================================================================ */
.collabs { padding:3rem 0 0; background:#fff; }
.collabs .wrap { max-width:950px; }
.collabs h3 {
  font-size:clamp(1.15rem,2.5vw,1.8rem); font-weight:700;
  color:var(--dark); margin-top:.5rem; text-align:center;
}
.collabs .sub { text-align:center; color:#64748b; font-size:.95rem; margin:.75rem auto 0; white-space:nowrap; }
.collab-cats {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:1rem; margin:2rem 0;
}
.collab-cat {
  display:flex; align-items:center; gap:.5rem;
  background:#fff; padding:.45rem 1.25rem; border-radius:9999px;
  border:1px solid #e2e8f0; box-shadow:0 2px 8px rgba(0,0,0,.05);
  font-size:.84rem; font-weight:700; color:var(--dark);
}
.cc-icon { width:1.65rem; height:1.65rem; background:#fef2f2; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.cc-icon svg { width:.85rem; height:.85rem; stroke:var(--red); fill:none; stroke-width:2.5; }
.collabs-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.collab-col { display:flex; flex-direction:column; gap:1.75rem; }
.collab-item { display:flex; align-items:flex-start; gap:.75rem; transition:transform .3s; cursor:default; }
.collab-item:hover { transform:translateY(-5px); }
.collab-logo {
  width:5.5rem; height:5.5rem; background:transparent;
  border:none; border-radius:0; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; padding:0; margin:0;
  transition:none;
}
.collab-copy { flex:1; min-width:0; }
.collab-item:hover .collab-logo { background:transparent; box-shadow:none; }
.collab-logo img { width:100%; height:100%; object-fit:contain; mix-blend-mode:multiply; margin:0; }
.collab-logo.duo { gap:.25rem; }
.collab-logo.duo img { width:48%; height:auto; }
.swatcon-item .collab-logo img { mix-blend-mode:normal; }
.swatcon-item { align-items:center; gap:1rem; }
.swatcon-item .collab-logo {
  width:8.5rem;
  height:6.75rem;
}
.swatcon-item .collab-logo img {
  width:118%;
  height:118%;
  object-fit:contain;
}
.collab-item h4 { font-size:.93rem; font-weight:700; color:var(--dark); margin-bottom:.3rem; transition:color .3s; }
.collab-item:hover h4 { color:var(--red); }
.collab-item p { font-size:.81rem; color:#64748b; line-height:1.55; }

/* Key Highlights strip */
.kh { grid-column:1/-1; }
.kh-inner {
  background:var(--dark); border-radius:1.5rem;
  padding:1.5rem 2rem; position:relative; overflow:hidden; margin-top:1.25rem;
}
.kh-g1 { position:absolute; top:0; right:0; width:12rem; height:12rem; background:var(--red); border-radius:50%; filter:blur(80px); opacity:.2; transform:translate(50%,-50%); }
.kh-g2 { position:absolute; bottom:0; left:0; width:12rem; height:12rem; background:var(--red); border-radius:50%; filter:blur(80px); opacity:.1; transform:translate(-50%,50%); }
.kh-bub {
  position:absolute; top:-10px; width:.5rem; height:.5rem;
  background:#fff; border-radius:50%; opacity:.2;
  animation:bubble 9s ease-out infinite;
}
.kh-row {
  position:relative; z-index:1;
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:1.5rem;
}
.kh-title h5 { font-size:1.05rem; font-weight:700; color:#fff; display:flex; align-items:center; gap:.5rem; margin-bottom:.4rem; }
.kh-title h5 svg { width:1.4rem; height:1.4rem; stroke:var(--red); fill:none; stroke-width:2; }
.kh-title p { font-size:.88rem; font-weight:700; color:#fff; max-width:22rem; line-height:1.6; }
.kh-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:.75rem; flex:1; max-width:640px; }
.kh-stat {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:.75rem; padding:.75rem; text-align:center; transition:background .3s;
}
.kh-stat:hover { background:rgba(255,255,255,.1); }
.kh-stat .khs-t { font-size:.97rem; font-weight:800; color:#df2828; margin-bottom:.25rem; }
.kh-stat .khs-s { font-size:.85rem; color:#fff; }

/* ================================================================
   CONTACT
================================================================ */
.contact { padding:5.5rem 0; background:#f8fafc; position:relative; overflow:hidden; }
.contact-dot {
  position:absolute; inset:0; pointer-events:none; opacity:.03;
  background-image:radial-gradient(#C60016 1px,transparent 1px);
  background-size:28px 28px;
}
.c-glow1 { position:absolute; top:-12rem; right:-12rem; width:37rem; height:37rem; background:rgba(198,0,22,.05); border-radius:50%; filter:blur(3rem); pointer-events:none; }
.c-glow2 { position:absolute; bottom:-12rem; left:-12rem; width:37rem; height:37rem; background:rgba(198,0,22,.04); border-radius:50%; filter:blur(3rem); pointer-events:none; }

.bento {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:1rem;
  position:relative; z-index:1;
}

/* Form tile */
.bt-form {
  grid-column:3; grid-row:1/3;
  background:var(--dark); border-radius:1.5rem;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 40px -8px rgba(0,0,0,.15);
  padding:2rem; display:flex; flex-direction:column;
  position:relative; overflow:hidden;
}
.bt-stripe { position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--red),#f87171); }
.bt-head { display:flex; flex-direction:column; align-items:center; text-align:center; margin-bottom:1.75rem; }
.bt-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:#fff; border:2px solid var(--red); border-radius:9999px;
  padding:.45rem 1.25rem; margin-bottom:.65rem;
}
.bt-badge .bd { display:flex; gap:.2rem; }
.bt-badge .bd span { width:.25rem; height:.25rem; border-radius:50%; background:var(--red); display:inline-block; }
.bt-badge .bl { font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--red); }
.bt-sub { font-size:.82rem; color:#94a3b8; max-width:16rem; }

form.cform {
  display:flex; flex-direction:column; gap:1.15rem; flex:1;
  border:1px solid rgba(255,255,255,.1); border-radius:1rem; padding:1.25rem;
}
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.f-field { border-bottom:2px solid rgba(255,255,255,.15); padding-bottom:.45rem; transition:border-color .3s; }
.f-field:focus-within { border-bottom-color:var(--red); }
.f-field label { display:block; font-size:.58rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em; color:#fff; margin-bottom:.2rem; }
.f-field input,.f-field textarea {
  width:100%; background:transparent; border:none; outline:none;
  font-family:inherit; font-size:.85rem;
  color:rgba(255,255,255,.4); caret-color:#fff;
}
.f-field input::placeholder,.f-field textarea::placeholder { color:rgba(255,255,255,.3); }
.f-field textarea { resize:none; }

.captcha-area { border-bottom:2px solid rgba(255,255,255,.15); padding-bottom:.75rem; }
.captcha-area label { display:block; font-size:.58rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em; color:#fff; margin-bottom:.45rem; }
.captcha-row { display:flex; align-items:center; gap:.75rem; }
.captcha-code {
  display:flex; align-items:center; justify-content:center;
  height:2.2rem; padding:0 .9rem; background:#1e293b;
  border-radius:.5rem; flex-shrink:0;
  font-family:monospace; font-weight:900; color:#fff;
  letter-spacing:.24em; font-size:.85rem; user-select:none;
  text-shadow:0 1px 4px rgba(0,0,0,.5);
}
.captcha-ref {
  width:2.5rem; height:2.5rem; background:#fff !important; border:none !important; outline:none;
  box-shadow:none; cursor:pointer; color:#c60016 !important;
  padding:0; border-radius:.35rem; flex-shrink:0; display:flex;
  transition:background .2s; align-items:center; justify-content:center;
}
.captcha-ref:hover { background:#fff !important; }
.captcha-ref svg { width:1rem; height:1rem; stroke:#c60016 !important; fill:none; stroke-width:2; }
.captcha-ref.spin svg { animation:rotRefresh .35s linear; }
.captcha-div { width:1px; height:1.25rem; background:rgba(255,255,255,.2); flex-shrink:0; }
.captcha-in {
  flex:1; background:transparent; border:none; outline:none;
  font-family:monospace; font-size:.85rem; font-weight:700; color:#fff;
}
.captcha-in::placeholder { font-family:inherit; font-weight:400; color:rgba(255,255,255,.3); }
.captcha-in.err { color:#f87171; }

.f-error {
  display:none; align-items:center; gap:.5rem;
  background:#fef2f2; border:1px solid #fecaca;
  color:#dc2626; padding:.6rem 1rem; border-radius:.75rem;
  font-size:.82rem; font-weight:700;
}
.f-error.show { display:flex; }
.f-error svg { width:.9rem; height:.9rem; stroke:currentColor; fill:none; stroke-width:2.5; flex-shrink:0; }

.submit-btn {
  height:3.5rem; background:var(--red); color:#fff; border:none;
  border-radius:1rem; font-family:inherit; font-weight:900; font-size:.95rem;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.6rem;
  transition:background .3s,transform .15s; margin-top:auto;
}
.submit-btn:hover { background:#a0000f; transform:scale(1.015); }
.submit-btn:active { transform:scale(.985); }
.submit-btn svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2.5; }
.submit-btn .arr { display:inline-flex; animation:arrowPing 1.2s ease-in-out infinite; }

/* Address tile */
.bt-addr {
  grid-column:1/3; grid-row:1;
  background:var(--dark); border-radius:1.5rem; padding:2rem; position:relative; overflow:hidden;
}
.our-loc-lbl {
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.875rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em;
  color:#fff; margin-bottom:1.25rem; width:100%; justify-content:center;
}
.our-loc-lbl .d { width:.38rem; height:.38rem; border-radius:50%; background:#fff; display:inline-block; }
.loc-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.loc-item { border-left:2px solid rgba(198,0,22,.4); padding-left:1rem; }
.loc-h { font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-bottom:.35rem; }
.loc-b { font-size:.83rem; color:#fff; line-height:1.7; font-weight:500; text-decoration:none; display:block; transition:color .3s; }
.loc-b:hover { color:var(--red); }
.addr-div { height:1px; background:rgba(255,255,255,.1); margin:1.25rem 0; }
.addr-contacts { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.ac-item { display:flex; align-items:flex-start; gap:.7rem; }
.ac-item svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2; flex-shrink:0; margin-top:.18rem; }
.ac-label { font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-bottom:.22rem; }
.ac-item a { font-size:.82rem; color:#fff; font-weight:700; display:block; transition:color .3s; }
.ac-item a:hover { color:var(--red); }
.ac-item a.sec { font-weight:500; margin-top:.18rem; }

/* Map tile */
.bt-map {
  grid-column:1; grid-row:2;
  background:#fff; border-radius:1.5rem; overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.06); min-height:220px;
  display:flex; flex-direction:column;
}
.map-bar { display:flex; align-items:center; gap:.5rem; padding:.6rem 1rem; border-bottom:1px solid #f1f5f9; }
.map-dot { width:.5rem; height:.5rem; background:var(--red); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.map-bar span { font-size:.85rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#64748b; }
.bt-map iframe { flex:1; display:block; min-height:185px; border:none; }

/* Cities tile */
.bt-cities {
  grid-column:2; grid-row:2;
  background:var(--dark); border-radius:1.5rem; padding:1.25rem;
  position:relative; overflow:hidden;
}
.cities-glow { position:absolute; right:-5rem; top:50%; transform:translateY(-50%); width:12rem; height:12rem; background:rgba(198,0,22,.15); border-radius:50%; filter:blur(3rem); pointer-events:none; }
.cities-hdr { display:flex; align-items:center; gap:.5rem; margin-bottom:1rem; position:relative; z-index:1; }
.cities-hdr svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2; }
.cities-hdr span { font-size:.85rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#fff; }
.cities-div { flex:1; height:1px; background:rgba(255,255,255,.1); margin-left:.5rem; }
.cities-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; position:relative; z-index:1; }
.city-card {
  position:relative; border-radius:1rem; overflow:hidden; height:6rem;
  cursor:pointer; transition:transform .35s;
}
.city-card:hover { transform:scale(1.04) translateY(-4px); }
.city-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.city-card:hover img { transform:scale(1.1); }
.city-ov {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2),transparent);
  transition:background .35s;
}
.city-card:hover .city-ov { background:linear-gradient(to top,rgba(198,0,22,.85),rgba(198,0,22,.2),transparent); }
.city-name { position:absolute; bottom:.7rem; left:.7rem; color:#fff; font-weight:900; font-size:.85rem; text-shadow:0 1px 4px rgba(0,0,0,.5); }
.city-border { position:absolute; inset:0; border-radius:1rem; border:2px solid transparent; transition:border-color .3s; }
.city-card:hover .city-border { border-color:rgba(255,255,255,.3); }

/* ================================================================
   SUCCESS MODAL
================================================================ */
.modal-back {
  position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:9999;
  display:none; align-items:center; justify-content:center; padding:1rem;
}
.modal-back.open { display:flex; }
.modal-box {
  background:linear-gradient(135deg,var(--dark),#1e293b);
  border-radius:1.25rem; padding:2.25rem; max-width:380px; width:100%;
  position:relative; overflow:hidden; text-align:center;
}
.modal-glow { position:absolute; top:-2.5rem; right:-2.5rem; width:10rem; height:10rem; background:rgba(198,0,22,.3); border-radius:50%; filter:blur(3rem); pointer-events:none; }
.modal-icon { width:4rem; height:4rem; background:linear-gradient(135deg,var(--red),#b91c1c); border-radius:.75rem; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; box-shadow:0 8px 24px rgba(198,0,22,.4); }
.modal-icon svg { width:2rem; height:2rem; stroke:#fff; fill:none; stroke-width:2.5; }
.modal-box h3 { font-size:1.4rem; font-weight:900; color:#fff; margin-bottom:.5rem; }
.modal-box p  { font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.65; }
.modal-btn {
  margin-top:1.5rem; width:100%; height:3rem;
  background:var(--red); color:#fff; border:none;
  border-radius:.75rem; font-family:inherit; font-weight:900; font-size:.97rem;
  cursor:pointer; transition:background .3s,transform .15s;
}
.modal-btn:hover { background:#a0000f; transform:scale(1.02); }

/* ================================================================
   NEWSLETTER MODAL
================================================================ */
.nl-back {
  position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:8999;
  display:none; align-items:center; justify-content:center; padding:1rem;
}
.nl-back.open { display:flex; }
.nl-box {
  background:linear-gradient(135deg,var(--dark),#1e293b);
  border-radius:1.25rem; padding:2.5rem; max-width:420px; width:100%;
  position:relative; text-align:center; overflow:hidden;
}
.nl-glow { position:absolute; top:-3rem; right:-3rem; width:11rem; height:11rem; background:var(--red); border-radius:50%; filter:blur(3.5rem); opacity:.25; pointer-events:none; }
.nl-close { position:absolute; top:.9rem; right:.9rem; background:rgba(255,255,255,.1); border:none; cursor:pointer; color:#fff; width:2rem; height:2rem; border-radius:.4rem; font-size:1.2rem; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.nl-close:hover { background:var(--red); }
.nl-box h3 { font-size:1.4rem; font-weight:900; color:#fff; margin-bottom:.5rem; position:relative; z-index:1; }
.nl-box p  { color:rgba(255,255,255,.55); font-size:.88rem; margin-bottom:1.5rem; position:relative; z-index:1; }
.nl-input  { width:100%; padding:.75rem 1rem; border-radius:.75rem; border:none; outline:none; font-family:inherit; font-size:.93rem; margin-bottom:.75rem; position:relative; z-index:1; }
.nl-btn    { width:100%; padding:.75rem; border:none; border-radius:.75rem; background:var(--red); color:#fff; font-family:inherit; font-weight:900; font-size:.97rem; cursor:pointer; transition:background .3s; position:relative; z-index:1; }
.nl-btn:hover { background:#a0000f; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background:linear-gradient(135deg,#020617,var(--dark),#020617);
  color:#cbd5e1; position:relative; overflow:hidden;
}
.f-glow1,.f-glow2 { position:absolute; width:11rem; height:11rem; border-radius:50%; filter:blur(120px); opacity:.2; pointer-events:none; }
.f-glow1 { top:0; left:25%; background:var(--red); }
.f-glow2 { bottom:0; right:25%; background:#7f1d1d; }
.footer-inner {
  position:relative; z-index:1; padding:2rem 1rem;
  display:grid; grid-template-columns:4fr 2fr 3fr 3fr; gap:2rem; align-items:start;
}

.f-brand .logo-row { display:flex; align-items:center; gap:.85rem; margin-bottom:1rem; }
.f-brand .logo-row .emblem { height:5rem; width:auto; }
.f-brand .logo-row .divider { height:2rem; width:1px; background:linear-gradient(to bottom,transparent,var(--red),transparent); flex-shrink:0; }
.f-brand .logo-row .brand-stack { display:flex; flex-direction:column; }
.f-brand .logo-row .brand-stack .top { font-size:1.5rem; font-weight:900; color:var(--red); letter-spacing:.04em; line-height:1; }
.f-brand .logo-row .brand-stack .btm { font-size:.82rem; font-weight:700; color:#fff; }
.f-brand p { color:#fff; font-size:.94rem; font-weight:700; line-height:1.65; }
.f-brand p span { color:var(--red); }

.f-col h4 {
  color:#fff; font-weight:700; font-size:.97rem;
  margin-bottom:.85rem; display:flex; align-items:center; gap:.5rem;
}
.f-col h4::before { content:''; width:.25rem; height:1.25rem; background:var(--red); border-radius:9999px; flex-shrink:0; }
.f-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.5rem; }
.f-col ul li a { color:#fff; font-size:.85rem; font-weight:700; display:flex; align-items:center; gap:.5rem; transition:color .3s; }
.f-col ul li a:hover { color:var(--red); }
.f-col ul li a svg { width:1rem; height:1rem; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; transition:transform .3s; }
.f-col ul li a:hover svg { transform:translateX(4px); }

.f-contact-list { display:flex; flex-direction:column; gap:.85rem; margin:0; }
.f-ci { display:flex; align-items:flex-start; gap:.75rem; }
.f-ci-icon { width:2.4rem; height:2.4rem; background:rgba(198,0,22,.1); border-radius:.5rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .3s; }
.f-ci:hover .f-ci-icon { background:rgba(198,0,22,.2); }
.f-ci-icon svg { width:1.15rem; height:1.15rem; stroke:var(--red); fill:none; stroke-width:2; }
.f-ci a { color:#fff; font-size:.84rem; font-weight:700; transition:color .3s; line-height:1.5; }
.f-ci a:hover { color:var(--red); }

.f-socials { display:flex; flex-wrap:wrap; gap:.65rem; margin:0 0 .85rem; }
.f-soc { position:relative; display:block; }
.f-soc .sg { position:absolute; inset:0; background:var(--red); border-radius:.5rem; filter:blur(8px); opacity:0; transition:opacity .3s; }
.f-soc:hover .sg { opacity:.5; }
.f-soc-in { position:relative; width:3rem; height:3rem; background:rgba(30,41,59,.5); border-radius:.5rem; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.f-soc-in img { width:2.5rem; height:2.5rem; object-fit:contain; transition:transform .3s; }
.f-soc:hover .f-soc-in img { transform:scale(1.1); }
.f-certs {
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:.75rem;
  margin-top:1.5rem;
  margin-left:.5rem;
}
.f-certs > * { flex:0 0 auto; }
.f-certs img { display:inline-block; width:auto; height:4.2rem; object-fit:contain; vertical-align:middle; }
.f-cert { background:#fff; border-radius:.5rem; padding:.45rem .7rem; font-size:.62rem; font-weight:900; text-align:center; line-height:1.35; }

/* ================================================================
   SCROLL-TO-TOP
================================================================ */
.stt {
  position:fixed; bottom:2rem; right:2rem; z-index:500;
  width:3rem; height:3rem; background:var(--red);
  border:none; border-radius:50%; cursor:pointer; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(198,0,22,.45);
  opacity:0; pointer-events:none; transition:all .3s;
}
.stt.show { opacity:1; pointer-events:auto; }
.stt:hover { background:#a0000f; transform:translateY(-3px); }
.stt svg { width:1.25rem; height:1.25rem; stroke:#fff; fill:none; stroke-width:2.5; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width:1200px) {
  .sol-grid  { grid-template-columns:repeat(2,1fr); }
  .ind-grid  { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:1024px) {
  .nav-desk   { display:none; }
  .h-socials  { display:none; }
  .hamburger  { display:flex; }
  .about-grid { grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:repeat(3,1fr); }
  .bento { grid-template-columns:1fr; }
  .bt-form   { grid-column:1; grid-row:auto; }
  .bt-addr   { grid-column:1; grid-row:auto; }
  .bt-map    { grid-column:1; grid-row:auto; }
  .bt-cities { grid-column:1; grid-row:auto; }
  .collabs-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .blogs-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .blogs-grid  { grid-template-columns:1fr; }
  .dd-grid     { grid-template-columns:repeat(2,1fr); }
  .testi-inner { flex-direction:column; gap:1.5rem; }
  .testi-card  { padding:2rem 1.5rem; }
  .testi-avatar{ width:6rem; height:6rem; }
  .kh-stats    { grid-template-columns:1fr; }
  .kh-row      { flex-direction:column; }
}
@media (max-width:640px) {
  .sol-grid  { grid-template-columns:1fr; }
  .ind-grid  { grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:repeat(2,1fr); }
  .loc-grid  { grid-template-columns:1fr; }
  .addr-contacts { grid-template-columns:1fr; }
  .f-row     { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .hero-badge { width:7.5rem; height:7.5rem; bottom:1rem; right:1rem; }
  .hb-num { font-size:1.9rem; }
  .collabs .sub { white-space:normal; }
}

/* Ultimate phone-mode override */
@media (max-width: 768px) {
  .nav-desk { display:none !important; }
  .h-socials { display:none !important; }
  .hamburger { display:flex !important; }
  .header-inner {
    padding:4px 0.5rem !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
  }
  .logo-link {
    display:flex !important;
    align-items:center !important;
    gap:0 !important;
    min-width:0 !important;
    flex:1 1 auto !important;
  }
  .logo-link .emblem {
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    flex-shrink:0 !important;
  }
  .logo-link .wordmark {
    width:132px !important;
    max-width:132px !important;
    height:auto !important;
    object-fit:contain !important;
  }
}

/* Final phone override: always show full logo icon in header */
@media (max-width: 640px) {
  .logo-link { display:flex !important; align-items:center !important; gap:0 !important; min-width:0 !important; }
  .logo-link .emblem {
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    flex-shrink:0 !important;
  }
  .logo-link .wordmark {
    width:132px !important;
    height:auto !important;
    max-width:132px !important;
    flex-shrink:1 !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.content-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  background-color: transparent;
}

.logo {
  width: 96px;
  height: auto;
  background-color: transparent;
}

.company-name {
  position: static;
}

.company-name h1 {
  font-size: 15px;
  font-weight: 700;
  color: black;
  margin: 0;
  letter-spacing: 0.38px;
  line-height: 15px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .company-name {
    top: 40px;
    left: 10px;
  }

  .company-name h1 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .company-name {
    top: 45px;
    left: 5px;
  }

  .company-name h1 {
    font-size: 13px;
  }
}

/* Mobile header logo safety: keep full icon + text visible */
.logo-link { min-width: 0; }
.logo-link .wordmark { max-width: 100%; object-fit: contain; object-position: left center; }

@media (max-width: 1024px) {
  .header-inner { padding: 4px 0.6rem; }
  .logo-link .emblem { width: 48px; height: 48px; }
  .logo-link .wordmark { width: 190px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 4px 0.5rem; }
  .logo-link .emblem { width: 42px; height: 42px; display:block !important; visibility:visible; opacity:1; }
  .logo-link .wordmark { width: 150px; }
}

.logo-link .wordmark {
  width:250px;
  height:auto;
  object-fit:contain;
  display:block;
  background-color:#fff;
  mix-blend-mode:normal;
  margin-left:0;
  flex-shrink:0;
}
.logo-text { display:flex; flex-direction:column; }
.logo-text .brand { font-size:1.45rem; font-weight:900; color:var(--red); letter-spacing:.04em; line-height:1; }
.logo-text .sub   { font-size:.87rem; font-weight:700; color:#000; letter-spacing:.02em; }

/* Desktop nav */
.nav-desk { display:flex; align-items:center; gap:2rem; }
.nav-desk > a {
  font-size:1.05rem; font-weight:700; color:var(--red);
  transition:color .2s; white-space:nowrap;
}
.nav-desk > a:hover { color:#7f000e; }
.nav-desk > .nav-link-btn {
  font-size:1.05rem; font-weight:700; color:var(--red);
  transition:color .2s; white-space:nowrap;
  background:none; border:none; cursor:pointer;
}
.nav-desk > .nav-link-btn:hover { color:#7f000e; }

/* Services dropdown */
.dropdown-wrap { position:relative; }
.dropdown-trigger {
  display:flex; align-items:center; gap:.3rem;
  font-size:1.05rem; font-weight:700; color:var(--red);
  background:none; border:none; cursor:pointer; padding:0;
  transition:color .2s;
}
.dropdown-trigger:hover { color:#7f000e; }
.dropdown-trigger .chevron {
  width:1rem; height:1rem;
  stroke:currentColor; fill:none; stroke-width:2.5;
  transition:transform .25s;
}
.dropdown-wrap:hover .chevron { transform:rotate(180deg); }
.dropdown-wrap.is-open .chevron { transform:rotate(180deg); }

.dropdown-box {
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%);
  width:700px; background:#fff;
  border:1px solid #e5e7eb; border-radius:1rem;
  box-shadow:0 20px 60px rgba(0,0,0,.14);
  padding:1rem; opacity:0; pointer-events:none;
  transition:opacity .2s, transform .2s;
  transform-origin:top;
}
.dropdown-wrap:hover .dropdown-box {
  opacity:1; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.dropdown-wrap.is-open .dropdown-box {
  opacity:1; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.dd-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.6rem; }

/* Service card inside dropdown */
.dd-card {
  display:block; background:#fff;
  border:2px solid #f3f4f6; border-radius:.75rem;
  padding:.9rem; overflow:hidden; position:relative;
  transition:transform .3s, box-shadow .3s; text-decoration:none;
}
.dd-card:hover { transform:translateY(-7px); box-shadow:0 14px 36px rgba(0,0,0,.14); }
.dd-card::after {
  content:''; position:absolute; inset:0; z-index:0;
  border-radius:.75rem; opacity:0; transition:opacity .35s;
}
.dd-card.red::after  { background:linear-gradient(135deg,#ef4444,#991b1b); }
.dd-card.gray::after { background:linear-gradient(135deg,#374151,#111827); }
.dd-card.grn::after  { background:linear-gradient(135deg,#16a34a,#14532d); }
.dd-card:hover::after { opacity:1; }
.dd-card-in { position:relative; z-index:1; }
.dd-icon {
  width:2.2rem; height:2.2rem; border-radius:.45rem;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:.6rem; transition:background .3s;
}
.dd-icon svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2.5; transition:stroke .3s; }
.dd-icon img { width:1rem; height:1rem; object-fit:contain; display:block; }
.dd-card.red  .dd-icon { background:var(--red); }
.dd-card.gray .dd-icon { background:#374151; }
.dd-card.grn  .dd-icon { background:#16a34a; }
.dd-card:hover .dd-icon { background:#fff; }
.dd-card.red:hover  .dd-icon svg { stroke:var(--red); }
.dd-card.gray:hover .dd-icon svg { stroke:#374151; }
.dd-card.grn:hover  .dd-icon svg { stroke:#16a34a; }
.dd-card h3 { font-size:.78rem; font-weight:700; color:#111; margin-bottom:.3rem; transition:color .3s; }
.dd-card p  { font-size:.68rem; color:#6b7280; line-height:1.5; margin-bottom:.4rem; transition:color .3s; }
.dd-card ul { list-style:none; margin-bottom:.5rem; }
.dd-card ul li { font-size:.67rem; color:#374151; display:flex; align-items:center; gap:.25rem; margin-bottom:.15rem; transition:color .3s; }
.dd-card ul li::before { content:''; width:.45rem; height:.45rem; border-radius:50%; border:1.5px solid var(--red); flex-shrink:0; transition:border-color .3s; }
.dd-card .dd-cta { font-size:.67rem; font-weight:700; color:var(--red); display:flex; align-items:center; gap:.2rem; transition:color .3s; }
.dd-card .dd-cta svg { width:.7rem; height:.7rem; stroke:currentColor; fill:none; stroke-width:2.5; }
.dd-card:hover h3,.dd-card:hover p,.dd-card:hover ul li,.dd-card:hover .dd-cta { color:#fff; }
.dd-card:hover ul li::before { border-color:#fff; }

/* Header socials */
.h-socials { display:flex; align-items:center; gap:.85rem; margin-right:2rem; }
.h-socials a {
  width:2rem;
  height:2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:transform .2s;
}
.h-socials a svg,
.h-socials a img {
  width:2rem;
  height:2rem;
  display:block;
  object-fit:contain;
}
.h-socials .h-ig-icon{
  object-fit:cover;
  border-radius:8px;
  transform:scale(1.14);
}
.h-socials a img { transition:transform .2s ease; }
.h-socials a:hover img { transform:scale(1.06); }
.h-socials a:hover .h-ig-icon { transform:scale(1.2); }
.h-socials a:hover { transform:scale(1.12); }

/* Hamburger */
.hamburger {
  display:none; background:none; border:none;
  cursor:pointer; color:var(--red); padding:.4rem;
}
.hamburger svg { width:1.75rem; height:1.75rem; stroke:currentColor; fill:none; stroke-width:2; display:block; }

/* Mobile Nav */
.mob-nav {
  position:fixed; inset:0; z-index:999;
  background:#fff; border-top:4px solid var(--red);
  padding:5rem 1.5rem 2rem;
  display:none; flex-direction:column; gap:1.25rem;
  overflow-y:auto;
}
.mob-nav.open { display:flex; }
.mob-nav-close {
  position:absolute; top:1.25rem; right:1.25rem;
  background:none; border:none; cursor:pointer; color:var(--red);
}
.mob-nav-close svg { width:1.75rem; height:1.75rem; stroke:currentColor; fill:none; stroke-width:2; }
.mob-nav a {
  font-size:1.2rem; font-weight:700; color:var(--red);
  border-bottom:1px solid #f1f5f9; padding-bottom:1rem;
}
.mob-nav .mob-link-btn {
  font-size:1.2rem; font-weight:700; color:var(--red);
  border-bottom:1px solid #f1f5f9; padding-bottom:1rem;
  background:none; border-left:none; border-right:none; border-top:none;
  text-align:left; width:100%; cursor:pointer;
}
.mob-nav .mob-sub { padding-left:1rem; display:flex; flex-direction:column; gap:.6rem; margin-bottom:.75rem; }
.mob-nav .mob-sub a { font-size:.97rem; font-weight:600; color:#475569; border:none; padding-bottom:0; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position:relative; width:100%; height:90vh;
  display:flex; align-items:center; justify-content:center;
  background:#000; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:url("images/1.JPG") center/cover no-repeat;
  opacity:.35;
}
/* watermark */
.hero-wm {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  pointer-events:none; user-select:none; overflow:hidden;
  padding:0; transform:translateY(-2.2rem);
  font-size:clamp(3.6rem,8vw,8.5rem); color:rgba(255,255,255,.06); font-weight:700;
  text-transform:uppercase; letter-spacing:.08em; text-align:center;
  line-height:.85; -webkit-text-stroke:1px rgba(0,0,0,.15);
}
.hero-wm > div {
  white-space:nowrap;
}
.hero-wm > div + div {
  margin-top:.06em;
}
.wm-char { opacity:0; }
.wm-char.show { animation:fadeIn .12s ease forwards; }
@media (max-width: 768px) {
  .hero-wm {
    font-size:clamp(2.4rem,11vw,4.5rem);
    letter-spacing:.06em;
    transform:translateY(-1.2rem);
  }
}

/* hero content */
.hero-body {
  position:relative; z-index:10; text-align:center;
  padding:0 1rem; margin-top:-9rem;
  opacity:0; animation:fadeUp .9s .5s ease forwards;
}
.hero-body h1 {
  font-size:clamp(2.2rem,5.5vw,4.25rem);
  font-weight:700; color:#fff; line-height:1.2;
  text-shadow:0 2px 10px rgba(0,0,0,.7);
}

/* 40+ badge */
.hero-badge {
  position:absolute; bottom:2rem; right:2rem;
  width:10rem; height:10rem;
  background:var(--red); color:#fff;
  border-radius:1.25rem;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  box-shadow:0 20px 50px rgba(198,0,22,.45);
  animation:float 4s ease-in-out infinite;
  overflow:hidden; z-index:20; text-align:center;
}
.hb-shine {
  position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  animation:shine 2.5s linear infinite;
}
.hb-num  { font-size:2.4rem; font-weight:700; position:relative; z-index:1; }
.hb-line { width:2rem; height:.22rem; background:rgba(255,255,255,.45); border-radius:9999px; margin:.3rem 0; }
.hb-lbl  { font-size:.52rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; line-height:1.65; position:relative; z-index:1; }

/* ================================================================
   ABOUT US
================================================================ */
.about { padding:3.5rem 0 0; }
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:center;
}
.about-imgbox {
  border-radius:.85rem; overflow:hidden; height:360px;
  position:relative; display:flex; align-items:center; justify-content:center;
  background:transparent; box-shadow:none;
}
.about-imgbox img { width:100%; height:100%; object-fit:contain; background:transparent; }
.about-imgbox::after { display:none; }
.about .about-imgbox img { width:82%; height:82%; }
.about h5 { font-size:1.65rem; font-weight:700; color:var(--dark); margin-bottom:1rem; line-height:1.25; }
.about-text p { color:#475569; line-height:1.8; margin-bottom:.75rem; font-size:.96rem; }
.checks { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; margin-top:1rem; }
.check-row { display:flex; align-items:center; gap:.5rem; font-size:.86rem; font-weight:600; color:var(--dark); }
.check-row svg { width:1.1rem; height:1.1rem; stroke:#b91c1c; flex-shrink:0; fill:none; stroke-width:2.5; }

/* Stats strip */
.stats-section { padding:1rem; margin:3.5rem auto 2rem; display:flex; justify-content:center; }
.stats-border {
  border-radius:1rem; padding:1px;
  box-shadow:0 0 32px rgba(198,0,22,.28);
  position:relative; overflow:hidden;
}
.stats-conic {
  position:absolute; inset:-150%;
  background:conic-gradient(from 0deg at 50% 50%,
    transparent 0deg,transparent 80deg,
    #C60016 120deg,transparent 160deg,
    transparent 260deg,#C60016 300deg,transparent 340deg);
  animation:spinConic 6s linear infinite;
}
.stats-inner {
  position:relative; background:var(--dark); border-radius:1rem;
  padding:2rem; display:grid;
  grid-template-columns:repeat(5,1fr); gap:1rem; overflow:hidden;
}
.stats-glow {
  position:absolute; inset:-50%; pointer-events:none; opacity:.18;
  background:radial-gradient(circle at center,#C60016 0%,transparent 50%);
  filter:blur(60px); animation:glow 8s ease-in-out infinite;
}
.stat-item {
  position:relative; z-index:1; display:flex; flex-direction:column;
  align-items:center; text-align:center; padding:1.4rem .8rem;
  opacity:0; transform:translateY(2rem);
  transition:opacity .6s ease,transform .6s ease;
}
.stat-item.vis { opacity:1; transform:none; }
.stat-item:first-child { border-left:4px solid var(--red); }
.stat-icon { width:2rem; height:2rem; margin-bottom:.7rem; }
.stat-icon svg { width:2rem; height:2rem; stroke:var(--red); fill:none; stroke-width:2; }
.stat-num   { font-size:1.8rem; font-weight:700; color:#fff; margin-bottom:.2rem; }
.stat-label { font-size:.67rem; color:#cbd5e1; text-transform:uppercase; letter-spacing:.08em; }

/* ================================================================
   INDUSTRIES
================================================================ */
.industries {
  position:relative; background:#000; overflow:hidden; padding:0;
}
.ind-bg {
  position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1400&q=70') center/cover;
  opacity:.35;
}
.ind-overlay { position:absolute; inset:0; background:rgba(0,0,0,.62); }
.ind-body { position:relative; z-index:10; padding:3.5rem 0 0; }
.ind-body .sec-head h3 {
  font-size:clamp(1.5rem,3vw,2.25rem); font-weight:700; color:#fff; margin-top:.5rem;
}
.ind-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1rem; max-width:1100px; margin:1.5rem auto 0; padding-bottom:3rem;
}
.ind-card {
  position:relative; min-height:200px; cursor:pointer;
  border-radius:2rem; overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
  background:rgba(0,0,0,.72);
  transition:border-color .4s, box-shadow .4s, transform .3s;
}
.ind-card:hover {
  border-color:var(--red);
  box-shadow:0 0 45px rgba(198,0,22,.6);
  transform:translateY(-6px);
}
.ind-card.active {
  border-color:var(--red);
  box-shadow:0 0 80px rgba(198,0,22,.7);
  transform:scale(1.02);
}
.ind-card-glow {
  position:absolute; top:-50%; left:-50%;
  width:200%; height:200%; pointer-events:none; opacity:.28;
  mix-blend-mode:screen;
  background:radial-gradient(circle at center,rgba(255,255,255,.4) 0%,transparent 60%);
  animation:glow 5s ease-in-out infinite;
}
.ind-card.active .ind-card-glow {
  background:radial-gradient(circle at center,#c60016 0%,transparent 70%);
}
.ind-card-inner { position:relative; z-index:2; padding:1.25rem 1rem 1.5rem; height:100%; display:flex; flex-direction:column; }
.ind-num { position:absolute; top:.9rem; right:1.2rem; font-size:2.2rem; font-weight:700; font-family:monospace; color:rgba(255,255,255,.1); }
.ind-card.active .ind-num { color:rgba(198,0,22,.3); }
.ind-icon { color:var(--red); margin-bottom:.75rem; }
.ind-icon svg { width:1.75rem; height:1.75rem; stroke:currentColor; fill:none; stroke-width:1.5; }
.ind-card h4 { font-size:1rem; font-weight:700; color:#fff; margin-bottom:.6rem; transition:color .3s; }
.ind-card.active h4 { color:var(--red); }
.ind-card p { font-size:.77rem; color:#cbd5e1; line-height:1.7; }

/* -- Client Logos Ticker -- */
.clients-strip {
  background:#fff; border-top:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0;
  padding:3.5rem 0; overflow:hidden;
}
.ticker-row { position:relative; overflow:hidden; }
.ticker-row + .ticker-row { margin-top:2rem; }
.ticker-fade-l, .ticker-fade-r {
  position:absolute; top:0; bottom:0; width:8rem; z-index:5; pointer-events:none;
}
.ticker-fade-l { left:0;  background:linear-gradient(to right,#fff,transparent); }
.ticker-fade-r { right:0; background:linear-gradient(to left, #fff,transparent); }
.ticker-track { display:flex; align-items:center; width:max-content; }
.ticker-track.left  { animation:scrollL 38s linear infinite; }
.ticker-track.right { animation:scrollR 38s linear infinite; }
.ticker-item { padding:0 3rem; flex-shrink:0; }
.ticker-item img { height:3.5rem; object-fit:contain; filter:grayscale(1); opacity:.35; transition:filter .3s,opacity .3s; }
.ticker-item img:hover { filter:none; opacity:1; }
.ticker-item .logo-text-pill {
  height:3.5rem; display:flex; align-items:center;
  background:#f8fafc; border:1px solid #e2e8f0;
  border-radius:.5rem; padding:0 1rem;
  font-size:.8rem; font-weight:700; color:#475569;
  white-space:nowrap;
}

/* ================================================================
   SOLUTIONS
================================================================ */
.solutions {
  padding:4.5rem 0;
  background:linear-gradient(180deg,#fff,#f8fafc,#fff);
  overflow:hidden; position:relative;
}
.sol-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.sol-card-wrap { perspective:1000px; }
.sol-card {
  display:block; position:relative;
  background:#fff; border:2px solid #f3f4f6;
  border-radius:1.25rem; padding:1.5rem;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
  overflow:hidden; transition:box-shadow .35s, transform .35s;
  height:100%; text-decoration:none;
}
.sol-card::before {
  content:''; position:absolute; inset:0; z-index:0;
  border-radius:1.25rem; opacity:0; transition:opacity .4s;
}
.sol-card.red::before  { background:linear-gradient(135deg,#ef4444,#991b1b); }
.sol-card.gray::before { background:linear-gradient(135deg,#374151,#111827); }
.sol-card.grn::before  { background:linear-gradient(135deg,#16a34a,#14532d); }
.sol-card:hover { transform:translateY(-10px) scale(1.02); box-shadow:0 22px 56px rgba(0,0,0,.18); }
.sol-card:hover::before { opacity:1; }
.sol-inner { position:relative; z-index:1; }
.sol-icon {
  width:2.5rem; height:2.5rem; border-radius:.5rem;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:1rem; transition:background .3s;
}
.sol-icon svg { width:1.25rem; height:1.25rem; stroke:#fff; fill:none; stroke-width:2.5; transition:stroke .3s; }
.sol-card.red  .sol-icon { background:var(--red); }
.sol-card.gray .sol-icon { background:#374151; }
.sol-card.grn  .sol-icon { background:#16a34a; }
.sol-card:hover .sol-icon { background:#fff; }
.sol-card.red:hover  .sol-icon svg { stroke:var(--red); }
.sol-card.gray:hover .sol-icon svg { stroke:#374151; }
.sol-card.grn:hover  .sol-icon svg { stroke:#16a34a; }
.sol-card h3 { font-size:1.08rem; font-weight:700; color:#111; margin-bottom:.65rem; transition:color .3s; }
.sol-card p  { font-size:.83rem; color:#6b7280; line-height:1.65; margin-bottom:1.25rem; transition:color .3s; }
.sol-card ul { list-style:none; margin-bottom:1.25rem; display:flex; flex-direction:column; gap:.35rem; }
.sol-card ul li { font-size:.8rem; color:#374151; display:flex; align-items:center; gap:.4rem; transition:color .3s; }
.sol-card ul li svg { width:.85rem; height:.85rem; stroke:var(--red); fill:none; stroke-width:2.5; flex-shrink:0; transition:stroke .3s; }
.sol-card .learn { font-size:.8rem; font-weight:700; color:var(--red); display:flex; align-items:center; gap:.3rem; transition:color .3s; }
.sol-card .learn svg { width:.85rem; height:.85rem; stroke:currentColor; fill:none; stroke-width:2.5; }
.sol-card:hover h3,.sol-card:hover p,.sol-card:hover ul li,.sol-card:hover .learn { color:#fff; }
.sol-card:hover ul li svg,.sol-card:hover .learn svg { stroke:#fff; }
/* shine */
.sol-shine {
  position:absolute; top:0; left:-70%; height:100%; width:40%; z-index:2;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transform:skewX(-12deg); pointer-events:none; opacity:0; transition:opacity 0s;
}
.sol-card:hover .sol-shine { animation:shine .8s ease forwards; opacity:1; }

/* ================================================================
   AWARDS & EVENTS
================================================================ */
.ae-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(145deg, #5a000d 0%, #8b0010 25%, #c60016 60%, #dc2626 100%);
}
.atm-glow-tl, .atm-glow-br {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.atm-glow-tl {
  top: -10rem;
  left: -10rem;
  width: 37.5rem;
  height: 37.5rem;
  background: radial-gradient(circle, rgba(255,210,0,.12) 0%, transparent 65%);
}
.atm-glow-br {
  bottom: -10rem;
  right: -10rem;
  width: 43.75rem;
  height: 43.75rem;
  background: radial-gradient(circle, rgba(0,200,255,.08) 0%, transparent 65%);
}
.backdrop-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: .25em;
  color: rgba(255,255,255,.03);
}
#confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}
.ae-body {
  position: relative;
  z-index: 30;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.ae-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  animation: aeFadeUp .7s cubic-bezier(.22,1,.36,1) both;
}
.ae-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9999px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ae-badge .sparkle { color: #fde047; }
.ae-title {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 1;
  color: #fff;
  font-weight: 900;
}
.ae-title-highlight { position: relative; display: inline-block; }
.ae-title-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: .15em;
  height: .2em;
  border-radius: 9999px;
  z-index: 0;
  opacity: .45;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #FFD700, #FF69B4);
  animation: aeSlideInX .7s .55s ease forwards;
}
.ae-subtitle {
  max-width: 42rem;
  color: rgba(255,255,255,.7);
  font-size: clamp(.9rem,2vw,1.05rem);
  line-height: 1.7;
}
.ae-dots { display: flex; align-items: center; gap: .75rem; }
.ae-dots-line { width: 6rem; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,.25)); }
.ae-dots-line.rev { background: linear-gradient(to left, transparent, rgba(255,255,255,.25)); }
.ae-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #fde047;
  animation: aeDotPulse 1.5s ease-in-out infinite;
}
.ae-dot:nth-child(2) { animation-delay: .25s; }
.ae-dot:nth-child(3) { animation-delay: .5s; }

.ae-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.ae-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.card-accent { height: 5px; width: 100%; }
.events .card-accent { background: linear-gradient(90deg,#c60016,#FF69B4); }
.awards .card-accent { background: linear-gradient(90deg,#FFD700,#c60016); }
.card-body {
  position: relative;
  z-index: 10;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-head-left { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.events .card-icon { background: linear-gradient(135deg,#fff0f3,#ffe4e8); }
.awards .card-icon { background: linear-gradient(135deg,#fffbeb,#fef3c7); }
.card-title { font-size: 1.4rem; font-weight: 900; color: #0f172a; line-height: 1.2; }
.card-sub { font-size: .82rem; color: #94a3b8; margin-top: .15rem; }
.card-count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.events .card-count { background: linear-gradient(135deg,#c60016,#dc2626); }
.awards .card-count { background: linear-gradient(135deg,#d97706,#f59e0b); }
.card-count svg { width: .9rem; height: .9rem; stroke: #fff; fill: none; stroke-width: 2.5; }
.card-divider { height: 1px; }
.events .card-divider { background: linear-gradient(90deg,transparent,rgba(198,0,22,.25),transparent); }
.awards .card-divider { background: linear-gradient(90deg,transparent,rgba(255,215,0,.35),transparent); }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  min-height: 240px;
}
.carousel-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 50%; min-height: 240px; padding: .5rem; }
.c-slide-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: .75rem;
  background: #e2e8f0;
  cursor: pointer;
}
.c-slide-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.c-slide-inner:hover img { transform: scale(1.08); }
.c-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.c-slide-inner:hover .c-overlay { background: rgba(0,0,0,.32); }
.c-caption {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: .5rem .75rem;
  background: linear-gradient(to top,rgba(0,0,0,.75),transparent);
  transform: translateY(100%);
  transition: transform .3s;
}
.c-slide-inner:hover .c-caption { transform: translateY(0); }
.c-caption p { color: #fff; font-size: .65rem; font-weight: 600; }
.carousel-nav { display: flex; justify-content: center; gap: .4rem; margin-top: .6rem; }
.carousel-dot {
  width: .45rem;
  height: .45rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0,0,0,.15);
  transition: all .2s;
}
.carousel-dot.active { background: #c60016; transform: scale(1.4); }
.awards .carousel-dot.active { background: #d97706; }

.card-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.card-tag {
  padding: .3rem .85rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 600;
}
.events .card-tag { background: rgba(198,0,22,.08); color: #c60016; border: 1px solid rgba(198,0,22,.18); }
.awards .card-tag { background: rgba(217,119,6,.08); color: #b45309; border: 1px solid rgba(217,119,6,.22); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; animation: fadeIn .25s ease; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev { top: 50%; left: .75rem; transform: translateY(-50%); }
.lb-next { top: 50%; right: .75rem; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 1.2rem; height: 1.2rem; stroke: #fff; fill: none; stroke-width: 2.5; }
.lb-inner {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-cat {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(198,0,22,.5);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lb-caption { text-align: center; }
.lb-caption p { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600; }
.lb-caption span { color: rgba(255,255,255,.4); font-size: .72rem; }
.lb-dots { display: flex; gap: .5rem; }
.lb-dot {
  width: .5rem;
  height: .5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.3);
}
.lb-dot.active { background: #fff; transform: scale(1.3); }

@keyframes aeFadeUp { from { opacity: 0; transform: translateY(2rem); } to { opacity: 1; transform: none; } }
@keyframes aeSlideInX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes aeDotPulse { 0%,100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.7); opacity: 1; } }

@media (max-width: 900px) {
  .ae-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ae-body { padding: 2.5rem 1rem 3rem; }
  .ae-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .card-body { padding: 1.25rem; }
  .carousel-slide { flex: 0 0 100%; }
}

/* ================================================================
   BLOGS
================================================================ */
.blogs {
  padding:4.5rem 0; position:relative; overflow:hidden;
  background:var(--dark);
}
.blogs-bg {
  position:absolute; inset:0; z-index:0;
  background:url('https://images.unsplash.com/photo-1738918937796-743064feefa1?w=1400&q=70') center/cover;
  opacity:.12;
}
.blogs-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(15,23,42,.95),rgba(15,23,42,.92)); }
.blogs-inner { position:relative; z-index:2; }
.blogs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:0; }

.blog-card {
  position:relative; background:linear-gradient(135deg,#1e293b,#0f172a);
  border:2px solid #334155; border-radius:1.75rem;
  overflow:hidden; display:flex; flex-direction:column;
  transition:border-color .35s, box-shadow .35s, transform .35s;
  height:100%;
}
.blog-card:hover { border-color:var(--red); box-shadow:0 20px 50px rgba(0,0,0,.4); transform:translateY(-6px); }
.blog-card-bg {
  position:absolute; inset:0;
  transition:opacity .5s;
}
.blog-card-bg img { width:100%; height:100%; object-fit:cover; opacity:.18; transition:opacity .5s; }
.blog-card:hover .blog-card-bg img { opacity:.28; }
.blog-card-bg-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(30,41,59,.9),rgba(15,23,42,.9)); }
/* dot pattern */
.blog-dots {
  position:absolute; inset:0; z-index:1; pointer-events:none;
  display:grid; grid-template-columns:repeat(8,1fr);
  gap:.75rem; padding:1rem; opacity:.04;
}
.blog-dots span { width:.4rem; height:.4rem; background:#fff; border-radius:50%; }
.blog-cat {
  position:absolute; top:1.4rem; left:1.4rem; z-index:3;
  background:linear-gradient(to right,var(--red),#b91c1c);
  color:#fff; padding:.4rem 1rem; border-radius:9999px;
  font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.blog-card-body { position:relative; z-index:2; padding:1.75rem; flex:1; display:flex; flex-direction:column; }
.blog-img-wrap {
  border-radius:1rem; overflow:hidden; height:11rem;
  margin-top:2.5rem; margin-bottom:1.25rem;
  position:relative; box-shadow:0 8px 24px rgba(0,0,0,.3);
}
.blog-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.blog-card:hover .blog-img-wrap img { transform:scale(1.08); }
.blog-img-wrap .blog-grad { position:absolute; inset:0; background:linear-gradient(to top,rgba(15,23,42,.7),transparent); }
.blog-icon-pill {
  position:absolute; bottom:.75rem; right:.75rem;
  width:2.75rem; height:2.75rem; background:var(--red);
  border-radius:.65rem; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,.4);
  transition:transform .3s, rotate .3s;
}
.blog-card:hover .blog-icon-pill { transform:scale(1.1) rotate(6deg); }
.blog-icon-pill svg { width:1.25rem; height:1.25rem; stroke:#fff; fill:none; stroke-width:2; }
.blog-card h3 {
  font-size:1rem; font-weight:700; color:#fff; margin-bottom:.75rem; text-align:center;
  transition:color .3s; line-height:1.4;
}
.blog-card:hover h3 { color:var(--red); }
.blog-card p {
  font-size:.8rem; color:#94a3b8; line-height:1.7; text-align:center; margin-bottom:1.25rem;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.blog-btn {
  width:100%; padding:.85rem; margin-top:auto;
  background:#fff; color:var(--dark); border:none;
  border-radius:.75rem; font-family:inherit; font-size:.85rem; font-weight:700;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.5rem;
  transition:background .3s, color .3s, transform .15s;
}
.blog-btn:hover { background:var(--red); color:#fff; transform:scale(1.02); }
.blog-btn svg { width:.9rem; height:.9rem; stroke:currentColor; fill:none; stroke-width:2.5; transition:transform .3s; }
.blog-btn:hover svg { transform:translateX(4px); }

/* Blog modal */
.blog-modal-back {
  position:fixed; inset:0; background:rgba(0,0,0,.75); z-index:8000;
  display:none; align-items:flex-start; justify-content:center;
  padding:2rem 1rem; overflow-y:auto;
}
.blog-modal-back.open { display:flex; }
.blog-modal {
  background:#fff; border-radius:1.25rem; max-width:780px; width:100%;
  position:relative; overflow:hidden; margin:auto;
}
.bm-head { background:var(--dark); padding:2rem 2rem 1.5rem; position:relative; }
.bm-head .bm-cat {
  background:linear-gradient(to right,var(--red),#b91c1c); color:#fff;
  padding:.35rem .9rem; border-radius:9999px; font-size:.7rem;
  font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  display:inline-block; margin-bottom:.75rem;
}
.bm-head h2 { font-size:1.35rem; font-weight:700; color:#fff; line-height:1.35; }
.bm-head .bm-meta { margin-top:.5rem; font-size:.78rem; color:#94a3b8; display:flex; gap:1rem; flex-wrap:wrap; }
.bm-close {
  position:absolute; top:1rem; right:1rem;
  background:rgba(255,255,255,.1); border:none; cursor:pointer; color:#fff;
  width:2rem; height:2rem; border-radius:.4rem;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.bm-close:hover { background:var(--red); }
.bm-close svg { width:1.1rem; height:1.1rem; stroke:currentColor; fill:none; stroke-width:2.5; }
.bm-body { padding:2rem; max-height:70vh; overflow-y:auto; }
.bm-body p { color:#475569; line-height:1.85; margin-bottom:1rem; font-size:.92rem; }
.bm-body h3 { font-size:1.05rem; font-weight:700; color:var(--dark); margin:1.5rem 0 .75rem; border-left:3px solid var(--red); padding-left:.75rem; }
.bm-body ul { list-style:none; margin-bottom:1rem; display:flex; flex-direction:column; gap:.5rem; }
.bm-body ul li { font-size:.9rem; color:#475569; display:flex; align-items:flex-start; gap:.5rem; line-height:1.65; }
.bm-body ul li::before { content:''; width:.45rem; height:.45rem; min-width:.45rem; border-radius:50%; background:var(--red); margin-top:.5rem; }
.bm-body strong { font-weight:700; color:var(--dark); }
.bm-body .bm-feature { background:#f8fafc; border:1px solid #e2e8f0; border-radius:.75rem; padding:1rem 1.25rem; margin-bottom:1rem; }
.bm-body .bm-feature p { margin-bottom:0; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  padding:3rem 0 1.5rem; background:#fff;
  overflow:hidden;
}
.testi-card {
  max-width:900px; margin:0 auto;
  background:rgba(198,0,22,.07); border:1px solid rgba(198,0,22,.18);
  border-radius:2rem; padding:2.5rem 3rem;
  box-shadow:0 8px 32px rgba(0,0,0,.08);
  position:relative; overflow:hidden;
}
.testi-bg { position:absolute; inset:0; pointer-events:none; }
.testi-bg img { width:100%; height:100%; object-fit:cover; opacity:.08; transform:translateY(3rem); }
.testi-inner { display:flex; align-items:center; gap:2.5rem; position:relative; z-index:2; }
.testi-avatar {
  width:9rem; height:9rem; border-radius:50%; overflow:hidden;
  border:4px solid #fff; box-shadow:0 4px 20px rgba(0,0,0,.18); flex-shrink:0;
}
.testi-avatar img { width:100%; height:100%; object-fit:cover; }
.testi-slides { flex:1; overflow:hidden; }
.testi-track { display:flex; animation:slideShow 12s ease-in-out infinite; }
.testi-slide { min-width:100%; }
.stars { display:flex; gap:.25rem; color:#fbbf24; margin-bottom:.9rem; }
.stars svg { width:1.2rem; height:1.2rem; fill:currentColor; }
.testi-quote { font-size:.95rem; color:#475569; font-style:italic; line-height:1.85; margin-bottom:1.25rem; }
.testi-author h4 { font-size:1rem; font-weight:700; color:var(--dark); }
.testi-author p  { font-size:.85rem; color:#64748b; }

/* ================================================================
   COLLABORATIONS
================================================================ */
.collabs { padding:3rem 0 0; background:#fff; }
.collabs .wrap { max-width:950px; }
.collabs h3 {
  font-size:clamp(1.15rem,2.5vw,1.8rem); font-weight:700;
  color:var(--dark); margin-top:.5rem; text-align:center;
}
.collabs .sub { text-align:center; color:#64748b; font-size:.95rem; margin:.75rem auto 0; white-space:nowrap; }
.collab-cats {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:1rem; margin:2rem 0;
}
.collab-cat {
  display:flex; align-items:center; gap:.5rem;
  background:#fff; padding:.45rem 1.25rem; border-radius:9999px;
  border:1px solid #e2e8f0; box-shadow:0 2px 8px rgba(0,0,0,.05);
  font-size:.84rem; font-weight:700; color:var(--dark);
}
.cc-icon { width:1.65rem; height:1.65rem; background:#fef2f2; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.cc-icon svg { width:.85rem; height:.85rem; stroke:var(--red); fill:none; stroke-width:2.5; }
.collabs-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.collab-col { display:flex; flex-direction:column; gap:1.75rem; }
.collab-item { display:flex; align-items:flex-start; gap:.75rem; transition:transform .3s; cursor:default; }
.collab-item:hover { transform:translateY(-5px); }
.collab-logo {
  width:5.5rem; height:5.5rem; background:transparent;
  border:none; border-radius:0; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; padding:0; margin:0;
  transition:none;
}
.collab-copy { flex:1; min-width:0; }
.collab-item:hover .collab-logo { background:transparent; box-shadow:none; }
.collab-logo img { width:100%; height:100%; object-fit:contain; mix-blend-mode:multiply; margin:0; }
.collab-logo.duo { gap:.25rem; }
.collab-logo.duo img { width:48%; height:auto; }
.swatcon-item .collab-logo img { mix-blend-mode:normal; }
.collab-item h4 { font-size:.93rem; font-weight:700; color:var(--dark); margin-bottom:.3rem; transition:color .3s; }
.collab-item:hover h4 { color:var(--red); }
.collab-item p { font-size:.81rem; color:#64748b; line-height:1.55; }

/* Key Highlights strip */
.kh { grid-column:1/-1; }
.kh-inner {
  background:var(--dark); border-radius:1.5rem;
  padding:1.5rem 2rem; position:relative; overflow:hidden; margin-top:1.25rem;
}
.kh-g1 { position:absolute; top:0; right:0; width:12rem; height:12rem; background:var(--red); border-radius:50%; filter:blur(80px); opacity:.2; transform:translate(50%,-50%); }
.kh-g2 { position:absolute; bottom:0; left:0; width:12rem; height:12rem; background:var(--red); border-radius:50%; filter:blur(80px); opacity:.1; transform:translate(-50%,50%); }
.kh-bub {
  position:absolute; top:-10px; width:.5rem; height:.5rem;
  background:#fff; border-radius:50%; opacity:.2;
  animation:bubble 9s ease-out infinite;
}
.kh-row {
  position:relative; z-index:1;
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:1.5rem;
}
.kh-title h5 { font-size:1.05rem; font-weight:700; color:#fff; display:flex; align-items:center; gap:.5rem; margin-bottom:.4rem; }
.kh-title h5 svg { width:1.4rem; height:1.4rem; stroke:var(--red); fill:none; stroke-width:2; }
.kh-title p { font-size:.88rem; font-weight:700; color:#fff; max-width:22rem; line-height:1.6; }
.kh-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:.75rem; flex:1; max-width:640px; }
.kh-stat {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:.75rem; padding:.75rem; text-align:center; transition:background .3s;
}
.kh-stat:hover { background:rgba(255,255,255,.1); }
.kh-stat .khs-t { font-size:.97rem; font-weight:800; color:#df2828; margin-bottom:.25rem; }
.kh-stat .khs-s { font-size:.85rem; color:#fff; }

/* ================================================================
   CONTACT
================================================================ */
.contact { padding:5.5rem 0; background:#f8fafc; position:relative; overflow:hidden; }
.contact-dot {
  position:absolute; inset:0; pointer-events:none; opacity:.03;
  background-image:radial-gradient(#C60016 1px,transparent 1px);
  background-size:28px 28px;
}
.c-glow1 { position:absolute; top:-12rem; right:-12rem; width:37rem; height:37rem; background:rgba(198,0,22,.05); border-radius:50%; filter:blur(3rem); pointer-events:none; }
.c-glow2 { position:absolute; bottom:-12rem; left:-12rem; width:37rem; height:37rem; background:rgba(198,0,22,.04); border-radius:50%; filter:blur(3rem); pointer-events:none; }

.bento {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:1rem;
  position:relative; z-index:1;
}

/* Form tile */
.bt-form {
  grid-column:3; grid-row:1/3;
  background:var(--dark); border-radius:1.5rem;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 40px -8px rgba(0,0,0,.15);
  padding:2rem; display:flex; flex-direction:column;
  position:relative; overflow:hidden;
}
.bt-stripe { position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--red),#f87171); }
.bt-head { display:flex; flex-direction:column; align-items:center; text-align:center; margin-bottom:1.75rem; }
.bt-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:#fff; border:2px solid var(--red); border-radius:9999px;
  padding:.45rem 1.25rem; margin-bottom:.65rem;
}
.bt-badge .bd { display:flex; gap:.2rem; }
.bt-badge .bd span { width:.25rem; height:.25rem; border-radius:50%; background:var(--red); display:inline-block; }
.bt-badge .bl { font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--red); }
.bt-sub { font-size:.82rem; color:#94a3b8; max-width:16rem; }

form.cform {
  display:flex; flex-direction:column; gap:1.15rem; flex:1;
  border:1px solid rgba(255,255,255,.1); border-radius:1rem; padding:1.25rem;
}
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.f-field { border-bottom:2px solid rgba(255,255,255,.15); padding-bottom:.45rem; transition:border-color .3s; }
.f-field:focus-within { border-bottom-color:var(--red); }
.f-field label { display:block; font-size:.58rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em; color:#fff; margin-bottom:.2rem; }
.f-field input,.f-field textarea {
  width:100%; background:transparent; border:none; outline:none;
  font-family:inherit; font-size:.85rem;
  color:rgba(255,255,255,.4); caret-color:#fff;
}
.f-field input::placeholder,.f-field textarea::placeholder { color:rgba(255,255,255,.3); }
.f-field textarea { resize:none; }

.captcha-area { border-bottom:2px solid rgba(255,255,255,.15); padding-bottom:.75rem; }
.captcha-area label { display:block; font-size:.58rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em; color:#fff; margin-bottom:.45rem; }
.captcha-row { display:flex; align-items:center; gap:.75rem; }
.captcha-code {
  display:flex; align-items:center; justify-content:center;
  height:2.2rem; padding:0 .9rem; background:#1e293b;
  border-radius:.5rem; flex-shrink:0;
  font-family:monospace; font-weight:900; color:#fff;
  letter-spacing:.24em; font-size:.85rem; user-select:none;
  text-shadow:0 1px 4px rgba(0,0,0,.5);
}
.captcha-ref {
  width:2.5rem; height:2.5rem; background:#fff !important; border:none !important; outline:none;
  box-shadow:none; cursor:pointer; color:#c60016 !important;
  padding:0; border-radius:.35rem; flex-shrink:0; display:flex;
  transition:background .2s; align-items:center; justify-content:center;
}
.captcha-ref:hover { background:#fff !important; }
.captcha-ref svg { width:1rem; height:1rem; stroke:#c60016 !important; fill:none; stroke-width:2; }
.captcha-ref.spin svg { animation:rotRefresh .35s linear; }
.captcha-div { width:1px; height:1.25rem; background:rgba(255,255,255,.2); flex-shrink:0; }
.captcha-in {
  flex:1; background:transparent; border:none; outline:none;
  font-family:monospace; font-size:.85rem; font-weight:700; color:#fff;
}
.captcha-in::placeholder { font-family:inherit; font-weight:400; color:rgba(255,255,255,.3); }
.captcha-in.err { color:#f87171; }

.f-error {
  display:none; align-items:center; gap:.5rem;
  background:#fef2f2; border:1px solid #fecaca;
  color:#dc2626; padding:.6rem 1rem; border-radius:.75rem;
  font-size:.82rem; font-weight:700;
}
.f-error.show { display:flex; }
.f-error svg { width:.9rem; height:.9rem; stroke:currentColor; fill:none; stroke-width:2.5; flex-shrink:0; }

.submit-btn {
  height:3.5rem; background:var(--red); color:#fff; border:none;
  border-radius:1rem; font-family:inherit; font-weight:900; font-size:.95rem;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:.6rem;
  transition:background .3s,transform .15s; margin-top:auto;
}
.submit-btn:hover { background:#a0000f; transform:scale(1.015); }
.submit-btn:active { transform:scale(.985); }
.submit-btn svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2.5; }
.submit-btn .arr { display:inline-flex; animation:arrowPing 1.2s ease-in-out infinite; }

/* Address tile */
.bt-addr {
  grid-column:1/3; grid-row:1;
  background:var(--dark); border-radius:1.5rem; padding:2rem; position:relative; overflow:hidden;
}
.our-loc-lbl {
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.875rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em;
  color:#fff; margin-bottom:1.25rem; width:100%; justify-content:center;
}
.our-loc-lbl .d { width:.38rem; height:.38rem; border-radius:50%; background:#fff; display:inline-block; }
.loc-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.loc-item { border-left:2px solid rgba(198,0,22,.4); padding-left:1rem; }
.loc-h { font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-bottom:.35rem; }
.loc-b { font-size:.83rem; color:#fff; line-height:1.7; font-weight:500; text-decoration:none; display:block; transition:color .3s; }
.loc-b:hover { color:var(--red); }
.addr-div { height:1px; background:rgba(255,255,255,.1); margin:1.25rem 0; }
.addr-contacts { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.ac-item { display:flex; align-items:flex-start; gap:.7rem; }
.ac-item svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2; flex-shrink:0; margin-top:.18rem; }
.ac-label { font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-bottom:.22rem; }
.ac-item a { font-size:.82rem; color:#fff; font-weight:700; display:block; transition:color .3s; }
.ac-item a:hover { color:var(--red); }
.ac-item a.sec { font-weight:500; margin-top:.18rem; }

/* Map tile */
.bt-map {
  grid-column:1; grid-row:2;
  background:#fff; border-radius:1.5rem; overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.06); min-height:220px;
  display:flex; flex-direction:column;
}
.map-bar { display:flex; align-items:center; gap:.5rem; padding:.6rem 1rem; border-bottom:1px solid #f1f5f9; }
.map-dot { width:.5rem; height:.5rem; background:var(--red); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.map-bar span { font-size:.85rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#64748b; }
.bt-map iframe { flex:1; display:block; min-height:185px; border:none; }

/* Cities tile */
.bt-cities {
  grid-column:2; grid-row:2;
  background:var(--dark); border-radius:1.5rem; padding:1.25rem;
  position:relative; overflow:hidden;
}
.cities-glow { position:absolute; right:-5rem; top:50%; transform:translateY(-50%); width:12rem; height:12rem; background:rgba(198,0,22,.15); border-radius:50%; filter:blur(3rem); pointer-events:none; }
.cities-hdr { display:flex; align-items:center; gap:.5rem; margin-bottom:1rem; position:relative; z-index:1; }
.cities-hdr svg { width:1rem; height:1rem; stroke:#fff; fill:none; stroke-width:2; }
.cities-hdr span { font-size:.85rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:#fff; }
.cities-div { flex:1; height:1px; background:rgba(255,255,255,.1); margin-left:.5rem; }
.cities-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; position:relative; z-index:1; }
.city-card {
  position:relative; border-radius:1rem; overflow:hidden; height:6rem;
  cursor:pointer; transition:transform .35s;
}
.city-card:hover { transform:scale(1.04) translateY(-4px); }
.city-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.city-card:hover img { transform:scale(1.1); }
.city-ov {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2),transparent);
  transition:background .35s;
}
.city-card:hover .city-ov { background:linear-gradient(to top,rgba(198,0,22,.85),rgba(198,0,22,.2),transparent); }
.city-name { position:absolute; bottom:.7rem; left:.7rem; color:#fff; font-weight:900; font-size:.85rem; text-shadow:0 1px 4px rgba(0,0,0,.5); }
.city-border { position:absolute; inset:0; border-radius:1rem; border:2px solid transparent; transition:border-color .3s; }
.city-card:hover .city-border { border-color:rgba(255,255,255,.3); }

/* ================================================================
   SUCCESS MODAL
================================================================ */
.modal-back {
  position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:9999;
  display:none; align-items:center; justify-content:center; padding:1rem;
}
.modal-back.open { display:flex; }
.modal-box {
  background:linear-gradient(135deg,var(--dark),#1e293b);
  border-radius:1.25rem; padding:2.25rem; max-width:380px; width:100%;
  position:relative; overflow:hidden; text-align:center;
}
.modal-glow { position:absolute; top:-2.5rem; right:-2.5rem; width:10rem; height:10rem; background:rgba(198,0,22,.3); border-radius:50%; filter:blur(3rem); pointer-events:none; }
.modal-icon { width:4rem; height:4rem; background:linear-gradient(135deg,var(--red),#b91c1c); border-radius:.75rem; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; box-shadow:0 8px 24px rgba(198,0,22,.4); }
.modal-icon svg { width:2rem; height:2rem; stroke:#fff; fill:none; stroke-width:2.5; }
.modal-box h3 { font-size:1.4rem; font-weight:900; color:#fff; margin-bottom:.5rem; }
.modal-box p  { font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.65; }
.modal-btn {
  margin-top:1.5rem; width:100%; height:3rem;
  background:var(--red); color:#fff; border:none;
  border-radius:.75rem; font-family:inherit; font-weight:900; font-size:.97rem;
  cursor:pointer; transition:background .3s,transform .15s;
}
.modal-btn:hover { background:#a0000f; transform:scale(1.02); }

/* ================================================================
   NEWSLETTER MODAL
================================================================ */
.nl-back {
  position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:8999;
  display:none; align-items:center; justify-content:center; padding:1rem;
}
.nl-back.open { display:flex; }
.nl-box {
  background:linear-gradient(135deg,var(--dark),#1e293b);
  border-radius:1.25rem; padding:2.5rem; max-width:420px; width:100%;
  position:relative; text-align:center; overflow:hidden;
}
.nl-glow { position:absolute; top:-3rem; right:-3rem; width:11rem; height:11rem; background:var(--red); border-radius:50%; filter:blur(3.5rem); opacity:.25; pointer-events:none; }
.nl-close { position:absolute; top:.9rem; right:.9rem; background:rgba(255,255,255,.1); border:none; cursor:pointer; color:#fff; width:2rem; height:2rem; border-radius:.4rem; font-size:1.2rem; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.nl-close:hover { background:var(--red); }
.nl-box h3 { font-size:1.4rem; font-weight:900; color:#fff; margin-bottom:.5rem; position:relative; z-index:1; }
.nl-box p  { color:rgba(255,255,255,.55); font-size:.88rem; margin-bottom:1.5rem; position:relative; z-index:1; }
.nl-input  { width:100%; padding:.75rem 1rem; border-radius:.75rem; border:none; outline:none; font-family:inherit; font-size:.93rem; margin-bottom:.75rem; position:relative; z-index:1; }
.nl-btn    { width:100%; padding:.75rem; border:none; border-radius:.75rem; background:var(--red); color:#fff; font-family:inherit; font-weight:900; font-size:.97rem; cursor:pointer; transition:background .3s; position:relative; z-index:1; }
.nl-btn:hover { background:#a0000f; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background:linear-gradient(135deg,#020617,var(--dark),#020617);
  color:#cbd5e1; position:relative; overflow:hidden;
}
.f-glow1,.f-glow2 { position:absolute; width:11rem; height:11rem; border-radius:50%; filter:blur(120px); opacity:.2; pointer-events:none; }
.f-glow1 { top:0; left:25%; background:var(--red); }
.f-glow2 { bottom:0; right:25%; background:#7f1d1d; }
.footer-inner {
  position:relative; z-index:1; padding:2rem 1rem;
  display:grid; grid-template-columns:4fr 2fr 3fr 3fr; gap:2rem; align-items:start;
}

.f-brand .logo-row { display:flex; align-items:center; gap:.85rem; margin-bottom:1rem; }
.f-brand .logo-row .emblem { height:5rem; width:100px; }
.f-brand .logo-row .divider { height:2rem; width:1px; background:linear-gradient(to bottom,transparent,var(--red),transparent); flex-shrink:0; }
.f-brand .logo-row .brand-stack { display:flex; flex-direction:column; }
.f-brand .logo-row .brand-stack .top { font-size:1.5rem; font-weight:900; color:var(--red); letter-spacing:.04em; line-height:1; }
.f-brand .logo-row .brand-stack .btm { font-size:.82rem; font-weight:700; color:#fff; }
.f-brand p { color:#fff; font-size:.94rem; font-weight:700; line-height:1.65; }
.f-brand p span { color:var(--red); }

.f-col h4 {
  color:#fff; font-weight:700; font-size:.97rem;
  margin-bottom:.85rem; display:flex; align-items:center; gap:.5rem;
}
.f-col h4::before { content:''; width:.25rem; height:1.25rem; background:var(--red); border-radius:9999px; flex-shrink:0; }
.f-col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.5rem; }
.f-col ul li a { color:#fff; font-size:.85rem; font-weight:700; display:flex; align-items:center; gap:.5rem; transition:color .3s; }
.f-col ul li a:hover { color:var(--red); }
.f-col ul li a svg { width:1rem; height:1rem; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; transition:transform .3s; }
.f-col ul li a:hover svg { transform:translateX(4px); }

.f-contact-list { display:flex; flex-direction:column; gap:.85rem; margin:0; }
.f-ci { display:flex; align-items:flex-start; gap:.75rem; }
.f-ci-icon { width:2.4rem; height:2.4rem; background:rgba(198,0,22,.1); border-radius:.5rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .3s; }
.f-ci:hover .f-ci-icon { background:rgba(198,0,22,.2); }
.f-ci-icon svg { width:1.15rem; height:1.15rem; stroke:var(--red); fill:none; stroke-width:2; }
.f-ci a { color:#fff; font-size:.84rem; font-weight:700; transition:color .3s; line-height:1.5; }
.f-ci a:hover { color:var(--red); }

.f-socials { display:flex; flex-wrap:wrap; gap:.65rem; margin:0 0 .85rem; }
.f-soc { position:relative; display:block; }
.f-soc .sg { position:absolute; inset:0; background:var(--red); border-radius:.5rem; filter:blur(8px); opacity:0; transition:opacity .3s; }
.f-soc:hover .sg { opacity:.5; }
.f-soc-in { position:relative; width:3rem; height:3rem; background:rgba(30,41,59,.5); border-radius:.5rem; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.f-soc-in img { width:2.5rem; height:2.5rem; object-fit:contain; transition:transform .3s; }
.f-soc:hover .f-soc-in img { transform:scale(1.1); }
.f-certs {
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:.75rem;
  margin-top:1.5rem;
  margin-left:.5rem;
}
.f-certs > * { flex:0 0 auto; }
.f-certs img { display:inline-block; width:auto; height:4.2rem; object-fit:contain; vertical-align:middle; }
.f-cert { background:#fff; border-radius:.5rem; padding:.45rem .7rem; font-size:.62rem; font-weight:900; text-align:center; line-height:1.35; }

/* ================================================================
   SCROLL-TO-TOP
================================================================ */
.stt {
  position:fixed; bottom:2rem; right:2rem; z-index:500;
  width:3rem; height:3rem; background:var(--red);
  border:none; border-radius:50%; cursor:pointer; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(198,0,22,.45);
  opacity:0; pointer-events:none; transition:all .3s;
}
.stt.show { opacity:1; pointer-events:auto; }
.stt:hover { background:#a0000f; transform:translateY(-3px); }
.stt svg { width:1.25rem; height:1.25rem; stroke:#fff; fill:none; stroke-width:2.5; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width:1200px) {
  .sol-grid  { grid-template-columns:repeat(2,1fr); }
  .ind-grid  { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:1024px) {
  .nav-desk   { display:none; }
  .h-socials  { display:none; }
  .hamburger  { display:flex; }
  .about-grid { grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:repeat(3,1fr); }
  .bento { grid-template-columns:1fr; }
  .bt-form   { grid-column:1; grid-row:auto; }
  .bt-addr   { grid-column:1; grid-row:auto; }
  .bt-map    { grid-column:1; grid-row:auto; }
  .bt-cities { grid-column:1; grid-row:auto; }
  .collabs-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .blogs-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .blogs-grid  { grid-template-columns:1fr; }
  .dd-grid     { grid-template-columns:repeat(2,1fr); }
  .testi-inner { flex-direction:column; gap:1.5rem; }
  .testi-card  { padding:2rem 1.5rem; }
  .testi-avatar{ width:6rem; height:6rem; }
  .kh-stats    { grid-template-columns:1fr; }
  .kh-row      { flex-direction:column; }
}
@media (max-width:640px) {
  .sol-grid  { grid-template-columns:1fr; }
  .ind-grid  { grid-template-columns:1fr; }
  .stats-inner{ grid-template-columns:repeat(2,1fr); }
  .loc-grid  { grid-template-columns:1fr; }
  .addr-contacts { grid-template-columns:1fr; }
  .f-row     { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .hero-badge { width:7.5rem; height:7.5rem; bottom:1rem; right:1rem; }
  .hb-num { font-size:1.9rem; }
  .collabs .sub { white-space:normal; }
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.content-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  background-color: transparent;
}

.logo {
  width: 96px;
  height: auto;
  background-color: transparent;
}

.company-name {
  position: static;
}

.company-name h1 {
  font-size: 15px;
  font-weight: 700;
  color: black;
  margin: 0;
  letter-spacing: 0.38px;
  line-height: 15px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .company-name {
    top: 40px;
    left: 10px;
  }

  .company-name h1 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .company-name {
    top: 45px;
    left: 5px;
  }

  .company-name h1 {
    font-size: 13px;
  }
}


/* Guaranteed final phone override */
@media (max-width: 640px) {
  .logo-link {
    display:flex !important;
    align-items:center !important;
    gap:.35rem !important;
    min-width:0 !important;
    flex:0 0 auto !important;
    order:1 !important;
  }
  .nav-desk { display:none !important; }
  .h-socials {
    display:flex !important;
    align-items:center !important;
    gap:.55rem !important;
    margin-left:auto !important;
    margin-right:0 !important;
    order:2 !important;
  }
  .h-socials a { width:2.25rem !important; height:2.25rem !important; }
  .hamburger {
    display:flex !important;
    order:3 !important;
    margin-left:.35rem !important;
    flex:0 0 auto !important;
    background:#fff !important;
    border:none !important;
    padding:.1rem !important;
  }
  .hamburger svg { width:2.25rem !important; height:2.25rem !important; }
  .hamburger svg line {
    stroke:var(--red) !important;
    stroke-width:2.8 !important;
    stroke-linecap:round !important;
  }
  .logo-link .emblem {
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
  }
  .logo-link .wordmark {
    width:172px !important;
    max-width:172px !important;
    height:auto !important;
    object-fit:contain !important;
  }
  .header-inner {
    padding:.75rem 0.65rem !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
    gap:.25rem !important;
    overflow:visible !important;
  }
}

@media (max-width: 420px) {
  .h-socials { gap:.55rem !important; }
  .h-socials a { width:1.85rem !important; height:1.85rem !important; }
  .hamburger { background:#fff !important; border:none !important; padding:.1rem !important; }
  .hamburger svg { width:1.85rem !important; height:1.85rem !important; }
  .hamburger svg line {
    stroke:var(--red) !important;
    stroke-width:2.8 !important;
    stroke-linecap:round !important;
  }
  .logo-link .emblem { width:44px !important; height:44px !important; min-width:44px !important; }
  .logo-link .wordmark { width:136px !important; max-width:136px !important; }
}

/* Final single-row mobile header (authoritative) */
@media (max-width: 640px) {
  .header-inner {
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:.35rem !important;
    padding:.6rem .55rem !important;
  }
  .logo-link {
    display:flex !important;
    align-items:center !important;
    gap:.3rem !important;
    flex:0 1 auto !important;
    min-width:0 !important;
  }
  .logo-link .emblem {
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    flex-shrink:0 !important;
    display:block !important;
  }
  .logo-link .wordmark {
    width:128px !important;
    max-width:34vw !important;
    height:auto !important;
    object-fit:contain !important;
    flex-shrink:1 !important;
  }
  .nav-desk { display:none !important; }
  .h-socials {
    display:flex !important;
    align-items:center !important;
    gap:.35rem !important;
    margin-left:auto !important;
    margin-right:0 !important;
    flex:0 0 auto !important;
  }
  .h-socials a { width:1.75rem !important; height:1.75rem !important; }
  .hamburger {
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-left:.2rem !important;
    padding:.08rem !important;
    background:#fff !important;
    border:none !important;
    flex:0 0 auto !important;
  }
  .hamburger svg { width:1.75rem !important; height:1.75rem !important; }
  .hamburger svg line {
    stroke:var(--red) !important;
    stroke-width:2.8 !important;
    stroke-linecap:round !important;
  }
}

@media (max-width: 420px) {
  .logo-link .emblem { width:38px !important; height:38px !important; min-width:38px !important; }
  .logo-link .wordmark { width:108px !important; max-width:30vw !important; }
  .h-socials a { width:1.58rem !important; height:1.58rem !important; }
  .hamburger svg { width:1.58rem !important; height:1.58rem !important; }
}

/* Top logo strip */
.top-logo-strip {
  width: 100%;
  background: #030620;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
}
.top-logo-strip img {
  width: min(100%, 580px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .top-logo-strip {
    padding: 5px 8px;
  }
  .top-logo-strip img {
    width: 100%;
    max-width: 420px;
  }
}

/* Clients strip: disable hover effect for image logos only */
.clients-strip .ticker-item img:hover {
  filter: grayscale(1) !important;
  opacity: .35 !important;
  transform: none !important;
}

/* Clients strip: remove all hover effects and keep logos always visible */
.clients-strip .ticker-item img {
  filter: none !important;
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
}
.clients-strip .ticker-item:hover img {
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.clients-strip .ticker-item .logo-text-pill,
.clients-strip .ticker-item:hover .logo-text-pill {
  transition: none !important;
  transform: none !important;
}

/* Footer: desktop alignment and balanced column spacing */
@media (min-width: 1025px) {
  .footer-inner {
    display: grid !important;
    grid-template-columns: minmax(380px, 1.45fr) minmax(220px, 1fr) minmax(330px, 1.15fr) minmax(260px, 1fr) !important;
    column-gap: 1.2rem !important;
    row-gap: 1rem !important;
    align-items: start !important;
  }
  .footer-inner > .f-brand,
  .footer-inner > .f-col {
    align-self: start !important;
    margin-top: 0 !important;
  }
  .footer-inner .f-col h4 {
    margin-top: 0 !important;
  }
  .footer-inner .f-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .footer-inner .f-brand .logo-row {
    gap: .6rem !important;
    margin: 0 0 .6rem 0 !important;
    align-items: center !important;
  }
  .footer-inner .f-brand .emblem-seal {
    height: 8.7rem !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }
  .footer-inner .f-brand .emblem-wordmark {
    height: calc(7.65rem + 50px) !important;
    max-height: calc(7.65rem + 50px) !important;
    width: auto !important;
    display: block !important;
  }
  .footer-inner .f-brand p {
    margin: 0 !important;
    max-width: 92% !important;
  }
  .footer-inner .f-col ul li {
    min-height: 2.1rem !important;
    display: flex !important;
    align-items: center !important;
  }
  .footer-inner .f-col ul li a {
    width: 100% !important;
  }
  .footer-inner .f-contact-list {
    gap: 1rem !important;
  }
  .footer-inner .f-ci {
    display: grid !important;
    grid-template-columns: 2.4rem minmax(0, 1fr) !important;
    column-gap: .8rem !important;
    align-items: start !important;
  }
  .footer-inner .f-ci-icon {
    margin-top: 0 !important;
  }
  .footer-inner .f-ci a {
    margin: .25rem 0 0 0 !important;
    line-height: 1.35 !important;
  }
  .footer-inner .f-socials {
    margin-bottom: 1rem !important;
    align-items: center !important;
  }
  .footer-inner .f-certs {
    margin-left: 0 !important;
    margin-top: .25rem !important;
  }
}

/* Collaboration logos: remove box behind images */
.collab-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.collab-item:hover .collab-logo {
  background: transparent !important;
  box-shadow: none !important;
}
.collabs .collab-logo,
.collabs .collab-logo::before,
.collabs .collab-logo::after,
.collabs .collab-logo img {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Our Services: Electrical Panels & CSS card always red (same style as Turnkey red card) */
.sol-card.red[href*="eletrical%20panel"] {
  background: linear-gradient(135deg, #ef4444, #991b1b) !important;
  border-color: transparent !important;
}
.sol-card.red[href*="eletrical%20panel"]::before {
  opacity: 0 !important;
}
.sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-tv,
.sol-card.red[href*="eletrical%20panel"]:hover .sol-icon.icon-tv {
  background: var(--red) !important;
  border-radius: .6rem !important;
}
.sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-tv svg {
  stroke: #fff !important;
}
.sol-card.red[href*="eletrical%20panel"] h3,
.sol-card.red[href*="eletrical%20panel"] p,
.sol-card.red[href*="eletrical%20panel"] ul li,
.sol-card.red[href*="eletrical%20panel"] .learn {
  color: #fff !important;
}
.sol-card.red[href*="eletrical%20panel"] ul li svg,
.sol-card.red[href*="eletrical%20panel"] .learn svg {
  stroke: #fff !important;
}

/* Stats strip: perfect icon/text alignment */
.stats-inner {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}
.stat-item {
  border-left: none !important;
  display: grid !important;
  grid-template-rows: 2.2rem 2.4rem 2.2rem !important;
  justify-items: center !important;
  align-items: center !important;
  row-gap: .25rem !important;
  min-height: 8rem !important;
  padding: 1rem .6rem !important;
}
.stat-item:first-child {
  border-left: none !important;
}
.stat-icon {
  margin: 0 !important;
}
.stat-num {
  margin: 0 !important;
  line-height: 1 !important;
}
.stat-label {
  margin: 0 !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Blog image: remove marked background overlays */
.blog-img-wrap .blog-grad {
  display: none !important;
  background: transparent !important;
}
.blog-icon-pill {
  background: transparent !important;
  box-shadow: none !important;
}
.blog-icon-pill::before,
.blog-icon-pill::after,
.blog-icon-pill svg {
  background: transparent !important;
  box-shadow: none !important;
  fill: none !important;
}
.blog-icon-pill {
  display: none !important;
}

/* Force transparent corner icon layer */
.blog-icon-pill,
.blog-icon-pill * {
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0 !important;
  stroke: transparent !important;
  fill: transparent !important;
}





/* Industrial Automation icon: red rounded square + white gear */
.dd-card.industrial-auto .dd-icon,
.sol-card.industrial-auto .sol-icon,
.dd-card.industrial-auto:hover .dd-icon,
.sol-card.industrial-auto:hover .sol-icon {
  width: 3rem !important;
  height: 3rem !important;
  background: var(--red) !important;
  border: none !important;
  border-radius: 1rem !important;
  box-shadow: none !important;
}
.dd-card.industrial-auto .dd-icon svg,
.sol-card.industrial-auto .sol-icon svg {
  width: 1.65rem !important;
  height: 1.65rem !important;
  color: #fff !important;
  stroke: #fff !important;
  fill: none !important;
}

/* Settings/Gear icon button hard override */
#settings,
#settings-btn,
#gear,
#gear-btn,
[class*='setting'],
[class*='gear'],
[id*='setting'],
[id*='gear'],
button[aria-label*='Setting'],
button[aria-label*='setting'] {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: #fff !important;
  color: #c60016 !important;
}

#settings svg,
#settings-btn svg,
#gear svg,
#gear-btn svg,
[class*='setting'] svg,
[class*='gear'] svg,
[id*='setting'] svg,
[id*='gear'] svg,
button[aria-label*='Setting'] svg,
button[aria-label*='setting'] svg {
  stroke: #c60016 !important;
  color: #c60016 !important;
}







/* Services icon: power button on white tile */
.sol-card .sol-icon.icon-power,
.sol-card:hover .sol-icon.icon-power {
  background: #fff !important;
  border-radius: .6rem !important;
}
.sol-card .sol-icon.icon-power svg {
  stroke: var(--red) !important;
}


/* Final footer logo alignment fix */
.footer .f-brand .logo-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  margin: 0 0 14px 0 !important;
  min-height: 72px !important;
}
.footer .f-brand .logo-row .emblem-seal {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  max-width: 72px !important;
  object-fit: contain !important;
  display: block !important;
}
.footer .f-brand .logo-row .emblem-wordmark {
  width: 150px !important;
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  flex-shrink: 0 !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
}


/* SERVICES dropdown: smaller icon size */
.dropdown-box .dd-card .dd-icon,
.dropdown-box .dd-card:hover .dd-icon {
  width: 2.2rem !important;
  height: 2.2rem !important;
  border-radius: .55rem !important;
}
.dropdown-box .dd-card .dd-icon svg,
.dropdown-box .dd-card:hover .dd-icon svg {
  width: .95rem !important;
  height: .95rem !important;
  stroke-width: 2.35 !important;
}


/* Partner section: strict image/text alignment */
.collabs .collab-item {
  display: grid !important;
  grid-template-columns: 6.4rem minmax(0, 1fr) !important;
  column-gap: 1rem !important;
  align-items: center !important;
}
.collabs .collab-logo {
  width: 6.4rem !important;
  height: 2.4rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.collabs .collab-logo img {
  max-width: 100% !important;
  max-height: 5.4rem !important;
  width: auto !important;
  height: auto !important;
}
.collabs .collab-copy {
  align-self: center !important;
}
.collabs .collab-copy h4 {
  margin: 0 0 .35rem 0 !important;
  line-height: 1.25 !important;
}
.collabs .collab-copy p {
  margin: 0 !important;
}


/* SERVICES icons max size 35px */
.dropdown-box .dd-card .dd-icon,
.dropdown-box .dd-card:hover .dd-icon {
  width: 35px !important;
  height: 35px !important;
  max-width: 35px !important;
  max-height: 35px !important;
  min-width: 35px !important;
  min-height: 35px !important;
}
.dropdown-box .dd-card .dd-icon svg,
.dropdown-box .dd-card:hover .dd-icon svg {
  width: 18px !important;
  height: 18px !important;
}

/* Electrical Panels card: white default, red on touch/hover */
.sol-card.red[href*="eletrical%20panel"] {
  background: #fff !important;
  border-color: #f3f4f6 !important;
}
.sol-card.red[href*="eletrical%20panel"]::before {
  opacity: 0 !important;
}
.sol-card.red[href*="eletrical%20panel"] h3,
.sol-card.red[href*="eletrical%20panel"] p,
.sol-card.red[href*="eletrical%20panel"] ul li,
.sol-card.red[href*="eletrical%20panel"] .learn {
  color: #111827 !important;
}
.sol-card.red[href*="eletrical%20panel"] ul li svg,
.sol-card.red[href*="eletrical%20panel"] .learn svg {
  stroke: var(--red) !important;
}
.sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power {
  background: #fff !important;
}
.sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power svg {
  stroke: var(--red) !important;
}
.sol-card.red[href*="eletrical%20panel"]:hover,
.sol-card.red[href*="eletrical%20panel"]:active,
.sol-card.red[href*="eletrical%20panel"]:focus,
.sol-card.red[href*="eletrical%20panel"]:focus-visible {
  background: linear-gradient(135deg,#ef4444,#991b1b) !important;
  border-color: transparent !important;
}
.sol-card.red[href*="eletrical%20panel"]:hover::before,
.sol-card.red[href*="eletrical%20panel"]:active::before,
.sol-card.red[href*="eletrical%20panel"]:focus::before,
.sol-card.red[href*="eletrical%20panel"]:focus-visible::before {
  opacity: 0 !important;
}
.sol-card.red[href*="eletrical%20panel"]:hover h3,
.sol-card.red[href*="eletrical%20panel"]:hover p,
.sol-card.red[href*="eletrical%20panel"]:hover ul li,
.sol-card.red[href*="eletrical%20panel"]:hover .learn,
.sol-card.red[href*="eletrical%20panel"]:active h3,
.sol-card.red[href*="eletrical%20panel"]:active p,
.sol-card.red[href*="eletrical%20panel"]:active ul li,
.sol-card.red[href*="eletrical%20panel"]:active .learn {
  color: #fff !important;
}
.sol-card.red[href*="eletrical%20panel"]:hover ul li svg,
.sol-card.red[href*="eletrical%20panel"]:hover .learn svg,
.sol-card.red[href*="eletrical%20panel"]:active ul li svg,
.sol-card.red[href*="eletrical%20panel"]:active .learn svg {
  stroke: #fff !important;
}
/* Final lock: Electrical card white default, red on interaction */
#solutions .sol-card.red[href*="eletrical%20panel"] {
  background: #fff !important;
  border-color: #f3f4f6 !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"]::before {
  opacity: 0 !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"] h3,
#solutions .sol-card.red[href*="eletrical%20panel"] p,
#solutions .sol-card.red[href*="eletrical%20panel"] ul li,
#solutions .sol-card.red[href*="eletrical%20panel"] .learn {
  color: #111827 !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"] ul li svg,
#solutions .sol-card.red[href*="eletrical%20panel"] .learn svg {
  stroke: var(--red) !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power {
  background: #fff !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power svg {
  stroke: var(--red) !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#ef4444,#991b1b) !important;
  border-color: transparent !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible)::before {
  opacity: 0 !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) h3,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) p,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) ul li,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .learn {
  color: #fff !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) ul li svg,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .learn svg {
  stroke: #fff !important;
}
/* Electrical Panels icon final: red tile + white power */
#solutions .sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .sol-icon.icon-power {
  background: var(--red) !important;
  border-radius: .6rem !important;
}
#solutions .sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power svg,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .sol-icon.icon-power svg {
  stroke: #fff !important;
  color: #fff !important;
}

/* SERVICES final: click-only open, prevent hover reopen */
.dropdown-wrap:hover .dropdown-box {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) !important;
}
.dropdown-wrap:hover .chevron {
  transform: none !important;
}
.dropdown-wrap.is-open .dropdown-box {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
.dropdown-wrap.is-open .chevron {
  transform: rotate(180deg) !important;
}


/* Final mobile alignment lock (full site) */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; }
  .wrap { padding-left: .85rem !important; padding-right: .85rem !important; }

  .header-inner {
    min-height: 56px !important;
    padding: .45rem .6rem !important;
    gap: .4rem !important;
    align-items: center !important;
  }
  .logo-link { align-items: center !important; gap: .35rem !important; }

  section, .about, .solutions, .blogs, .collabs, .contact {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sec-head { margin-bottom: 1.6rem !important; }
  .sec-head h2, .sec-head h3 { text-align: center !important; line-height: 1.25 !important; }
  .sec-head p { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }

  .about-grid, .sol-grid, .ind-grid, .blogs-grid, .collabs-grid, .bento {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .sol-card, .ind-card, .blog-card, .bt-form, .bt-addr, .bt-map, .bt-cities {
    width: 100% !important;
    margin: 0 !important;
  }

  .dropdown-box {
    width: min(96vw, 680px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .dd-grid { grid-template-columns: 1fr !important; gap: .7rem !important; }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    align-items: start !important;
  }
  .footer .f-brand .logo-row {
    align-items: center !important;
    gap: .75rem !important;
  }
  .footer .f-col h4 { margin-bottom: .65rem !important; }

  .footer .f-ci {
    grid-template-columns: 2.6rem minmax(0,1fr) !important;
    column-gap: .7rem !important;
    align-items: start !important;
  }
  .footer .f-ci-icon { width: 2.6rem !important; height: 2.6rem !important; }
  .footer .f-ci a { line-height: 1.35 !important; }
}

@media (max-width: 420px) {
  .wrap { padding-left: .7rem !important; padding-right: .7rem !important; }
  .sec-head h2, .sec-head h3 { font-size: clamp(1.35rem, 7vw, 1.85rem) !important; }
  .sol-card, .ind-card, .blog-card { border-radius: 1rem !important; }
}


/* Authoritative mobile alignment (parallel layout) */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; }
  .wrap { max-width: 100% !important; padding-left: .8rem !important; padding-right: .8rem !important; }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .35rem !important;
    padding: .45rem .55rem !important;
  }
  .logo-link { display:flex !important; align-items:center !important; gap:.3rem !important; min-width:0 !important; }

  .about-grid, .sol-grid, .ind-grid, .blogs-grid, .collabs-grid, .bento, .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .sol-card, .ind-card, .blog-card, .dd-card, .bt-form, .bt-addr, .bt-map, .bt-cities {
    width: 100% !important;
    margin: 0 !important;
  }

  #solutions .sol-grid { align-items: stretch !important; }
  #solutions .sol-card { min-height: unset !important; }

  .dropdown-box {
    width: min(96vw, 680px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .dd-grid { grid-template-columns: 1fr !important; gap: .7rem !important; }

  .footer .f-brand .logo-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin: 0 0 .8rem 0 !important;
  }

  .footer .f-col ul { gap: .45rem !important; }
  .footer .f-col ul li a { display:flex !important; align-items:center !important; }

  .footer .f-contact-list { gap: .7rem !important; }
  .footer .f-ci {
    display: grid !important;
    grid-template-columns: 2.45rem minmax(0, 1fr) !important;
    column-gap: .65rem !important;
    align-items: start !important;
  }
  .footer .f-ci-icon { width: 2.45rem !important; height: 2.45rem !important; }
  .footer .f-ci a { margin: 0 !important; line-height: 1.35 !important; }
}

@media (max-width: 420px) {
  .wrap { padding-left: .68rem !important; padding-right: .68rem !important; }
  .sec-head h2, .sec-head h3 { line-height: 1.25 !important; }
  .footer .f-brand .logo-row { gap: 0 !important; }
}

/* Final mobile fix: stats strip alignment and overlap */
@media (max-width: 768px) {
  .stats-section {
    padding: .75rem .6rem !important;
    margin: 2rem auto 1.2rem !important;
  }
  .stats-border {
    width: 100% !important;
    max-width: 100% !important;
  }
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .8rem !important;
    padding: 1rem .8rem !important;
  }
  .stat-item {
    display: grid !important;
    grid-template-rows: auto auto auto !important;
    justify-items: center !important;
    align-items: center !important;
    row-gap: .25rem !important;
    min-height: 6.8rem !important;
    padding: .55rem .35rem !important;
    border-left: 0 !important;
  }
  .stat-item:first-child {
    border-left: 0 !important;
  }
  .stat-icon {
    margin: 0 !important;
  }
  .stat-icon svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }
  .stat-num {
    font-size: clamp(1.4rem, 7vw, 1.95rem) !important;
    line-height: 1 !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .stat-label {
    font-size: .66rem !important;
    line-height: 1.2 !important;
    letter-spacing: .04em !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  .stats-inner {
    grid-template-columns: 1fr !important;
  }
}

/* About section badge centered */
.about .reveal-right > .badge {
  display: inline-flex !important;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .about .reveal-right > .badge {
    display: flex !important;
    width: max-content !important;
    margin: 0 auto .75rem !important;
  }
}

/* Final phone hero/header alignment */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }
  .header-inner {
    min-height: 58px !important;
    padding: .45rem .65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .4rem !important;
  }
  .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: .35rem !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .logo-link .emblem {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .logo-link .wordmark {
    width: 140px !important;
    max-width: 42vw !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
  .hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    margin-left: .25rem !important;
  }

  .hero {
    height: 86vh !important;
    min-height: 620px !important;
  }
  .hero-body {
    margin-top: 0 !important;
    padding: 0 1rem !important;
    transform: translateY(-4vh) !important;
  }
  .hero-body h1 {
    font-size: clamp(2rem, 10.5vw, 3.1rem) !important;
    line-height: 1.13 !important;
    text-align: center !important;
  }
  .hero-badge {
    right: 50% !important;
    bottom: 1rem !important;
    transform: translateX(50%) !important;
    width: 7.4rem !important;
    height: 7.4rem !important;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-height: 54px !important;
    padding: .4rem .55rem !important;
  }
  .logo-link .emblem {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }
  .logo-link .wordmark {
    width: 180px !important;
    max-width: 62vw !important;
  }
  .hero-body h1 {
    font-size: clamp(1.85rem, 10vw, 2.65rem) !important;
  }
}


/* Final browser-safe lock: text logo only */
.footer .f-brand .logo-row .emblem-wordmark,
.f-brand .logo-row .emblem-wordmark {
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
}

/* Final lock: increase header wordmark text/logo size heavily */
.logo-link .wordmark {
  width: 330px !important;
  max-width: 48vw !important;
  height: auto !important;
}
@media (max-width: 768px) {
  .logo-link .wordmark {
    width: 240px !important;
    max-width: 62vw !important;
  }
}

/* Final footer lock: bigger text + tighter alignment */
.footer .footer-inner {
  grid-template-columns: 4.6fr 2.2fr 3.6fr 3fr !important;
  gap: 2.4rem !important;
  align-items: start !important;
}
.footer .f-brand .logo-row {
  align-items: center !important;
  justify-content: flex-start !important;
  gap: .45rem !important;
  margin: 0 0 1rem 0 !important;
}
.footer .f-brand .logo-row .emblem-seal {
  width: 96px !important;
  height: 96px !important;
  min-width: 96px !important;
  max-width: 96px !important;
}
.footer .f-brand .logo-row .emblem-wordmark {
  height: 260px !important;
  min-height: 260px !important;
  max-height: 260px !important;
  width: auto !important;
}
.footer .f-brand p {
  font-size: 2rem !important;
  line-height: 1.5 !important;
  max-width: 34rem !important;
}
.footer .f-col h4 {
  font-size: 2.1rem !important;
  margin-bottom: 1.1rem !important;
}
.footer .f-col h4::before {
  height: 1.7rem !important;
  width: .34rem !important;
}
.footer .f-col ul {
  gap: .9rem !important;
}
.footer .f-col ul li a {
  font-size: 1.95rem !important;
  line-height: 1.3 !important;
  gap: .7rem !important;
}
.footer .f-col ul li a svg {
  width: 1.35rem !important;
  height: 1.35rem !important;
}
.footer .f-contact-list {
  gap: 1rem !important;
}
.footer .f-ci {
  gap: .85rem !important;
}
.footer .f-ci-icon {
  width: 3.1rem !important;
  height: 3.1rem !important;
}
.footer .f-ci a {
  font-size: 1.85rem !important;
  line-height: 1.3 !important;
}
.footer .f-socials {
  gap: .85rem !important;
}
.footer .f-soc-in {
  width: 3.5rem !important;
  height: 3.5rem !important;
}
.footer .f-soc-in img {
  width: 3rem !important;
  height: 3rem !important;
}
.footer .f-certs img {
  height: 5rem !important;
}

@media (max-width: 1024px) {
  .footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer .f-brand p { font-size: 1.35rem !important; }
  .footer .f-col h4 { font-size: 1.45rem !important; }
  .footer .f-col ul li a { font-size: 1.25rem !important; }
  .footer .f-ci a { font-size: 1.2rem !important; }
}

@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
  }
  .footer .f-brand p { font-size: 1.05rem !important; }
  .footer .f-col h4 { font-size: 1.16rem !important; }
  .footer .f-col ul li a { font-size: 1rem !important; }
  .footer .f-ci a { font-size: .98rem !important; }
}

/* Final lock: keep header logo much bigger on all screens */
.logo-link .emblem {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
}
.logo-link .wordmark {
  width: 420px !important;
  max-width: 62vw !important;
  height: auto !important;
}
@media (max-width: 1024px) {
  .logo-link .emblem {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }
  .logo-link .wordmark {
    width: 320px !important;
    max-width: 68vw !important;
  }
}
@media (max-width: 768px) {
  .logo-link .emblem {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }
  .logo-link .wordmark {
    width: 260px !important;
    max-width: 76vw !important;
  }
}

/* Hostinger final lock: footer alignment + phone layout */
.footer .footer-inner {
  grid-template-columns: minmax(280px, 1.5fr) minmax(170px, 1fr) minmax(260px, 1.25fr) minmax(170px, .95fr) !important;
  gap: 1.35rem !important;
  align-items: start !important;
}
.footer .f-brand .logo-row {
  gap: .55rem !important;
  margin: 0 0 .75rem 0 !important;
  min-height: 0 !important;
}
.footer .f-brand .logo-row .emblem-seal {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
}
.footer .f-brand .logo-row .emblem-wordmark {
  width: auto !important;
  height: 110px !important;
  min-height: 110px !important;
  max-height: 110px !important;
}
.footer .f-brand p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  max-width: 32rem !important;
}
.footer .f-col h4 {
  font-size: 1.05rem !important;
  margin-bottom: .8rem !important;
}
.footer .f-col h4::before {
  width: .22rem !important;
  height: 1rem !important;
}
.footer .f-col ul {
  gap: .45rem !important;
}
.footer .f-col ul li a {
  font-size: 1rem !important;
  line-height: 1.35 !important;
}
.footer .f-contact-list {
  gap: .7rem !important;
}
.footer .f-ci {
  align-items: flex-start !important;
  gap: .6rem !important;
}
.footer .f-ci-icon {
  width: 2.2rem !important;
  height: 2.2rem !important;
}
.footer .f-ci a {
  font-size: 1rem !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
.footer .f-socials {
  gap: .55rem !important;
  margin-bottom: .8rem !important;
}
.footer .f-soc-in {
  width: 2.7rem !important;
  height: 2.7rem !important;
}
.footer .f-certs {
  gap: .55rem !important;
}
.footer .f-certs img {
  height: 3.25rem !important;
}

@media (max-width: 1024px) {
  .footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.1rem !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }
}

@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .footer .f-brand .logo-row {
    gap: .45rem !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
  }
  .footer .f-brand p {
    font-size: .95rem !important;
  }
  .footer .f-col h4 {
    font-size: 1rem !important;
  }
  .footer .f-col ul li a,
  .footer .f-ci a {
    font-size: .95rem !important;
  }
  .footer .f-soc-in {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
  .footer .f-certs img {
    height: 2.85rem !important;
  }
}

/* Final lock: header alignment + mobile menu cancel button */
.site-header {
  border-top: 3px solid var(--red) !important;
  border-bottom: 0 !important;
}
.header-inner {
  max-width: 1440px !important;
  min-height: 76px !important;
  padding: .25rem 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}
.logo-link {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  height: 70px !important;
  gap: .4rem !important;
}
.logo-link .emblem {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
}
.logo-link .wordmark {
  width: auto !important;
  max-width: none !important;
  height: 56px !important;
  max-height: 56px !important;
  object-fit: contain !important;
  display: block !important;
}
.nav-desk {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(.9rem, 1.7vw, 2.1rem) !important;
}
.nav-desk > a,
.dropdown-trigger {
  font-size: clamp(1rem, .95vw, 1.12rem) !important;
  line-height: 1.2 !important;
}
.h-socials {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: .65rem !important;
}
.h-socials a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 66px !important;
    padding: .35rem .8rem !important;
    gap: .65rem !important;
  }
  .logo-link {
    height: 58px !important;
  }
  .logo-link .emblem {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }
  .logo-link .wordmark {
    width: auto !important;
    height: 46px !important;
    max-height: 46px !important;
    max-width: none !important;
  }
  .h-socials {
    display: none !important;
  }
  .nav-desk {
    display: none !important;
  }
  .hamburger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: .6rem !important;
    color: var(--red) !important;
    background: #fff !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 60px !important;
    padding: .3rem .6rem !important;
    gap: .45rem !important;
  }
  .logo-link {
    flex: 1 1 auto !important;
    height: 52px !important;
  }
  .logo-link .emblem {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }
  .logo-link .wordmark {
    width: auto !important;
    height: 38px !important;
    max-height: 38px !important;
    max-width: 62vw !important;
  }
}

.mob-nav {
  background: #fff !important;
  padding: 5.2rem 1.05rem 1.2rem !important;
  gap: .3rem !important;
}
.mob-nav a {
  font-size: 1.02rem !important;
  padding: .9rem 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
}
.mob-nav .mob-sub {
  padding-left: .55rem !important;
  margin: .25rem 0 .6rem !important;
  gap: .2rem !important;
}
.mob-nav .mob-sub a {
  font-size: .92rem !important;
  padding: .55rem 0 !important;
}
.mob-nav .mob-socials {
  gap: .7rem !important;
  padding: 1rem 0 .2rem !important;
}
.mob-nav .mob-socials a {
  width: 2.45rem !important;
  height: 2.45rem !important;
  padding: 0 !important;
  border: none !important;
}
.mob-nav-close {
  position: absolute !important;
  top: .75rem !important;
  right: .8rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .4rem !important;
  padding: .38rem .62rem !important;
  border: 1px solid #fecdd3 !important;
  border-radius: .6rem !important;
  background: #fff1f2 !important;
  color: #b00018 !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
  line-height: 1 !important;
}
.mob-nav-close span {
  display: inline-block !important;
}
.mob-nav-close svg {
  width: 1rem !important;
  height: 1rem !important;
}

/* Final desktop lock: keep logo, menu, socials perfectly parallel */
@media (min-width: 1025px) {
  .header-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: 1.1rem !important;
    min-height: 62px !important;
    padding: .2rem 1rem !important;
  }
  .logo-link {
    justify-self: start !important;
    height: 54px !important;
    gap: .35rem !important;
    align-items: center !important;
  }
  .logo-link .emblem {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }
  .logo-link .wordmark {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    max-width: none !important;
  }
  .nav-desk {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(.8rem, 1.1vw, 1.4rem) !important;
    margin: 0 !important;
  }
  .nav-desk > a,
  .dropdown-trigger {
    font-size: .88rem !important;
  }
  .h-socials {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: .45rem !important;
    margin: 0 !important;
  }
  .h-socials a svg,
  .h-socials a img {
    width: 30px !important;
    height: 30px !important;
  }
  .h-socials a,
  .h-socials a svg,
  .h-socials a img {
    vertical-align: middle !important;
  }
}

/* ================================================================
   PROFESSIONAL FULL-WIDTH DESKTOP HEADER (Proper Alignment)
================================================================ */

@media (min-width: 1025px) {
  /* 1. Main Header Container */
  .site-header {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 200px !important; /* Large enough for big logos */
    display: flex !important;
    align-items: center !important; /* Perfect vertical centering */
    padding: 0 40px !important;
    background: #fff !important; /* Ensures clean background */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
  }

  .site-header .header-inner {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  /* 2. Logo Group (Emblem + Wordmark) */
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    gap: 0 !important; /* Removes gap between circle and text */
    margin: 0 !important;
    text-decoration: none !important;
  }

  .site-header .logo-link .emblem {
    width: 180px !important;      /* Optimized massive size */
    height: 180px !important;
    max-width: 15vw !important;
    object-fit: contain !important;
    margin-right: -5px !important; /* Pulls wordmark closer */
  }

  .site-header .logo-link .wordmark {
    height: 110px !important;      /* Scaled to match emblem height professionally */
    width: auto !important;
    max-width: 30vw !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  /* 3. Navigation Menu (Centered) */
  .site-header .nav-desk {
    display: flex !important;
    flex: 1 1 auto !important;    /* Takes up middle space */
    justify-content: center !important;
    align-items: center !important;
    gap: 2.5rem !important;      /* Clean spacing between links */
  }

  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #a80000 !important;    /* Matches Swati Brand Red */
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s ease !important;
  }

  /* 4. Social Icons (Right Aligned) */
  .site-header .h-socials {
    display: flex !important;
    align-items: center !important;
    gap: 1.2rem !important;
    flex: 0 0 auto !important;
  }

  .site-header .h-socials img, 
  .site-header .h-socials svg {
    width: 32px !important;       /* Larger, more clickable icons */
    height: 32px !important;
    transition: transform 0.2s ease !important;
  }
}

/* Final compact lock for phone/tablet header */
@media (max-width: 1024px) {
  .header-inner {
    min-height: 56px !important;
    padding: .25rem .55rem !important;
  }
  .logo-link {
    height: 46px !important;
    gap: .3rem !important;
  }
  .logo-link .emblem {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }
  .logo-link .wordmark {
    height: 30px !important;
    max-height: 30px !important;
    max-width: 58vw !important;
  }
  .hamburger {
    width: 38px !important;
    height: 38px !important;
  }
  .hamburger svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }
}

/* Ultra-final desktop header alignment lock (Hostinger) */
@media (min-width: 1025px) {
  .site-header {
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    overflow: hidden !important;
  }
  .site-header .header-inner {
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    padding: 0 .75rem !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: .95rem !important;
  }
  .site-header .logo-link {
    height: 42px !important;
    max-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    gap: .3rem !important;
  }
  .site-header .logo-link .emblem {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
    max-width: none !important;
    object-fit: contain !important;
  }
  .site-header .nav-desk {
    align-self: center !important;
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    gap: clamp(.75rem, 1vw, 1.25rem) !important;
    margin: 0 !important;
  }
  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: .78rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .site-header .h-socials {
    align-self: center !important;
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: .4rem !important;
    margin: 0 !important;
  }
  .site-header .h-socials a {
    width: 22px !important;
    height: 22px !important;
  }
  .site-header .h-socials a svg,
  .site-header .h-socials a img {
    width: 22px !important;
    height: 22px !important;
  }
}

/* Ultra-final footer lock (desktop + Hostinger) */
.footer .footer-inner {
  grid-template-columns: minmax(300px, 1.35fr) minmax(170px, .9fr) minmax(250px, 1fr) minmax(190px, .9fr) !important;
  gap: 1.1rem !important;
  align-items: start !important;
  padding: 1.5rem 1rem !important;
}
.footer .f-brand .logo-row {
  gap: .45rem !important;
  margin: 0 0 .55rem 0 !important;
  min-height: 0 !important;
}
.footer .f-brand .logo-row .emblem-seal {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
}
.footer .f-brand .logo-row .emblem-wordmark {
  width: auto !important;
  height: 78px !important;
  min-height: 78px !important;
  max-height: 78px !important;
}
.footer .f-brand p {
  font-size: .92rem !important;
  line-height: 1.45 !important;
  max-width: 28rem !important;
}
.footer .f-col h4 {
  font-size: .98rem !important;
  margin-bottom: .65rem !important;
}
.footer .f-col h4::before {
  width: .2rem !important;
  height: .9rem !important;
}
.footer .f-col ul {
  gap: .35rem !important;
}
.footer .f-col ul li a {
  font-size: .94rem !important;
  line-height: 1.3 !important;
}
.footer .f-col ul li a svg {
  width: .92rem !important;
  height: .92rem !important;
}
.footer .f-contact-list {
  gap: .55rem !important;
}
.footer .f-ci {
  gap: .5rem !important;
}
.footer .f-ci-icon {
  width: 2rem !important;
  height: 2rem !important;
}
.footer .f-ci-icon svg {
  width: .95rem !important;
  height: .95rem !important;
}
.footer .f-ci a {
  font-size: .94rem !important;
  line-height: 1.28 !important;
  overflow-wrap: anywhere !important;
}
.footer .f-socials {
  gap: .45rem !important;
  margin-bottom: .55rem !important;
}
.footer .f-soc-in {
  width: 2.35rem !important;
  height: 2.35rem !important;
}
.footer .f-certs {
  gap: .45rem !important;
  margin-top: .5rem !important;
}
.footer .f-certs img {
  height: 2.45rem !important;
}

@media (max-width: 1024px) {
  .footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: .95rem !important;
  }
}

@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr !important;
    gap: .85rem !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
  }
  .footer .f-brand p,
  .footer .f-col ul li a,
  .footer .f-ci a {
    font-size: .9rem !important;
  }
}

/* Footer desktop hotfix: strict column alignment and wrap control */
@media (min-width: 1025px) {
  .footer .footer-inner {
    display: grid !important;
    grid-template-columns: minmax(320px, 1.4fr) minmax(190px, .95fr) minmax(320px, 1.2fr) minmax(200px, .95fr) !important;
    column-gap: 1.2rem !important;
    row-gap: .9rem !important;
    align-items: start !important;
  }
  .footer .footer-inner > * {
    min-width: 0 !important;
    align-self: start !important;
  }
  .footer .f-col {
    min-width: 0 !important;
  }
  .footer .f-col h4 {
    white-space: nowrap !important;
  }
  .footer .f-contact-list {
    width: 100% !important;
    min-width: 0 !important;
  }
  .footer .f-ci {
    display: grid !important;
    grid-template-columns: 2rem minmax(0, 1fr) !important;
    column-gap: .6rem !important;
    align-items: start !important;
  }
  .footer .f-ci > a {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
    font-size: .9rem !important;
  }
  .footer .f-socials {
    justify-content: flex-start !important;
    max-width: 100% !important;
  }
  .footer .f-certs {
    margin-left: 0 !important;
  }
}

/* Final phone header alignment hotfix */
@media (max-width: 768px) {
  .site-header {
    min-height: 56px !important;
    max-height: 56px !important;
    overflow: hidden !important;
  }
  .site-header .header-inner {
    min-height: 56px !important;
    max-height: 56px !important;
    padding: .2rem .5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .35rem !important;
  }
  .site-header .nav-desk,
  .site-header .h-socials {
    display: none !important;
  }
  .site-header .logo-link {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 40px !important;
    gap: .25rem !important;
    align-items: center !important;
  }
  .site-header .logo-link .emblem {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 24px !important;
    max-height: 24px !important;
    max-width: 58vw !important;
    object-fit: contain !important;
  }
  .site-header .hamburger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }
  .site-header .hamburger svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header .header-inner {
    min-height: 52px !important;
    max-height: 52px !important;
  }
  .site-header .logo-link .emblem {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }
  .site-header .logo-link .wordmark {
    height: 22px !important;
    max-height: 22px !important;
    max-width: 56vw !important;
  }
  .site-header .hamburger {
    width: 32px !important;
    height: 32px !important;
  }
}

/* Absolute final desktop header lock: no extra gap, perfectly parallel */
@media (min-width: 1025px) {
  .site-header {
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .site-header .header-inner {
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    margin: 0 auto !important;
    padding: 0 .65rem !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: .7rem !important;
    row-gap: 0 !important;
  }
  .site-header .logo-link,
  .site-header .nav-desk,
  .site-header .h-socials {
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
  }
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: .22rem !important;
    height: 38px !important;
  }
  .site-header .logo-link .emblem {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 24px !important;
    max-height: 24px !important;
    max-width: none !important;
  }
  .site-header .nav-desk {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .9rem !important;
    line-height: 1 !important;
  }
  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: .8rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .site-header .h-socials {
    display: flex !important;
    align-items: center !important;
    gap: .32rem !important;
  }
  .site-header .h-socials a,
  .site-header .h-socials a svg,
  .site-header .h-socials a img {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Super-final desktop header compact lock */
@media (min-width: 1025px) {
  .site-header {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    overflow: hidden !important;
  }
  .site-header .header-inner {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    padding: 0 .5rem !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: .55rem !important;
  }
  .site-header .logo-link {
    height: 34px !important;
    gap: .2rem !important;
    align-items: center !important;
  }
  .site-header .logo-link .emblem {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    max-width: none !important;
  }
  .site-header .nav-desk {
    gap: .75rem !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }
  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: .74rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .site-header .h-socials {
    gap: .26rem !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .site-header .h-socials a,
  .site-header .h-socials a svg,
  .site-header .h-socials a img {
    width: 18px !important;
    height: 18px !important;
  }
}

/* MASTER ALIGNMENT LOCK (Chrome + Hostinger) */
html {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

/* HOSTINGER ALIGNMENT FIX - HEADER & FOOTER */
/* Header desktop alignment */
@media (min-width: 1025px) {
  .site-header {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    overflow: hidden !important;
  }
  .site-header .header-inner {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    padding: 0 .7rem !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: .6rem !important;
    row-gap: 0 !important;
  }
  .site-header .logo-link {
    height: 36px !important;
    gap: .24rem !important;
    margin: 0 !important;
    align-items: center !important;
    display: flex !important;
  }
  .site-header .logo-link .emblem {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    object-fit: contain !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 22px !important;
    max-height: 22px !important;
    max-width: none !important;
    object-fit: contain !important;
  }
  .site-header .nav-desk {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .8rem !important;
    margin: 0 !important;
  }
  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: .76rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .site-header .h-socials {
    display: flex !important;
    align-items: center !important;
    gap: .28rem !important;
    margin: 0 !important;
  }
  .site-header .h-socials a,
  .site-header .h-socials a svg,
  .site-header .h-socials a img {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Footer alignment */
@media (min-width: 1025px) {
  .footer {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .footer .footer-inner {
    display: grid !important;
    grid-template-columns: 4fr 2fr 3fr 3fr !important;
    column-gap: 1.2rem !important;
    row-gap: .8rem !important;
    align-items: start !important;
    padding: 1.5rem 1rem !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .footer .footer-inner > * {
    min-width: 0 !important;
    align-self: start !important;
  }
  .footer .f-brand .logo-row {
    gap: .4rem !important;
    margin: 0 0 .45rem 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    object-fit: contain !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  .footer .f-brand p {
    font-size: .86rem !important;
    line-height: 1.35 !important;
    max-width: 26rem !important;
  }
  .footer .f-col h4 {
    font-size: .9rem !important;
    margin-bottom: .5rem !important;
    margin-top: 0 !important;
  }
  .footer .f-col ul {
    gap: .28rem !important;
  }
  .footer .f-col ul li a {
    font-size: .86rem !important;
    line-height: 1.2 !important;
  }
  .footer .f-contact-list {
    gap: .45rem !important;
    width: 100% !important;
  }
  .footer .f-ci {
    display: grid !important;
    grid-template-columns: 1.85rem minmax(0, 1fr) !important;
    column-gap: .45rem !important;
    align-items: start !important;
  }
  .footer .f-ci-icon {
    width: 1.85rem !important;
    height: 1.85rem !important;
  }
  .footer .f-ci > a {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: .86rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
  .footer .f-socials {
    gap: .35rem !important;
    margin-bottom: .45rem !important;
    justify-content: flex-start !important;
    display: flex !important;
  }
  .footer .f-soc-in {
    width: 2rem !important;
    height: 2rem !important;
  }
  .footer .f-certs {
    gap: .35rem !important;
    margin: .35rem 0 0 0 !important;
  }
  .footer .f-certs img {
    height: 2.1rem !important;
  }
}

/* Tablet header */
@media (max-width: 1024px) {
  .site-header {
    height: 56px !important;
    min-height: 56px !important;
  }
  .site-header .header-inner {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 .5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .site-header .logo-link {
    height: 40px !important;
    gap: .2rem !important;
    display: flex !important;
    align-items: center !important;
  }
  .site-header .logo-link .emblem {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 22px !important;
    max-height: 22px !important;
  }
  .site-header .hamburger {
    display: flex !important;
    width: 36px !important;
    height: 36px !important;
  }
}

/* Tablet footer */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    padding: 1rem .75rem !important;
  }
}

/* Mobile header */
@media (max-width: 768px) {
  .site-header {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    overflow: hidden !important;
  }
  .site-header .header-inner {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    padding: .2rem .5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .35rem !important;
  }
  .site-header .logo-link {
    flex: 1 1 auto !important;
    height: 40px !important;
    gap: .2rem !important;
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
  }
  .site-header .logo-link .emblem {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 22px !important;
    max-height: 22px !important;
    max-width: 50vw !important;
    object-fit: contain !important;
  }
  .site-header .hamburger {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
  }
  .site-header .hamburger svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }
}

/* Mobile footer */
@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 1rem .75rem !important;
  }
  .footer .f-brand .logo-row {
    gap: .35rem !important;
    margin: 0 0 .6rem 0 !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
  }
  .footer .f-brand p {
    font-size: .9rem !important;
  }
}

/* 2026-03-06 Mobile header alignment fix */
@media (max-width: 768px) {
  .site-header .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: .4rem !important;
    padding: .35rem .65rem !important;
  }
  .site-header .nav-desk,
  .site-header .h-socials {
    display: none !important;
  }
  .site-header .logo-link {
    min-width: 0 !important;
    gap: .25rem !important;
    align-items: center !important;
  }
  .site-header .logo-link .wordmark {
    max-width: 56vw !important;
  }
  .site-header .hamburger {
    margin-left: auto !important;
  }
}

@media (max-width: 480px) {
  .site-header .header-inner {
    gap: .25rem !important;
    padding: .3rem .55rem !important;
  }
  .site-header .logo-link .wordmark {
    max-width: 52vw !important;
  }
}

/* 2026-03-07 Final desktop header size increase */
@media (min-width: 1025px) {
  .site-header {
    height: auto !important;
    min-height: 104px !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .site-header .header-inner {
    height: auto !important;
    min-height: 104px !important;
    max-height: none !important;
    padding: 0 clamp(1.25rem, 2.2vw, 2.75rem) !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: clamp(1.15rem, 2.4vw, 2.8rem) !important;
    overflow: visible !important;
  }
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: .7rem !important;
    height: auto !important;
  }
  .site-header .logo-link .emblem {
    width: clamp(46px, 2.9vw, 58px) !important;
    height: clamp(46px, 2.9vw, 58px) !important;
    min-width: clamp(46px, 2.9vw, 58px) !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: clamp(36px, 2.35vw, 48px) !important;
    min-height: clamp(36px, 2.35vw, 48px) !important;
    max-height: clamp(36px, 2.35vw, 48px) !important;
    max-width: none !important;
    object-fit: contain !important;
  }
  .site-header .nav-desk {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(1.15rem, 2vw, 2.3rem) !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
  }
  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: clamp(1.08rem, .8vw + .45rem, 1.28rem) !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    padding: .3rem 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .site-header .dropdown-trigger .chevron {
    width: 1.08rem !important;
    height: 1.08rem !important;
  }
  .site-header .h-socials {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(.55rem, .85vw, .85rem) !important;
    margin: 0 !important;
  }
  .site-header .h-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: clamp(26px, 1.8vw, 32px) !important;
    height: clamp(26px, 1.8vw, 32px) !important;
  }
  .site-header .h-socials a svg,
  .site-header .h-socials a img {
    width: clamp(26px, 1.8vw, 32px) !important;
    height: clamp(26px, 1.8vw, 32px) !important;
  }
  .site-header .dropdown-box {
    top: calc(100% + 16px) !important;
  }
}

/* 2026-03-07 Final phone header bar cleanup */
@media (max-width: 768px) {
  .site-header {
    height: auto !important;
    min-height: 76px !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .site-header .header-inner {
    height: auto !important;
    min-height: 76px !important;
    max-height: none !important;
    padding: .55rem .9rem !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: .75rem !important;
    row-gap: 0 !important;
  }
  .site-header .nav-desk,
  .site-header .h-socials {
    display: none !important;
  }
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: .55rem !important;
    min-width: 0 !important;
    height: auto !important;
    flex: 1 1 auto !important;
  }
  .site-header .logo-link .emblem {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    object-fit: contain !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    max-width: min(66vw, 260px) !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
  .site-header .hamburger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: .8rem !important;
    background: #fff !important;
    color: var(--red) !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, .08) !important;
  }
  .site-header .hamburger svg {
    width: 1.42rem !important;
    height: 1.42rem !important;
    stroke-width: 2.3 !important;
  }
  .site-header .hamburger .icon-close {
    display: none !important;
  }
  .mob-nav {
    padding: 1.35rem 1.1rem 1.4rem !important;
    gap: .35rem !important;
  }
  .mob-nav a {
    font-size: 1.04rem !important;
    padding: .95rem 0 !important;
  }
  .mob-nav .mob-sub {
    padding-left: .7rem !important;
    margin: .2rem 0 .55rem !important;
  }
  .mob-nav .mob-socials {
    gap: .65rem !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 70px !important;
  }
  .site-header .header-inner {
    min-height: 70px !important;
    padding: .45rem .7rem !important;
    column-gap: .6rem !important;
  }
  .site-header .logo-link {
    gap: .45rem !important;
  }
  .site-header .logo-link .emblem {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
  }
  .site-header .logo-link .wordmark {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    max-width: min(62vw, 220px) !important;
  }
  .site-header .hamburger {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: .75rem !important;
  }
  .site-header .hamburger svg {
    width: 1.28rem !important;
    height: 1.28rem !important;
  }
}

/* 2026-03-07 Mobile menu close button visibility fix */
@media (max-width: 768px) {
  .mob-nav {
    inset: 76px 0 0 0 !important;
    height: calc(100dvh - 76px) !important;
    padding: 1.35rem 1.1rem 1.4rem !important;
    z-index: 999 !important;
  }
  .site-header .hamburger.is-open,
  .site-header .hamburger[aria-expanded="true"] {
    border-color: #fecdd3 !important;
    background: #fff1f2 !important;
    color: #b00018 !important;
    box-shadow: 0 6px 14px rgba(176, 0, 24, .12) !important;
  }
  .site-header .hamburger.is-open .icon-menu,
  .site-header .hamburger[aria-expanded="true"] .icon-menu {
    display: none !important;
  }
  .site-header .hamburger.is-open .icon-close,
  .site-header .hamburger[aria-expanded="true"] .icon-close {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .mob-nav {
    inset: 70px 0 0 0 !important;
    height: calc(100dvh - 70px) !important;
    padding: 1.15rem 1rem 1.25rem !important;
  }
  .mob-nav .mob-socials {
    gap: .55rem !important;
  }
  .mob-nav .mob-socials a {
    width: 2.2rem !important;
    height: 2.2rem !important;
  }
}

/* 2026-03-07 Final homepage phone layout cleanup */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }
  .wrap {
    max-width: 100% !important;
    padding-left: .9rem !important;
    padding-right: .9rem !important;
  }
  .hero {
    height: auto !important;
    min-height: calc(100svh - 76px) !important;
    padding-top: 4.75rem !important;
    padding-bottom: 7rem !important;
  }
  .hero-wm {
    display: none !important;
  }
  .hero-body {
    margin-top: 0 !important;
    padding: 0 .15rem !important;
    transform: none !important;
  }
  .hero-body > br {
    display: none !important;
  }
  .hero-body h1 {
    font-size: clamp(1.95rem, 9vw, 3rem) !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }
  .hero-badge {
    right: 50% !important;
    bottom: 1rem !important;
    transform: translateX(50%) !important;
    width: 6.8rem !important;
    height: 6.8rem !important;
  }
  .about {
    padding-top: 2.5rem !important;
  }
  .about-grid,
  .sol-grid,
  .ind-grid,
  .blogs-grid,
  .collabs-grid,
  .bento,
  .loc-grid,
  .addr-contacts,
  .cities-grid,
  .f-row {
    grid-template-columns: 1fr !important;
    gap: .9rem !important;
  }
  .about-imgbox {
    height: auto !important;
    min-height: 240px !important;
  }
  .about .about-imgbox img {
    width: 100% !important;
    height: auto !important;
  }
  .checks {
    grid-template-columns: 1fr !important;
  }
  .stats-section {
    padding: .5rem !important;
    margin: 1.5rem auto 1rem !important;
  }
  .stats-border {
    width: 100% !important;
    max-width: 100% !important;
  }
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .7rem !important;
    padding: 1rem .75rem !important;
  }
  .stat-item {
    padding: 1rem .5rem !important;
  }
  .stat-item:first-child {
    border-left: none !important;
  }
  .industries .wrap,
  .solutions .wrap,
  .collabs .wrap,
  .contact .wrap {
    padding-left: .9rem !important;
    padding-right: .9rem !important;
  }
  .ind-body,
  .solutions,
  .blogs,
  .collabs,
  .contact {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .ind-card {
    min-height: unset !important;
  }
  .clients-strip {
    padding: 2rem 0 !important;
  }
  .ticker-row + .ticker-row {
    margin-top: 1rem !important;
  }
  .ticker-fade-l,
  .ticker-fade-r {
    width: 2.5rem !important;
  }
  .ticker-item {
    padding: 0 1.1rem !important;
  }
  .ticker-item img {
    height: 2.25rem !important;
  }
  .ticker-item .logo-text-pill {
    height: 2.5rem !important;
    padding: 0 .7rem !important;
    font-size: .72rem !important;
  }
  .ae-section {
    min-height: auto !important;
  }
  .ae-body {
    padding: 2rem .9rem 2.5rem !important;
    gap: 2rem !important;
  }
  .ae-cards {
    gap: 1rem !important;
  }
  .card-body {
    padding: 1.1rem !important;
  }
  .card-head {
    align-items: flex-start !important;
  }
  .card-head-left {
    gap: .8rem !important;
  }
  .card-icon {
    width: 2.7rem !important;
    height: 2.7rem !important;
    font-size: 1.2rem !important;
  }
  .card-title {
    font-size: 1.1rem !important;
  }
  .carousel-wrap,
  .carousel-slide {
    min-height: 220px !important;
  }
  .testimonials {
    padding: 2.75rem 0 !important;
  }
  .testi-card {
    padding: 1.4rem 1.1rem !important;
  }
  .testi-quote {
    font-size: .9rem !important;
    line-height: 1.7 !important;
  }
  .kh-inner {
    padding: 1.2rem !important;
  }
  .kh-row {
    gap: 1rem !important;
  }
  .kh-stats {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }
  .bt-form,
  .bt-addr,
  .bt-map,
  .bt-cities {
    border-radius: 1.1rem !important;
  }
  .bt-form,
  .bt-addr,
  .bt-cities {
    padding: 1.15rem !important;
  }
  .bt-map {
    padding: 0 !important;
  }
  .bt-map iframe {
    min-height: 220px !important;
  }
  .captcha-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .75rem !important;
    align-items: stretch !important;
  }
  .captcha-code,
  .captcha-ref {
    width: 100% !important;
    justify-content: center !important;
  }
  .captcha-div {
    display: none !important;
  }
  .submit-btn {
    height: 3.1rem !important;
  }
  .city-card {
    height: 5.25rem !important;
  }
  .blog-modal,
  .modal-box,
  .nl-box {
    width: min(100%, calc(100vw - 1.25rem)) !important;
    max-height: 90dvh !important;
    overflow-y: auto !important;
  }
  .footer .footer-inner {
    padding: 1.25rem .85rem !important;
    gap: 1rem !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
  }
  .footer .f-brand p {
    font-size: .88rem !important;
  }
  .f-certs {
    flex-wrap: wrap !important;
    margin-left: 0 !important;
  }
  .f-certs img {
    height: 2.1rem !important;
  }
  .stt {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 2.75rem !important;
    height: 2.75rem !important;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }
  .hero {
    min-height: calc(100svh - 70px) !important;
    padding-top: 4.25rem !important;
    padding-bottom: 6.5rem !important;
  }
  .hero-body h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.45rem) !important;
  }
  .hero-badge {
    width: 6rem !important;
    height: 6rem !important;
  }
  .hb-num {
    font-size: 1.55rem !important;
  }
  .hb-lbl {
    font-size: .48rem !important;
    letter-spacing: .08em !important;
  }
  .stats-inner {
    grid-template-columns: 1fr !important;
  }
  .ticker-item {
    padding: 0 .8rem !important;
  }
  .ticker-item img {
    height: 2rem !important;
  }
  .ae-title {
    font-size: clamp(2rem, 9vw, 2.6rem) !important;
  }
  .card-count {
    font-size: .66rem !important;
    padding: .3rem .7rem !important;
  }
  .bt-form,
  .bt-addr,
  .bt-cities {
    padding: 1rem !important;
  }
  .map-bar {
    padding: .55rem .85rem !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
  }
}

/* 2026-03-07 Final phone hero composition polish */
@media (max-width: 768px) {
  .hero {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-height: calc(100svh - 76px) !important;
    padding-top: 5.4rem !important;
    padding-bottom: 8.5rem !important;
  }
  .hero-bg {
    opacity: .48 !important;
  }
  .hero-bg::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
      linear-gradient(180deg, rgba(6, 10, 18, .5) 0%, rgba(6, 10, 18, .18) 34%, rgba(6, 10, 18, .62) 100%) !important;
  }
  .hero-body {
    width: min(100%, 21rem) !important;
    margin: 0 auto !important;
    padding: 0 .4rem !important;
    transform: none !important;
  }
  .hero-body h1 {
    max-width: 14ch !important;
    margin: 0 auto !important;
    font-size: clamp(1.75rem, 7.6vw, 2.45rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -.03em !important;
    text-wrap: balance !important;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .58) !important;
  }
  .hero-body h1 br {
    display: none !important;
  }
  .hero-badge {
    bottom: 1.35rem !important;
    width: 6.35rem !important;
    height: 6.35rem !important;
    border-radius: 1.05rem !important;
  }
  .hb-num {
    font-size: 1.7rem !important;
  }
  .hb-line {
    width: 1.8rem !important;
    margin: .22rem 0 !important;
  }
  .hb-lbl {
    font-size: .46rem !important;
    line-height: 1.5 !important;
    letter-spacing: .09em !important;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100svh - 70px) !important;
    padding-top: 4.9rem !important;
    padding-bottom: 7.8rem !important;
  }
  .hero-body {
    width: min(100%, 18.5rem) !important;
    padding: 0 .15rem !important;
  }
  .hero-body h1 {
    max-width: 13ch !important;
    font-size: clamp(1.62rem, 7.9vw, 2.2rem) !important;
  }
  .hero-badge {
    width: 5.8rem !important;
    height: 5.8rem !important;
    bottom: 1.1rem !important;
  }
  .hb-num {
    font-size: 1.55rem !important;
  }
}

/* 2026-03-11 Disable card hover effects (Hostinger-safe) */
.blog-card:hover,
.sol-card:hover,
.ind-card:hover,
.collab-item:hover,
.city-card:hover,
.dd-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.blog-card:hover {
  border-color: #334155 !important;
}
.blog-card:hover .blog-card-bg img {
  opacity: .18 !important;
}
.blog-card:hover .blog-img-wrap img {
  transform: none !important;
}
.blog-card:hover .blog-icon-pill {
  transform: none !important;
}
.blog-card:hover h3 {
  color: #fff !important;
}

.sol-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.07) !important;
}
.sol-card:hover::before {
  opacity: 0 !important;
}
.sol-card.red:hover .sol-icon { background: var(--red) !important; }
.sol-card.gray:hover .sol-icon { background: #374151 !important; }
.sol-card.grn:hover .sol-icon { background: #16a34a !important; }
.sol-card:hover .sol-icon svg { stroke: #fff !important; }
.sol-card:hover h3 { color: #111 !important; }
.sol-card:hover p { color: #6b7280 !important; }
.sol-card:hover ul li { color: #374151 !important; }
.sol-card:hover ul li svg { stroke: var(--red) !important; }
.sol-card:hover .learn { color: var(--red) !important; }
.sol-card:hover .learn svg { stroke: currentColor !important; }
.sol-card:hover .sol-shine { opacity: 0 !important; animation: none !important; }

.ind-card:hover {
  border-color: rgba(255,255,255,.2) !important;
}

.collab-item:hover h4 {
  color: var(--dark) !important;
}

.city-card:hover img { transform: none !important; }
.city-card:hover .city-ov {
  background: linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2),transparent) !important;
}
.city-card:hover .city-border { border-color: transparent !important; }

.dd-card:hover::after { opacity: 0 !important; }
.dd-card:hover h3,
.dd-card:hover p,
.dd-card:hover ul li,
.dd-card:hover .dd-cta { color: #111 !important; }
.dd-card:hover ul li::before { border-color: var(--red) !important; }

/* Industrial Automation dropdown card: always stay gray */
.dropdown-box .dd-card.gray.industrial-auto,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#374151,#111827) !important;
  border-color: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.dropdown-box .dd-card.gray.industrial-auto::after,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible)::after {
  opacity: 0 !important;
}

.dropdown-box .dd-card.gray.industrial-auto h3,
.dropdown-box .dd-card.gray.industrial-auto p,
.dropdown-box .dd-card.gray.industrial-auto ul li,
.dropdown-box .dd-card.gray.industrial-auto .dd-cta,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) h3,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) p,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) ul li,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) .dd-cta {
  color: #fff !important;
}

.dropdown-box .dd-card.gray.industrial-auto ul li::before,
.dropdown-box .dd-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) ul li::before {
  border-color: rgba(255,255,255,.95) !important;
}

/* Industrial Automation solution card: gray only on interaction */
#solutions .sol-card.gray.industrial-auto {
  background: #fff !important;
  border-color: #f3f4f6 !important;
}

#solutions .sol-card.gray.industrial-auto::before {
  opacity: 0 !important;
}

#solutions .sol-card.gray.industrial-auto h3,
#solutions .sol-card.gray.industrial-auto p,
#solutions .sol-card.gray.industrial-auto ul li,
#solutions .sol-card.gray.industrial-auto .learn {
  color: #111827 !important;
}

#solutions .sol-card.gray.industrial-auto ul li svg,
#solutions .sol-card.gray.industrial-auto .learn svg {
  stroke: #374151 !important;
}

#solutions .sol-card.gray.industrial-auto .sol-icon {
  background: #374151 !important;
  border-radius: .8rem !important;
}

#solutions .sol-card.gray.industrial-auto .sol-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#4b5563,#111827) !important;
  border-color: transparent !important;
}

#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible)::before {
  opacity: 0 !important;
}

#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) h3,
#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) p,
#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) ul li,
#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) .learn {
  color: #fff !important;
}

#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) ul li svg,
#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) .learn svg {
  stroke: #fff !important;
}

#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) .sol-icon {
  background: #1f2937 !important;
}

#solutions .sol-card.gray.industrial-auto:is(:hover,:active,:focus,:focus-visible) .sol-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

/* Turnkey Solutions card: red only on interaction, like Electrical Panels */
#solutions .sol-card.red.turnkey-solutions {
  background: #fff !important;
  border-color: #f3f4f6 !important;
}

#solutions .sol-card.red.turnkey-solutions::before {
  opacity: 0 !important;
}

#solutions .sol-card.red.turnkey-solutions h3,
#solutions .sol-card.red.turnkey-solutions p,
#solutions .sol-card.red.turnkey-solutions ul li,
#solutions .sol-card.red.turnkey-solutions .learn {
  color: #111827 !important;
}

#solutions .sol-card.red.turnkey-solutions ul li svg,
#solutions .sol-card.red.turnkey-solutions .learn svg {
  stroke: var(--red) !important;
}

#solutions .sol-card.red.turnkey-solutions .sol-icon {
  background: var(--red) !important;
  border-radius: .8rem !important;
}

#solutions .sol-card.red.turnkey-solutions .sol-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#ef4444,#991b1b) !important;
  border-color: transparent !important;
}

#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible)::before {
  opacity: 0 !important;
}

#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) h3,
#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) p,
#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) ul li,
#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) .learn {
  color: #fff !important;
}

#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) ul li svg,
#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) .learn svg {
  stroke: #fff !important;
}

#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) .sol-icon {
  background: var(--red) !important;
}

#solutions .sol-card.red.turnkey-solutions:is(:hover,:active,:focus,:focus-visible) .sol-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

/* Renewable card: green only on interaction */
#solutions .sol-card.grn.renewable-card {
  background: #fff !important;
  border-color: #f3f4f6 !important;
}

#solutions .sol-card.grn.renewable-card::before {
  opacity: 0 !important;
}

#solutions .sol-card.grn.renewable-card h3,
#solutions .sol-card.grn.renewable-card p,
#solutions .sol-card.grn.renewable-card ul li,
#solutions .sol-card.grn.renewable-card .learn {
  color: #111827 !important;
}

#solutions .sol-card.grn.renewable-card ul li svg,
#solutions .sol-card.grn.renewable-card .learn svg {
  stroke: #16a34a !important;
}

#solutions .sol-card.grn.renewable-card .sol-icon {
  background: #16a34a !important;
  border-radius: .8rem !important;
}

#solutions .sol-card.grn.renewable-card .sol-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#22c55e,#14532d) !important;
  border-color: transparent !important;
}

#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible)::before {
  opacity: 0 !important;
}

#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) h3,
#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) p,
#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) ul li,
#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) .learn {
  color: #fff !important;
}

#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) ul li svg,
#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) .learn svg {
  stroke: #fff !important;
}

#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) .sol-icon {
  background: #16a34a !important;
}

#solutions .sol-card.grn.renewable-card:is(:hover,:active,:focus,:focus-visible) .sol-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

/* Industries We Serve: show hover effect without requiring click */
.industries .ind-card:hover {
  border-color: var(--red) !important;
  box-shadow: 0 0 45px rgba(198,0,22,.6) !important;
  transform: translateY(-6px) !important;
}

.industries .ind-card:hover .ind-card-glow {
  background: radial-gradient(circle at center,#c60016 0%,transparent 70%) !important;
}

.industries .ind-card:hover .ind-num {
  color: rgba(198,0,22,.3) !important;
}

.industries .ind-card:hover h4 {
  color: var(--red) !important;
}

/* 2026-03-11 Testimonial background image alignment */
.testi-bg img {
  object-position: center !important;
  transform: none !important;
  opacity: .14 !important;
}
/* ================================================================
   SWATI SWITCHGEARS — RESPONSIVE FIX (Clean Consolidated)
   Appended LAST so it wins over all previous conflicting rules.
   Breakpoints: 1025px+ Desktop | ≤1024px Tablet | ≤768px Mobile
   ================================================================ */

/* ----------------------------------------------------------------
   RESET ALL PREVIOUS HEADER CONFLICTS (DESKTOP 1025+)
   ---------------------------------------------------------------- */
@media (min-width: 1025px) {
  /* Header shell */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    height: auto !important;
    min-height: 88px !important;
    max-height: none !important;
    overflow: visible !important;
    background: #fff !important;
    border-top: 3px solid #C60016 !important;
    border-bottom: 3px solid #C60016 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,.07) !important;
  }

  /* Inner flex row */
  .site-header .header-inner {
    max-width: 1440px !important;
    margin: 0 auto !important;
    height: auto !important;
    min-height: 88px !important;
    max-height: none !important;
    padding: 8px 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    overflow: visible !important;
  }

  /* Logo */
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex: 0 0 auto !important;
    height: auto !important;
    text-decoration: none !important;
  }
  .site-header .logo-link .emblem {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
    object-fit: contain !important;
  }
  .site-header .logo-link .wordmark {
    width: 300px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
  }

  /* Desktop nav — centred, auto width */
  .site-header .nav-desk {
    display: flex !important;
    align-items: center !important;
    gap: 1.4rem !important;
    flex: 1 1 auto !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }
  .site-header .nav-desk > a,
  .site-header .dropdown-trigger {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #C60016 !important;
    white-space: nowrap !important;
    padding: 0.5rem 0 !important;
  }

  /* Header socials */
  .site-header .h-socials {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }
  .site-header .h-socials a svg,
  .site-header .h-socials a img {
    width: 28px !important;
    height: 28px !important;
  }

  /* Hamburger always hidden on desktop */
  .site-header .hamburger {
    display: none !important;
  }
}

/* ----------------------------------------------------------------
   TABLET (769px – 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) and (min-width: 769px) {
  /* Header */
  .site-header {
    height: auto !important;
    min-height: 62px !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .site-header .header-inner {
    height: auto !important;
    min-height: 62px !important;
    padding: 0.3rem 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    flex: 0 0 auto !important;
  }
  .site-header .logo-link .emblem {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 34px !important;
    max-height: 34px !important;
    max-width: 260px !important;
  }
  /* Hide desktop nav + socials on tablet, show hamburger */
  .site-header .nav-desk  { display: none !important; }
  .site-header .h-socials { display: none !important; }
  .site-header .hamburger {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .site-header .hamburger svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }

  /* About grid: 2-col on tablet */
  .about-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

  /* Solutions grid: 2-col */
  .sol-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  /* Industries: 2-col */
  .ind-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Blogs: 2-col */
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Collabs: stack cols */
  .collabs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
  }

  /* Footer: 2-col grid */
  .footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    padding: 2rem 1rem !important;
  }

  /* Contact bento: single column */
  .bento {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* ----------------------------------------------------------------
   MOBILE (≤768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {

  /* -- Header ----------------------------------------- */
  .site-header {
    height: auto !important;
    min-height: 58px !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .site-header .header-inner {
    min-height: 58px !important;
    height: auto !important;
    max-height: none !important;
    padding: 0.4rem 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    overflow: visible !important;
  .site-header .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: auto !important;
  }
  .site-header .logo-link .emblem {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    flex-shrink: 0 !important;
  }
  .site-header .logo-link .wordmark {
    width: auto !important;
    height: 28px !important;
    max-height: 28px !important;
    max-width: 55vw !important;
    object-fit: contain !important;
  }
  .site-header .nav-desk  { display: none !important; }
  .site-header .h-socials { display: none !important; }
  .site-header .hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    margin-left: auto !important;
  }
  .site-header .hamburger svg {
    width: 1.4rem !important;
    height: 1.4rem !important;
  }

  /* -- Global helpers ---------------------------------- */
  .wrap { padding: 0 0.85rem !important; }

  /* -- Hero -------------------------------------------- */
  .hero {
    height: auto !important;
    min-height: calc(100svh - 58px) !important;
    padding-top: 4rem !important;
    padding-bottom: 7rem !important;
    align-items: flex-start !important;
  }
  .hero-body {
    margin-top: 0 !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }
  .hero-body h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem) !important;
    line-height: 1.15 !important;
  }
  .hero-badge {
    width: 6rem !important;
    height: 6rem !important;
    bottom: 1.2rem !important;
    right: 1rem !important;
    border-radius: 1rem !important;
  }
  .hb-num  { font-size: 1.6rem !important; }
  .hb-lbl  { font-size: 0.45rem !important; }

  /* -- About ------------------------------------------- */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .about-imgbox {
    height: 240px !important;
  }
  .about h5 {
    font-size: 1.3rem !important;
  }
  .checks {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  /* -- Stats strip ------------------------------------- */
  .stats-inner {
    flex-wrap: wrap !important;
    gap: 0.75rem 1rem !important;
    padding: 1rem !important;
  }
  .stat-item {
    min-width: 120px !important;
    flex: 1 1 120px !important;
  }

  /* -- Industries ------------------------------------- */
  .ind-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  /* -- Solutions / Services --------------------------- */
  .sol-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* -- Dropdown (disabled on mobile) ------------------ */
  .dropdown-box { display: none !important; }

  /* -- Blogs ------------------------------------------ */
  .blogs-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* -- Testimonials ------------------------------------ */
  .testi-card { padding: 1.25rem !important; }
  .testi-quote { font-size: 0.9rem !important; }

  /* -- Collaborations ---------------------------------- */
  .collabs-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .collab-cats {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  /* -- Contact bento ----------------------------------- */
  .bento {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .bt-form, .bt-addr, .bt-map, .bt-cities {
    padding: 1.25rem !important;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* -- Footer ----------------------------------------- */
  .footer .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem 0.85rem !important;
  }
  .footer .f-brand .logo-row {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  .footer .f-brand .logo-row .emblem-seal {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
  .footer .f-brand .logo-row .emblem-wordmark {
    height: 52px !important;
    max-height: 52px !important;
    width: auto !important;
  }
  .footer .f-brand p { font-size: 0.88rem !important; }

  /* -- Section headings on mobile --------------------- */
  .sec-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem) !important;
  }
  .badge {
    font-size: 0.78rem !important;
    padding: 0.5rem 1rem !important;
  }

  /* -- Form row: stack on mobile ---------------------- */
  .f-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* -- Key highlights strip --------------------------- */
  .kh-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .kh-stats {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
}

/* ----------------------------------------------------------------
   SMALL MOBILE (≤480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .site-header .logo-link .wordmark {
    max-width: 48vw !important;
    height: 24px !important;
  }
  .site-header .logo-link .emblem {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .hero-body h1 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }
  .hero-badge {
    width: 5.4rem !important;
    height: 5.4rem !important;
  }
  .hb-num { font-size: 1.4rem !important; }

  /* Industries: still single col */
  .ind-card { padding: 1rem !important; }

  /* Ticker items */
  .ticker-item {
    height: 50px !important;
    padding: 0 0.75rem !important;
  }
  .ticker-item img {
    max-height: 36px !important;
  }

  /* City cards: 1-col on very small screens */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Collab items */
  .collab-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
  .collab-logo { margin: 0 auto !important; }
}

/* ----------------------------------------------------------------
   NO HORIZONTAL SCROLL — SAFETY NET
   ---------------------------------------------------------------- */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Final dropdown card behavior: show color only on hover/touch/focus */
.dropdown-box .dd-card {
  background: #fff !important;
  border-color: #e5e7eb !important;
}

.dropdown-box .dd-card::after {
  opacity: 0 !important;
}

.dropdown-box .dd-card h3 {
  color: #111827 !important;
}

.dropdown-box .dd-card p {
  color: #6b7280 !important;
}

.dropdown-box .dd-card ul li {
  color: #374151 !important;
}

.dropdown-box .dd-card .dd-cta {
  color: var(--red) !important;
}

.dropdown-box .dd-card ul li::before {
  border-color: var(--red) !important;
}

.dropdown-box .dd-card.red .dd-icon {
  background: var(--red) !important;
}

.dropdown-box .dd-card.gray .dd-icon {
  background: #374151 !important;
}

.dropdown-box .dd-card.grn .dd-icon {
  background: #16a34a !important;
}

.dropdown-box .dd-card .dd-icon svg {
  stroke: #fff !important;
  color: #fff !important;
}

.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) {
  background: #fff !important;
  border-color: transparent !important;
}

.dropdown-box .dd-card.red:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#ef4444,#991b1b) !important;
}

.dropdown-box .dd-card.gray:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#4b5563,#111827) !important;
}

.dropdown-box .dd-card.grn:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(135deg,#22c55e,#14532d) !important;
}

.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible)::after {
  opacity: 0 !important;
}

.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) h3,
.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) p,
.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) ul li,
.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) .dd-cta {
  color: #fff !important;
}

.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) ul li::before {
  border-color: rgba(255,255,255,.95) !important;
}

.dropdown-box .dd-card:is(:hover,:active,:focus,:focus-visible) .dd-icon {
  background: #fff !important;
}

.dropdown-box .dd-card.red:is(:hover,:active,:focus,:focus-visible) .dd-icon svg {
  stroke: var(--red) !important;
  color: var(--red) !important;
}

.dropdown-box .dd-card.gray:is(:hover,:active,:focus,:focus-visible) .dd-icon svg {
  stroke: #374151 !important;
  color: #374151 !important;
}

.dropdown-box .dd-card.grn:is(:hover,:active,:focus,:focus-visible) .dd-icon svg {
  stroke: #16a34a !important;
  color: #16a34a !important;
}

@media (min-width: 1025px) {
  .site-header .dropdown-box {
    width: min(1080px, calc(100vw - 2rem)) !important;
    padding: 1.25rem !important;
    border-radius: 1.4rem !important;
  }

  .site-header .dd-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .site-header .dropdown-box .dd-card {
    min-width: 0 !important;
    min-height: 100% !important;
    padding: 1.35rem 1.3rem 1.15rem !important;
    border-radius: 1.15rem !important;
    display: block !important;
  }

  .site-header .dropdown-box .dd-card-in {
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-header .dropdown-box .dd-icon {
    width: 3.25rem !important;
    height: 3.25rem !important;
    border-radius: .85rem !important;
    margin-bottom: 1rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-icon svg {
    width: 1.35rem !important;
    height: 1.35rem !important;
  }

  .site-header .dropdown-box .dd-card h3 {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
    margin-bottom: .55rem !important;
  }

  .site-header .dropdown-box .dd-card p {
    font-size: .9rem !important;
    line-height: 1.55 !important;
    margin-bottom: .8rem !important;
  }

  .site-header .dropdown-box .dd-card ul {
    margin-bottom: .95rem !important;
    width: 100% !important;
  }

  .site-header .dropdown-box .dd-card ul li {
    font-size: .86rem !important;
    line-height: 1.45 !important;
    align-items: flex-start !important;
    gap: .42rem !important;
    margin-bottom: .28rem !important;
  }

  .site-header .dropdown-box .dd-card ul li::before {
    width: .7rem !important;
    height: .7rem !important;
    min-width: .7rem !important;
    margin-top: .24rem !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta {
    margin-top: auto !important;
    font-size: .98rem !important;
    gap: .35rem !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta svg {
    width: .9rem !important;
    height: .9rem !important;
  }
}

/* Electrical Panels solution card: color only on interaction */
#solutions .sol-card.red[href*="eletrical%20panel"] {
  background: #fff !important;
  border-color: #f3f4f6 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.07) !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]::before,
#solutions .sol-card.red[href*="eletrical%20panel"] .sol-shine {
  opacity: 0 !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] h3 {
  color: #111827 !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] p {
  color: #6b7280 !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] ul li {
  color: #374151 !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] .learn {
  color: var(--red) !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] ul li svg,
#solutions .sol-card.red[href*="eletrical%20panel"] .learn svg {
  stroke: var(--red) !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power {
  background: #cf0015 !important;
  border-radius: .85rem !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"] .sol-icon.icon-power svg {
  stroke: #fff !important;
  color: #fff !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) {
  background: linear-gradient(180deg,#e5393b 0%,#b32025 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 28px rgba(179,32,37,.18) !important;
  transform: none !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible)::before,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .sol-shine {
  opacity: 0 !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) h3,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) p,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) ul li,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .learn {
  color: #fff !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) ul li svg,
#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .learn svg {
  stroke: #fff !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .sol-icon.icon-power {
  background: #cf0015 !important;
}

#solutions .sol-card.red[href*="eletrical%20panel"]:is(:hover,:active,:focus,:focus-visible) .sol-icon.icon-power svg {
  stroke: #fff !important;
  color: #fff !important;
}
/* Header logo div alignment */
.logo-div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-div .logo-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-div .brand-name {
  font-size: 32px;
  font-weight: 900;
  color: #c0141e;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-div .brand-sub {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

@media (max-width: 480px) {
  .logo-div .logo-icon {
    width: 52px;
    height: 52px;
  }

  .logo-div .brand-name {
    font-size: 28px;
  }

  .logo-div .brand-sub {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .swatcon-item .collab-logo {
    width: 8.75rem;
    height: 5.75rem;
    overflow: visible;
  }

  .swatcon-item .collab-logo img {
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
  }
}

/* 2026-03-31 TRUE FINAL HOSTINGER DROPDOWN VISIBILITY FIX
   Must stay at the very end so it beats the many compact header locks above. */
@media (min-width: 1025px) {
  .site-header {
    height: auto !important;
    min-height: 76px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .site-header .header-inner {
    height: auto !important;
    min-height: 76px !important;
    max-height: none !important;
    overflow: visible !important;
    padding: .45rem 1rem !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: .9rem !important;
  }

  .site-header .dropdown-wrap,
  .site-header .dropdown-box,
  .site-header .dd-grid,
  .site-header .dd-card,
  .site-header .dd-card-in {
    overflow: visible !important;
  }

  .site-header .dropdown-box {
    top: calc(100% + 12px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1120px, calc(100vw - 2rem)) !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1.2rem !important;
    border-radius: 1.3rem !important;
    z-index: 1200 !important;
  }

  .site-header .dropdown-wrap.is-open .dropdown-box {
    transform: translateX(-50%) translateY(0) !important;
  }

  .site-header .dd-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .site-header .dropdown-box .dd-card {
    min-width: 0 !important;
    min-height: 260px !important;
    padding: 1.25rem 1.15rem 1.05rem !important;
    border-radius: 1.1rem !important;
  }

  .site-header .dropdown-box .dd-card-in {
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-header .dropdown-box .dd-icon,
  .site-header .dropdown-box .dd-card:hover .dd-icon {
    width: 3rem !important;
    height: 3rem !important;
    min-width: 3rem !important;
    min-height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
    border-radius: .8rem !important;
    margin-bottom: .95rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-icon svg,
  .site-header .dropdown-box .dd-card:hover .dd-icon svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  .site-header .dropdown-box .dd-card h3 {
    width: 100% !important;
    margin: 0 0 .55rem 0 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card p {
    width: 100% !important;
    min-height: 3.2em !important;
    margin: 0 0 .8rem 0 !important;
    font-size: .88rem !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card ul {
    width: 100% !important;
    margin: 0 0 .8rem 0 !important;
  }

  .site-header .dropdown-box .dd-card ul li {
    align-items: flex-start !important;
    gap: .38rem !important;
    margin-bottom: .18rem !important;
    font-size: .84rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card ul li::before {
    width: .62rem !important;
    height: .62rem !important;
    min-width: .62rem !important;
    margin-top: .24rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta {
    margin-top: auto !important;
    font-size: .86rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* 2026-03-31 FINAL SERVICES DROPDOWN DISPLAY LOCK
   Keep this at the real end of the file so Hostinger uses it last. */
@media (min-width: 1025px) {
  .site-header .dropdown-box {
    width: min(1120px, calc(100vw - 2rem)) !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1.2rem !important;
    border-radius: 1.3rem !important;
    overflow: visible !important;
  }

  .site-header .dd-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .site-header .dropdown-box .dd-card {
    display: block !important;
    min-width: 0 !important;
    min-height: 252px !important;
    padding: 1.25rem 1.15rem 1.05rem !important;
    border-radius: 1.1rem !important;
  }

  .site-header .dropdown-box .dd-card-in {
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-header .dropdown-box .dd-icon,
  .site-header .dropdown-box .dd-card:hover .dd-icon {
    width: 3rem !important;
    height: 3rem !important;
    min-width: 3rem !important;
    min-height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
    border-radius: .8rem !important;
    margin-bottom: .95rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-icon svg,
  .site-header .dropdown-box .dd-card:hover .dd-icon svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  .site-header .dropdown-box .dd-card h3 {
    display: block !important;
    width: 100% !important;
    margin: 0 0 .55rem 0 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card p {
    display: block !important;
    width: 100% !important;
    min-height: 3.1em !important;
    margin: 0 0 .8rem 0 !important;
    font-size: .88rem !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    overflow: visible !important;
  }

  .site-header .dropdown-box .dd-card ul {
    width: 100% !important;
    margin: 0 0 .8rem 0 !important;
  }

  .site-header .dropdown-box .dd-card ul li {
    display: flex !important;
    align-items: flex-start !important;
    gap: .38rem !important;
    margin-bottom: .18rem !important;
    font-size: .84rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card ul li::before {
    width: .62rem !important;
    height: .62rem !important;
    min-width: .62rem !important;
    margin-top: .24rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta {
    margin-top: auto !important;
    font-size: .86rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* 2026-03-31 FINAL SERVICES DROPDOWN DISPLAY LOCK
   Keeps all card text fully visible on browser + Hostinger without removing older rules. */
@media (min-width: 1025px) {
  .site-header .dropdown-box {
    width: min(1120px, calc(100vw - 2rem)) !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1.2rem !important;
    border-radius: 1.3rem !important;
    overflow: visible !important;
  }

  .site-header .dd-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .site-header .dropdown-box .dd-card {
    display: block !important;
    min-width: 0 !important;
    min-height: 252px !important;
    padding: 1.25rem 1.15rem 1.05rem !important;
    border-radius: 1.1rem !important;
  }

  .site-header .dropdown-box .dd-card-in {
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-header .dropdown-box .dd-icon,
  .site-header .dropdown-box .dd-card:hover .dd-icon {
    width: 3rem !important;
    height: 3rem !important;
    min-width: 3rem !important;
    min-height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
    border-radius: .8rem !important;
    margin-bottom: .95rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-icon svg,
  .site-header .dropdown-box .dd-card:hover .dd-icon svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  .site-header .dropdown-box .dd-card h3 {
    display: block !important;
    width: 100% !important;
    margin: 0 0 .55rem 0 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card p {
    display: block !important;
    width: 100% !important;
    min-height: 3.1em !important;
    margin: 0 0 .8rem 0 !important;
    font-size: .88rem !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    overflow: visible !important;
  }

  .site-header .dropdown-box .dd-card ul {
    width: 100% !important;
    margin: 0 0 .8rem 0 !important;
  }

  .site-header .dropdown-box .dd-card ul li {
    display: flex !important;
    align-items: flex-start !important;
    gap: .38rem !important;
    margin-bottom: .18rem !important;
    font-size: .84rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card ul li::before {
    width: .62rem !important;
    height: .62rem !important;
    min-width: .62rem !important;
    margin-top: .24rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta {
    margin-top: auto !important;
    font-size: .86rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 1025px) {
  .about .wrap {
    max-width: 1320px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 3.5rem;
  }

  .about-imgbox {
    height: 540px;
  }

  .about .about-imgbox img {
    width: 100%;
    height: 100%;
  }

  .collab-item {
    align-items: center;
    gap: 1.35rem;
  }

  .collab-logo {
    width: 10.5rem;
    height: 7.25rem;
    overflow: hidden;
  }

  .collab-logo img {
    width: 112%;
    height: 112%;
  }

  .collab-logo.duo {
    width: 11.5rem;
    height: 7.5rem;
  }

  .collab-logo.duo img {
    width: 49%;
    height: auto;
  }

  .swatcon-item .collab-logo {
    width: 9.5rem;
    height: 6rem;
    overflow: visible;
  }

  .swatcon-item .collab-logo img {
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
  }
}

/* 2026-03-31 ABSOLUTE LAST HOSTINGER DROPDOWN FIX
   Keeps the Services dropdown fully visible without deleting older rules. */
@media (min-width: 1025px) {
  .site-header,
  .site-header .header-inner,
  .site-header .nav-desk,
  .site-header .dropdown-wrap {
    overflow: visible !important;
  }

  .site-header .dropdown-box {
    top: calc(100% + 12px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1120px, calc(100vw - 2rem)) !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1.2rem !important;
    border-radius: 1.3rem !important;
    z-index: 9999 !important;
    overflow: visible !important;
  }

  .site-header .dropdown-wrap.is-open .dropdown-box {
    transform: translateX(-50%) translateY(0) !important;
  }

  .site-header .dd-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .site-header .dropdown-box .dd-card {
    min-width: 0 !important;
    min-height: 260px !important;
    padding: 1.25rem 1.15rem 1.05rem !important;
    border-radius: 1.1rem !important;
    overflow: hidden !important;
  }

  .site-header .dropdown-box .dd-card-in {
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-header .dropdown-box .dd-icon,
  .site-header .dropdown-box .dd-card:hover .dd-icon {
    width: 3rem !important;
    height: 3rem !important;
    min-width: 3rem !important;
    min-height: 3rem !important;
    border-radius: .8rem !important;
    margin-bottom: .95rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-icon svg,
  .site-header .dropdown-box .dd-card:hover .dd-icon svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }

  .site-header .dropdown-box .dd-card h3 {
    display: block !important;
    width: 100% !important;
    margin: 0 0 .55rem 0 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card p {
    display: block !important;
    width: 100% !important;
    min-height: 3.2em !important;
    margin: 0 0 .8rem 0 !important;
    font-size: .88rem !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card ul {
    width: 100% !important;
    margin: 0 0 .8rem 0 !important;
  }

  .site-header .dropdown-box .dd-card ul li {
    display: flex !important;
    align-items: flex-start !important;
    gap: .38rem !important;
    margin-bottom: .18rem !important;
    font-size: .84rem !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .dropdown-box .dd-card ul li::before {
    width: .62rem !important;
    height: .62rem !important;
    min-width: .62rem !important;
    margin-top: .24rem !important;
    flex-shrink: 0 !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta {
    margin-top: auto !important;
    font-size: .86rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* 2026-03-31 Electrical Panels description wrap lock */
@media (min-width: 1025px) {
  .site-header .dd-card.red[href*="eletrical%20panel"] p {
    max-width: 100% !important;
    min-height: 3.4em !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    text-wrap: pretty !important;
  }
}

/* 2026-03-31 Absolute last dropdown card size + text display lock */
@media (min-width: 1025px) {
  .site-header .dropdown-box {
    width: min(1240px, calc(100vw - 1.25rem)) !important;
    max-width: calc(100vw - 1.25rem) !important;
    padding: 1.35rem !important;
  }

  .site-header .dd-grid {
    gap: 1.15rem !important;
  }

  .site-header .dropdown-box .dd-card {
    min-height: 292px !important;
    padding: 1.35rem 1.2rem 1.15rem !important;
    border-radius: 1.15rem !important;
  }

  .site-header .dropdown-box .dd-card-in {
    width: 100% !important;
  }

  .site-header .dropdown-box .dd-icon,
  .site-header .dropdown-box .dd-card:hover .dd-icon {
    width: 3.1rem !important;
    height: 3.1rem !important;
    min-width: 3.1rem !important;
    min-height: 3.1rem !important;
    margin-bottom: 1rem !important;
  }

  .site-header .dropdown-box .dd-card h3 {
    font-size: 1.06rem !important;
    line-height: 1.24 !important;
    margin-bottom: .62rem !important;
  }

  .site-header .dropdown-box .dd-card p {
    min-height: 4.95em !important;
    margin-bottom: .95rem !important;
    font-size: .91rem !important;
    line-height: 1.6 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    text-wrap: pretty !important;
  }

  .site-header .dropdown-box .dd-card ul {
    margin-bottom: .95rem !important;
  }

  .site-header .dropdown-box .dd-card ul li {
    font-size: .86rem !important;
    line-height: 1.4 !important;
    margin-bottom: .22rem !important;
  }

  .site-header .dropdown-box .dd-card .dd-cta {
    font-size: .9rem !important;
  }
}
