.elementor-14334 .elementor-element.elementor-element-22f4577{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2aba46b *//* ============================================================
   VALOR & MEDIA — BEAUTY & FASHION PAGE  |  CSS FINAL FIXED
   Paste everything inside your <style> tag
============================================================ */


/* ============================================================
   VARIABLES & ROOT
============================================================ */
:root {
  --bg:          #ffffff;
  --bg-2:        #f8f7f5;
  --bg-3:        #f0ede8;
  --dark:        #0e0f11;
  --dark-2:      #1a1b1e;
  --gold:        #b8956a;
  --gold-lt:     #d4b389;
  --gold-bg:     rgba(184,149,106,0.09);
  --text:        #2d2d2d;
  --text-dim:    #6b6d72;
--cta-opacity: 1.55;
  /* ══════════════════════════════════════════
     CTA BACKGROUND OPACITY — YAHAN SA CONTROL KARO
     0.0 = puri image dikhegi (transparent)
     0.5 = half dark
     1.0 = bilkul dark (koi image nahi)
     Recommended: 0.45 to 0.65
     ══════════════════════════════════════════ */
  --cta-opacity: 0.55;
  --line:        rgba(0,0,0,0.08);
  --white:       #ffffff;
  --font:        'Poppins', sans-serif;
  --radius:      14px;
  --radius-sm:   8px;
  --max-width:   1240px;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family:            var(--font);
  font-size:              16px;
  line-height:            1.7;
  color:                  var(--text);
  background:             var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x:             hidden;
  margin:                 0 !important;
  padding:                0 !important;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatBob { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes shimmer  { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }

/* ============================================================
   GLOBAL LAYOUT
============================================================ */
.container,
.wrap {
  max-width: var(--max-width);
  margin:    0 auto;
  padding:   0 5%;
}
section {
  padding:           100px 0;
  position:          relative;
  width:             100%;
  scroll-margin-top: 90px;
}

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   GLOBAL COMPONENTS
============================================================ */

/* Eyebrow */
.eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            12px;
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  18px;
}
.eyebrow::before {
  content:     '';
  width:       28px;
  height:      1.5px;
  background:  var(--gold);
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content:    '';
  width:      28px;
  height:     1.5px;
  background: var(--gold);
}

/* Section head */
.section-head { max-width: 700px; margin-bottom: 64px; }
.section-head h2 {
  font-size:      clamp(26px, 3vw, 40px);
  font-weight:    800;
  letter-spacing: -1px;
  color:          var(--dark);
  line-height:    1.15;
  margin-bottom:  16px;
}
.section-head h2 em { font-style: normal; color: var(--gold); }
.section-head p     { font-size: 15.5px; line-height: 1.82; color: var(--text-dim); }

/* Buttons */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             9px;
  padding:         14px 28px;
  border-radius:   var(--radius-sm);
  font-family:     var(--font);
  font-size:       14px;
  font-weight:     600;
  letter-spacing:  0.2px;
  transition:      all .3s var(--ease);
  cursor:          pointer;
  border:          none;
  white-space:     nowrap;
  text-decoration: none;
}
.btn i { font-size: 11px; transition: transform .3s var(--ease); }

.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover {
  background:  var(--gold);
  transform:   translateY(-2px);
  box-shadow:  0 8px 24px rgba(184,149,106,.3);
  color:       #fff;
}
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
  background:  transparent;
  color:       var(--dark);
  border:      1.5px solid var(--dark);
}
.btn-ghost:hover {
  background:  var(--dark);
  color:       #fff;
  transform:   translateY(-2px);
}

/* Badge */
.case-callout,
.badge-label {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  padding:        6px 16px;
  background:     var(--gold-bg);
  border:         1px solid rgba(184,149,106,0.25);
  border-radius:  100px;
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  16px;
}

