/* ============================================================
   VISULA INTERIORS — Main Stylesheet (v2)
   Brand: deep navy #061833 · gold #D8A44E · cream #F8F3EA
   Font: Poppins
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --c-navy: #061833;
  --c-navy-2: #0b2447;
  --c-navy-3: #10335c;
  --c-gold: #d8a44e;
  --c-gold-2: #e7be69;
  --c-gold-3: #b8863a;
  --c-cream: #f8f3ea;
  --c-cream-2: #f1e8d8;
  --c-ink: #17233b;
  --c-muted: #5d6b80;
  --c-line: rgba(6, 24, 51, 0.12);
  --c-white: #ffffff;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --shadow-sm: 0 6px 24px rgba(6, 24, 51, 0.08);
  --shadow-md: 0 14px 40px rgba(6, 24, 51, 0.14);
  --shadow-gold: 0 12px 34px rgba(216, 164, 78, 0.35);

  --radius: 14px;
  --container: 1240px;
  --header-h: 84px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
.container { width: min(var(--container), 92%); margin-inline: auto; }
section { position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-navy);
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }
em.gold { font-style: italic; color: var(--c-gold-3); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-3);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 40px; height: 2px; background: var(--c-gold); }
.kicker.center::after { content: ""; width: 40px; height: 2px; background: var(--c-gold); }

.sec-head { max-width: 700px; margin-bottom: 48px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .kicker { justify-content: center; }
.sec-head p { color: var(--c-muted); margin-top: 16px; font-size: 1rem; }

.img{
    max-height: 150px;
    margin-bottom: 15px;
    border-radius: 15px;
    width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: all 0.35s ease;
  position: relative;
  text-align: center;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform 0.35s ease; }
.btn:hover svg { transform: translateX(5px); }
.btn-gold {
  background: linear-gradient(120deg, var(--c-gold-2), var(--c-gold));
  color: var(--c-navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(216, 164, 78, 0.45); }
.btn-outline { border: 1.5px solid rgba(255, 255, 255, 0.65); color: var(--c-white); }
.btn-outline:hover { background: var(--c-white); color: var(--c-navy); }
.btn-navy { background: var(--c-navy); color: var(--c-white); box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--c-navy-2); transform: translateY(-3px); }
.btn-sm { padding: 11px 24px; font-size: 0.86rem; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 101;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar-left, .topbar-center, .topbar-right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; }
.topbar a:hover { color: var(--c-gold-2); }
.topbar svg { width: 14px; height: 14px; fill: var(--c-gold-2); flex: none; }
.topbar .socials a svg { fill: rgba(255,255,255,0.8); }
.topbar .socials a:hover svg { fill: var(--c-gold-2); }
.topbar .socials { display: flex; gap: 14px; }

/* ---------- Header & Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #0B2240; /* same dark navy as the top promotional bar */
  border-bottom: 1px solid rgba(216, 164, 78, 0.35);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 8px 28px rgba(6, 24, 51, 0.35); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.logo img { height: 52px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav > li { position: relative; }
.nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s;
}
.nav > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--c-gold);
  transition: width 0.35s ease;
}
.nav > li > a:hover, .nav > li > a.active { color: var(--c-gold-2); }
.nav > li > a:hover::after, .nav > li > a.active::after { width: 100%; }
.nav .caret { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: var(--c-white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 120;
}
.nav > li.has-drop:hover .dropdown,
.nav > li.has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li + li { margin-top: 2px; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-ink);
  transition: all 0.25s;
}
.dropdown a:hover { background: var(--c-cream); color: var(--c-gold-3); padding-left: 18px; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; position: relative; }
.hamburger span { width: 26px; height: 2px; background: #ffffff; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--c-navy); }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero-slide.active .bg { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 24, 51, 0.94) 18%, rgba(6, 24, 51, 0.6) 62%, rgba(6, 24, 51, 0.3));
}
.hero-content { position: relative; z-index: 5; color: var(--c-white); max-width: 780px; padding: 110px 0; }
.hero-content .kicker { color: var(--c-gold-2); }
.hero-content .kicker::before { background: var(--c-gold-2); }
.hero-content h1 { color: var(--c-white); margin-bottom: 20px; }
.hero-content h1 em { color: var(--c-gold-2); font-style: italic; }
.hero-content p { font-size: 1.08rem; color: rgba(255, 255, 255, 0.85); max-width: 600px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 5;
  display: flex; gap: 44px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}
.hero-stats .stat b {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--c-gold-2);
  display: block;
  line-height: 1;
}
.hero-stats .stat span { font-size: 0.84rem; color: rgba(255,255,255,0.72); letter-spacing: 0.06em; }
.hero-nav {
  position: absolute; z-index: 8; bottom: 40px; right: 6%;
  display: flex; gap: 10px;
}
.hero-nav button {
  width: 48px; height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--c-white);
  display: grid; place-items: center;
  transition: all 0.3s;
}
.hero-nav button svg { width: 18px; height: 18px; fill: currentColor; }
.hero-nav button:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-navy); }
.hero-dots { position: absolute; z-index: 8; bottom: 54px; left: 6%; display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 3px; background: rgba(255,255,255,0.35); border-radius: 3px; transition: all 0.4s; }
.hero-dots button.active { background: var(--c-gold-2); width: 52px; }
.hero-scroll {
  position: absolute; z-index: 8; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(var(--c-gold-2), transparent);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(105deg, var(--c-navy) 30%, var(--c-navy-2)), url(../assets/img/hero-1.jpg) center/cover no-repeat;
  background-blend-mode: multiply;
  color: var(--c-white);
  padding: 40px 0 30px;
  text-align: center;
}
.page-hero h1 { color: var(--c-white); margin-bottom: 16px; }
.page-hero .kicker { color: var(--c-gold-2); justify-content: center; }
.page-hero .kicker::before { background: var(--c-gold-2); }
.hero-sub { color: rgba(255,255,255,0.82); max-width: 760px; margin: 0 auto 26px; font-size: 1.05rem; }
.breadcrumb { font-size: 0.88rem; color: rgba(255,255,255,0.72); letter-spacing: 0.05em; margin-top: 10px; }
.breadcrumb a { color: var(--c-gold-2); }
.breadcrumb a:hover { color: var(--c-white); }

/* ---------- Section spacing ---------- */
.section { padding: 30px 0; }
.section-alt { background: var(--c-cream); }
.section-dark { background: var(--c-navy); color: rgba(255,255,255,0.8); }
.section-dark h2, .section-dark h3 { color: var(--c-white); }
.section-dark .kicker { color: var(--c-gold-2); }
.section-dark .kicker::before { background: var(--c-gold-2); }
.section-dark .sec-head p { color: rgba(255,255,255,0.65); }

/* ---------- Trust & Legacy Bar ---------- */
.trust-bar {
  background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-navy-3) 100%);
  color: var(--c-white);
  padding: 52px 0;
  margin-top: -1px;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-item { display: flex; gap: 18px; align-items: flex-start; }
.t-icon {
  width: 56px; height: 56px; flex: none;
  border-radius: 50%;
  border: 1px solid rgba(231, 190, 105, 0.5);
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
}
.t-icon svg { width: 26px; height: 26px; stroke: var(--c-gold-2); }
.trust-item b { display: block; font-size: 1.05rem; color: var(--c-white); margin-bottom: 4px; }
.trust-item p { font-size: 0.88rem; color: rgba(255,255,255,0.72); }

/* ---------- Showcase blocks ---------- */
.showcase-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 84px;
}
.showcase-block:last-child { margin-bottom: 0; }
.show-media { position: relative; }
.show-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 460px; object-fit: cover; }
.show-media::before {
  content: "";
  position: absolute; inset: 22px -22px -22px 22px;
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.6;
}
.showcase-block.flip .show-media::before { inset: 22px 22px -22px -22px; }
.show-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--c-gold);
}
.show-badge b { font-family: var(--font-head); font-size: 1.25rem; color: var(--c-gold-2); display: block; line-height: 1.2; }
.show-badge span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.show-copy h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.show-copy > p { color: var(--c-muted); margin-bottom: 22px; }

.tick-list { display: grid; gap: 14px; margin-bottom: 30px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; }
.tick-list svg.ck { width: 20px; height: 20px; flex: none; margin-top: 4px; fill: none; stroke: var(--c-gold-3); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tick-list li b { color: var(--c-navy); font-weight: 600; }
.tick-list li div { font-size: 0.95rem; color: var(--c-muted); }
.tick-list.compact { margin-bottom: 0; }
.tick-list.compact li { font-size: 0.95rem; color: var(--c-muted); }

/* ---------- Two-col dir cards ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.dir-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 42px 38px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.dir-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dir-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--c-gold);
  margin-bottom: 18px;
}
.dir-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.dir-card h3 span { display: block; font-size: 0.88rem; font-weight: 500; color: var(--c-gold-3); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.dir-card p { color: var(--c-muted); font-size: 0.97rem; }

/* ---------- Difference cards ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.diff-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold-2), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.diff-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.diff-card:hover::before { transform: scaleX(1); }
.d-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--c-cream);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.d-icon svg { width: 27px; height: 27px; stroke: var(--c-gold-3); }
.diff-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.diff-card p { color: var(--c-muted); font-size: 0.92rem; }
.diff-card p strong { color: var(--c-navy); }

/* ---------- Steps (home) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.4s;
}
.step-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.snum {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--c-gold-2);
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step-card p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* ---------- MD strip (home) ---------- */
.md-strip {
  background: linear-gradient(115deg, rgba(6,24,51,0.97), rgba(16,51,92,0.92)), url(../assets/img/hero-2.jpg) center/cover;
  color: var(--c-white);
  padding: 84px 0;
}
.md-flex { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.md-flex img {
  width: 100%; height: 360px; object-fit: cover; object-position: top;
  border-radius: var(--radius);
  border: 3px solid var(--c-gold);
  box-shadow: var(--shadow-md);
}
.md-flex .kicker { color: var(--c-gold-2); }
.md-flex .kicker::before { background: var(--c-gold-2); }
.md-flex blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-weight: 400;
}
.md-name { color: var(--c-gold-2); font-weight: 600; margin-bottom: 26px; letter-spacing: 0.04em; }

/* ---------- MD box (about) ---------- */
.md-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(120deg, var(--c-navy), var(--c-navy-3));
  border-radius: 20px;
  padding: 46px 52px;
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  margin-bottom: 46px;
}
.md-photo img {
  width: 100%; height: 400px; object-fit: cover; object-position: top;
  border-radius: 14px;
  border: 3px solid var(--c-gold);
}
.md-msg .kicker { color: var(--c-gold-2); }
.md-msg .kicker::before { background: var(--c-gold-2); }
.md-msg blockquote {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.94);
  margin-bottom: 16px;
}
.md-msg .md-name { color: var(--c-gold-2); font-weight: 600; letter-spacing: 0.04em; }
.leadership-block {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 40px 42px;
}
.leadership-block h3 { margin-bottom: 14px; }
.leadership-block p { color: var(--c-muted); margin-bottom: 12px; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.value-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: all 0.4s;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--c-gold); }
.vnum {
  width: 58px; height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-2), var(--c-gold));
  color: var(--c-navy);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  display: grid; place-items: center;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-card p { color: var(--c-muted); font-size: 0.92rem; }
