/* ============================================================
   WEBWALL PREMIUM TEMPLATE — main.css v2
   Design language: Stripe · Linear · Framer · Apple
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f8fafc;
  --bg-muted:    #f1f5f9;
  --bg-dark:     #0c1524;
  --bg-card:     #ffffff;
  --text:        #0f172a;
  --text-body:   #4a5568;
  --text-muted:  #94a3b8;
  --accent:      #c9954a;
  --accent-lt:   #fdf3e7;
  --accent-dark: #a87938;
  --border:      #e8edf3;
  --border-lt:   #f0f4f8;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 4px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:   0 4px 20px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.04);
  --shadow-lg:   0 12px 40px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.06);
  --shadow-xl:   0 24px 64px rgba(15,23,42,.13);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --section-py:  130px;
}

/* ---------- Global Body / Font override ---------- */
body {
  background: var(--bg);
  font-family: 'Inter', 'open_sansregular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-family: 'Inter', 'open_sansbold', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1.mainTitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: 'Inter', Arial, sans-serif;
}

p { line-height: 1.7; }

a { transition: var(--transition); }

/* ---------- Scroll-animate utility ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }
[data-animate][data-delay="6"] { transition-delay: 0.6s; }

/* ============================================================
   PRELOADER
   ============================================================ */
#loader {
  background: var(--white);
  bottom: 0; height: 100%; left: 0;
  position: fixed; right: 0; top: 0; width: 100%;
  z-index: 9999;
}
#loaderInner {
  background-image: url(../images/spinner.gif);
  background-position: 50% center;
  background-repeat: no-repeat;
  background-size: 36px 36px;
  height: 100%; left: 0;
  position: absolute; top: 0; width: 100%;
}

/* ============================================================
   WRAPPER
   ============================================================ */
#wrapper { position: relative; width: 100%; overflow-x: hidden; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: absolute;
  width: 100%; top: 0; left: 0;
  z-index: 1000;
}
header.fixed {
  position: fixed;
  width: 100%; top: 0; left: 0;
  z-index: 1000;
}
.mainHeader { width: 100%; }

/* Transparent header (over hero) */
.mainHeader.default {
  background: transparent;
}

/* Scrolled header – glassmorphism */
.switchedHeader {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 4px 20px rgba(15,23,42,.06);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
}

/* Logo */
.logo { margin: 20px 0 18px 0; }

.logo h1 {
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}
.logo h1 span {
  font-size: 11px;
  color: var(--accent);
  left: 3px;
  position: relative;
  top: -2px;
}
.switchedHeader .logo h1 { color: var(--text); }
.switchedHeader .logo h1 span { color: var(--accent); }

/* Navigation */
nav#mainNav {
  float: right;
  margin-top: 2px;
}
nav#mainNav li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
nav#mainNav li a {
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 20px 14px;
  position: relative;
  transition: color .2s;
}
nav#mainNav li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 14px;
  left: 14px;
  transition: width .22s var(--ease);
}
nav#mainNav li a:hover { color: #ffffff; }
nav#mainNav li a:hover::after { width: calc(100% - 28px); }

.switchedHeader nav#mainNav li a {
  color: var(--text) !important;
  background-color: transparent !important;
}
.switchedHeader nav#mainNav li a::after {
  background: var(--accent);
}
.switchedHeader nav#mainNav li a:hover {
  color: var(--accent) !important;
}

/* CTA nav item */
nav#mainNav li:last-child a {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 10px 16px;
  margin: 10px 0 10px 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
nav#mainNav li:last-child a::after { display: none; }
nav#mainNav li:last-child a:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,149,74,.3);
}
.switchedHeader nav#mainNav li:last-child a {
  color: var(--white) !important;
}

