/* ============================================================
   Subhadra Group — index1.html "v2" design system
   New tokens, new type system (Sora / Manrope), new components.
   Independent of style.css — nothing here touches the original site.
   Tokens are scoped to .v2 (not :root) so this file can be loaded
   alongside style.css on other pages — e.g. to reuse just the v2
   header/footer — without its variables leaking into the rest of
   the page.
   ============================================================ */
.v2{
  --ink:        #0d0f1c;
  --ink-soft:   #4b4f61;
  --muted:      #8a8fa3;
  --line:       rgba(13,15,28,.09);
  --bg:         #ffffff;
  --bg-soft:    #f5f6fb;
  --bg-soft-2:  #eef0f8;

  --brand:      #ff5a36;
  --brand-2:    #ffb238;
  --brand-grad: linear-gradient(135deg, #ff5a36 0%, #ff8a3d 55%, #ffb238 100%);
  --teal:       #17b8a6;

  --dark:       #0a0c18;
  --dark-2:     #12142a;
  --dark-3:     #1b1e3a;
  --dark-line:  rgba(255,255,255,.10);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 14px rgba(13,15,28,.06);
  --shadow-md: 0 20px 48px -16px rgba(13,15,28,.20);
  --shadow-lg: 0 44px 90px -28px rgba(13,15,28,.32);

  --gutter: 20px;

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:96px; }
body.v2{
  margin:0;
  font-family: var(--font-body);
  font-size:16px;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.v2 img{ max-width:100%; display:block; }
.v2 a{ color:inherit; text-decoration:none; }
.v2 ul{ margin:0; padding:0; list-style:none; }
.v2 h1,.v2 h2,.v2 h3,.v2 h4,.v2 p{ margin:0; }
.v2 h1,.v2 h2,.v2 h3,.v2 h4{ font-family: var(--font-display); color: var(--ink); }
.v2 button{ font-family:inherit; cursor:pointer; }
.v2 ::selection{ background: var(--brand); color:#fff; }

.v2 .container{ width:100%; max-width:1320px; margin-inline:auto; padding-inline:var(--gutter); }
.v2 .container-fluid{ width:100%; margin-inline:auto; padding-inline:var(--gutter); }
@media (min-width:640px){ .v2 .container-fluid{ padding-inline:40px; } }
@media (min-width:1024px){ .v2 .container-fluid{ padding-inline:64px; } }
@media (min-width:1600px){ .v2 .container-fluid{ padding-inline:96px; } }

.v2 .eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--brand);
}
.v2 .eyebrow::before{ content:""; width:22px; height:2px; border-radius:2px; background: var(--brand-grad); }
.v2 .eyebrow.on-dark{ color:#ffbb8f; }

.v2 .section{ padding:72px 0; }
.v2 .section-lg{ padding:96px 0; }
@media (min-width:1024px){ .v2 .section{ padding:112px 0; } .v2 .section-lg{ padding:140px 0; } }
.v2 .section-soft{ background: var(--bg-soft); }
.v2 .section-dark{ background: var(--dark); color: rgba(255,255,255,.78); }
.v2 .section-dark h2, .v2 .section-dark h3, .v2 .section-dark h4{ color:#fff; }

.v2 .section-head{ max-width:1200px; margin-bottom:44px; }
.v2 .section-head.center{ margin-inline:auto; text-align:center; }
.v2 .section-head h2{
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight:800; letter-spacing:-.03em; line-height:1.08; margin-top:14px;
}
.v2 .section-head p{ margin-top:16px; font-size:1.05rem; line-height:1.7; color: var(--muted); }
.v2 .section-dark .section-head p{ color: rgba(255,255,255,.68); }

/* ---------- Buttons ---------- */
.v2 .btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 28px;
  font-family: var(--font-display);
  font-size:.92rem; font-weight:700; letter-spacing:-.01em;
  border-radius: 999px;
  border:1px solid transparent;
  white-space:nowrap;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.v2 .btn:active{ transform: translateY(1px) scale(.99); }
.v2 .btn-grad{ background: var(--brand-grad); color:#fff; box-shadow:0 14px 30px -10px rgba(255,90,54,.55); }
.v2 .btn-grad:hover{ transform: translateY(-2px); box-shadow:0 20px 40px -12px rgba(255,90,54,.65); }
.v2 .btn-dark{ background: var(--ink); color:#fff; }
.v2 .btn-dark:hover{ background:#000; transform: translateY(-2px); }
.v2 .btn-outline{ background:transparent; border-color: var(--line); color: var(--ink); }
.v2 .btn-outline:hover{ border-color: var(--ink); transform: translateY(-2px); }
.v2 .btn-outline-light{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); color:#fff; backdrop-filter: blur(6px); }
.v2 .btn-outline-light:hover{ background: rgba(255,255,255,.14); border-color:#fff; transform: translateY(-2px); }
.v2 .btn-block{ width:100%; }
.v2 .btn-sm{ padding:11px 20px; font-size:.82rem; }

/* ============================================================
   Header
   ============================================================ */
.v2-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding-block:18px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom:1px solid transparent;
}
.v2-header .header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.v2-header .brand{ display:flex; align-items:center; gap:10px; }
.v2-header .brand img{ height:75px; width:auto; }
.v2-header.is-scrolled{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
  padding-block:12px;
}

.v2-nav{ display:none; }
.v2-nav ul{ display:flex; align-items:center; gap:6px; }
.v2-nav a{
  display:block; padding:10px 16px; border-radius:999px;
  font-family: var(--font-display); font-weight:600; font-size:.92rem;
  color: rgba(255,255,255,.86); transition: background .2s ease, color .2s ease;
}
.v2-header.is-scrolled .v2-nav a{ color: var(--ink-soft); }
.v2-nav a:hover, .v2-nav a.active{ background: rgba(255,255,255,.14); color:#fff; }
.v2-header.is-scrolled .v2-nav a:hover,
.v2-header.is-scrolled .v2-nav a.active{ background: var(--bg-soft-2); color: var(--ink); }

.v2-header-actions{ display:flex; align-items:center; gap:10px; }
.v2-header-actions .btn-outline-light{ display:none; }
.v2-header-actions .hdr-brochure{ display:none; }
.v2-header.is-scrolled .btn-outline-light.hdr-login{ background:transparent; border-color:var(--line); color:var(--ink); }
.v2-header.is-scrolled .btn-outline-light.hdr-login:hover{ border-color:var(--ink); background:var(--bg-soft); }

.v2-nav-toggle{
  display:flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:12px;
  border:1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08);
  color:#fff; flex-shrink:0;
}
.v2-header.is-scrolled .v2-nav-toggle{ border-color:var(--line); background:var(--bg-soft); color:var(--ink); }
.v2-nav-toggle svg{ width:20px; height:20px; }
.v2-nav-toggle .icon-close{ display:none; }
.v2-nav-toggle[aria-expanded="true"] .icon-open{ display:none; }
.v2-nav-toggle[aria-expanded="true"] .icon-close{ display:block; }

.v2-mobile-nav{
  position:fixed; inset:0; z-index:1100;
  background: rgba(10,12,24,.98);
  backdrop-filter: blur(10px);
  display:flex; flex-direction:column;
  padding:24px var(--gutter) 36px;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.v2-mobile-nav.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
.v2-mobile-nav-top{ display:flex; align-items:center; justify-content:space-between; }
.v2-mobile-nav-top img{ height:56px; }
.v2-mobile-nav ul{ display:flex; flex-direction:column; margin-top:36px; gap:4px; }
.v2-mobile-nav a{
  display:block; padding:16px 6px; font-family:var(--font-display);
  font-size:1.5rem; font-weight:700; color:#fff; border-bottom:1px solid rgba(255,255,255,.1);
}
.v2-mobile-nav a.active{ color: var(--brand-2); }
.v2-mobile-nav-cta{ display:flex; flex-direction:column; gap:12px; margin-top:32px; }

@media (min-width:1024px){
  .v2-header .header-inner{ justify-content:flex-start; }
  .v2-nav{ display:block; margin-left:auto; }
  .v2-nav-toggle, .v2-mobile-nav{ display:none; }
  .v2-header-actions .btn-outline-light{ display:inline-flex; }
  .v2-header-actions .hdr-brochure{ display:inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.v2-hero{
  position:relative; overflow:hidden;
  background: var(--dark);
  padding-top:150px;
  padding-bottom:0;
  color:#fff;
}
.v2-hero::before,
.v2-hero::after{
  content:""; position:absolute; border-radius:50%; filter:blur(90px); z-index:0; pointer-events:none;
}
.v2-hero::before{ width:640px; height:640px; top:-220px; right:-160px; background: radial-gradient(circle, rgba(255,90,54,.45), transparent 70%); }
.v2-hero::after{ width:520px; height:520px; bottom:-240px; left:-180px; background: radial-gradient(circle, rgba(23,184,166,.30), transparent 70%); }
.v2-hero-grid-overlay{
  position:absolute; inset:0; z-index:0; opacity:.5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}
.v2-hero .container, .v2-hero .container-fluid{ position:relative; z-index:1; }
.v2-hero-inner{
  display:grid; grid-template-columns:1fr; gap:44px; align-items:center;
  padding-bottom:90px;
}
.v2-hero-copy .badge-row{ display:flex; align-items:center; gap:10px; margin-bottom:22px; flex-wrap:wrap; }
.v2-hero-copy .pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 14px 7px 7px; border-radius:999px;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  font-size:.78rem; font-weight:700; color:#fff;
}
.v2-hero-copy .pill .dot{ width:24px; height:24px; border-radius:50%; background: var(--brand-grad); display:flex; align-items:center; justify-content:center; font-size:.7rem; }
.v2-hero-copy h1{
  font-size: clamp(2.3rem, 6.6vw, 4.2rem);
  font-weight:800; line-height:1.02; letter-spacing:-.035em;
  color:#fff;
}
.v2-hero-copy h1 .grad{
  background: var(--brand-grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.v2-hero-copy .lede{ margin-top:22px; max-width:560px; font-size:1.12rem; line-height:1.7; color: rgba(255,255,255,.72); }
.v2-hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.v2-hero-trustline{ display:flex; align-items:center; gap:14px; margin-top:36px; flex-wrap:wrap; }
.v2-hero-trustline .avatars{ display:flex; }
.v2-hero-trustline .avatars img{ width:36px; height:36px; border-radius:50%; border:2px solid var(--dark); margin-left:-10px; background:#fff; object-fit:cover; }
.v2-hero-trustline .avatars img:first-child{ margin-left:0; }
.v2-hero-trustline span{ font-size:.86rem; color: rgba(255,255,255,.6); }
.v2-hero-trustline b{ color:#fff; }

.v2-hero-visual{ position:relative; }
.v2-hero-media{
  position:relative; overflow:hidden; width:100%;
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-xl);
}
.v2-hero-media img{ width:100%; height:100%; object-fit:cover; }
.v2-hero-media::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.7) 100%); }

.v2-hero-slide{ position:absolute; inset:0; opacity:0; z-index:0; transition: opacity 1s ease; }
.v2-hero-slide.slide-contain{
  background: radial-gradient(circle at 50% 45%, #1b1e3a 0%, var(--dark) 72%);
  display:flex; align-items:center; justify-content:center;
}
.v2-hero-slide.slide-contain img{ width:80%; height:80%; object-fit:contain; }
.v2-hero-slide.is-active{ opacity:1; z-index:1; }

.v2-hero-media-tag{
  position:absolute; left:20px; bottom:20px; z-index:2;
  font-family: var(--font-display); color:#fff;
}
.v2-hero-media-tag .tag-title{ display:block; font-weight:700; font-size:.98rem; }
.v2-hero-media-tag span:not(.tag-title){ display:block; font-family:var(--font-body); font-weight:600; font-size:.74rem; color: rgba(255,255,255,.65); margin-top:2px; }

.v2-hero-dots{ position:absolute; right:20px; bottom:22px; z-index:2; display:flex; gap:7px; }
.v2-hero-dots button{
  width:8px; height:8px; border-radius:50%; border:none; padding:0;
  background: rgba(255,255,255,.4); cursor:pointer; transition: background .25s ease, width .25s ease, border-radius .25s ease;
}
.v2-hero-dots button:hover{ background: rgba(255,255,255,.7); }
.v2-hero-dots button.is-active{ background: var(--brand-grad); width:22px; border-radius:5px; }

@media (max-width:1023px){
  .v2-hero-visual{ order:1; }
  .v2-hero-copy{ order:2; text-align:center; }
  .v2-hero-copy .badge-row{ justify-content:center; }
  .v2-hero-copy .lede{ margin-inline:auto; }
  .v2-hero-cta{ justify-content:center; }
  .v2-hero-trustline{ justify-content:center; }
  .v2-hero-stats{ margin-inline:auto; }
  .v2-stat{ text-align:center; }
  .v2-stat .num-row{ justify-content:center; }

  /* Six disciplines cards */
  .v2-discipline-body{ text-align:center; align-items:center; }
  .v2-discipline-body .foot{ justify-content:center; }

  /* About Us content */
  .v2-about-copy{ text-align:center; }
  .v2-check-list{ align-items:center; }
  .v2-about-cta{ justify-content:center; }
  .v2-about-memberships .badges{ justify-content:center; }

  /* Real projects (Featured Projects case slider) */
  .v2-case-body{ text-align:center; }
  .v2-case-scope{ justify-content:center; }
  .v2-case-cta{ justify-content:center; }

  /* Showroom / product cards */
  .v2-product-body{ text-align:center; align-items:center; }

  /* Testimonials */
  .v2-testi-card{ text-align:center; align-items:center; }
  .v2-testi-person{ justify-content:center; }
  .v2-testi-person div{ text-align:left; }

  /* Footer copyright line */
  .v2-footer-bottom{ text-align:center; align-items:center; }

  /* Footer brand column */
  .v2-footer-brand{ text-align:center; }
  .v2-footer-brand img{ margin-inline:auto; }
  .v2-footer-brand p{ margin-inline:auto; }
  .v2-social-row{ justify-content:center; }
}

@media (min-width:1024px){
  .v2-hero{ padding-top:170px; }
  .v2-hero-inner{ grid-template-columns:1fr 1.05fr; gap:44px; padding-bottom:130px; }
  .v2-hero-visual{ order:1; }
  .v2-hero-copy{ order:2; }
  .v2-hero-media{ aspect-ratio:1/1; max-height:640px; }
}

/* ---------- Stats (compulsory — inline in hero copy, count.js driven) ---------- */
.v2-hero-stats{
  display:grid; grid-template-columns:repeat(2,1fr); gap:24px 20px;
  margin-top:38px; padding-top:30px;
  border-top:1px solid rgba(255,255,255,.14);
  max-width:480px;
}
.v2-stat{ padding:0; position:relative; }
.v2-stat .num-row{ display:flex; align-items:baseline; gap:2px; }
.v2-stat .stat-number{
  font-family: var(--font-display); font-weight:800;
  font-size: clamp(2.4rem, 5.4vw, 3.4rem);
  letter-spacing:-.03em; color:#fff;
}
.v2-stat .stat-suffix{ font-family: var(--font-display); font-weight:800; font-size:1.8rem; color: var(--brand); }
.v2-stat .stat-label{ margin-top:8px; display:block; font-size:.9rem; font-weight:600; color: rgba(255,255,255,.6); }
.v2-stat .stat-icon{
  width:36px; height:36px; margin-bottom:10px; border-radius:10px;
  background: rgba(255,255,255,.08); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1rem;
}

@media (min-width:1024px){
  .v2-hero-stats{ grid-template-columns:repeat(3,1fr); max-width:none; gap:20px; }
}

/* ============================================================
   Disciplines — one full feature section per discipline
   ============================================================ */
.v2-discipline-grid{ display:grid; grid-template-columns:1fr; gap:28px; margin-top:8px; }

.v2-discipline-card{
  display:flex; flex-direction:column;
  background:#fff; border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.v2-discipline-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.v2-discipline-media{ position:relative; aspect-ratio: 16/10; overflow:hidden; }
.v2-discipline-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.v2-discipline-card:hover .v2-discipline-media img{ transform: scale(1.05); }
.v2-discipline-media .icon{
  position:absolute; top:16px; left:16px; z-index:1;
  width:48px; height:48px; border-radius:14px;
  background: var(--brand-grad); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.25rem;
  box-shadow: 0 14px 28px -8px rgba(255,90,54,.6);
}

.v2-discipline-body{ padding:24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.v2-discipline-body h3{ font-size:1.35rem; font-weight:800; letter-spacing:-.02em; }
.v2-discipline-body p{ margin-top:12px; font-size:.96rem; line-height:1.7; color: var(--ink-soft); flex:1; }
.v2-discipline-body .foot{
  margin-top:20px; padding-top:16px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.v2-discipline-body .brands{ font-size:.7rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--muted); }
.v2-discipline-body .link-explore{ color: var(--brand); font-weight:700; font-size:.9rem; display:inline-flex; align-items:center; gap:6px; }

@media (min-width:640px){
  .v2-discipline-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1024px){
  .v2-discipline-grid{ grid-template-columns:repeat(3,1fr); gap:32px; }
}

/* ============================================================
   About split
   ============================================================ */
.v2-about-grid{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
.v2-about-media{ position:relative; border-radius: var(--radius-xl); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio:5/4; }
.v2-about-media img{ width:100%; height:100%; object-fit:cover; object-position:50% 45%; }
.v2-about-copy h2{ font-size: clamp(1.9rem, 4.4vw, 2.7rem); font-weight:800; letter-spacing:-.03em; line-height:1.1; margin-top:14px; }
.v2-about-copy p{ margin-top:18px; font-size:1.02rem; line-height:1.75; color: var(--ink-soft); }
.v2-check-list{ margin-top:56px; display:flex; flex-direction:column; gap:20px; }
.v2-check-list li{
  display:flex; align-items:center; gap:14px;
  padding:15px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,90,54,.08), rgba(255,178,56,.05));
  border:1px solid rgba(255,90,54,.18);
  font-size:1rem; color: var(--ink); font-weight:700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.v2-check-list li:hover{ transform: translateX(4px); border-color: rgba(255,90,54,.4); box-shadow: var(--shadow-sm); }
.v2-check-list .tick{
  width:32px; height:32px; border-radius:50%; flex-shrink:0;
  background: var(--brand-grad); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:.9rem;
  box-shadow: 0 8px 16px -6px rgba(255,90,54,.55);
}
.v2-about-cta{ margin-top:30px; display:flex; flex-wrap:wrap; gap:14px; }

.v2-about-memberships{ margin-top:34px; padding-top:26px; border-top:1px solid var(--line); }
.v2-about-memberships .label{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-display); font-size:.78rem; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase; color: var(--brand); margin-bottom:14px;
}
.v2-about-memberships .label::before{ content:""; width:22px; height:2px; border-radius:2px; background: var(--brand-grad); }
.v2-about-memberships .badges{ display:flex; flex-wrap:wrap; gap:10px; }
.v2-about-memberships .badge{
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 18px; border-radius:999px;
  background: #fff; border:1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-size:.82rem; font-weight:800; color: var(--brand);
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-about-memberships .badge:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.v2-about-memberships .badge i{ font-size:.9rem; }

.v2-trust-badge{
  position:absolute; left:24px; bottom:24px;
  padding:18px 26px;
  background: var(--brand-grad);
  border-radius:14px; border:3px solid #fff;
  box-shadow: 0 16px 34px -10px rgba(255,90,54,.6), var(--shadow-lg);
}
.v2-trust-badge b{ font-size:2.6rem; font-weight:800; display:block; color:#fff; line-height:1; }
.v2-trust-badge span{ font-size:.86rem; font-weight:800; color:#fff; text-transform:uppercase; letter-spacing:.05em; }

@media (min-width:1024px){
  .v2-about-grid{ grid-template-columns: .95fr 1.05fr; gap:76px; }
}

/* ============================================================
   Process — how we work
   ============================================================ */
.v2-process-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
.v2-process-step{
  padding:32px 26px 26px;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.v2-process-step .step-num{
  font-family: var(--font-display); font-size:2.2rem; font-weight:800; line-height:1;
  background: var(--brand-grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.v2-process-step h4{ margin-top:14px; font-size:1.1rem; font-weight:800; }
.v2-process-step p{ margin-top:10px; font-size:.9rem; line-height:1.65; color: var(--muted); }

@media (min-width:900px){
  .v2-process-grid{ grid-template-columns: repeat(3,1fr); }
}

/* ============================================================
   Featured projects — Slick slider (one full case study at a time)
   ============================================================ */
.v2-case-slick{ position:relative; margin-top:44px; }
.v2-case-slick .slick-list{ overflow:hidden; }

.v2-case-study{ display:grid; grid-template-columns:1fr; gap:32px; align-items:center; }
.v2-case-media{ border-radius: var(--radius-xl); overflow:hidden; aspect-ratio:4/3; }
.v2-case-media img{ width:100%; height:100%; object-fit:cover; }
.v2-case-eyebrow{ display:block; font-family: var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color: var(--brand); }
.v2-case-body h3{ margin-top:10px; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight:800; letter-spacing:-.02em; }
.v2-case-body p{ margin-top:14px; font-size:1.02rem; line-height:1.75; color: var(--ink-soft); }
.v2-case-scope{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.v2-case-scope span{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px; border-radius:999px;
  background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size:.84rem; font-weight:700; color: var(--ink);
}
.v2-case-scope span i{ color: var(--brand); }
.v2-case-cta{ display:flex; flex-wrap:wrap; align-items:center; gap:20px; margin-top:26px; }
.v2-case-body .link-explore{ color: var(--brand); font-weight:700; font-size:.94rem; display:inline-flex; align-items:center; gap:6px; }

@media (min-width:1024px){
  .v2-case-study{ grid-template-columns: 1fr 1fr; gap:60px; }
}

/* Slick dots — brand theme */
.v2-case-slick .slick-dots{ position:static; display:flex; justify-content:center; margin-top:30px; }
.v2-case-slick .slick-dots li{ width:8px; height:8px; margin:0 5px; }
.v2-case-slick .slick-dots li button{ width:8px; height:8px; padding:0; }
.v2-case-slick .slick-dots li button::before{
  width:8px; height:8px; font-size:0; border-radius:50%;
  background: var(--line); opacity:1; content:"";
}
.v2-case-slick .slick-dots li.slick-active button::before{ background: var(--brand-grad); }

.v2-case-viewmore{ display:flex; justify-content:center; margin-top:44px; }

/* ============================================================
   Products — tabbed showcase
   ============================================================ */
.v2-tabbar{
  display:flex; justify-content:center; gap:8px; overflow-x:auto; padding-bottom:6px; margin-bottom:36px;
  scrollbar-width:none;
}
.v2-tabbar::-webkit-scrollbar{ display:none; }
.v2-tab-btn{
  flex-shrink:0; padding:13px 22px; border-radius:999px;
  font-family: var(--font-display); font-weight:700; font-size:.86rem;
  background:#fff; border:1px solid var(--line); color: var(--ink-soft);
  transition: all .2s ease;
}
.v2-tab-btn:hover{ border-color: var(--brand); color: var(--brand); }
.v2-tab-btn.is-active{ background: var(--ink); color:#fff; border-color: var(--ink); }

.v2-product-panel{ display:none; }
.v2-product-panel.is-active{ display:grid; grid-template-columns:1fr; gap:18px; }
.v2-product-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.v2-product-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.v2-product-media{ width:100%; aspect-ratio:16/10; overflow:hidden; }
.v2-product-media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.v2-product-card:hover .v2-product-media img{ transform:scale(1.06); }
.v2-product-body{ padding:20px 22px 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.v2-product-card h4{ font-size:1.05rem; font-weight:800; }
.v2-product-card p{ font-size:.88rem; line-height:1.6; color: var(--muted); flex:1; }
.v2-product-card .brands{ font-size:.66rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--muted); border-top:1px solid var(--line); padding-top:12px; }

@media (min-width:640px){ .v2-product-panel.is-active{ grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .v2-product-panel.is-active{ grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   Sectors — wrapping, centered grid (no scroll), 3 per row
   ============================================================ */
.v2-sector-rail{
  display:grid; grid-template-columns: minmax(0,290px); justify-content:center; gap:16px; padding:8px 4px 24px;
}
.v2-sector-card{
  position:relative; width:100%; height:330px;
  border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-sm);
}
.v2-sector-card img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.v2-sector-card:hover img{ transform:scale(1.08); }
.v2-sector-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(8,9,16,.92) 100%); }
.v2-sector-card .body{ position:absolute; left:0; right:0; bottom:0; z-index:1; padding:20px; }
.v2-sector-card .num{ font-family: var(--font-display); font-size:.72rem; font-weight:700; color: var(--brand-2); }
.v2-sector-card h4{ color:#fff; font-size:1.15rem; font-weight:800; margin-top:6px; }
.v2-sector-card p{ color: rgba(255,255,255,.72); font-size:.8rem; margin-top:6px; line-height:1.5; }

@media (min-width:640px){
  .v2-sector-rail{ grid-template-columns: repeat(2,minmax(0,290px)); }
}
@media (min-width:900px){
  .v2-sector-rail{ grid-template-columns: repeat(4,minmax(0,290px)); }
  .v2-sector-card{ height:380px; }
}

/* ============================================================
   Why-us strip
   ============================================================ */
.v2-why-grid{ display:grid; grid-template-columns:1fr; gap:1px; background: var(--line); border-radius: var(--radius-lg); overflow:hidden; }
.v2-why-item{ background:#fff; display:flex; flex-direction:column; }
.v2-why-media{ width:100%; aspect-ratio:4/3; overflow:hidden; }
.v2-why-media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.v2-why-item:hover .v2-why-media img{ transform:scale(1.06); }
.v2-why-body{ padding:26px 24px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; }
.v2-why-item h4{ font-size:1.02rem; font-weight:800; }
.v2-why-item p{ font-size:.88rem; line-height:1.6; color: var(--muted); }

@media (min-width:1024px){ .v2-why-grid{ grid-template-columns: repeat(4,1fr); } }

/* ============================================================
   Clients — static logo grid (no slider)
   ============================================================ */
.v2-client-grid{
  margin-top:40px;
  display:flex; flex-wrap:wrap; justify-content:center; gap:16px;
}
.v2-client-card{
  flex:1 1 150px; max-width:170px; height:110px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display:flex; align-items:center; justify-content:center;
  padding:16px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-client-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.v2-client-card img{ max-height:56px; max-width:100%; width:auto; height:auto; object-fit:contain; }

@media (min-width:640px){
  .v2-client-card{ flex:1 1 170px; max-width:190px; height:130px; }
  .v2-client-card img{ max-height:68px; }
}
@media (min-width:1024px){
  .v2-client-card{ height:150px; }
  .v2-client-card img{ max-height:80px; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.v2-testi-grid{ margin-top:40px; display:grid; grid-template-columns:1fr; gap:20px; }
.v2-testi-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding:28px 26px; box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; gap:18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-testi-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.v2-testi-stars{ display:flex; gap:3px; color: var(--brand); font-size:.8rem; }
.v2-testi-quote{ font-size:.98rem; line-height:1.7; color: var(--ink); flex:1; }
.v2-testi-person{ display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid var(--line); }
.v2-avatar{
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  background: var(--brand-grad); color:#fff;
  font-family: var(--font-display); font-weight:700; font-size:.85rem;
  display:flex; align-items:center; justify-content:center;
}
.v2-testi-person b{ display:block; font-size:.88rem; font-weight:700; color: var(--ink); }
.v2-testi-person span{ font-size:.78rem; color: var(--muted); }

@media (min-width:768px){
  .v2-testi-grid{ grid-template-columns: repeat(3,1fr); }
}

/* ============================================================
   Tagline strip
   ============================================================ */
.v2-tagline-strip{
  position:relative; overflow:hidden;
  background: var(--bg-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding-block:60px;
  text-align:center;
}
.v2-tagline-grid-overlay{ display:none; }
.v2-tagline-strip .container-fluid{ position:relative; z-index:1; }
.v2-tagline-strip img{
  height:38px; width:auto; margin-inline:auto; margin-bottom:22px;
}
.v2-tagline-strip p{
  font-family: var(--font-display);
  font-weight:800;
  font-size: clamp(1.5rem, 3.8vw, 2.3rem);
  letter-spacing:-.02em;
  line-height:1.3;
  color: var(--ink);
  max-width:760px;
  margin-inline:auto;
}
.v2-tagline-strip p .grad{
  background: var(--brand-grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

@media (min-width:1024px){
  .v2-tagline-strip{ padding-block:88px; }
  .v2-tagline-strip img{ height:50px; margin-bottom:28px; }
}

/* ============================================================
   Lead / quote CTA (+ FAQ accordion, left column)
   ============================================================ */
.v2-lead{ background: var(--dark); position:relative; overflow:hidden; }
.v2-lead::before{ content:""; position:absolute; width:520px; height:520px; border-radius:50%; top:-200px; left:-160px; background: radial-gradient(circle, rgba(255,90,54,.28), transparent 70%); filter:blur(60px); }
.v2-lead-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1fr; gap:44px; align-items:start; }
.v2-lead-copy h2{ font-size: clamp(1.9rem, 4.4vw, 2.6rem); font-weight:800; letter-spacing:-.03em; line-height:1.12; margin-top:14px; color:#fff; }
.v2-lead-copy > p{ margin-top:16px; color: rgba(255,255,255,.68); font-size:1.02rem; line-height:1.7; max-width:520px; }
.v2-lead-copy > p a{ color: var(--brand-2); font-weight:700; }

.v2-faq-list{ margin-top:28px; display:flex; flex-direction:column; max-width:560px; }
.v2-faq-item{ border-bottom:1px solid rgba(255,255,255,.14); }
.v2-faq-item:first-child{ border-top:1px solid rgba(255,255,255,.14); }
.v2-faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 4px; background:none; border:none; text-align:left;
  font-family: var(--font-display); font-weight:700; font-size:.96rem; color:#fff;
}
.v2-faq-q span{ flex:1; }
.v2-faq-q i{ flex-shrink:0; color: var(--brand-2); transition: transform .25s ease; font-size:.85rem; }
.v2-faq-item.is-open .v2-faq-q i{ transform: rotate(45deg); }
.v2-faq-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.v2-faq-item.is-open .v2-faq-a{ max-height:400px; }
.v2-faq-a p{ padding:0 4px 20px; color: rgba(255,255,255,.6); font-size:.88rem; line-height:1.65; }

.v2-form-card{ background:#fff; border-radius: var(--radius-xl); padding:34px 28px; box-shadow: var(--shadow-lg); }
.v2-form-card h3{ font-size:1.35rem; font-weight:800; }
.v2-form-card .sub{ margin-top:6px; font-size:.88rem; color: var(--muted); }
.v2-form{ margin-top:22px; display:flex; flex-direction:column; gap:16px; }
.v2-form-row{ display:grid; grid-template-columns:1fr; gap:16px; }
.v2-field{ display:flex; flex-direction:column; gap:7px; }
.v2-field label{ font-size:.78rem; font-weight:700; color: var(--ink); font-family: var(--font-display); }
.v2-field input, .v2-field textarea, .v2-field select{
  font-family: var(--font-body); font-size:.94rem;
  padding:13px 15px; border-radius:12px; border:1.5px solid var(--line);
  background: var(--bg-soft); color: var(--ink);
}
.v2-field input:focus, .v2-field textarea:focus, .v2-field select:focus{ outline:none; border-color: var(--brand); background:#fff; }
.v2-field textarea{ resize:vertical; min-height:100px; }
.v2-pref-row{ display:flex; gap:10px; flex-wrap:wrap; }
.v2-pref-pill{
  display:inline-flex; align-items:center; gap:8px; padding:11px 18px;
  border:1.5px solid var(--line); border-radius:999px; font-size:.86rem; font-weight:700; color: var(--ink-soft);
  cursor:pointer; transition: all .15s ease;
}
.v2-pref-pill input{ position:absolute; opacity:0; width:0; height:0; }
.v2-pref-pill:has(input:checked){ border-color: var(--brand); color: var(--brand); background: rgba(255,90,54,.06); }
.v2-form-privacy{ font-size:.74rem; color: var(--muted); text-align:center; }

@media (min-width:640px){ .v2-form-row{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px){ .v2-lead-grid{ grid-template-columns:1fr 1fr; gap:80px; } }

/* ============================================================
   Footer
   ============================================================ */
.v2-footer{ background: var(--dark-2); color: rgba(255,255,255,.66); }
.v2-footer-top{ padding-block:64px 40px; display:grid; grid-template-columns:1fr; gap:36px; }
.v2-footer-brand img{ height:36px; }
.v2-footer-brand p{ margin-top:18px; font-size:.9rem; line-height:1.65; max-width:320px; }
.v2-social-row{ display:flex; gap:10px; margin-top:22px; }
.v2-social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center; transition: all .2s ease;
}
.v2-social-row a:hover{ background: var(--brand-grad); border-color:transparent; color:#fff; }
.v2-footer-col h5{ font-family: var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color: rgba(255,255,255,.4); margin-bottom:18px; }
.v2-footer-col ul li{ margin-bottom:13px; }
.v2-footer-col a, .v2-footer-col p{ font-size:.9rem; }
.v2-footer-col a:hover{ color: var(--brand-2); }
.v2-footer-newsletter{ display:flex; gap:8px; margin-top:16px; max-width:280px; }
.v2-footer-newsletter input{
  flex:1; min-width:0; padding:12px 14px; border-radius:10px;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#fff; font-size:.88rem;
}
.v2-footer-newsletter input::placeholder{ color: rgba(255,255,255,.4); }
.v2-footer-newsletter button{
  flex-shrink:0; width:44px; height:44px; border-radius:10px; border:none;
  background: var(--brand-grad); color:#fff; display:flex; align-items:center; justify-content:center;
}
.v2-footer-showroom{ display:flex; flex-wrap:wrap; align-items:flex-start; gap:16px; }
.v2-footer-showroom address{ font-style:normal; font-size:.86rem; line-height:1.6; max-width:230px; }
.v2-footer-qr{ flex-shrink:0; display:flex; flex-direction:column; align-items:center; gap:6px; text-align:center; }
.v2-footer-qr img{ width:64px; height:64px; border-radius:8px; background:#fff; padding:4px; }
.v2-footer-qr span{ font-size:.72rem; font-weight:700; color: rgba(255,255,255,.6); line-height:1.3; }
.v2-footer-qr:hover span{ color: var(--brand-2); }
.v2-footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:22px 0 30px;
  display:flex; flex-direction:column; gap:10px;
  font-size:.8rem; color: rgba(255,255,255,.42);
}
.v2-footer-bottom a{ color: rgba(255,255,255,.7); }
.v2-footer-bottom a:hover{ color: var(--brand-2); }

@media (min-width:768px){ .v2-footer-top{ grid-template-columns: 1.1fr .8fr .9fr 1.1fr; gap:32px; } }
@media (min-width:1024px){ .v2-footer-bottom{ flex-direction:row; align-items:center; justify-content:space-between; } }

/* ---------- Floating widgets ---------- */
.v2-to-top{
  position:fixed; right:18px; bottom:18px; z-index:800;
  width:48px; height:48px; border-radius:50%;
  background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.v2-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
@media (max-width:1023px){ .v2-to-top{ display:none; } }
.v2-to-top svg{ width:18px; height:18px; }

.v2-whatsapp-fab{
  position:fixed; left:18px; bottom:18px; z-index:800;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  font-size:1.6rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-whatsapp-fab:hover{ transform: translateY(-3px); box-shadow:0 16px 32px rgba(37,211,102,.45); }

.v2-brochure-fab{
  position:fixed; right:18px; bottom:18px; z-index:800;
  width:50px; height:50px; border-radius:50%;
  background: var(--brand-grad); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  font-size:1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-brochure-fab:hover{ transform: translateY(-3px); box-shadow:0 16px 32px -6px rgba(255,90,54,.55); }
@media (min-width:1024px){ .v2-brochure-fab{ display:none; } }