.value-card .value-img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ---------- Value props (vp) ---------- */
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.vp-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s;
}
.vp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.vpi {
  width: 56px; height: 56px;
  background: var(--c-cream);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.vpi svg { width: 27px; height: 27px; stroke: var(--c-gold-3); }
.vp-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.vp-card p { color: var(--c-muted); font-size: 0.92rem; }

/* ---------- Solution blocks (hubs) ---------- */
.sol-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 60px;
}
.sol-block:last-child { margin-bottom: 0; }
.sol-media { position: relative; }
.sol-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 420px; object-fit: cover; }
.sol-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.sol-copy h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.sol-copy > p { color: var(--c-muted); margin-bottom: 20px; }
.sol-copy .tick-list { margin-bottom: 26px; }

/* ---------- Feature grid (subpages) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.fimg { height: 240px; overflow: hidden; }
.fimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.feature-card:hover .fimg img { transform: scale(1.07); }
.feature-card h3 { padding: 26px 28px 8px; font-size: 1.3rem; }
.feature-card p { padding: 0 28px 30px; color: var(--c-muted); font-size: 0.93rem; }

/* ---------- Info strip ---------- */
.info-strip {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(120deg, var(--c-cream), var(--c-cream-2));
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 40px;
}
.info-icon { flex: none; width: 48px; height: 48px; background: var(--c-white); border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.info-icon svg { width: 24px; height: 24px; stroke: var(--c-gold-3); }
.info-strip p { color: var(--c-muted); font-size: 0.96rem; }
.info-strip strong { color: var(--c-navy); }

/* ---------- Capability cards ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cap-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.4s;
}
.cap-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.cpi {
  width: 54px; height: 54px;
  background: var(--c-cream);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.cpi svg { width: 26px; height: 26px; stroke: var(--c-gold-3); }
.cap-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cap-card p { color: var(--c-muted); font-size: 0.92rem; }

/* ---------- Gallery grid ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 54px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; transition: all 0.4s; box-shadow: var(--shadow-sm); }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ---------- Real projects gallery ---------- */
.real-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.real-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
}
.real-card img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.6s ease; }
.real-card:hover img { transform: scale(1.06); }
.real-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(0deg, rgba(6, 24, 51, 0.9), transparent);
  color: var(--c-white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.real-card:hover .real-cap { opacity: 1; }
.real-cap svg { width: 15px; height: 15px; fill: var(--c-gold-2); flex: none; }
@media (max-width: 1080px) { .real-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 780px) { .real-grid { grid-template-columns: repeat(2, 1fr); } .real-card img { height: 230px; } }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.why-item {
  display: flex;
  gap: 18px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.4s;
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.wicon { flex: none; width: 52px; height: 52px; background: var(--c-cream); border-radius: 50%; display: grid; place-items: center; }
.wicon svg { width: 25px; height: 25px; stroke: var(--c-gold-3); }
.why-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.why-item p { color: var(--c-muted); font-size: 0.9rem; }

/* ---------- Promise box ---------- */
.promise-box {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  background: linear-gradient(120deg, var(--c-navy), var(--c-navy-3));
  border-radius: 20px;
  padding: 44px 48px;
  color: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-md);
}
.p-icon { flex: none; width: 64px; height: 64px; background: rgba(231,190,105,0.15); border: 1px solid rgba(231,190,105,0.5); border-radius: 50%; display: grid; place-items: center; }
.p-icon svg { width: 30px; height: 30px; stroke: var(--c-gold-2); }
.promise-box h3 { color: var(--c-white); margin-bottom: 10px; }
.promise-box p { font-size: 0.97rem; }

/* ---------- Guarantees ---------- */
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guarantee-card {
  background: var(--c-white);
  border-radius: 18px;
  padding: 42px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: all 0.4s;
}
.guarantee-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.guarantee-card::after {
  content: "";
  position: absolute;
  bottom: -70px; right: -70px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,164,78,0.16), transparent 70%);
}
.g-badge {
  width: 118px; height: 118px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-2), var(--c-gold));
  color: var(--c-navy);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
}
.guarantee-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.guarantee-card p { color: var(--c-muted); font-size: 0.93rem; }

/* ---------- Steps flow (process page) ---------- */
.steps-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; position: relative; }
.flow-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 36px 34px;
  transition: all 0.4s;
  position: relative;
}
.flow-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-gold); }
.flow-card .snum {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-gold-3);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.flow-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.flow-card p { color: var(--c-muted); font-size: 0.94rem; }

/* ---------- Portfolio tabs ---------- */
.port-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.port-tab {
  padding: 12px 26px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  background: var(--c-white);
  transition: all 0.3s;
}
.port-tab:hover, .port-tab.active { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); }
.port-cat { margin-bottom: 80px; }
.port-cat:last-child { margin-bottom: 0; }
.port-cat .sec-head { margin-top: 40px; }

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 780px) {
  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.7s ease both;
  background: var(--c-white);
}
.project-card .thumb { position: relative; height: 300px; overflow: hidden; }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.project-card .thumb:hover img { transform: scale(1.09); }
.project-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,24,51,0.9) 0%, rgba(6,24,51,0.15) 60%, transparent);
  opacity: 0;
  transition: opacity 0.45s;
  display: flex; align-items: flex-end;
  padding: 28px;
}
.project-card .thumb:hover .overlay { opacity: 1; }
.project-card .meta { transform: translateY(14px); transition: transform 0.45s; }
.project-card .thumb:hover .meta { transform: translateY(0); }
.project-card .cats { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.project-card .cats span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(231,190,105,0.5);
  padding: 4px 12px;
  border-radius: 999px;
}
.project-card .meta h3 { color: var(--c-white); font-size: 1.4rem; margin-bottom: 4px; }
.project-card .meta .loc { color: rgba(255,255,255,0.8); font-size: 0.86rem; display: block; line-height: 1.5; }
.card-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 24px;
  border-top: 1px solid var(--c-line);
}
.card-foot span { font-size: 0.88rem; color: var(--c-muted); }
.card-foot a { font-size: 0.9rem; font-weight: 600; color: var(--c-gold-3); transition: color 0.3s; }
.card-foot a:hover { color: var(--c-navy); }

.turnkey-strip {
  background: linear-gradient(120deg, var(--c-navy), var(--c-navy-3));
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.turnkey-strip .tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.turnkey-strip .tags span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  border: 1px solid rgba(231,190,105,0.5);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.turnkey-strip p { max-width: 640px; margin: 0 auto 26px; font-size: 0.97rem; }

/* ---------- Testimonials ---------- */
.testi-slider { max-width: 860px; margin: 0 auto; position: relative; }
.testi-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 50px 54px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: none;
}
.testi-card.active { display: block; animation: fadeUp 0.6s ease; }
.testi-card .stars { color: var(--c-gold); font-size: 1.15rem; letter-spacing: 5px; margin-bottom: 20px; }
.testi-card blockquote {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--c-ink);
  margin-bottom: 28px;
}
.testi-card .who { display: flex; align-items: center; justify-content: center; gap: 16px; }
.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-3));
  color: var(--c-gold-2);
  font-weight: 600;
  font-size: 1.1rem;
  display: grid; place-items: center;
  border: 2px solid var(--c-gold);
}
.testi-card .who b { display: block; font-size: 1rem; color: var(--c-navy); }
.testi-card .who span { font-size: 0.84rem; color: var(--c-muted); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testi-nav button {
  width: 44px; height: 44px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-navy);
  transition: all 0.3s;
}
.testi-nav button:hover { background: var(--c-navy); color: var(--c-gold-2); border-color: var(--c-navy); }
.testi-nav svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, rgba(6,24,51,0.96), rgba(16,51,92,0.9)), url(../assets/img/hero-3.jpg) center/cover;
  color: var(--c-white);
  padding: 88px 0;
  text-align: center;
}
.cta-band h2 { color: var(--c-white); margin-bottom: 14px; }
.cta-band h2 em { color: var(--c-gold-2); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto 32px; font-size: 1.02rem; }