/* Mobile nav toggle */
.mobileBtn {
  background: var(--white);
  padding: 6px 8px;
  text-align: center;
  z-index: 1000;
  display: none;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.mobileBtn i {
  font-size: 16px;
  color: var(--accent);
}

/* ============================================================
   HERO / MAIN SLIDER
   ============================================================ */
.mainSlider { overflow: hidden; position: relative; }

.mainSlider .slides li {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  height: 100vh;
  min-height: 700px;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Hide the raw <img> element — the hero is always displayed as a
   CSS background-image injected by GeneratedSiteManager. Hiding the
   img prevents FlexSlider from expanding the slide to the image's
   native pixel height (which can be 2000px+ for high-res photos). */
.mainSlider .slides li img.slide {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  max-height: 1px !important;
  overflow: hidden;
  visibility: hidden;
}

/* Dark gradient overlay */
.mainSlider .slides li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,21,36,0.72) 0%,
    rgba(12,21,36,0.45) 50%,
    rgba(12,21,36,0.30) 100%
  );
  z-index: 1;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 860px;
  padding: 0 24px;
  color: var(--white);
  z-index: 2;
}

.caption h1 {
  color: var(--white);
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.caption p {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

/* Hero CTA button */
.allPosts { text-align: center; margin-bottom: 0; }

.specialBtn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--accent);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(201,149,74,.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.specialBtn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,149,74,.5);
}
.specialBtn i {
  background: rgba(0,0,0,0.15);
  border-radius: 0;
  color: var(--white);
  font-size: 18px;
  padding: 14px 16px;
  float: none;
  display: flex;
  align-items: center;
}
.specialBtn h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  margin-bottom: 0;
  float: none;
}

/* Flexslider control dots */
.flex-control-nav {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.flex-control-paging li a {
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: none;
}
.flex-control-paging li a.flex-active {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.secTitle {
  padding-top: var(--section-py);
  padding-bottom: 60px;
}
.secTitle.darkgrey {
  background: var(--bg-dark);
  padding-top: var(--section-py);
  padding-bottom: 56px;
}
.secContent.lightgrey {
  background: var(--bg-alt);
  padding-top: 60px;
  padding-bottom: var(--section-py);
}
.secContent {
  padding-bottom: var(--section-py);
}

.sectitleInner {
  margin-right: 45%;
  margin-left: 10px;
}
.sectitleInner h1.mainTitle,
.sectitleInner h1.darkgrey {
  color: var(--accent);
}
.sectitleInner h1.darkgrey + p,
.sectitleInner p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}
.secTitle.darkgrey .sectitleInner p {
  color: rgba(255,255,255,0.6);
}

/* Section heading that spans full width (benefits, FAQ, etc.) */
.row.sectitleInner {
  max-width: 640px;
}
#why-choose-us .sectitleInner,
#results .sectitleInner,
#faq .sectitleInner,
#final-cta .sectitleInner,
#contact .sectitleInner,
#testimonials .sectitleInner {
  margin-right: 0;
  max-width: 560px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { position: relative; overflow: hidden; }

.imgServices {
  background-position: 50% 20%;
  background-size: cover;
  display: block;
  height: calc(100% - 100px);
  right: 0;
  min-height: 300px;
  position: absolute;
  top: 100px;
  width: 38%;
  z-index: 11;
  border-radius: 0 0 0 var(--radius-xl);
  overflow: hidden;
}
.imgServices::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,21,36,.25) 100%);
}

.servicesInner {
  margin-right: 42%;
  margin-left: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
  align-items: start;
}

.service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 0;
  width: 100%;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: 0 0 3px 0;
  transition: height 0.3s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-lt);
}
.service:hover::before { height: 100%; }

.service h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 0;
  text-transform: uppercase;
}
.service i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  background: var(--accent-lt);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.service:hover i {
  background: var(--accent);
  color: var(--white);
}
.service p {
  margin-top: 12px;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  position: relative;
  background: var(--bg-dark);
}
.introBg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--bg-alt);
}

.intro {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.innerIntro { margin-top: 36px; }

.aboutVisual {
  margin-bottom: 32px;
  position: relative;
}
.aboutVisual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-xl);
}
.aboutVisual::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid rgba(201,149,74,0.25);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

.introSocial { margin-top: 16px; }
.introSocial li { display: inline; }
.introSocial li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,149,74,0.3);
  color: var(--accent);
  margin-right: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.introSocial li a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Short CTA buttons on about section */