/* CTA sub heading */
.cta-subheading,
.cta-sub {
  font-size:      22px;
  font-weight:    700;
  color:          var(--gold);
  letter-spacing: -.3px;
  text-transform: none;
  margin:         28px 0 12px;
  line-height:    1.3;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb-bar {
  background:    var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding:       14px 0;
}
.breadcrumb-nav {
  display:        flex;
  align-items:    center;
  gap:            10px;
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color:          var(--text-dim);
}
.breadcrumb-nav a       { transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav .divider{ color: var(--bg-3); }
.breadcrumb-nav .current{ color: var(--gold); font-weight: 600; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  background: var(--bg);
  padding:    80px 0 100px;
  position:   relative;
  overflow:   hidden;
}
.hero::before {
  content:        '';
  position:       absolute;
  top:  -140px; right: -140px;
  width:  640px; height: 640px;
  background:     radial-gradient(circle, rgba(184,149,106,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-layout {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         72px;
  align-items: center;
}
.hero-inner { animation: fadeUp .9s var(--ease) both; }

.hero h1 {
  font-size:      clamp(30px, 3.8vw, 52px);
  font-weight:    800;
  line-height:    1.12;
  letter-spacing: -1.5px;
  color:          var(--dark);
  margin-bottom:  22px;
}
.hero h1 em { font-style: normal; color: var(--gold); font-weight: 800; }

.hero-lead {
  font-size:     16.5px;
  line-height:   1.78;
  color:         var(--text-dim);
  margin-bottom: 16px;
}
.hero-scope {
  font-size:     13px;
  line-height:   1.85;
  color:         #b0b2b7;
  padding-top:   18px;
  border-top:    1px solid var(--line);
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.last-updated {
  display:        flex;
  align-items:    center;
  gap:            8px;
  margin-top:     28px;
  padding-top:    22px;
  border-top:     1px solid var(--line);
  font-size:      12px;
  color:          var(--text-dim);
  font-weight:    500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.last-updated::before {
  content:       '';
  width:         6px;
  height:        6px;
  background:    var(--gold);
  border-radius: 50%;
  flex-shrink:   0;
}

.hero-visual {
  position:  relative;
  animation: fadeUp 1.1s var(--ease) .15s both;
  width:     100%;
}
.hero-image-wrap {
  border-radius: 20px;
  overflow:      hidden;
  aspect-ratio:  4/5;
  border:        1px solid var(--line);
  box-shadow:    0 24px 64px rgba(0,0,0,.1);
}
.hero-image-wrap img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  filter:     saturate(.92) contrast(1.04);
  transition: transform 1.2s var(--ease);
}
.hero-image-wrap:hover img { transform: scale(1.04); }

.hero-image-badge {
  position:      absolute;
  bottom:        32px; left: -36px;
  background:    #fff;
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       18px 24px;
  box-shadow:    0 16px 40px rgba(0,0,0,.13);
  display:       flex;
  align-items:   center;
  gap:           16px;
  animation:     floatBob 5s ease-in-out infinite;
  min-width:     220px;
  z-index:       2;
}
.badge-num {
  font-size:      26px;
  font-weight:    800;
  color:          var(--dark);
  letter-spacing: -1px;
  line-height:    1;
  flex-shrink:    0;
}
.badge-num span { font-size: 15px; color: var(--gold); }

.hero-image-badge .badge-label {
  padding:        0;
  background:     transparent;
  border:         none;
  border-radius:  0;
  text-transform: none;
  letter-spacing: 0;
  font-size:      11px;
  color:          var(--text-dim);
  line-height:    1.45;
  font-weight:    400;
  margin-bottom:  0;
}

/* ============================================================
   WHY SECTION
============================================================ */
.why { background: var(--bg-2); }
.why-grid {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         80px;
  align-items: start;
}
.why-left h2 {
  font-size:      clamp(26px, 3vw, 40px);
  font-weight:    800;
  letter-spacing: -1px;
  color:          var(--dark);
  line-height:    1.15;
  margin-bottom:  18px;
}
.why-left h2 em { font-style: normal; color: var(--gold); }
.why-left > p {
  font-size:     15.5px;
  color:         var(--text-dim);
  line-height:   1.82;
  margin-bottom: 32px;
}
.why-image-wrap {
  border-radius: var(--radius);
  overflow:      hidden;
  aspect-ratio:  4/3;
  border:        1px solid var(--line);
}
.why-image-wrap img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  filter:     saturate(.9) contrast(1.04);
  transition: transform 1.2s var(--ease);
}
.why-image-wrap:hover img { transform: scale(1.04); }

.why-right { display: flex; flex-direction: column; }
.why-point {
  display:       grid;
  grid-template-columns: 48px 1fr;
  gap:           20px;
  padding:       28px 0;
  border-bottom: 1px solid var(--line);
  transition:    padding-left .3s var(--ease);
}
.why-point:first-child { padding-top: 0; }
.why-point:last-child  { border-bottom: none; }
.why-point:hover       { padding-left: 8px; }

.why-point-num {
  width:           44px;
  height:          44px;
  background:      var(--dark);
  color:           var(--gold);
  border-radius:   12px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       12px;
  font-weight:     700;
  letter-spacing:  1px;
  flex-shrink:     0;
  transition:      background .3s, color .3s;
}
.why-point:hover .why-point-num { background: var(--gold); color: #fff; }
.why-point h3 { font-size: 15.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-point p  { font-size: 14px; line-height: 1.75; color: var(--text-dim); }

/* ============================================================
   PAIN / PROBLEMS SECTION
============================================================ */
.pain { background: var(--bg); }
.pain-grid {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         80px;
  align-items: start;
}
.pain-left h2 {
  font-size:      clamp(26px, 3vw, 40px);
  font-weight:    800;
  letter-spacing: -1px;
  color:          var(--dark);
  line-height:    1.15;
  margin-bottom:  16px;
}
.pain-left h2 em { font-style: normal; color: var(--gold); }
.pain-intro { font-size: 15.5px; color: var(--text-dim); line-height: 1.82; margin-bottom: 28px; }

.pain-list { list-style: none; display: flex; flex-direction: column; }
.pain-list li {
  display:       flex;
  gap:           16px;
  padding:       18px 0;
  border-bottom: 1px solid var(--line);
  align-items:   flex-start;
  transition:    padding-left .3s var(--ease);
  font-size:     14px;
  line-height:   1.75;
  color:         var(--text-dim);
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li:hover      { padding-left: 8px; }

.pain-list-num {
  width:           32px;
  height:          32px;
  background:      rgba(184,149,106,.1);
  border-radius:   8px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--gold);
  font-size:       12px;
  font-weight:     700;
  flex-shrink:     0;
  margin-top:      2px;
  transition:      background .3s, color .3s;
}
.pain-list li:hover .pain-list-num { background: var(--gold); color: #fff; }

.pain-solution {
  background:    var(--dark);
  border-radius: 20px;
  overflow:      hidden;
  color:         #fff;
}
.pain-solution-image { height: 220px; overflow: hidden; position: relative; }
.pain-solution-image::after {
  content:    '';
  position:   absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--dark) 100%);
}
.pain-solution-image img {
  width:      100%; height: 100%;
  object-fit: cover;
  filter:     saturate(.8) brightness(.65);
  transition: transform 1.2s var(--ease);
}
.pain-solution:hover .pain-solution-image img { transform: scale(1.06); }

.pain-solution-content { padding: 40px 44px 48px; }
.pain-solution-content::before {
  content:       '';
  display:       block;
  width: 48px; height: 3px;
  background:    var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.pain-solution .eyebrow { margin-bottom: 20px; }
.pain-solution h3 {
  font-size:    24px; font-weight: 700; color: #fff;
  line-height:  1.28; margin-bottom: 14px; letter-spacing: -.4px;
}
.pain-solution p { font-size: 14.5px; line-height: 1.82; color: rgba(255,255,255,.6); font-weight: 300; }

/* ============================================================
   WHO WE SERVE — CARDS SECTION
============================================================ */
.serve { background: var(--bg-2); }

.serve-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   20px;
  margin-bottom:         32px;
}

.serve-item {
  border-radius:  var(--radius);
  padding:        32px 32px 56px;
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  position:       relative;
  overflow:       hidden;
  transition:     transform .35s var(--ease), box-shadow .35s var(--ease);
}
.serve-item:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,.1); }

.serve-item:nth-child(1) { background: #e8f2ed; }
.serve-item:nth-child(2) { background: #ece8f5; }
.serve-item:nth-child(3) { background: #f5f0e0; }
.serve-item:nth-child(4) { background: #eef0e4; }
.serve-item:nth-child(5) { background: #e4eef5; }
.serve-item:nth-child(6) { background: #f5e8e4; }
.serve-item:nth-child(7) { background: #f5f0e0; }
.serve-item:nth-child(8) { background: #e8f2ed; }

.serve-num {
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 2px;
  color:          rgba(0,0,0,.25);
  text-transform: uppercase;
  margin-bottom:  6px;
}
.serve-item h3 {
  font-size:    16px; font-weight: 700; color: var(--dark);
  margin-bottom:14px; letter-spacing: -.2px; line-height: 1.3;
}
.serve-item p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* Arrow bottom-right */
.serve-item::after {
  content:         '↗';
  position:        absolute;
  right:  20px; bottom: 20px;
  width:  32px; height: 32px;
  background:      rgba(0,0,0,0.06);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       14px;
  font-weight:     700;
  color:           var(--dark);
  transition:      background .3s var(--ease), color .3s var(--ease), transform .35s var(--ease);
}
.serve-item:hover::after { background: var(--dark); color: var(--gold); transform: rotate(45deg); }

.serve-note {
  background:    var(--bg);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       30px 40px;
  display:       flex;
  align-items:   center;
  gap:           32px;
  transition:    border-color .3s, box-shadow .3s;
}
.serve-note:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(184,149,106,.12); }
.serve-note-label { font-size: 16px; font-weight: 700; color: var(--dark); flex-shrink: 0; max-width: 220px; line-height: 1.35; }
.serve-note-text  { font-size: 14px; line-height: 1.78; color: var(--text-dim); flex: 1; }
.serve-note-text a {
  color: var(--dark); font-weight: 600;
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  transition: color .2s;
}
.serve-note-text a:hover { color: var(--gold); }

/* ============================================================
   GROWTH LEVERS SECTION
============================================================ */
.growth { background: var(--bg); }
.growth .section-head h2    { color: var(--dark); }
.growth .section-head h2 em { color: var(--gold); }
.growth .section-head p     { color: var(--text-dim); }

.growth-list { display: flex; flex-direction: column; }
.growth-row {
  display:     grid;
  grid-template-columns: 80px 1fr 1fr;
  gap:         48px;
  padding:     44px 0;
  border-top:  1px solid var(--line);
  align-items: start;
  transition:  padding-left .3s var(--ease);
}
.growth-row:last-child { border-bottom: 1px solid var(--line); }
.growth-row:hover      { padding-left: 12px; }

.growth-num {
  font-size:      42px; font-weight: 800;
  color:          var(--bg-3); letter-spacing: -2px; line-height: 1;
  transition:     color .3s;
}
.growth-row:hover .growth-num { color: var(--gold); }
.growth-title h3 { font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.35; letter-spacing: -.3px; }
.growth-desc p   { font-size: 14px; line-height: 1.82; color: var(--text-dim); }

.process-note {
  margin-top:    56px;
  padding:       32px 40px;
  background:    var(--bg-2);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  display:       flex;
  align-items:   center;
  gap:           32px;
  transition:    border-color .3s;
}
.process-note:hover { border-color: rgba(184,149,106,.3); }
.process-note-label {
  font-size:      12px; font-weight: 700; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
  flex-shrink:    0; padding-right: 32px; border-right: 1px solid var(--line); white-space: nowrap;
}
.process-note-text { font-size: 14px; line-height: 1.78; color: var(--text-dim); }
.process-note-text a {
  color: var(--dark); font-weight: 600;
  border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color .2s;
}
.process-note-text a:hover { color: var(--gold); }

/* ============================================================
   EDITORIAL BREAK
============================================================ */
.editorial-break { padding: 0; position: relative; }
.editorial-image { height: 500px; overflow: hidden; position: relative; }
.editorial-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter:     saturate(.8) brightness(.72) contrast(1.1);
  transition: transform 4s var(--ease);
}
.editorial-image:hover img { transform: scale(1.04); }

.editorial-overlay {
  position:    absolute; inset: 0;
  background:  linear-gradient(90deg, rgba(14,15,17,.9) 0%, rgba(14,15,17,.58) 55%, rgba(14,15,17,.2) 100%);
  display:     flex; align-items: center;
}
.editorial-overlay .container { width: 100%; }
.editorial-overlay .eyebrow {
  background:    rgba(184,149,106,.14);
  border:        1px solid rgba(184,149,106,.32);
  border-radius: 100px;
  padding:       5px 14px;
  display:       inline-flex;
  gap:           8px;
  margin-bottom: 26px;
}
.editorial-overlay .eyebrow::before { display: none; }

.editorial-quote {
  font-size:      clamp(20px, 2.4vw, 32px);
  font-weight:    700; color: #fff; line-height: 1.45;
  letter-spacing: -.4px; margin-bottom: 20px; max-width: 820px;
}
.editorial-attribution { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   CASE STUDY SECTION
============================================================ */
.case { background: var(--bg-2); }
.case-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.case-image-wrap {
  border-radius: var(--radius); overflow: hidden; height: 240px;
  border: 1px solid var(--line); margin-bottom: 28px;
}
.case-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) contrast(1.04); transition: transform 1.2s var(--ease);
}
.case-image-wrap:hover img { transform: scale(1.06); }

.case-left h2 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 800; letter-spacing: -1px; color: var(--dark); line-height: 1.22; margin-bottom: 18px; }
.case-left p        { font-size: 14.5px; line-height: 1.82; color: var(--text-dim); margin-bottom: 14px; }
.case-left p strong { color: var(--dark); font-weight: 700; }

.case-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--dark); font-weight: 700; font-size: 14px;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 3px; margin-top: 8px;
  transition: all .3s var(--ease);
}
.case-link:hover { color: var(--gold); gap: 12px; }
.case-link i     { font-size: 11px; }

.case-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--line); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
}
.metric          { padding: 38px 30px; background: var(--bg); transition: background .3s; }
.metric:hover    { background: var(--bg-2); }
.metric.featured { grid-column: span 2; background: var(--dark); padding: 46px 40px; }
.metric.featured:hover { background: var(--dark-2); }

.metric-num {
  font-size: 50px; font-weight: 800; color: var(--dark);
  letter-spacing: -2px; line-height: 1; margin-bottom: 10px; transition: color .3s;
}
.metric:hover .metric-num  { color: var(--gold); }
.metric.featured .metric-num{ color: var(--gold); font-size: 64px; }
.metric-label              { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
.metric.featured .metric-label{ color: rgba(255,255,255,.5); font-size: 14px; }

/* ============================================================
   FAQ SECTION — FULLY FIXED
   - Single clean answer toggle (display none/block)
   - overflow:hidden removed from open items so answer shows
   - All !important overrides for WP theme compatibility
============================================================ */
.faq { background: var(--bg); }

.faq-grid {
  display:     grid;
  grid-template-columns: 340px 1fr;
  gap:         80px;
  align-items: start;
}
.faq-left { position: sticky; top: 108px; }
.faq-left h2 {
  font-size:      clamp(24px, 2.5vw, 34px);
  font-weight:    800; letter-spacing: -0.8px; color: var(--dark);
  line-height:    1.25; margin-bottom: 14px;
}
.faq-left > p { font-size: 14px; color: var(--text-dim); line-height: 1.85; margin-bottom: 28px; }

.faq-image {
  border-radius: var(--radius) !important;
  overflow:      hidden; aspect-ratio: 4/5;
  border:        1px solid var(--line); position: relative;
}
.faq-image::before {
  content:    '';
  position:   absolute; top:0; left:0; right:0;
  height:     3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index:    1;
}
.faq-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.85) contrast(1.05); transition: transform 1.2s var(--ease);
}
.faq-image:hover img { transform: scale(1.04); }

/* List container */
.faq-list {
  border-top:  1px solid var(--line) !important;
  background:  transparent !important;
}

/* Each item — WHITE, FLAT, NO RADIUS */
.faq-item {
  background:    #ffffff !important;
  border-radius: 0 !important;
  border:        none !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow:    none !important;
  margin:        0 !important;
  padding:       0 !important;
  outline:       none !important;
  /* NOTE: no overflow:hidden here — it would clip the answer */
}
.faq-item:hover { background: #f8f7f5 !important; }
.faq-item.open  { background: #ffffff !important; }

/* Question button */
.faq-q,
.faq-q:hover,
.faq-q:focus,
.faq-q:active {
  -webkit-appearance: none !important;
  -moz-appearance:    none !important;
  appearance:         none !important;
  width:              100% !important;
  background:         transparent !important;
  background-color:   transparent !important;
  background-image:   none !important;
  border:             0 !important;
  border-radius:      0 !important;
  box-shadow:         none !important;
  outline:            none !important;
  cursor:             pointer !important;
  padding:            26px 0 !important;
  margin:             0 !important;
  display:            grid !important;
  grid-template-columns: 1fr 34px !important;
  gap:                22px !important;
  text-align:         left !important;
  align-items:        center !important;
  color:              var(--dark) !important;
  font-family:        var(--font) !important;
  text-transform:     none !important;
  letter-spacing:     normal !important;
  min-height:         auto !important;
  line-height:        normal !important;
  transition:         padding-left .25s var(--ease) !important;
}
.faq-q:hover { padding-left: 8px !important; }

/* Question text */
.faq-q-text {
  font-weight:    700 !important;
  font-size:      15px !important;
  line-height:    1.5 !important;
  color:          var(--dark) !important;
  letter-spacing: -.2px !important;
  transition:     color .25s var(--ease) !important;
  background:     transparent !important;
}
.faq-q:hover .faq-q-text  { color: var(--gold) !important; }
.faq-item.open .faq-q-text { color: var(--gold) !important; }

/* Toggle circle */
.faq-toggle {
  width:           34px !important;
  height:          34px !important;
  min-width:       34px !important;
  min-height:      34px !important;
  border:          1px solid rgba(0,0,0,0.1) !important;
  border-radius:   50% !important;
  display:         flex !important;
  align-items:     center !important;
  justify-content: center !important;
  color:           var(--text-dim) !important;
  font-size:       12px !important;
  background:      #f0ede8 !important;
  flex-shrink:     0 !important;
  padding:         0 !important;
  box-shadow:      none !important;
  transition:      all .3s var(--ease) !important;
}
.faq-q:hover .faq-toggle,
.faq-item:hover .faq-toggle {
  border-color: var(--gold) !important;
  color:        var(--gold) !important;
  background:   #faf7f2 !important;
}
.faq-item.open .faq-toggle {
  background:   var(--dark) !important;
  border-color: var(--dark) !important;
  color:        var(--gold) !important;
  transform:    rotate(45deg) !important;
}

/* Answer — simple display:none / display:block */
.faq-a {
  display:     none !important;
  padding:     0 0 26px 0 !important;
  font-size:   14px !important;
  line-height: 1.88 !important;
  color:       var(--text-dim) !important;
  background:  transparent !important;
  font-family: var(--font) !important;
  max-width:   640px;
  animation:   none;
}
.faq-item.open .faq-a {
  display:   block !important;
  animation: fadeUp .36s var(--ease) both !important;
}

/* ============================================================
   CTA SECTION
   Opacity adjust karne ke liye :root mein
   --cta-opacity ki value badlo (upar file ke top pe hai)
============================================================ */
.cta {
  background: rgba(0,0,0,0.72);
  position:   relative;
  overflow:   hidden;
}

/* Background image — full visible, darkness --cta-opacity se control hoti hai */
.cta-bg-image {
  position: absolute;
  inset:    0;
  z-index:  0;
  opacity:  1;
}
.cta-bg-image img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  filter:     saturate(.6) brightness(var(--cta-opacity));
}
.cta-bg-image::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: rgba(0,0,0,var(--cta-opacity));
}

.cta::before {
  content:    '';
  position:   absolute;
  top:0; left:50%; transform: translateX(-50%);
  width:      min(92%, 1240px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:    .4;
  z-index:    1;
}

.cta-inner {
  position:      relative;
  z-index:       1;
  max-width:     860px;
  margin:        0 auto;
  text-align:    center;
  background:    linear-gradient(180deg, #ffffff 0%, #f8f7f5 100%);
  border:        1px solid var(--line);
  border-radius: 22px;
  box-shadow:    0 24px 64px rgba(0,0,0,.25);
  padding:       64px 56px;
}

.cta h2 {
  font-size:      clamp(28px, 4vw, 52px);
  font-weight:    800; line-height: 1.1; letter-spacing: -1.4px;
  color:          var(--dark); margin-bottom: 18px;
}
.cta h2 em { font-style: normal; color: var(--gold); }

.cta p {
  font-size:     15.5px; line-height: 1.82;
  color:         var(--text-dim); margin-bottom: 12px;
}
.cta .cta-note {
  font-size: 14px; color: #8f9298; line-height: 1.8;
  max-width: 620px; margin: 0 auto 30px;
}

.cta-buttons {
  display:         flex;
  justify-content: center;
  gap:             12px;
  flex-wrap:       wrap;
  margin-bottom:   32px;
}

/* Ghost button on light CTA bg */
.cta-inner .btn-ghost { color: var(--dark); border-color: var(--dark); }
.cta-inner .btn-ghost:hover { background: var(--dark); color: #fff; }

.cta-trust {
  display:         flex;
  justify-content: center;
  flex-wrap:       wrap;
  gap:             28px;
  padding-top:     24px;
  border-top:      1px solid var(--line);
}
.cta-trust-item {
  font-size:      12px; font-weight: 600; color: var(--text-dim);
  letter-spacing: 1.3px; text-transform: uppercase;
  display:        flex; align-items: center; gap: 10px;
}
.cta-trust-item::before {
  content:       '';
  width: 5px; height: 5px;
  background:    var(--gold); border-radius: 50%;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-layout   { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual   { max-width: 500px; margin: 0 auto; }
  .why-grid, .pain-grid, .case-grid, .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-left      { position: static; top: auto; }
  .growth-row    { grid-template-columns: 60px 1fr; gap: 32px; }
  .growth-desc   { grid-column: 2; }
  .growth-num    { font-size: 32px; }
  .serve-grid    { grid-template-columns: 1fr; }
  .editorial-image { height: 440px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero   { padding: 60px 0 80px; }
  .hero-image-badge {
    position: relative; left: 0; bottom: 0;
    margin-top: 24px; min-width: unset; width: 100%; animation: none;
  }
  .editorial-image { height: 360px; }
  .editorial-overlay {
    background:     linear-gradient(180deg, rgba(14,15,17,.6) 0%, rgba(14,15,17,.92) 100%);
    align-items:    flex-end; padding-bottom: 40px;
  }
  .pain-solution-content { padding: 28px; }
  .pain-solution-image   { height: 160px; }
  .case-image-wrap       { height: 220px; }
  .faq-image             { display: none; }
  .serve-note, .process-note { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px; }
  .process-note-label { padding-right: 0; border-right: none; padding-bottom: 14px; border-bottom: 1px solid var(--line); width: 100%; }
  .case-metrics { grid-template-columns: 1fr; }
  .metric.featured { grid-column: auto; }
  .growth-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .growth-desc { grid-column: auto; }
  .growth-num  { font-size: 28px; }
  .cta-inner   { padding: 48px 28px; }
  .cta-trust   { gap: 20px; }

  .faq-q, .faq-q:hover {
    grid-template-columns: 1fr 30px !important;
    gap: 16px !important;
    padding: 20px 0 !important;
  }
  .faq-q-text { font-size: 14px !important; }
  .faq-toggle {
    width: 30px !important; height: 30px !important;
    min-width: 30px !important; min-height: 30px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 480px) {
  .hero-cta, .cta-buttons { flex-direction: column; }
  .hero-cta .btn, .cta-buttons .btn { width: 100%; }
  .serve-item    { padding: 24px 24px 52px; }
  .pain-solution-content { padding: 22px; }
}/* End custom CSS */