/* ---------- Lead capture section ---------- */
.lead-section {
  background: linear-gradient(160deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  padding: 30px 0;
  border-top: 1px solid var(--c-line);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.lead-copy h2 { margin-bottom: 16px; }
.lead-text { color: var(--c-muted); margin-bottom: 30px; }
.commit-list { display: grid; gap: 18px; margin-bottom: 30px; }
.commit-list li { display: flex; gap: 16px; align-items: flex-start; }
.commit-list .ci {
  flex: none;
  width: 46px; height: 46px;
  background: var(--c-white);
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.commit-list .ci svg { width: 22px; height: 22px; stroke: var(--c-gold-3); }
.commit-list li b { display: block; color: var(--c-navy); font-size: 1.02rem; }
.commit-list li p { color: var(--c-muted); font-size: 0.9rem; }
.commit-list.dark .ci { background: rgba(255,255,255,0.08); border: 1px solid rgba(231,190,105,0.4); }
.commit-list.dark .ci svg { stroke: var(--c-gold-2); }
.commit-list.dark li b { color: var(--c-white); }
.commit-list.dark li p { color: rgba(255,255,255,0.7); }
.lead-quote {
  background: var(--c-white);
  border-left: 4px solid var(--c-gold);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.lead-quote p { font-size: 0.95rem; font-style: italic; color: var(--c-ink); margin-bottom: 8px; }
.lead-quote span { font-size: 0.84rem; color: var(--c-gold-3); font-weight: 600; }

.lead-form-wrap .form-card { box-shadow: var(--shadow-md); }
.form-intro { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 26px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 500; letter-spacing: 0.03em; margin-bottom: 8px; color: var(--c-navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-cream);
  outline: none;
  transition: all 0.3s;
  color: var(--c-ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(216,164,78,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.83rem; color: var(--c-muted); margin-top: 14px; }

/* ---------- Contact page ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 60px; }
.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: all 0.35s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .cicon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--c-cream);
  display: grid; place-items: center;
}
.contact-card .cicon svg { width: 27px; height: 27px; stroke: var(--c-gold-3); }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { color: var(--c-muted); font-size: 0.93rem; }
.contact-card a:hover { color: var(--c-gold-3); }
.contact-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: grayscale(0.3) contrast(1.05); }
.side-commit {
  background: linear-gradient(140deg, var(--c-navy), var(--c-navy-3));
  color: var(--c-white);
  border-radius: var(--radius);
  padding: 38px 32px;
  margin-bottom: 30px;
}
.side-commit h3 { color: var(--c-white); margin-bottom: 20px; }
.side-testi {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 22px;
}
.side-testi .stars { color: var(--c-gold-2); letter-spacing: 4px; margin-bottom: 10px; font-size: 0.95rem; }
.side-testi p { font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.88); margin-bottom: 8px; }
.side-testi span { font-size: 0.8rem; color: var(--c-gold-2); font-weight: 600; }

/* ---------- Blog toolbar ---------- */
.blog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.blog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 12px 22px;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  box-shadow: var(--shadow-sm);
}
.blog-search svg { width: 18px; height: 18px; fill: var(--c-muted); flex: none; }
.blog-search input { border: none; outline: none; background: transparent; flex: 1; color: var(--c-ink); font-size: 0.95rem; }
.blog-cats { display: flex; gap: 10px; flex-wrap: wrap; }
.bcat {
  padding: 10px 20px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--c-ink);
  background: var(--c-white);
  transition: all 0.3s;
}
.bcat:hover, .bcat.active { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); }

/* ---------- Blog layout ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 330px; gap: 44px; align-items: start; }
.featured-post {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 44px;
}
.fp-img { overflow: hidden; }
.fp-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; transition: transform 0.7s; }
.featured-post:hover .fp-img img { transform: scale(1.05); }
.fp-body { padding: 40px 38px; display: flex; flex-direction: column; align-items: flex-start; }
.fp-badge {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-3);
  background: rgba(216,164,78,0.1);
  border: 1px solid var(--c-gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.fp-body h2 { font-size: 1.7rem; margin-bottom: 12px; }
.fp-body h2 a:hover { color: var(--c-gold-3); }
.fp-body p { color: var(--c-muted); margin-bottom: 18px; }
.fp-meta { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 22px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-card .thumb { height: 210px; overflow: hidden; position: relative; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.post-card:hover .thumb img { transform: scale(1.08); }
.post-card .cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.post-card .body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--c-muted); margin-bottom: 10px; }
.post-card h3 { font-size: 1.22rem; line-height: 1.35; margin-bottom: 10px; }
.post-card h3 a:hover { color: var(--c-gold-3); }
.post-card p { color: var(--c-muted); font-size: 0.92rem; flex: 1; }
.post-card .read {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem;
  color: var(--c-gold-3);
}
.post-card .read svg { width: 15px; height: 15px; fill: currentColor; }
.blog-empty { text-align: center; color: var(--c-muted); padding: 40px 0; }

/* ---------- Blog sidebar ---------- */
.blog-side { display: grid; gap: 26px; position: sticky; top: 100px; }
.side-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.side-card p { color: var(--c-muted); font-size: 0.92rem; margin-bottom: 16px; }
.side-form { display: grid; gap: 12px; }
.side-form input {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-cream);
  outline: none;
  color: var(--c-ink);
}
.side-form input:focus { border-color: var(--c-gold); background: var(--c-white); }
.news-ok { color: var(--c-gold-3); font-size: 0.88rem; font-weight: 600; margin-top: 10px; display: none; }
.lead-card { background: linear-gradient(140deg, var(--c-navy), var(--c-navy-3)); }
.lead-card h3 { color: var(--c-white); }
.lead-card p { color: rgba(255,255,255,0.75); }
.side-cats li + li { margin-top: 10px; }
.side-cats a { display: block; font-size: 0.92rem; font-weight: 500; color: var(--c-ink); padding: 9px 14px; border-radius: 9px; transition: all 0.25s; }
.side-cats a:hover { background: var(--c-cream); color: var(--c-gold-3); padding-left: 18px; }

/* ---------- Article pages ---------- */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article { max-width: 820px; }
.article-hero { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 34px; }
.article-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--c-navy);
  border-left: 4px solid var(--c-gold);
  padding-left: 22px;
  margin-bottom: 26px;
}
.article p { color: var(--c-muted); margin-bottom: 18px; }
.article h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.article ul { list-style: none; margin-bottom: 20px; }
.article ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--c-muted);
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-gold);
}
.article a { color: var(--c-gold-3); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--c-navy); }
.commit-box {
  background: linear-gradient(120deg, var(--c-navy), var(--c-navy-3));
  border-radius: 18px;
  padding: 38px 40px;
  margin-top: 34px;
  color: rgba(255,255,255,0.85);
}
.commit-box h3 { color: var(--c-gold-2); margin-bottom: 10px; }
.commit-box p { color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.article-side { display: grid; gap: 24px; position: sticky; top: 100px; }

/* ---------- Footer ---------- */
.footer { background: var(--c-navy); color: rgba(255,255,255,0.75); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 56px; }
.footer .f-logo { height: 44px; width: auto; margin-bottom: 18px; }
.footer h4 { color: var(--c-white); font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
.footer-about p { font-size: 0.93rem; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s;
}
.footer-socials a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); }
.footer-socials a:hover { background: var(--c-gold); border-color: var(--c-gold); }
.footer-socials a:hover svg { fill: var(--c-navy); }

/* Strategic IT Partner (centered strip) */
.footer-partner {
  text-align: center;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}
.footer-partner span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-2);
  margin-bottom: 14px;
}
.footer-partner a {
  display: inline-flex;
  background: #ffffff;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-partner a:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35); }
.footer-partner img { height: 36px; width: auto; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.93rem;
  transition: all 0.3s;
}
.footer-links a::before { content: "›"; color: var(--c-gold-2); font-size: 1.05rem; line-height: 1; }
.footer-links a:hover { color: var(--c-gold-2); padding-left: 5px; }
.f-contact li { display: flex; gap: 14px; margin-bottom: 16px; font-size: 0.92rem; }
.f-contact svg { width: 18px; height: 18px; flex: none; fill: var(--c-gold-2); margin-top: 4px; }
.f-contact a:hover { color: var(--c-gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  font-size: 0.86rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--c-gold-2); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 86px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-navy);
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.4s;
  z-index: 80;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--c-gold-2); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- WhatsApp float (fixed, bottom-right) ---------- */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
/* Subtle pulse ring */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: wa-pulse 2.8s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}
.wa-float:hover {
  transform: scale(1.09);
  background: #1fce5f;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
/* Hover tooltip label (desktop only) */
.wa-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--c-navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.wa-tip::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--c-navy);
}
@media (hover: hover) {
  .wa-float:hover .wa-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}

/* ---------- Book Now side tab (fixed, left, vertically centered) ---------- */
.contact-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  background: linear-gradient(180deg, var(--c-gold-2) 0%, var(--c-gold) 45%, var(--c-gold-3) 100%);
  color: var(--c-navy);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 6px 20px rgba(184, 134, 58, 0.4);
  z-index: 90;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.contact-tab svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.contact-tab-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.contact-tab:hover {
  transform: translateY(-50%) translateX(7px);
  filter: brightness(1.06);
  box-shadow: 0 12px 30px rgba(184, 134, 58, 0.55);
}
.contact-tab:active { transform: translateY(-50%) translateX(3px); }
.contact-tab:focus-visible { outline: 2px solid var(--c-gold-3); outline-offset: 3px; }

/* ================= BOOK NOW MODAL ================= */
.book-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 24, 51, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.book-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.book-modal {
  background: var(--c-white);
  border-radius: 20px;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
  padding: 40px 38px 34px;
  box-shadow: 0 24px 60px rgba(6, 24, 51, 0.35);
  border: 1px solid rgba(216, 164, 78, 0.25);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.book-modal-overlay.show .book-modal {
  transform: translateY(0) scale(1);
}
.book-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: none;
  background: var(--c-cream);
  color: var(--c-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.book-modal-close:hover {
  background: var(--c-navy);
  color: var(--c-gold-2);
  transform: rotate(90deg);
}
.book-modal-close:focus-visible { outline: 2px solid var(--c-gold-3); outline-offset: 2px; }

.book-modal-inner { text-align: center; }
.book-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-3);
  background: rgba(216, 164, 78, 0.12);
  border: 1px solid rgba(216, 164, 78, 0.3);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.book-modal-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.book-modal-title em.gold { font-style: italic; color: var(--c-gold-3); }
.book-modal-sub {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-bottom: 26px;
  line-height: 1.6;
}

#book-form { text-align: left; }
.book-field { margin-bottom: 16px; }
.book-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.book-field .req { color: var(--c-gold-3); }
.book-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: #fbfaf8;
  color: var(--c-ink);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.book-field input::placeholder { color: #9aa7b8; }
.book-field input:focus {
  border-color: var(--c-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(216, 164, 78, 0.15);
}
.book-field input.invalid {
  border-color: #c0392b;
  background: #fdf6f5;
}
.book-error {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #c0392b;
  margin-top: 5px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.book-error.show {
  opacity: 1;
  transform: translateY(0);
}

.book-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 6px;
}
.book-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-top: 16px;
}
.book-note a { color: var(--c-gold-3); font-weight: 600; text-decoration: none; }
.book-note a:hover { text-decoration: underline; }

/* Success state */
.book-success {
  text-align: center;
  padding: 12px 4px 4px;
}
.book-success-icon {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-2), var(--c-gold));
  color: var(--c-navy);
  box-shadow: var(--shadow-gold);
  animation: book-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.book-success-icon svg { width: 38px; height: 38px; fill: currentColor; }
@keyframes book-pop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.book-success p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 26px;
}
.book-done {
  justify-content: center;
  padding: 13px 38px;
  border-radius: 10px;
  font-weight: 700;
}