.shortBtn {
  bottom: 8%;
  display: block;
  left: 44.3%;
  position: absolute;
  width: 55px;
}
.shortContact, .shortContact span, .shortContact i {
  background: var(--accent);
}
.shortFolio, .shortFolio span, .shortFolio i {
  background: var(--bg-dark);
}
.shortFolio i, .shortContact i {
  color: var(--white);
  display: block;
  font-size: 16px;
  height: 44px;
  line-height: 44px;
  position: relative;
  text-align: center;
  z-index: 13;
  margin-bottom: 2px;
  border-radius: 8px;
}
.shortFolio span, .shortContact span {
  color: var(--white);
  font-size: 13px;
  height: 44px;
  line-height: 44px;
  opacity: 1;
  overflow: hidden;
  padding: 0 14px;
  position: absolute;
  right: 0;
  width: 0;
  z-index: 12;
  white-space: nowrap;
}
.shortFolio:hover span {
  margin-right: 10px;
  opacity: 1;
  width: 160px;
}
.shortContact:hover span {
  margin-right: 10px;
  opacity: 1;
  width: 160px;
}

/* About — Differentiators (right dark panel) */
.features {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  padding-left: 72px;
}

.processHeading {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-transform: none;
}

.ft {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 36px;
}
.ft:last-child {
  border: none;
  padding-bottom: 0;
}
.ftIco, .ftDet { float: left; }

.ftIco span.ico {
  background: rgba(201,149,74,0.12);
  border: 2px solid rgba(201,149,74,0.25);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 56px;
  width: 56px;
  margin: 0 10px 10px -29px;
  position: relative;
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.ft:hover .ftIco span.ico {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.ftDet {
  margin-left: 16px;
  width: 310px;
}
.ftDet h3 {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ftDet p {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   WHY CHOOSE US / BENEFITS SECTION
   ============================================================ */
#why-choose-us .secTitle {
  background: var(--bg);
  padding-top: 80px;
  padding-bottom: 20px;
}
#why-choose-us .secTitle .mainTitle {
  color: var(--accent);
}
#why-choose-us .secTitle p {
  color: var(--text-body);
}
#why-choose-us .secContent {
  background: var(--bg-alt);
}

.plansInner { margin-top: 0; padding-top: 60px; }

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.planHeader {
  background: var(--bg-dark);
  padding: 36px 32px 28px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.planHeader::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,149,74,0.08);
}
.planHeader.featured {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.planHeader.featured::after {
  background: rgba(255,255,255,0.1);
}

.planName h3 {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 0;
  text-transform: none;
}
.planHeader.featured .planName h3 { color: var(--white); }

.planBody {
  background: var(--bg-card);
  padding: 28px 28px 32px;
  color: var(--text-body);
}
.planBody p {
  font-size: 14px;
  line-height: 1.7;
}
.planBody li {
  margin-bottom: 8px;
  text-transform: none;
  font-size: 14px;
}

/* Stats / Facts bar */
.facts {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  margin-top: 60px;
  margin-bottom: 0;
}
.facts .container { padding: 0; }

.fct {
  text-align: center;
  color: var(--white);
  padding: 16px;
}
.fct i {
  background: rgba(201,149,74,0.12);
  border: 2px solid rgba(201,149,74,0.25);
  color: var(--accent);
  font-size: 28px;
  height: 72px;
  width: 72px;
  line-height: 68px;
  margin: 0 auto;
  display: inline-block;
  border-radius: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.fct:hover i {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.fct i, .fc, .count { display: block; }

.fct .count {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 6px;
}
.fct .fc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.fct p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
}

/* ============================================================
   CASE STUDIES / PORTFOLIO
   ============================================================ */
#results { padding-top: 0; }
#results .secTitle {
  background: var(--bg);
  padding-top: var(--section-py);
}
#results .secTitle .mainTitle { color: var(--accent); }
#results .secContent { background: var(--bg); padding-bottom: var(--section-py); }

.item {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.item img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.item:hover img { transform: scale(1.04); }

.item a { display: block; position: relative; overflow: hidden; }
.item a .desc {
  background: rgba(201,149,74,0.94);
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.item a:hover .desc { opacity: 1; }

.crosshair {
  display: none;
}

.item a .desc h3 {
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  margin-top: 0;
  padding: 18px 24px;
  border-radius: 10px;
  position: relative;
  letter-spacing: -0.01em;
}
.item a .desc h3::after { display: none; }

.projDesc span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS — 3-column static grid
   ============================================================ */

/* Legacy slider elements hidden (section now uses grid) */
.aboutDetails { background: var(--bg-alt); }
.testiSlider, .testimonials { display: none !important; }

/* New section */
#testimonials.testimonialsSection {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
  display: block !important;
}

.testiSectionHeader {
  text-align: center;
  margin-bottom: 64px;
}
.testiEyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.testiHeadline {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.2;
}

.testiGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testiCard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.testiCard:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,149,74,0.25);
  transform: translateY(-4px);
}