/* Book modal responsive */
@media (max-width: 480px) {
  .book-modal { padding: 32px 22px 26px; border-radius: 16px; }
  .book-modal-title { font-size: 1.4rem; }
  .book-modal-overlay { padding: 14px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
  .wa-float, .contact-tab, .book-modal, .book-modal-overlay { transition: none; }
  .book-success-icon { animation: none; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hide { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .header-cta .btn-sm { display: none; }
  .nav { gap: 16px; }
  .nav > li > a { font-size: 0.9rem; }
}

@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .showcase-block { grid-template-columns: 1fr; gap: 44px; }
  .show-media img { height: 380px; }
  .sol-block { grid-template-columns: 1fr; gap: 36px; }
  .sol-media img { height: 340px; }
  .two-col { grid-template-columns: 1fr; }
  .steps-flow { grid-template-columns: 1fr; }
  .md-flex { grid-template-columns: 1fr; }
  .md-flex img { height: 300px; max-width: 340px; }
  .md-box { grid-template-columns: 1fr; padding: 36px; }
  .md-photo img { height: 300px; max-width: 320px; }
  .lead-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-side { position: static; grid-template-columns: 1fr 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-side { position: static; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .topbar-right { display: none; }
  .topbar-left, .topbar-center { justify-content: center; width: 100%; }
  .nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0B2240; /* same dark navy as the header bar */
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 110px 8% 40px;
    overflow-y: auto;
    z-index: 100;
  }
  .nav.open { display: flex; animation: navSlide 0.45s ease; }
  @keyframes navSlide { from { transform: translateX(100%); } to { transform: none; } }
  .nav > li { width: 100%; }
  .nav > li > a {
    color: rgba(255,255,255,0.92);
    font-size: 1.15rem;
    padding: 12px 0;
    font-family: var(--font-head);
    width: 100%;
    justify-content: space-between;
  }
  .nav > li > a::after { display: none; }
  .nav .caret { transform: rotate(-90deg); }
  .nav > li.open .caret { transform: rotate(0deg); }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 6px 14px;
    min-width: 0;
    display: none;
    width: 100%;
  }
  .nav > li.open .dropdown { display: block; animation: fadeUp 0.4s ease; }
  .dropdown a { color: rgba(255,255,255,0.75); font-size: 0.98rem; padding: 9px 14px; }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--c-gold-2); padding-left: 18px; }
  .hamburger { display: flex; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 110px 0 90px; }
  .hero-nav { bottom: 26px; right: 4%; }
  .hero-dots { bottom: 40px; left: 4%; }
  .hero-stats { gap: 26px; margin-top: 40px; }
  .hero-scroll { display: none; }
  .page-hero { padding: 60px 0 40px; }
  .section { padding: 50px 0; }
  .trust-grid, .diff-grid, .steps-grid, .values-grid, .vp-grid, .cap-grid,
  .gallery-grid, .why-grid, .blog-side, .article-side, .contact-cards,
  .blog-grid { grid-template-columns: 1fr; }
  .show-media img { height: 300px; }
  .sol-media img { height: 260px; }
  .md-box { padding: 28px 24px; }
  .md-strip, .lead-section { padding: 64px 0; }
  .promise-box { flex-direction: column; padding: 32px 26px; }
  .turnkey-strip { padding: 32px 24px; }
  .fp-body { padding: 28px 24px; }
  .featured-post { grid-template-columns: 1fr; }
  .fp-img img { min-height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { max-width: none; }
  .testi-card { padding: 34px 24px; }
  .article-hero { height: 260px; }
  .commit-box { padding: 30px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .dir-card { padding: 32px 26px; }
  .showcase-block { margin-bottom: 60px; }
  .show-media::before { display: none; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .lead-grid { gap: 44px; }
}

/* ================= FAQ ================= */
.faq-section {
  padding: 30px 0;
  background: var(--c-white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-white);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--c-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-gold);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 24px 24px;
  color: var(--c-muted);
  margin: 0;
}

/* FAQ Block Section */
.faq-block {
  background: var(--c-cream);
}
.faq-block .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================= STATIC HERO ================= */
.hero-static {
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* ================= METRIC CARDS ================= */
.metric-cards-section {
  padding: 50px 0;
  background: var(--c-cream);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.metric-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--c-line);
}
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}
.metric-card .m-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--c-gold);
}
.metric-card .m-icon svg {
  width: 100%;
  height: 100%;
}
.metric-card .m-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.metric-card .m-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
}

@media (max-width: 1024px) {
  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
}


.hero-static-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* ================= OFFER MODAL ================= */
.offer-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 24, 51, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}
.offer-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.offer-modal-content {
  background: var(--c-white);
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
}
.offer-modal-overlay.show .offer-modal-content {
  transform: translateY(0) scale(1);
}
.offer-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 2rem;
  line-height: 1;
  color: var(--c-muted);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}
.offer-modal-close:hover {
  color: var(--c-navy);
}
.offer-modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-modal-right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-list {
  margin-bottom: 24px;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--c-ink);
}
.offer-list li svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
}
.offer-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: #f9f9f9;
  outline: none;
  transition: border 0.3s;
  margin-bottom: 12px;
}
.offer-form input:focus {
  border-color: var(--c-gold);
}

@media (max-width: 768px) {
  .offer-modal-content {
    grid-template-columns: 1fr;
  }
  .offer-modal-left {
    display: none;
  }
  .offer-modal-right {
    padding: 30px 24px;
  }
}
.hero-static-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(6,24,51,0.92) 0%, rgba(6,24,51,0.7) 40%, rgba(6,24,51,0.4) 100%);
}
.hero-static-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-static-left h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: 24px;
}
.hero-static-left h1 em {
  color: var(--c-gold);
  font-style: italic;
}
.hero-static-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.hero-trust-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-card-mini {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 20px;
  border-radius: 12px;
  color: #fff;
  min-width: 140px;
}
.trust-card-mini .tc-val {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1.2;
  margin-bottom: 4px;
}
.trust-card-mini span {
  font-size: 0.85rem;
  opacity: 0.9;
}
.hero-form-box {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.hero-form-box p {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.hero-form-box .form-group {
  margin-bottom: 16px;
}
.hero-form-box input, .hero-form-box select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: #f9f9f9;
  outline: none;
  transition: border 0.3s;
}
.hero-form-box input:focus, .hero-form-box select:focus {
  border-color: var(--c-gold);
}

@media (max-width: 900px) {
  .hero-static-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-static-bg::before {
    background: rgba(6,24,51,0.85);
  }
  .hero-trust-cards {
    justify-content: center;
  }
}

/* ================= GOOGLE REVIEWS ================= */
.google-reviews-section {
  background: var(--c-cream);
}
.gr-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--c-white);
  padding: 20px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 420px;
  margin: 0 auto 40px;
  border: 1px solid var(--c-line);
}
.gr-badge-icon svg {
  display: block;
}
.gr-badge-score {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
}
.gr-badge-stars {
  color: #fbbc05;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.gr-badge-count {
  font-size: 0.85rem;
  color: var(--c-muted);
}
.gr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.gr-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.gr-card-head b {
  display: block;
  font-size: 0.95rem;
}
.gr-stars {
  color: #fbbc05;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.gr-g-icon {
  margin-left: auto;
  flex-shrink: 0;
}
.gr-card p {
  color: var(--c-ink);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.gr-date {
  font-size: 0.8rem;
  color: var(--c-muted);
}
.gr-cta {
  text-align: center;
}
.gr-btn {
  gap: 8px;
}
.gr-btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gr-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= URGENCY STICKY BAR ================= */
.urgency-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: linear-gradient(135deg, #061833 0%, #0d2d5e 100%);
  color: #fff;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.urgency-bar.show {
  transform: translateY(0);
}
.urgency-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  position: relative;
}
.urgency-pulse {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: urgency-blink 1.2s ease-in-out infinite;
}
@keyframes urgency-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.7); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}
.urgency-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.urgency-text strong {
  font-size: 0.95rem;
}
.urgency-sub {
  font-size: 0.8rem;
  opacity: 0.85;
}
.urgency-btn {
  flex-shrink: 0;
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
}
.urgency-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s;
  flex-shrink: 0;
}
.urgency-close:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .urgency-inner {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 10px;
  }
  .urgency-text strong {
    font-size: 0.85rem;
  }
  .urgency-sub {
    display: none;
  }
  .urgency-btn {
    width: 100%;
    justify-content: center;
    order: 3;
  }
  .urgency-close {
    position: absolute;
    top: 8px;
    right: 8px;
  }
}
    /* =========================================================
       HOMEPAGE REDESIGN — Inline Styles for new sections
       ========================================================= */

    /* ── ANNOUNCEMENT BAR ── */
    .announce-bar {
      background: var(--c-navy);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 9px 0;
      text-align: center;
      position: relative;
      z-index: 200;
    }
    .announce-bar .announce-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .announce-bar .announce-text {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .announce-bar .announce-text span.tag {
      background: var(--c-gold);
      color: var(--c-navy);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 0.78rem;
    }
    .announce-bar a { color: var(--c-gold); font-weight: 600; }
    .announce-countdown {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .announce-countdown .cd-label {
      font-size: 0.78rem;
      opacity: 0.8;
      margin-right: 4px;
    }
    .cd-box {
      background: var(--c-gold);
      color: var(--c-navy);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 2px 7px;
      border-radius: 4px;
      min-width: 28px;
      text-align: center;
    }
    .cd-sep { color: var(--c-gold); font-weight: 700; }

    /* ── NEW HERO ── */
    .hero-new {
      min-height: 100vh;
      background: var(--c-navy);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-new .hero-bg-img {
      position: absolute;
      inset: 0;
      background-image: url('../assets/img/hero-1.jpg');
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    .hero-new .hero-bg-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(6,24,51,0.7) 48%, rgba(6,24,51,0.3) 100%);
    }
    .hero-new .container { position: relative; z-index: 2; }
    .hero-split {
      display: grid;
      grid-template-columns: 1fr 420px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      margin-top: 44px;
    }
    .svc-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: transform 0.35s, box-shadow 0.35s;
    }
    .svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .svc-card .svc-img {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
    }
    .svc-card .svc-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .svc-card:hover .svc-img img { transform: scale(1.07); }
    .svc-card .svc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(6,24,51,0.9) 100%);
    }
    .svc-card .svc-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 18px 16px;
    }
    .svc-card .svc-title {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .svc-card .svc-desc {
      color: rgba(255,255,255,0.78);
      font-size: 0.75rem;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .svc-card .svc-price {
      color: var(--c-gold);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .svc-card .svc-btns {
      display: flex;
      gap: 6px;
    }
    .svc-card .svc-btns a {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 6px;
      transition: background 0.25s, color 0.25s;
    }
    .svc-card .svc-btns a.btn-view {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.3);
    }
    .svc-card .svc-btns a.btn-view:hover { background: rgba(255,255,255,0.3); }
    .svc-card .svc-btns a.btn-consult {
      background: var(--c-gold);
      color: var(--c-navy);
    }
    .svc-card .svc-btns a.btn-consult:hover { background: var(--c-gold-2); }
    .services-cta-row {
      margin-top: 44px;
      text-align: center;
    }

    /* ── FEATURED PROJECTS ── */
    .projects-section {
      background: var(--c-cream);
      padding: 30px 0;
    }
    .proj-carousel-wrap {
      position: relative;
      margin-top: 44px;
    }
    .proj-carousel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .proj-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform 0.35s, box-shadow 0.35s;
    }
    .proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .proj-card .proj-thumb {
      position: relative;
      overflow: hidden;
    }
    .proj-card .proj-thumb img {
      width: 100%; aspect-ratio: 16/10;
      object-fit: cover;
      transition: transform 0.45s;
    }
    .proj-card:hover .proj-thumb img { transform: scale(1.06); }
    .proj-card .proj-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--c-gold);
      color: var(--c-navy);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      text-transform: uppercase;
    }
    .proj-card .proj-info {
      padding: 20px;
    }
    .proj-card .proj-info h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--c-navy);
    }
    .proj-meta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
    }
    .proj-meta-item {
      display: flex;
      align-items: flex-start;
      gap: 5px;
    }
    .proj-meta-item svg {
      width: 14px; height: 14px;
      fill: var(--c-gold);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .proj-meta-item .pm-label { font-size: 0.68rem; color: var(--c-muted); }
    .proj-meta-item .pm-val { font-size: 0.8rem; font-weight: 600; color: var(--c-navy); }
    .proj-card .proj-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--c-navy);
      padding: 8px 16px;
      border: 1.5px solid var(--c-line);
      border-radius: 8px;
      transition: all 0.25s;
    }
    .proj-card .proj-more-btn:hover {
      background: var(--c-navy);
      color: #fff;
      border-color: var(--c-navy);
    }
    .proj-carousel-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
    }
    .proj-carousel-nav button {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--c-navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s;
    }
    .proj-carousel-nav button:hover { background: var(--c-gold); color: var(--c-navy); }
    .proj-carousel-nav button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
    .proj-cta-row {
      text-align: center;
      margin-top: 40px;
    }

    /* ── TRUST + PROCESS ── */
    .trust-process-section {
      background: #fff;
      padding: 30px 0;
    }
    .trust-process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    /* Trust side */
    .trust-side h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      margin-bottom: 28px;
      color: var(--c-navy);
    }
    .trust-side h2 em { font-style: normal; color: var(--c-gold-3); }
    .trust-list { display: flex; flex-direction: column; gap: 18px; }
    .trust-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .trust-item .t-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--c-gold), var(--c-gold-2));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-item .t-icon svg {
      width: 18px; height: 18px;
      fill: var(--c-navy);
    }
    .trust-item .t-text h4 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--c-navy);
      margin-bottom: 2px;
    }
    .trust-item .t-text p {
      font-size: 0.82rem;
      color: var(--c-muted);
      line-height: 1.5;
    }

    /* Process side */
    .process-side h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      margin-bottom: 28px;
      color: var(--c-navy);
    }
    .process-steps {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 12px 8px;
      align-items: center;
    }
    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .ps-circle {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--c-cream);
      border: 2.5px solid var(--c-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .ps-circle svg {
      width: 26px; height: 26px;
      fill: var(--c-gold-3);
    }
    .ps-num {
      position: absolute;
      top: -6px; right: -6px;
      width: 20px; height: 20px;
      background: var(--c-gold);
      color: var(--c-navy);
      border-radius: 50%;
      font-size: 0.65rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ps-label {
      font-size: 0.73rem;
      font-weight: 600;
      color: var(--c-navy);
      text-align: center;
    }
    .ps-arrow {
      font-size: 1.2rem;
      color: var(--c-gold-3);
      margin-top: -20px;
      line-height: 1;
    }
    .process-cta-row {
      margin-top: 32px;
    }

    /* ── GOOGLE REVIEWS SECTION ── */
    .reviews-section {
      background: var(--c-cream);
      padding: 30px 0;
    }
    .reviews-top {
      display: flex;
      align-items: center;
      gap: 36px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .review-score-box {
      display: flex;
      align-items: center;
      gap: 18px;
      background: #fff;
      border-radius: 14px;
      padding: 20px 28px;
      box-shadow: var(--shadow-sm);
      flex-shrink: 0;
    }
    .review-score-box .rsb-score {
      font-size: 3rem;
      font-weight: 700;
      color: var(--c-navy);
      line-height: 1;
    }
    .review-score-box .rsb-stars {
      color: #FBBC05;
      font-size: 1.1rem;
      margin-bottom: 2px;
    }
    .review-score-box .rsb-count {
      font-size: 0.8rem;
      color: var(--c-muted);
    }
    .reviews-head h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.3rem);
      margin-bottom: 6px;
    }
    .reviews-head h2 em { font-style: normal; color: var(--c-gold-3); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .rev-card {
      background: #fff;
      border-radius: 14px;
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }
    .rev-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .rev-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--c-navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .rev-name { font-weight: 700; font-size: 0.9rem; color: var(--c-navy); }
    .rev-loc { font-size: 0.75rem; color: var(--c-muted); }
    .rev-stars { color: #FBBC05; font-size: 0.85rem; }
    .rev-text { font-size: 0.85rem; color: var(--c-muted); line-height: 1.6; font-style: italic; }
    .rev-g-logo {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 10px;
      font-size: 0.7rem;
      color: var(--c-muted);
      font-weight: 600;
    }
    .reviews-cta-row { text-align: center; margin-top: 36px; }

    /* ── FAQ SECTION ── */
    .faq-new-section {
      background: #fff;
      padding: 30px 0;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start;
    }
    .faq-new-list .faq-new-item {
      border-bottom: 1px solid var(--c-line);
    }
    .faq-new-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--c-navy);
      cursor: pointer;
      gap: 12px;
    }
    .faq-new-item summary::-webkit-details-marker { display: none; }
    .faq-new-item summary .faq-icon {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--c-cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      color: var(--c-gold-3);
      font-weight: 700;
      transition: background 0.25s, transform 0.25s;
    }
    .faq-new-item[open] summary .faq-icon {
      background: var(--c-gold);
      color: var(--c-navy);
      transform: rotate(45deg);
    }
    .faq-new-item p {
      padding: 0 0 16px;
      font-size: 0.88rem;
      color: var(--c-muted);
      line-height: 1.6;
    }
    .faq-help-widget {
      background: var(--c-navy);
      border-radius: 18px;
      padding: 32px 28px;
      color: #fff;
      position: sticky;
      top: 100px;
    }
    .faq-help-widget h3 {
      color: #fff;
      font-size: 1.15rem;
      margin-bottom: 8px;
    }
    .faq-help-widget p {
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      margin-bottom: 22px;
    }
    .faq-help-widget .wa-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 13px 20px;
      border-radius: 10px;
      transition: background 0.25s;
    }
    .faq-help-widget .wa-btn:hover { background: #128C7E; }
    .faq-help-widget .wa-btn svg { width: 20px; height: 20px; fill: #fff; }
    .faq-help-widget .chat-note {
      margin-top: 12px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      text-align: center;
    }

    /* ── STICKY BOTTOM CTA BAR ── */
    .sticky-cta-bar {
      position: fixed;
      bottom: 0;
      left: 0; right: 0;
      background: var(--c-navy);
      z-index: 999;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
      display: none;
    }
    .sticky-cta-bar.visible { display: block; }
    .sticky-cta-inner {
      display: flex;
      align-items: stretch;
    }
    .sticky-cta-inner a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 10px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #fff;
      border-right: 1px solid rgba(255,255,255,0.12);
      transition: background 0.25s;
    }
    .sticky-cta-inner a:last-child { border-right: none; }
    .sticky-cta-inner a.scta-call { background: rgba(255,255,255,0.05); }
    .sticky-cta-inner a.scta-wa { background: #128C7E; }
    .sticky-cta-inner a.scta-book { background: var(--c-gold); color: var(--c-navy); }
    .sticky-cta-inner a:hover { filter: brightness(1.1); }
    .sticky-cta-inner a svg { width: 18px; height: 18px; flex-shrink: 0; }
    .sticky-cta-inner a.scta-call svg { fill: #fff; }
    .sticky-cta-inner a.scta-wa svg { fill: #fff; }
    .sticky-cta-inner a.scta-book svg { fill: var(--c-navy); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 100px 0 60px; }
      .hero-form-card { max-width: 540px; }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .proj-carousel { grid-template-columns: 1fr 1fr; }
      .trust-process-grid { grid-template-columns: 1fr; gap: 40px; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .faq-layout { grid-template-columns: 1fr; }
      .faq-help-widget { position: static; }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .proj-carousel { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .stats-bar-inner { justify-content: center; }
      .sb-divider { display: none; }
      .hero-google-badge { gap: 8px; }
      .announce-countdown { display: none; }
      .sticky-cta-bar { display: block; }
    }
    @media (min-width: 641px) {
      .sticky-cta-bar { display: block; }
    }

    /* ── HOMEPAGE SPECIFIC (MISSING STYLES) ── */
    .announce-bar { background: #fdfbf7; padding: 12px 0; border-bottom: 1px solid var(--c-line); }
    .announce-inner { display: flex; align-items: center; justify-content: space-between; }
    .announce-text { font-size: 0.9rem; font-weight: 600; color: #111; display:flex; align-items:center; }
    .announce-text .tag { background: var(--c-gold); color: #fff; padding: 3px 10px; border-radius: 4px; font-weight: 700; margin: 0 12px; font-size: 0.75rem; letter-spacing: 0.05em; text-transform:uppercase; }
    .announce-text a { font-weight: 700; text-decoration: underline; color: var(--c-navy); }

    .hero-new { position: relative; min-height: auto; display: flex; align-items: center; overflow: hidden; padding: 20px 0; }
    .hero-bg-img { position: absolute; inset: 0; background: url('../assets/img/hero-1.jpg') center/cover no-repeat; z-index: 1; }
    .hero-bg-grad { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,24,51,0.65) 0%, rgba(6,24,51,0.4) 50%, rgba(6,24,51,0.1) 100%); z-index: 2; }
    .hero-new .container { position: relative; z-index: 10; }
    .hero-split { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; }
    .hero-left { color: #fff; }
    .hero-left h1 { color: #fff; margin-bottom: 24px; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.1; }
    .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 600px; }
    .hero-perks { display: flex; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
    .hero-perk { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; }
    .hero-perk svg { width: 22px; height: 22px; fill: none; stroke: var(--c-gold); stroke-width: 2; }
    .hero-google-badge { display: flex; align-items: center; gap: 32px; background: rgba(255,255,255,0.05); padding: 16px 28px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); width: fit-content; }
    .hero-g-item { display: flex; align-items: center; gap: 12px; }
    .g-num { font-size: 1.5rem; font-weight: 700; line-height: 1; margin-bottom: 4px; }
    .g-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; line-height: 1.2; }
    .hero-g-stars { color: #FBBC05; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 2px; }

    .hero-form-card { background: var(--c-navy); border-radius: 16px; padding: 40px 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); }
    .form-head h3 { font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
    .form-head p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 24px; }
    .hf-group { margin-bottom: 16px; }
    .hf-group input, .hf-group select, .hf-group textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-size: 0.95rem; color: var(--c-ink); background: #fff; outline: none; transition: border-color 0.3s; }
    .hf-group input:focus, .hf-group select:focus, .hf-group textarea:focus { border-color: var(--c-gold); }
    .hf-group textarea { resize: vertical; min-height: 100px; }
    .btn-submit { width: 100%; display: block; padding: 16px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 8px; margin-top: 16px; border: none; cursor: pointer; background: var(--c-gold); color: var(--c-navy); transition: background 0.3s, transform 0.3s; }
    .btn-submit:hover { background: var(--c-gold-2); transform: translateY(-2px); }

    .stats-bar { background: var(--c-navy); padding: 16px 0; color: #fff; margin: 10px auto 20px auto; position: relative; z-index: 20; border-radius: 16px; width: min(1240px, 92%); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
    .stats-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 40px; }
    .sb-item { display: flex; align-items: center; gap: 16px; }
    .sb-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; border: 1px solid rgba(216,164,78,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .sb-icon svg { width: 24px; height: 24px; stroke: var(--c-gold); stroke-width: 2; fill: none; display: block; }
    .sb-num { font-size: 1.4rem; font-weight: 700; line-height: 1.2; color: #fff; }
    .sb-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
    .sb-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
    .reviews-cta-row { text-align: center; margin-top: 36px; }

    /* ── FAQ SECTION ── */
    .faq-new-section {
      background: #fff;
      padding: 30px 0;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start;
    }
    .faq-new-list .faq-new-item {
      border-bottom: 1px solid var(--c-line);
    }
    .faq-new-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--c-navy);
      cursor: pointer;
      gap: 12px;
    }
    .faq-new-item summary::-webkit-details-marker { display: none; }
    .faq-new-item summary .faq-icon {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--c-cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      color: var(--c-gold-3);
      font-weight: 700;
      transition: background 0.25s, transform 0.25s;
    }
    .faq-new-item[open] summary .faq-icon {
      background: var(--c-gold);
      color: var(--c-navy);
      transform: rotate(45deg);
    }
    .faq-new-item p {
      padding: 0 0 16px;
      font-size: 0.88rem;
      color: var(--c-muted);
      line-height: 1.6;
    }
    .faq-help-widget {
      background: var(--c-navy);
      border-radius: 18px;
      padding: 32px 28px;
      color: #fff;
      position: sticky;
      top: 100px;
    }
    .faq-help-widget h3 {
      color: #fff;
      font-size: 1.15rem;
      margin-bottom: 8px;
    }
    .faq-help-widget p {
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      margin-bottom: 22px;
    }
    .faq-help-widget .wa-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 13px 20px;
      border-radius: 10px;
      transition: background 0.25s;
    }
    .faq-help-widget .wa-btn:hover { background: #128C7E; }
    .faq-help-widget .wa-btn svg { width: 20px; height: 20px; fill: #fff; }
    .faq-help-widget .chat-note {
      margin-top: 12px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      text-align: center;
    }

    /* ── STICKY BOTTOM CTA BAR ── */
    .sticky-cta-bar {
      position: fixed;
      bottom: 0;
      left: 0; right: 0;
      background: var(--c-navy);
      z-index: 999;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
      display: none;
    }
    .sticky-cta-bar.visible { display: block; }
    .sticky-cta-inner {
      display: flex;
      align-items: stretch;
    }
    .sticky-cta-inner a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 10px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #fff;
      border-right: 1px solid rgba(255,255,255,0.12);
      transition: background 0.25s;
    }
    .sticky-cta-inner a:last-child { border-right: none; }
    .sticky-cta-inner a.scta-call { background: rgba(255,255,255,0.05); }
    .sticky-cta-inner a.scta-wa { background: #128C7E; }
    .sticky-cta-inner a.scta-book { background: var(--c-gold); color: var(--c-navy); }
    .sticky-cta-inner a:hover { filter: brightness(1.1); }
    .sticky-cta-inner a svg { width: 18px; height: 18px; flex-shrink: 0; }
    .sticky-cta-inner a.scta-call svg { fill: #fff; }
    .sticky-cta-inner a.scta-wa svg { fill: #fff; }
    .sticky-cta-inner a.scta-book svg { fill: var(--c-navy); }
    /* ── BEFORE / AFTER SLIDER ── */
    .ba-slider-container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 20px; }
    .ba-slider { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: ew-resize; }
    .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
    .ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
    .ba-after { width: 50%; border-right: 2px solid var(--c-gold); }
    .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 40px; transform: translateX(-50%); z-index: 10; pointer-events: none; }
    .ba-handle-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--c-gold); transform: translateX(-50%); }
    .ba-handle-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: var(--c-gold); border-radius: 50%; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 10px rgba(0,0,0,0.3); padding: 0 4px; }
    .ba-handle-button svg { width: 14px; height: 14px; stroke: #fff; flex-shrink: 0; }
    .ba-label { position: absolute; bottom: 20px; padding: 6px 14px; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; z-index: 5; pointer-events: none; }
    .ba-label-before { right: 20px; }
    .ba-label-after { left: 20px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero-split { grid-template-columns: 1fr; gap: 40px; padding: 20px 0; }
      .hero-form-card { max-width: 540px; margin: 0 auto; }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .proj-carousel { grid-template-columns: 1fr 1fr; }
      .trust-process-grid { grid-template-columns: 1fr; gap: 40px; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .faq-layout { grid-template-columns: 1fr; }
      .faq-help-widget { position: static; }
      .stats-bar-inner { flex-wrap: wrap; gap: 16px; padding: 10px; }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .proj-carousel { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .stats-bar-inner { flex-wrap: wrap; justify-content: center; gap: 20px; }
      .sb-divider { display: none; }
      .hero-google-badge { gap: 8px; justify-content: center; }
      .announce-countdown { display: none; }
      .sticky-cta-bar { display: block; }
    }
    @media (min-width: 641px) {
      .sticky-cta-bar { display: block; }
    }

    /* ── HOMEPAGE SPECIFIC (MISSING STYLES) ── */
    .announce-bar { display: none !important; }
    .announce-inner { display: flex; align-items: center; justify-content: space-between; }
    .announce-text { font-size: 0.9rem; font-weight: 600; color: #111; display:flex; align-items:center; }
    .announce-text .tag { background: var(--c-gold); color: #fff; padding: 3px 10px; border-radius: 4px; font-weight: 700; margin: 0 12px; font-size: 0.75rem; letter-spacing: 0.05em; text-transform:uppercase; }
    .announce-text a { font-weight: 700; text-decoration: underline; color: var(--c-navy); }

/* ==========================================================
   GLOBAL MOBILE RESPONSIVENESS — covers all pages & sections
   ========================================================== */

/* ── Small desktops / tablets (1024px) ── */
@media (max-width: 1024px) {
  .topbar { display: none; }
  .header .container { padding: 14px 0; }
  .logo img { height: 44px; }
  .hero-content { padding: 90px 0 70px; }
  .page-hero { padding: 70px 0 40px; }
  .sec-head { margin-bottom: 36px; }
  .showcase-block { gap: 40px; }
  .sol-block { gap: 36px; }
  .md-flex { gap: 36px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
}

/* ── Tablets (768px) ── */
@media (max-width: 768px) {
  /* Layout */
  .container { width: 94%; }
  .section { padding: 40px 0; }
  .page-hero { padding: 50px 0 30px; }
  .sec-head { margin-bottom: 28px; }
  .sec-head p { font-size: 0.95rem; }

  /* Topbar hidden */
  .topbar { display: none; }

  /* Header */
  .header .container { padding: 12px 0; }
  .logo img { height: 40px; }
  .hamburger { display: flex; }

  /* Mobile nav overlay */
  .nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    background: #0B2240; /* same dark navy as the header bar */
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 100px 8% 40px;
    overflow-y: auto;
    z-index: 100;
  }
  .nav.open { display: flex; animation: navSlide 0.4s ease; }
  .nav > li { width: 100%; }
  .nav > li > a { color: rgba(255,255,255,0.92); font-size: 1.1rem; padding: 12px 0; width: 100%; justify-content: space-between; }
  .nav > li > a::after { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; box-shadow: none; border: none; padding: 0 0 6px 16px; min-width: 0; display: none; width: 100%; }
  .nav > li.open .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,0.75); font-size: 0.95rem; padding: 9px 14px; }
  .header-cta .btn-sm { display: none; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-content { padding: 80px 0 60px; max-width: 100%; }
  .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-content p { font-size: 0.97rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; margin-top: 32px; }
  .hero-stats .stat b { font-size: 1.8rem; }
  .hero-nav { bottom: 20px; right: 4%; }
  .hero-dots { bottom: 34px; left: 4%; }
  .hero-scroll { display: none; }

  /* Homepage hero-new (split layout) */
  .hero-new { padding: 70px 0 40px; min-height: auto; }
  .hero-split { grid-template-columns: 1fr !important; gap: 32px; padding: 0; }
  .hero-form-card { max-width: 100%; padding: 28px 20px; }
  .hero-left h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); margin-bottom: 16px; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 24px; }
  .hero-perks { gap: 12px; margin-bottom: 24px; }
  .hero-google-badge { flex-direction: row; flex-wrap: wrap; gap: 10px; padding: 12px 14px; width: 100%; }
  .hero-g-item { flex: 1 1 auto; justify-content: flex-start; }

  /* Stats bar — fix huge SVG icon bug on mobile */
  .stats-bar { padding: 16px 0; margin: 16px auto; }
  .stats-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 12px; flex-wrap: unset; justify-content: unset; }
  .sb-item { flex-direction: row; align-items: center; gap: 10px; }
  .sb-icon { width: 36px !important; height: 36px !important; min-width: 36px; flex-shrink: 0; }
  .sb-icon svg { width: 18px !important; height: 18px !important; }
  .sb-divider { display: none; }
  .sb-num { font-size: 1rem; }
  .sb-label { font-size: 0.68rem; }

  /* Services */
  .services-section { padding: 40px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
  .service-card { padding: 24px 16px; }

  /* Projects */
  .projects-section { padding: 40px 0; }
  .proj-carousel { grid-template-columns: 1fr !important; gap: 20px; }
  .proj-card { display: flex; flex-direction: column; }
  .proj-thumb img { height: 220px; }
  .proj-info { padding: 20px; }
  .proj-meta-grid { gap: 10px; }
  .proj-more-btn { width: 100%; justify-content: center; margin-top: 16px; }

  /* Before/After Slider */
  .ba-slider-container { padding: 0; }
  .ba-slider { aspect-ratio: 4/3; }

  /* Services section */
  .section-services .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Reviews */
  .reviews-section { padding: 40px 0; }
  .reviews-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .review-card { padding: 24px 20px; }

  /* Trust/process */
  .trust-process-section { padding: 40px 0; }
  .trust-process-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-bar { padding: 40px 0; }

  /* FAQs */
  .faq-new-section { padding: 40px 0; }
  .faq-layout { grid-template-columns: 1fr !important; }
  .faq-help-widget { position: static; }
  .faq-section { padding: 40px 0; }
  .faq-item summary { padding: 16px 18px; font-size: 0.95rem; }

  /* Showcase */
  .showcase-block { grid-template-columns: 1fr !important; gap: 30px; margin-bottom: 50px; }
  .show-media img { height: 260px; }
  .show-media::before { display: none; }
  .showcase-block.flip { direction: ltr; }

  /* Solution blocks */
  .sol-block { grid-template-columns: 1fr !important; gap: 28px; }
  .sol-media img { height: 260px; }

  /* Grids */
  .two-col { grid-template-columns: 1fr; gap: 20px; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .vp-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cap-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid img { height: 160px; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .guarantee-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; gap: 18px; }
  .steps-flow { grid-template-columns: 1fr; gap: 16px; }

  /* MD Strip / box */
  .md-strip { padding: 50px 0; }
  .md-flex { grid-template-columns: 1fr; gap: 28px; }
  .md-flex img { height: 260px; max-width: 300px; margin: 0 auto; }
  .md-box { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
  .md-photo img { height: 240px; max-width: 280px; margin: 0 auto; }
  .md-flex blockquote { font-size: 1.05rem; }

  /* Promise / Info */
  .promise-box { flex-direction: column; padding: 28px 22px; gap: 16px; }
  .info-strip { flex-direction: column; padding: 22px 20px; gap: 14px; }

  /* Contact / Lead */
  .contact-split { grid-template-columns: 1fr !important; }
  .contact-cards { grid-template-columns: 1fr; gap: 16px; }
  .lead-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }

  /* Portfolio */
  .port-tabs { gap: 8px; margin-bottom: 36px; }
  .port-tab { padding: 10px 18px; font-size: 0.85rem; }
  .project-card .thumb { height: 220px; }

  /* Blog */
  .blog-layout { grid-template-columns: 1fr; }
  .blog-side { position: static; grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-toolbar { flex-direction: column; gap: 12px; }
  .blog-search { max-width: none; }
  .featured-post { grid-template-columns: 1fr; }
  .fp-img img { min-height: 200px; }
  .fp-body { padding: 24px 18px; }
  .testi-card { padding: 28px 20px; }

  /* Article */
  .article-wrap { grid-template-columns: 1fr; }
  .article-side { position: static; grid-template-columns: 1fr; }
  .article-hero { height: 220px; }
  .article h2 { font-size: 1.35rem; }

  /* CTA Band */
  .cta-band { padding: 40px 0; }
  .cta-band h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .cta-band p { font-size: 0.95rem; }

  /* Metric cards */
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Footer */
  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand { max-width: 100%; }
  .f-contact { gap: 10px; }

  /* Sticky CTA */
  .sticky-cta-bar { display: block !important; }

  /* Commit/Testimonials */
  .commit-list { grid-template-columns: 1fr; gap: 12px; }
  .commit-box { padding: 26px 20px; }
  .testi-slider { padding: 0; }

  /* WhatsApp float + contact tab (mobile) */
  .wa-float { width: 50px; height: 50px; bottom: 70px; right: 16px; }
  .wa-float svg { width: 25px; height: 25px; }
  .wa-tip { display: none; }
  .to-top { width: 42px; height: 42px; right: 16px; bottom: 130px; }
  .contact-tab { padding: 13px 8px; gap: 8px; }
  .contact-tab svg { width: 19px; height: 19px; }
  .contact-tab-label { font-size: 0.72rem; letter-spacing: 0.18em; }
}

/* ── Mobile phones (480px) ── */
@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.3rem); }

  /* Sections */
  .section { padding: 30px 0; }
  .page-hero { padding: 50px 0 28px; }

  /* Hero */
  .hero { min-height: 60vh; }
  .hero-content { padding: 60px 0 48px; }
  .hero-stats { gap: 16px; }
  .hero-stats .stat b { font-size: 1.5rem; }

  /* Homepage new hero */
  .hero-new { padding: 50px 0 30px; }
  .hero-left h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .stats-bar { margin: 12px auto; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; padding: 0 10px; }
  .sb-icon { width: 30px !important; height: 30px !important; min-width: 30px; }
  .sb-icon svg { width: 15px !important; height: 15px !important; }
  .sb-num { font-size: 0.9rem; }
  .sb-label { font-size: 0.62rem; }

  /* Cards */
  .dir-card { padding: 24px 18px; }
  .diff-card { padding: 26px 18px; }
  .step-card { padding: 24px 18px; }
  .cap-card { padding: 24px 18px; }
  .vp-card { padding: 24px 18px; }
  .service-card { padding: 20px 14px; }
  .guarantee-card { padding: 30px 20px; }

  /* Grids collapse to 1 col */
  .diff-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .vp-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
  .metric-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr !important; }
  .real-card img { height: 220px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-socials { justify-content: flex-start; }
  .footer-links { gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Page hero text */
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-sub { font-size: 0.92rem; }

  /* Turnkey */
  .turnkey-strip { padding: 26px 18px; }
  .turnkey-strip p { font-size: 0.9rem; }

  /* Info strip */
  .info-strip { padding: 18px 16px; }

  /* CTA */
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .btn-sm { padding: 10px 18px; font-size: 0.82rem; }

  /* Before/After slider */
  .ba-slider { aspect-ratio: 1/1; }
  .ba-label { font-size: 0.75rem; padding: 4px 10px; bottom: 10px; }
  .ba-handle-button { width: 34px; height: 34px; }

  /* Proj cards */
  .proj-thumb img { height: 180px; }
  .proj-info { padding: 16px; }

  /* Sticky CTA */
  .sticky-cta-inner a { padding: 10px 12px; font-size: 0.78rem; }
  .sticky-cta-inner a svg { width: 16px; height: 16px; }
  .sticky-cta-inner a small { font-size: 0.65rem; }

  /* Reviews */
  .review-card { padding: 20px 16px; }
  .review-card p { font-size: 0.9rem; }

  /* MD Box */
  .md-box { padding: 22px 16px; }
  .leadership-block { padding: 28px 20px; }

  /* Back-to-top (kept above the WhatsApp float button) */
  .to-top { bottom: 132px; right: 16px; }
}

/* ── Very small phones (360px) ── */
@media (max-width: 360px) {
  .container { width: 96%; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  .hero-left h1 { font-size: 1.5rem; }
  .btn { padding: 12px 18px; }
  .hero-form-card { padding: 22px 14px; }
  .sticky-cta-inner { flex-wrap: wrap; }
  .sticky-cta-inner a { flex: 1 1 50%; border-right: none; border-top: 1px solid rgba(255,255,255,0.1); }
}

/* ================= REAL PROJECTS CAROUSEL (NEW) ================= */
.rp-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.rp-track-outer {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 10px 0;
}
.rp-track-outer::-webkit-scrollbar {
  display: none;
}

.rp-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 4px;
}

.rp-card {
  flex: 0 0 calc(33.333vw - 32px);
  max-width: 380px;
  min-width: 320px;
  scroll-snap-align: start;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(6, 24, 51, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.rp-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.rp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rp-card:hover .rp-img-wrap img {
  transform: scale(1.05);
}

.rp-before-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(30, 30, 30, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  z-index: 2;
}

.rp-360-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 2;
}

.rp-card-body {
  padding: 20px 24px 24px;
}
.rp-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 4px;
}
.rp-location {
  font-size: 0.85rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.rp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.rp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rp-stat-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 500;
}
.rp-stat-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-navy);
}

.rp-btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--c-gold-2);
  border-radius: 4px;
  color: var(--c-gold-2);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: transparent;
}
.rp-btn:hover {
  background: rgba(226, 172, 88, 0.1);
}

.rp-arrow {
  display: none;
}

@media (min-width: 992px) {
  .rp-wrapper {
    padding: 0 60px;
  }
  .rp-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
    color: var(--c-navy);
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .rp-arrow:hover {
    background: var(--c-navy);
    color: var(--c-white);
  }
  .rp-prev { left: 0; }
  .rp-next { right: 0; }
}

@media (max-width: 768px) {
  .rp-card {
    min-width: 280px;
  }
  .rp-card-body {
    padding: 20px 16px;
  }
  .rp-stats {
    padding: 12px 0;
  }
  .rp-stat-val {
    font-size: 0.95rem;
  }
  .rp-stat-label {
    font-size: 0.75rem;
  }
}

/* ---------- Responsive Overrides for Inline Grids (Commercial Pages) ---------- */
@media (max-width: 992px) {
  [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(5, 1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 400px"],
  [style*="grid-template-columns: 1fr 300px"],
  [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- Slider Arrows Disabled ---------- */
.rp-arrow {
  display: none !important;
}

/* ---------- Commercial Hero Split Layout ---------- */
.hero-new {
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,24,51,0.92) 50%, rgba(6,24,51,0.7) 100%);
  z-index: 1;
}
.hero-new .container {
  position: relative;
  z-index: 2;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.hero-left {
  color: #fff;
}
.hero-legacy {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  text-transform: uppercase;
  border: 1px solid rgba(226,172,88,0.3);
  padding: 4px 12px;
  border-radius: 4px;
}
.hero-form-card {
  border-radius: 12px;
}
.hero-form-card .hf-group {
  margin-bottom: 12px;
}
.hero-form-card select,
.hero-form-card input {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.85rem;
  font-family: inherit;
}
.hero-form-card .btn-submit {
  width: 100%;
  background: var(--c-gold);
  color: var(--c-navy);
  font-weight: 700;
  border: none;
  padding: 14px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-form-card .btn-submit:hover {
  background: var(--c-gold-2);
}

/* ---------- Stats Bar ---------- */
.stats-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sb-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
}
.sb-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-navy);
}
.sb-label {
  font-size: 0.75rem;
  color: var(--c-muted);
}
.sb-divider {
  width: 1px;
  height: 40px;
  background: var(--c-line);
}

/* ================= TRUST + 5-STEP PROCESS SECTION ================= */
.trust-process-section {
  padding: 60px 0;
  background: #fff;
}
.trust-process-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.trust-side {
  border-right: 1px solid var(--c-line);
  padding-right: 40px;
}
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.t-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.t-icon svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}
.t-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 2px;
}
.t-text p {
  font-size: 0.78rem;
  color: var(--c-muted);
  line-height: 1.45;
  margin: 0;
}

/* Process Side */
.process-side {
  padding-left: 10px;
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 28px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ps-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ps-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-navy);
  fill: none;
  stroke-width: 1.5;
}
.ps-num {
  position: absolute;
  top: -6px;
  background: var(--c-gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-top: 10px;
  line-height: 1.3;
}
.ps-arrow {
  color: var(--c-muted);
  font-size: 1.1rem;
  font-weight: 300;
}
.process-cta-row {
  text-align: center;
  margin-top: 24px;
}

/* ================= REVIEWS SECTION (REFERENCE EXACT MATCH) ================= */
.reviews-section {
  padding: 40px 0;
  background: #f8f9fa;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.reviews-row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
}
.reviews-brand {
  padding-right: 8px;
}
.rev-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  box-shadow: 0 2px 8px rgba(6,24,51,0.04);
}
.rev-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.rev-stars {
  color: #F4B400;
  font-size: 0.85rem;
}
.rev-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--c-navy);
  font-style: normal;
  margin-bottom: 12px;
}
.rev-author {
  margin-top: auto;
}
.rev-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--c-navy);
}
.rev-loc {
  font-size: 0.72rem;
  color: var(--c-muted);
}
.reviews-btn-wrap {
  display: flex;
  align-items: center;
}