/* Featured / center card — elevated */
.testiCardFeatured {
  background: rgba(201,149,74,0.10);
  border-color: rgba(201,149,74,0.25);
  position: relative;
}
.testiCardFeatured::before {
  content: "Most Helpful";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.testiCardStars {
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}

.testiCardQuote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
  position: relative;
}
.testiCardQuote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(201,149,74,0.2);
  line-height: 0;
  position: absolute;
  top: 24px;
  left: -8px;
}

.testiCardFooter {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testiCardAvatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(201,149,74,0.4);
}
.testiCardAvatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testiCardName {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Clients carousel — removed (replaced by testimonial grid) */
.clients { display: none !important; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq .secTitle.darkgrey { background: var(--bg-dark); }
#faq .secTitle.darkgrey h1.mainTitle { color: var(--accent); }
#faq .secContent.lightgrey {
  background: var(--bg-alt);
  padding-top: 64px;
  padding-bottom: var(--section-py);
}

.faqList {
  max-width: 860px;
  margin: 0 auto;
}

.faqItem {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.faqItem:hover { box-shadow: var(--shadow-md); }
.faqItem[open] {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faqItem summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.5;
  text-transform: none;
  color: var(--text);
  padding: 22px 52px 22px 22px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12px;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-lt);
  transition: transform 0.25s var(--ease), background 0.2s;
  font-family: Arial, sans-serif;
}
.faqItem[open] summary {
  background: var(--accent-lt);
  color: var(--accent-dark);
}
.faqItem[open] summary::after {
  content: "−";
  background: var(--accent);
  color: var(--white);
  transform: rotate(0deg);
}

.faqItem p {
  margin: 0;
  padding: 0 22px 22px 22px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
#final-cta {
  background: var(--bg-dark);
  border: none;
  padding: var(--section-py) 0;
  margin-top: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,149,74,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cltInner {
  position: relative;
  z-index: 1;
}
.cltInner:before { display: none; }

.clt p {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
}
.clt p i { display: none; }

.clt a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 10px;
  margin-top: 36px;
  box-shadow: 0 4px 20px rgba(201,149,74,.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.clt a:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201,149,74,.5);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact .secTitle {
  background: var(--bg);
  padding-top: var(--section-py);
  padding-bottom: 0;
}
#contact .secTitle .mainTitle { color: var(--accent); }
#contact .secContent {
  background: var(--bg);
  padding-bottom: var(--section-py);
}

.contactForm { margin-top: 48px; }
.contactInfo  { margin-top: 48px; }

.inputColumns .column1 { float: left; width: 50%; }
.inputColumns .column2 { float: left; width: 50%; }

.contactForm input[type="text"],
.contactForm textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  margin: 0 0 12px;
  outline: 0;
  padding: 14px 16px;
  resize: none;
  width: 95%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contactForm textarea {
  width: 97.4%;
  color: var(--text);
}
.contactForm input[type="text"]:focus,
.contactForm textarea:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(201,149,74,0.12);
}
.contactForm input[type="text"]::placeholder,
.contactForm textarea::placeholder {
  color: var(--text-muted);
}

.contactForm #submit {
  background: var(--accent) !important;
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(201,149,74,.3) !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.contactForm #submit:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,74,.4) !important;
}

.errorForm {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1) !important;
}

#success, #error { display: none; position: relative; }
#success h2 { color: #38a169; font-size: 13px; position: absolute; top: 8px; left: 0; text-transform: none; }
#error h2 { color: #e53e3e; font-size: 13px; position: absolute; top: 8px; left: 0; text-transform: none; }

/* Contact Info card */
.contactInfo {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-lg);
}

.cInfo { margin-top: 0; margin-bottom: 32px; }

.contactInfo h1 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.contactInfo ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.contactInfo .cInfo ul li:nth-child(1):before,
.contactInfo .cInfo ul li:nth-child(2):before,
.contactInfo .cInfo ul li:nth-child(3):before,
.contactInfo .wInfo ul li:before {
  font-family: "fontello";
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
}
.contactInfo .cInfo ul li:nth-child(1):before { content: "\e81f"; }
.contactInfo .cInfo ul li:nth-child(2):before { content: "\e804"; }
.contactInfo .cInfo ul li:nth-child(3):before { content: "\e814"; }
.contactInfo .wInfo ul li:before { content: "\e80a"; }

/* Clickable tel/mailto links inside the contact info card */
.contactInfo ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.contactInfo ul li a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footerholder {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 48px 0;
  text-align: center;
  text-transform: uppercase;
}
.footerholder p { margin-top: 14px; }
.brand { color: var(--accent); }

.socialsFooter li {
  display: inline-block;
  margin-right: 6px;
  text-align: center;
}
.socialsFooter a {
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.socialsFooter a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,149,74,0.1);
}
.socialsFooter li i { line-height: 38px; font-size: 15px; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.remove-bottom { margin-bottom: 0 !important; }
.half-bottom    { margin-bottom: 10px !important; }
.add-bottom     { margin-bottom: 20px !important; }
.offsetBottom   { margin-bottom: 80px; }
.offsetTop      { padding-top: 80px; }
.singleOffset   { margin-top: 200px; }
.blogSingle.singleOffset { margin-top: 150px; }

/* Inherited btn fallback */
.btn { margin-top: 20px; }
.btn a {
  background: var(--text);
  color: var(--white);
  padding: 10px 24px;
  display: inline-block;
  border-radius: var(--radius-sm);
}
.btn.featured a, .btn.more a {
  background: var(--accent);
  color: var(--white);
}
.btn a:hover { background: var(--accent-dark); }

/* ============================================================
   FLEXSLIDER OVERRIDES
   ============================================================ */
.flex-control-nav { z-index: 10; }
.flex-control-paging li a {
  background: rgba(201,149,74,0.25);
  box-shadow: none;
}
.flex-control-paging li a.flex-active {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,149,74,.25);
}

/* ============================================================
   RESPONSIVE — Tablet landscape 768–959px
   ============================================================ */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  input, textarea { -webkit-appearance: none; -webkit-border-radius: 0; }
  .mainSlider .slides li { background-attachment: scroll; background-position: top center !important; background-size: cover; }
  .sectitleInner { margin-right: 20%; }
  #services .sectitleInner { margin-right: 45%; }
  .ftDet { width: 220px; }
  .innerIntro { margin-top: 90px; }
  .shortBtn { left: 42.9%; }
  .testimonials .testiSlider { width: 680px; }
  .caption h1 { font-size: 52px; }
  .features { padding-left: 48px; }
}