/* ---------- FAQ New Section ---------- */
.faq-new-section {
  padding: 60px 0;
  background: #fff;
}
.faq-layout {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}
.faq-new-item {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 8px;
}
.faq-new-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-new-item summary::-webkit-details-marker {
  display: none;
}
.faq-new-item .faq-icon {
  font-size: 1.2rem;
  color: var(--c-gold);
  transition: transform 0.3s ease;
}
.faq-new-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-new-item p {
  padding: 0 20px 16px;
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta-bar {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--c-navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transition: bottom 0.4s ease;
}
.sticky-cta-bar.visible {
  bottom: 0;
}
.sticky-cta-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-cta-inner a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.sticky-cta-inner a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  flex-shrink: 0;
}
.scta-call:hover { background: rgba(255,255,255,0.1); }
.scta-wa { background: #25D366 !important; }
.scta-wa:hover { background: #1da851 !important; }
.scta-book { background: var(--c-gold) !important; color: var(--c-navy) !important; }
.scta-book:hover { background: var(--c-gold-2) !important; }
.sticky-cta-inner small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
}

/* ---------- btn-navy helper ---------- */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-navy:hover {
  background: var(--c-navy-2);
}

/* =========================================================
   GLOBAL RESPONSIVE OVERRIDES (Tablet & Mobile)
   ========================================================= */

/* --- Medium Desktop / Large Tablet (max 1100px) --- */
@media (max-width: 1100px) {
  .reviews-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .reviews-brand {
    grid-column: span 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }
  .reviews-btn-wrap {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
}

/* --- Tablet (max 992px) --- */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .hero-form-card {
    max-width: 100%;
  }
  .hero-new {
    padding: 80px 0 50px;
  }
  .faq-layout {
    grid-template-columns: 1fr !important;
  }
  
  /* Inline multi-column grids collapse to 2 columns */
  [style*="grid-template-columns: repeat(5, 1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"],
  .turnkey-grid-responsive,
  .vp-grid-responsive,
  .sol-grid-responsive,
  .retail-5-grid,
  .durability-grid-responsive,
  .trust-grid-responsive,
  .featured-projects-grid,
  .featured-meta-grid,
  .turnkey-6-grid,
  .ready-grid-responsive {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .trust-process-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .trust-side {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 32px;
  }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .hero-new {
    padding: 60px 0 40px;
  }
  .hero-new h1 {
    font-size: 1.6rem !important;
  }
  .hero-split {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .hero-form-card {
    padding: 20px 16px !important;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero-btns a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Inline multi-column grids collapse to 1 column on Mobile */
  [style*="grid-template-columns: repeat(5, 1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns: 1fr 1.15fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"],
  .turnkey-grid-responsive,
  .vp-grid-responsive,
  .sol-grid-responsive,
  .retail-5-grid,
  .durability-grid-responsive,
  .trust-grid-responsive,
  .featured-projects-grid,
  .featured-meta-grid,
  .turnkey-6-grid,
  .ready-grid-responsive {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Stats bar */
  .stats-bar-inner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    align-items: flex-start;
  }
  .sb-divider {
    display: none;
  }
  .sb-item {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .sb-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Reviews on Mobile */
  .reviews-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .reviews-brand {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 16px;
    margin-bottom: 0;
  }
  .reviews-brand h3 {
    justify-content: center;
  }
  .reviews-brand > div {
    justify-content: center;
  }
  .rev-card {
    width: 100%;
    min-height: auto;
  }
  .reviews-btn-wrap {
    width: 100%;
    margin-top: 8px;
  }
  .reviews-btn-wrap a {
    width: 100%;
    justify-content: center;
  }

  /* FAQ layout */
  .faq-layout {
    grid-template-columns: 1fr !important;
  }
  .faq-new-item summary {
    font-size: 0.8rem;
    padding: 14px 16px;
  }

  /* Process steps horizontal list on Mobile */
  .process-steps {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .ps-arrow {
    display: none;
  }

  /* Sticky CTA */
  .sticky-cta-inner {
    flex-direction: row;
  }
  .sticky-cta-inner a {
    flex-direction: column;
    gap: 4px;
    padding: 10px 6px;
    font-size: 0.7rem;
  }
  .sticky-cta-inner a svg {
    width: 18px;
    height: 18px;
  }
  .sticky-cta-inner small {
    display: none;
  }

  /* Form grid inside FAQ */
  form[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  form[style*="grid-template-columns: 1fr 1fr"] input[style*="grid-column: span 2"],
  form[style*="grid-template-columns: 1fr 1fr"] button[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }
}

/* --- Stats Banner (Reference Image Exact Match) --- */
.stats-banner {
  background: #0B2240;
  padding: 20px 0;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.stat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 100%;
  height: 100%;
}
.stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .stat-item {
    justify-content: flex-start;
  }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
  .hero-new h1 {
    font-size: 1.35rem !important;
  }
  .hero-new p.hero-sub {
    font-size: 0.8rem;
  }
  .hero-legacy {
    font-size: 0.6rem;
  }
  .sb-num {
    font-size: 1.1rem;
  }
  .rev-card {
    padding: 16px;
  }
}

/* =========================================
   GLOBAL RESPONSIVE OVERRIDES
   ========================================= */

@media (max-width: 768px) {
  /* Topbar & Header */
  .topbar-contact, .topbar-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .header .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links {
    display: none; /* Hide desktop nav, assume mobile menu handles it or stacked */
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex; /* Toggle class for JS */
  }

  /* Footer */
  .footer-grid,
  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    text-align: center;
    gap: 10px;
  }
}

/* Responsive Hero Grid */
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE POLISH (added) — promo bar + overflow safety
   ============================================================ */

/* Promo / offer bar: tidy wrapping on small screens */
.promo-bar-inner { gap: 8px; }

@media (max-width: 768px) {
  .promo-bar { font-size: 0.7rem; }
  .promo-bar-inner {
    justify-content: center !important;
    text-align: center;
    row-gap: 6px;
  }
}

/* Prevent accidental horizontal overflow from long unbreakable strings */
img, svg, video, canvas, iframe, embed { max-width: 100%; }
p, h1, h2, h3, h4, li, a, span, blockquote { overflow-wrap: break-word; }