/* ============================================================
   RESPONSIVE — Mobile landscape 480–767px
   ============================================================ */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  :root { --section-py: 100px; }
  input, textarea { -webkit-appearance: none; -webkit-border-radius: 0; }
  html { -webkit-text-size-adjust: none; }

  .mainSlider .slides li { background-attachment: scroll; background-position: top center !important; background-size: cover; min-height: 600px; }
  .mainHeader { background-color: rgba(12,21,36,0.96) !important; }
  .logo h1 { color: var(--white); }
  .logo h1 span { color: var(--accent); }
  /* Logo stays white on mobile even after scroll (header bg stays dark) */
  .switchedHeader .logo h1 { color: var(--white) !important; }
  .switchedHeader .logo h1 span { color: var(--accent) !important; }
  .switchedHeader nav#mainNav li a { color: rgba(255,255,255,0.85) !important; }
  .switchedHeader nav#mainNav li a:hover { color: var(--white) !important; }
  .switchedHeader nav#mainNav li:last-child a { color: var(--white) !important; }
  .logo, nav#mainNav { float: none; }
  nav#mainNav { margin-right: 0; }
  nav#mainNav ul { display: none; margin-bottom: 10px; }
  nav#mainNav li { float: none; display: block; }
  nav#mainNav li:last-child a { margin: 8px 0; }
  .mobileBtn { display: inline-block; float: right; margin-right: 10px; margin-top: -51px; position: relative; }

  .caption h1 { font-size: 36px; line-height: 1.15; }
  .caption p { font-size: 16px; line-height: 1.6; }

  .introBg { height: 37%; width: 100%; }
  .shortBtn { left: 105%; top: 27%; }
  .intro { padding-top: 60px; }
  .innerIntro { margin-top: 0; margin-bottom: 70px; }
  .features { padding-left: 32px; padding-top: 20px; padding-bottom: 72px; }
  .ftIco span.ico { margin: 0 10px 10px -31px; }
  .ftDet { margin-left: 16px; width: 280px; }

  .testimonials .testiSlider { width: 420px; }
  .testimonials { padding-top: 70px; padding-bottom: 40px; }
  .testiSlider li { padding: 28px 32px 36px; }
  .testiSlider li blockquote { font-size: 16px; }
  .clients { padding: 28px 0; }

  #faq .secContent.lightgrey { padding-top: 48px; }
  .faqItem summary { font-size: 14px; }

  .container .fct, .container .plan, .container .post, .container .info { margin-bottom: 24px; }
  .container .fct:last-child, .container .plan:last-child { margin-bottom: 0; }
  .sectitleInner { margin-right: 0; }

  .imgServices {
    position: relative;
    height: 240px;
    min-height: 240px;
    top: auto; right: auto;
    width: 100%;
    background-position: 50% 40%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .servicesInner {
    margin-right: 0; margin-left: 0;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .clt p { font-size: 26px; line-height: 1.3; }
  .clt a { font-size: 14px; margin-top: 28px; padding: 14px 28px; }

  .facts { padding: 36px 20px; border-radius: var(--radius-lg); }
  .fct .count { font-size: 36px; }

  .contactInfo { padding: 28px 24px; }

  /* Stack contact form input columns */
  .inputColumns .column1,
  .inputColumns .column2 { float: none; width: 100%; }
  .contactForm input[type="text"] { width: 100%; box-sizing: border-box; }
  .contactForm textarea { width: 100%; box-sizing: border-box; }
}

/* ============================================================
   RESPONSIVE — Mobile portrait 0–479px
   ============================================================ */
@media only screen and (max-width: 479px) {
  input, textarea { -webkit-appearance: none; -webkit-border-radius: 0; }
  html { -webkit-text-size-adjust: none; }

  .mainSlider .slides li { background-attachment: scroll; background-position: top center !important; background-size: cover; min-height: 560px; }
  .mainHeader { background-color: rgba(12,21,36,0.96) !important; }
  .logo h1 { color: var(--white); }
  .logo h1 span { color: var(--accent); }
  /* Logo stays white on mobile even after scroll (header bg stays dark) */
  .switchedHeader .logo h1 { color: var(--white) !important; }
  .switchedHeader .logo h1 span { color: var(--accent) !important; }
  .switchedHeader nav#mainNav li a { color: rgba(255,255,255,0.85) !important; }
  .switchedHeader nav#mainNav li a:hover { color: var(--white) !important; }
  .switchedHeader nav#mainNav li:last-child a { color: var(--white) !important; }
  .logo, nav#mainNav { float: none; }
  nav#mainNav { margin-right: 0; }
  nav#mainNav ul { display: none; margin-bottom: 10px; }
  nav#mainNav li { float: none; display: block; }
  nav#mainNav li:last-child a { margin: 6px 0; }
  .mobileBtn { display: inline-block; float: right; margin-right: 2px; margin-top: -51px; position: relative; }

  h1.mainTitle { font-size: 12px; }
  .caption { padding: 0 16px; }
  .caption h1 { font-size: 32px; line-height: 1.15; }
  .caption p { font-size: 15px; line-height: 1.6; }

  .introBg { height: 37%; width: 100%; }
  .shortBtn { left: 85%; top: 28%; }
  .intro { padding-top: 60px; }
  .innerIntro { margin-top: 0; margin-bottom: 90px; }
  .features { padding-left: 32px; padding-top: 20px; padding-bottom: 64px; }
  .ftIco span.ico { margin: 0 10px 10px -31px; }
  .ftDet { margin-left: 14px; width: 200px; }

  .testimonials .testiSlider { width: 260px; }
  .testimonials { padding-top: 60px; padding-bottom: 32px; }
  .testiSlider li { padding: 24px 20px 28px; }
  .testiSlider li blockquote { font-size: 15px; line-height: 1.65; }
  .clients { padding: 20px 0; }

  #faq .secContent.lightgrey { padding-top: 40px; padding-bottom: 60px; }
  .faqItem { margin-bottom: 10px; }
  .faqItem summary { font-size: 14px; padding: 18px 44px 18px 18px; }
  .faqItem p { padding: 0 18px 18px; font-size: 14px; }

  .container .fct, .container .plan, .container .post, .container .info { margin-bottom: 20px; }
  .container .fct:last-child, .container .plan:last-child { margin-bottom: 0; }
  .sectitleInner { margin-right: 0; }

  .imgServices {
    position: relative;
    height: 210px; min-height: 210px;
    top: auto; right: auto;
    width: 100%;
    background-position: 50% 38%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .servicesInner {
    margin-right: 0; margin-left: 0;
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .clt p { font-size: 24px; line-height: 1.3; }
  .clt a { font-size: 13px; margin-top: 24px; padding: 13px 24px; }

  .facts { padding: 32px 16px; border-radius: var(--radius-md); }
  .fct .count { font-size: 32px; }

  .contactInfo { padding: 24px 20px; border-radius: var(--radius-lg); }
  .contactInfo ul li { padding-left: 24px; }

  /* Stack contact form input columns */
  .inputColumns .column1,
  .inputColumns .column2 { float: none; width: 100%; }
  .contactForm input[type="text"] { width: 100%; box-sizing: border-box; }
  .contactForm textarea { width: 100%; box-sizing: border-box; }

  :root { --section-py: 80px; }
  .secTitle, .secTitle.darkgrey { padding-top: 64px; }
}

/* ============================================================
   iPad landscape (device query)
   ============================================================ */
@media screen and (max-device-width: 960px) {
  input, textarea { -webkit-appearance: none; -webkit-border-radius: 0; }
  .mainSlider .slides li { background-attachment: scroll; background-position: top center !important; background-size: cover; }
  .mainSlider .flex-control-nav { opacity: 1 !important; bottom: 40px !important; }
}

/* ============================================================
   ARCHITECTURE UPGRADE — NEW SECTIONS
   ============================================================ */

/* ---------- Enhanced Hero ---------- */
.caption {
  /* Override the translate positioning for the enhanced layout */
}

.heroCta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.heroPrimaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(201,149,74,.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.heroPrimaryBtn i {
  font-size: 18px;
}
.heroPrimaryBtn:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,149,74,.55);
  color: var(--white) !important;
}

.heroSecondaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9) !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.heroSecondaryBtn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.heroTrustBadges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.heroTrustBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.heroTrustBadge i {
  color: var(--accent);
  font-size: 15px;
}

/* ---------- Trust Bar ---------- */
#trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.trustBarGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 28px;
}

.trustBarStat {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  transition: background 0.2s;
}
.trustBarStat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.trustBarStat:hover { background: var(--bg-alt); border-radius: var(--radius-md); }

.trustBarStat i {
  display: block;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
}

.trustBarNum {
  display: block;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.trustBarLbl {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trustBarLabel {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trustBarLabel::before,
.trustBarLabel::after {
  content: '— ';
  letter-spacing: 0;
}

/* Process Timeline — removed section, styles kept for safety but unused */
#process { display: none !important; }

/* ---------- Process Timeline (legacy, unused) ---------- */
#process .secTitle {
  background: var(--bg);
  padding-top: var(--section-py);
  padding-bottom: 20px;
}
#process .secTitle .mainTitle { color: var(--accent); }
#process .secContent {
  background: var(--bg);
  padding-bottom: var(--section-py);
}

.processTimeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.processStep {
  padding: 0 24px;
  position: relative;
}
.processStep:first-child { padding-left: 0; }
.processStep:last-child  { padding-right: 0; }

.processStepHead {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.processStepNum {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,149,74,.3);
  position: relative;
  z-index: 1;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.processStep:hover .processStepNum {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,149,74,.45);
}

.processStepConnector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%);
  margin-left: 12px;
}
.processStepLast .processStepConnector {
  background: transparent;
}

.processStepBody h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: none;
}
.processStepBody p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ---------- Enhanced Final CTA ---------- */
#final-cta {
  background: var(--bg-dark);
  padding: 100px 0 110px;
  margin-top: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: none;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,149,74,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201,149,74,.08) 0%, transparent 55%);
  pointer-events: none;
}

.cltInner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cltInner:before { display: none; }

.cltBadge {
  display: inline-block;
  background: rgba(201,149,74,0.15);
  color: var(--accent);
  border: 1px solid rgba(201,149,74,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.cltHeadline {
  font-size: 48px !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white) !important;
  margin-bottom: 16px;
}

.cltSubtext {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cltActions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cltPrimaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(201,149,74,.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.cltPrimaryBtn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201,149,74,.55);
  color: var(--white) !important;
}

.cltSecondaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75) !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease), color 0.2s;
}
.cltSecondaryBtn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.cltTrustLine {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.cltTrustLine i {
  color: var(--accent);
  margin-right: 4px;
}

/* Retire old .clt p / .clt a styles for the new structure */
.clt p { font-size: inherit; color: inherit; }
.clt p i { display: none; }
.cltInner:before { display: none !important; }

/* ============================================================
   RESPONSIVE — New sections mobile
   ============================================================ */
@media only screen and (max-width: 767px) {
  /* Hero CTAs */
  .heroCta { flex-direction: column; gap: 12px; }
  .heroPrimaryBtn, .heroSecondaryBtn { width: 100%; max-width: 300px; justify-content: center; }
  .heroTrustBadges { gap: 14px; }
  .heroTrustBadge { font-size: 12px; }

  /* Trust bar */
  .trustBarGrid { grid-template-columns: repeat(2, 1fr); }
  .trustBarStat:nth-child(2)::after { display: none; }
  .trustBarNum { font-size: 36px; }

  /* Testimonials grid — stack to 1 column */
  .testiGrid { grid-template-columns: 1fr; gap: 20px; }
  .testiCard { padding: 28px 24px; }
  .testiHeadline { font-size: 26px; }
  .testiCardFeatured { margin-top: 12px; }

  /* Enhanced CTA */
  .cltHeadline { font-size: 32px !important; }
  .cltSubtext { font-size: 16px; }
  .cltActions { flex-direction: column; gap: 12px; }
  .cltPrimaryBtn, .cltSecondaryBtn { width: 100%; max-width: 300px; justify-content: center; }
}

@media only screen and (max-width: 479px) {
  .trustBarGrid { grid-template-columns: repeat(2, 1fr); }
  .trustBarStat { padding: 20px 12px; }
  .trustBarNum { font-size: 30px; }
  #trust-bar { padding: 44px 0; }

  .testiGrid { gap: 16px; }
  .testiCard { padding: 22px 18px; }
  .testiCardQuote { font-size: 15px; }
  .testiHeadline { font-size: 24px; }

  .cltHeadline { font-size: 26px !important; }
  .cltBadge { font-size: 10px; }
}
