/* ═══════════════════════════════════════════════════════
   EXTRACTED STYLES FROM fashion.html
   MasterRV Designers — Fashion Deck Presentation Page
   ═══════════════════════════════════════════════════════ */

/* ════ ROOT ════ */
:root{
  --purple:#361B63;--blue:#2E67FA;--teal:#00d5a4;--cyan:#00BFFF;
  --dark:#0a0a0f;--dark3:#111118;--white:#fff;
  --muted:rgba(255,255,255,0.5);--border:rgba(255,255,255,0.07);
}

/* ════ GLOBAL ════ */


/* ════ SCROLL REVEAL ════ */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s ease,transform .7s ease}
.reveal.vis{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:9000;
  gap: 75px;
  display: flex; align-items: center;
  height: 72px; padding: 0 32px;
}
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  background: transparent;
  box-shadow: none;
}
#mainNav.scrolled {
  background: #000000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: 48px;
  flex-shrink: 0;
}
.logo-text { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex: 1;
}
.nav-links li { position: relative; }
.nav-links a, .nav-links button {
  font-family:sans-serif;
  font-size: 15px; font-weight: 500;
  color: white;
  background: none; border: none; cursor: pointer;
  text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover {
  background: rgba(255,255,255,0.08); color: #fff;
}
.nav-dot { color: #f1f1f1; font-size: 10px; margin-right: -3px; }
.nav-chevron { font-size: 11px; }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-book-demo {
  font-family:sans-serif;
  font-size: 15px; font-weight: 600;
  background: #00d5a4; color: #fff;
  border: none; border-radius: 100px;
  padding: 10px 24px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-book-demo:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-signin {
  font-family:sans-serif;
  font-size: 15px; font-weight: 600;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 9px 22px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-signin:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ══ MEGA DROPDOWN ══ */
.mega-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #f2ede3;
  z-index: 8000;
  padding: 36px 40px 40px;
  border-bottom: 1px solid #ddd7c8;
  animation: dropIn 0.18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-open .mega-menu { display: block; }
.mega-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; column-gap: 0;
}
.mega-col {
  padding: 0 32px 0 0;
  border-right: 1px solid #ddd6c5;
}
.mega-col:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.mega-col:first-child { padding-left: 0; }
.mega-col:nth-child(2) { padding-left: 32px; }
.mega-cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 100px;
  margin-bottom: 24px; cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.15s;
}
.mega-cat:hover { opacity: 0.85; }
.mega-cat.green  { background: #361B63; color: #fff; }
.mega-cat.teal   { background: #2E67FA; color: #fff; }
.mega-cat.blue   { background: #1e2d4a; color: #fff; }
.mega-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid #ddd6c5;
  cursor: pointer; text-decoration: none;
  transition: background 0.1s;
  gap: 12px;
}
.mega-item:hover .mega-item-title { color: #1a2318; }
.mega-item-left { flex: 1; }
.mega-item-title {
  font-size: 15px; font-weight: 600;
  color: #1a2318; margin-bottom: 2px;
  display: flex; align-items: center; gap: 7px;
  line-height: 1.3;
}
.mega-item-desc { font-size: 12.5px; color: #7a7468; line-height: 1.4; }
.mega-item-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  color: #8a8478;
  display: flex; align-items: center; justify-content: center;
}
.mega-item-icon svg { width: 20px; height: 20px; }
.badge-new {
  font-size: 10px; font-weight: 700;
  background: #2E67FA; color: white;
  padding: 2px 7px; border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ══ RESOURCES MEGA ══ */
.resources-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #f2ede3;
  z-index: 8000;
  padding: 36px 40px 40px;
  border-bottom: 1px solid #ddd7c8;
  animation: dropIn 0.18s ease;
}
.resources-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 0;
}
.res-col {
  padding: 0 36px 0 0;
  border-right: 1px solid #ddd6c5;
}
.res-col:last-child { border-right: none; padding-right: 0; padding-left: 36px; }
.res-col:first-child { padding-left: 0; }
.res-col:nth-child(2) { padding-left: 36px; }
.res-col-header {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 700;
  color: #1a1a1a; text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.15s;
}
.res-col-header:hover { color: #3a6b3a; }
.res-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #ddd6c5;
  text-decoration: none; gap: 12px;
  transition: opacity 0.15s;
}
.res-item:hover { opacity: 0.7; }
.res-item-left { flex: 1; }
.res-item-title { font-size: 14.5px; font-weight: 600; color: #1a1a1a; margin-bottom: 2px; line-height: 1.3; }
.res-item-desc { font-size: 12px; color: #7a7468; line-height: 1.4; }
.res-item-icon { width: 32px; height: 32px; flex-shrink: 0; color: #9a9388; display: flex; align-items: center; justify-content: center; }
.res-item-icon svg { width: 18px; height: 18px; }
.res-post { display: flex; flex-direction: column; text-decoration: none; margin-bottom: 20px; cursor: pointer; transition: opacity 0.18s; }
.res-post:last-child { margin-bottom: 0; }
.res-post:hover { opacity: 0.82; }
.res-post-img { width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; background: #ccc8be; margin-bottom: 11px; }
.res-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.res-post:hover .res-post-img img { transform: scale(1.03); }
.res-post-title { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.45; }

/* ══ WHY US MEGA ══ */
.whyus-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #f2ede3;
  z-index: 8000;
  padding: 40px;
  border-bottom: 1px solid #ddd7c8;
  animation: dropIn 0.18s ease;
}
.whyus-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.whyus-card {
  display: flex; flex-direction: column;
  text-decoration: none; cursor: pointer;
  border-radius: 12px; overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: #f2ede3;
}
.whyus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.10); }
.whyus-img-wrap { width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; position: relative; background: #d4cfc5; }
.whyus-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.whyus-card-body { padding: 16px 4px 8px; }
.whyus-card-title { font-size: 15px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; line-height: 1.3; }
.whyus-card-desc { font-size: 13px; color: #7a7468; line-height: 1.5; }

/* ════ HERO ════ */
.hero-wrap{position:relative;min-height:100vh;display:flex;flex-direction:column;overflow:hidden;padding-top:68px}
.hero-bg{position:absolute;inset:0;z-index:0;background:var(--dark)}
.orb{position:absolute;border-radius:50%;filter:blur(90px);animation:orbFloat 14s ease-in-out infinite}
.orb1{width:700px;height:700px;background:var(--purple);top:-250px;left:-150px;opacity:.3}
.orb2{width:550px;height:550px;background:var(--blue);top:80px;right:-200px;opacity:.25;animation-delay:-5s}
.orb3{width:450px;height:450px;background:var(--teal);bottom:-150px;left:35%;opacity:.15;animation-delay:-10s}
@keyframes orbFloat{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(40px,-30px) scale(1.06)}66%{transform:translate(-25px,20px) scale(.94)}}
.grid-mesh{position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:64px 64px;z-index:1}
.scan{position:absolute;left:0;right:0;height:1px;z-index:2;animation:scanDown 10s linear infinite;opacity:.3}
@keyframes scanDown{0%{top:-2px}100%{top:100%}}
#particles{position:absolute;inset:0;pointer-events:none;z-index:3}
.particle{position:absolute;border-radius:50%;animation:particleRise linear infinite;opacity:0}
@keyframes particleRise{0%{transform:translateY(100vh) rotate(0);opacity:0}10%{opacity:.6}90%{opacity:.5}100%{transform:translateY(-80px) rotate(360deg);opacity:0}}

.hero-inner{position:relative;z-index:10;flex:1;display:flex;padding:60px 52px 0;gap:60px}
.hero-left{flex:1;max-width:640px}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  font-family:sans-serif;font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
  color:var(--teal);background:rgba(0,213,164,.08);border:1px solid rgba(0,213,164,.2);
  border-radius:100px;padding:7px 16px;margin-bottom:28px;animation:fadeUp .8s ease both}
.bdot{width:6px;height:6px;border-radius:50%;background:var(--teal);animation:bpulse 2s ease-in-out infinite}
@keyframes bpulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.6)}}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
.hero-h1{font-family:sans-serif;font-size:clamp(54px,7vw,90px);line-height:.94;letter-spacing:2px;color:#fff;margin-bottom:26px}
.hero-h1 .ln{display:block;overflow:hidden}
.hero-h1 .ln i{display:block;font-style:normal;animation:lnUp .9s cubic-bezier(.16,1,.3,1) both}
.hero-h1 .ln:nth-child(1) i{animation-delay:.15s}
.hero-h1 .ln:nth-child(2) i{animation-delay:.28s}
.hero-h1 .ln:nth-child(3) i{animation-delay:.41s}
@keyframes lnUp{from{transform:translateY(110%);opacity:0}to{transform:none;opacity:1}}
.cl-teal{color:var(--teal)}
.cl-grad{background:linear-gradient(90deg,var(--blue),var(--cyan));-webkit-background-clip:text;background-clip:text}
.hero-desc{font-family:sans-serif;font-size:16px;line-height:1.8;color:rgba(255,255,255,.6);max-width:500px;margin-bottom:36px;animation:fadeUp .8s ease .5s both}
.hero-desc strong{color:rgba(255,255,255,.9)}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;animation:fadeUp .8s ease .65s both}
.btn-hero{
  display:inline-flex;align-items:center;gap:8px;
  font-family:sans-serif;font-size:14px;font-weight:700;
  background:var(--teal);color:#000;padding:14px 30px;border-radius:100px;
  text-decoration:none;transition:all .25s;box-shadow:0 0 30px rgba(0,213,164,.25);
  position:relative;overflow:hidden}
.btn-hero::before{content:'';position:absolute;inset:0;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.2),transparent);
  transform:translateX(-120%);transition:transform .5s}
.btn-hero:hover::before{transform:translateX(120%)}
.btn-hero:hover{transform:translateY(-3px);box-shadow:0 0 50px rgba(0,213,164,.45)}
.btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  font-family:sans-serif;font-size:14px;font-weight:600;
  color:rgba(255,255,255,.75);padding:13px 28px;border-radius:100px;
  text-decoration:none;border:1.5px solid rgba(255,255,255,.18);transition:all .25s}
.btn-ghost:hover{border-color:rgba(255,255,255,.45);color:#fff;background:rgba(255,255,255,.05)}
.hero-stats{display:flex;gap:36px;margin-top:48px;padding-top:32px;border-top:1px solid var(--border);animation:fadeUp .8s ease .8s both}
.stat-v{font-family:sans-serif;font-size:40px;letter-spacing:1px;line-height:1;
  background:linear-gradient(135deg,#fff,var(--teal));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.stat-l{font-family:sans-serif;font-size:12px;color:rgba(255,255,255,.38);margin-top:4px}

/* THEME CARDS */
.hero-right{flex:0 0 440px;animation:fadeUp .8s ease .3s both}
.theme-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.tc{border-radius:22px;padding:26px 22px;position:relative;overflow:hidden;cursor:pointer;
  transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s;aspect-ratio:4/3;
  display:flex;flex-direction:column;justify-content:space-between}
.tc:hover{transform:translateY(-10px) scale(1.03)}
.tc::after{content:'';position:absolute;inset:0;border-radius:22px;border:1px solid rgba(255,255,255,.18);pointer-events:none}
.tc::before{content:'';position:absolute;top:-50%;left:-70%;width:50%;height:200%;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.18),transparent);
  transform:skewX(-20deg);transition:left .55s}
.tc:hover::before{left:160%}
.tc-purple{background:var(--purple);box-shadow:0 20px 60px rgba(54,27,99,.55)}
.tc-blue{background:var(--blue);box-shadow:0 20px 60px rgba(46,103,250,.45)}
.tc-cyan{background:#00BFFF;box-shadow:0 20px 60px rgba(0,191,255,.4)}
.tc-teal{background:var(--teal);box-shadow:0 20px 60px rgba(0,213,164,.4)}
.tc-tag{font-family:sans-serif;font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;
  background:rgba(255,255,255,.18);padding:5px 10px;border-radius:100px;display:inline-block}
.cdot{position:absolute;border-radius:50%;background:rgba(255,255,255,.12);animation:cdotf 4s ease-in-out infinite}
@keyframes cdotf{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* TICKER */
.ticker-bar{position:relative;z-index:10;background:rgba(8,8,12,.85);
  border-top:1px solid var(--border);backdrop-filter:blur(12px);overflow:hidden;margin-top:52px}
.ticker-track{display:flex;width:max-content;animation:tickScroll 28s linear infinite}
.ticker-track:hover{animation-play-state:paused}
@keyframes tickScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.ti{display:flex;align-items:center;gap:12px;padding:14px 28px;
  border-right:1px solid rgba(255,255,255,.06);white-space:nowrap;cursor:pointer;transition:background .2s}
.ti:hover{background:rgba(255,255,255,.04)}
.ti-lb{font-family:sans-serif;font-size:13px;font-weight:500;color:rgba(255,255,255,.82)}

/* ════ BRANDS ════ */
.brands-section{padding:40px 0;text-align:center;}
.slider{overflow:hidden;position:relative;width:100%;margin-bottom:40px}
.slide-track{display:flex;width:calc(250px * 12);}
.slide{width:200px;display:flex;justify-content:center;align-items:center;padding:10px;}
.slide img{max-width:150px;filter:grayscale(100%);opacity:0.8;transition:0.3s;}
.slide img:hover{filter:grayscale(0%);opacity:1;}
.left-scroll .slide-track{animation:scrollLeft 60s linear infinite;}
@keyframes scrollLeft{0%{transform:translateX(-50%);}100%{transform:translateX(0);}}
.right-scroll .slide-track{animation:scrollRight 60s linear infinite;}
@keyframes scrollRight{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

.slider5{overflow:hidden;position:relative;width:1260px;margin:0 auto 40px auto;}
.slide-track5{display:flex;width:calc(420px * 16);}
.slide5{width:420px;flex-shrink:0;display:flex;justify-content:center;align-items:center;padding:10px;}
.slide5 img{width:400px;object-fit:cover;transition:0.3s;}
.slide5 img:hover{filter:grayscale(0%);opacity:1;}
.left-scroll .slide-track5{animation:scrollLeft 60s linear infinite;}
.right-scroll .slide-track5{animation:scrollRight 60s linear infinite;}

/* ════ SECTION HELPERS ════ */
.sec-pill{display:inline-block;font-family:sans-serif;font-size:11px;font-weight:700;
  letter-spacing:2.5px;text-transform:uppercase;color:var(--teal);margin-bottom:14px}
.sec-h2{font-family:sans-serif;font-size:clamp(38px,5vw,48px);
  letter-spacing:2px;line-height:1;color:#fff;margin-bottom:20px}
.sec-h2 em{font-style:normal;background:linear-gradient(90deg,var(--blue),var(--teal));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* ════ INTRO SPLIT ════ */
.section11{display:flex;align-items:center;justify-content:center;padding:20px 20px;}
.collage{flex:0 0 600px;position:relative;height:380px;background:#f2f2f2;border-radius:18px;overflow:hidden;}
.collage img{width:100%;height:100%;object-fit:cover;}
.content11{flex:1;}
.content11 h2{font-size:2rem;font-weight:700;color:#111;line-height:1.25;margin-bottom:4px;}
.content11 h2 .highlight{color:#e8a020;display:block;}
.content11 p{font-size:0.97rem;color:#444;line-height:1.7;margin-top:18px;}
.content11 p strong{color:#111;font-weight:700;}

/* ════ AUDIENCE CARDS ════ */
.wrapper20{display:flex;gap:24px;width:100%;align-items:flex-start;}
.card20{flex:1;background:#fdf8f0;border-radius:16px;padding:28px 24px 24px;display:flex;flex-direction:column;gap:16px;}
.badge20{display:inline-block;padding:7px 18px;border-radius:999px;font-size:0.78rem;font-weight:700;color:#fff;align-self:center;letter-spacing:0.2px;}
.badge-orange{background:#00d5a4;}
.badge-purple{background:#361b63;}
.intro{font-size:0.88rem;color:#333;line-height:1.65;text-align:center;}
.photo{width:100%;border-radius:10px;overflow:hidden;aspect-ratio:4/3;background:#ddd;}
.photo img{width:100%;height:100%;object-fit:cover;display:block;}
.sub-heading{font-size:0.9rem;color:#111;}
.bullet-list{list-style:none;display:flex;flex-direction:column;gap:8px;}
.bullet-list li{display:flex;align-items:flex-start;gap:8px;font-size:0.84rem;color:#333;line-height:1.55;}
.bullet-list li::before{content:'';flex-shrink:0;width:6px;height:6px;border-radius:50%;background:#fff;margin-top:7px;}
.cta{font-size:0.87rem;font-weight:700;color:#111;line-height:1.5;}

/* ════ HOW WE WORK ════ */
.how-sec{padding:40px 52px;}
.how-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;max-width:1200px;margin:0 auto;}
.how-left h2{font-size:clamp(36px,4.5vw,58px);letter-spacing:2px;color:#fff;margin-bottom:18px;line-height:1;}
.how-left h2 em{font-style:italic;color:#000;}
.how-left p{font-size:16px;color:rgba(255,255,255,.65);line-height:1.75;}
.timeline{position:relative;}
.timeline::before{content:'';position:absolute;left:20px;top:20px;bottom:60px;width:2px;background:#00d5a4;border-radius:2px;z-index:0;}
.tstep{position:relative;display:flex;align-items:flex-start;gap:20px;padding-bottom:36px;}
.tstep:last-child{padding-bottom:0;}
.tcircle{position:relative;z-index:1;flex-shrink:0;width:40px;height:40px;border-radius:50%;border:2px solid #000;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;color:white;background:#000;transition:background 0.3s,color 0.3s,transform 0.3s;}
.tstep:hover .tcircle{background:var(--teal);color:#000;transform:scale(1.1);}
.tstep-text{flex:1;}
.tstep h3{font-size:22px;letter-spacing:1px;color:#fff;margin-bottom:8px;}
.tstep p{font-size:15px;color:rgba(255,255,255,.6);line-height:1.65;}

/* ════ WHAT TO EXPECT ════ */
.expect-sec{padding:50px 52px;}
.expect-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px;}
.exp-card{border-radius:22px;padding:42px 36px;position:relative;overflow:hidden;transition:transform .35s,box-shadow .35s;cursor:default;}
.exp-card:hover{transform:translateY(-8px);}
.ec1{background:linear-gradient(135deg,#667eea,#764ba2);box-shadow:0 20px 60px rgba(102,126,234,.35);}
.ec2{background:linear-gradient(135deg,#2E67FA,#0056d2);box-shadow:0 20px 60px rgba(46,103,250,.35);}
.ec3{background:linear-gradient(135deg,#00d5a4,#00b086);box-shadow:0 20px 60px rgba(0,213,164,.3);}
.exp-card h3{font-family:sans-serif;font-size:28px;letter-spacing:1px;margin-bottom:14px;color:#fff;}
.exp-card p{font-family:sans-serif;font-size:16px;line-height:1.7;color:rgba(255,255,255,.9);}

/* ════ USE CASES ════ */
.section17{padding:60px 40px;}
.label17{font-size:11px;letter-spacing:0.18em;color:rgb(0 213 149);text-transform:uppercase;margin-bottom:14px;}
.heading17{font-family:sans-serif;font-size:48px;font-weight:800;color:white;margin-bottom:50px;line-height:1.1;}
.heading17 em{font-style:italic;background:linear-gradient(90deg,#00E5FF,#00FF85);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.grid17{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.card17{position:relative;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:16px;padding:28px 22px 24px;cursor:default;overflow:hidden;opacity:0;transform:translateY(30px);transition:transform 0.35s ease,background 0.35s ease,border-color 0.35s ease,box-shadow 0.35s ease;}
.card17.visible{opacity:1;transform:translateY(0);}
.card17:hover{background:rgba(255,255,255,0.12);border-color:rgba(0,229,255,0.4);box-shadow:0 0 32px rgba(0,229,255,0.12),0 8px 32px rgba(0,0,0,0.3);transform:translateY(-6px);}
.card17::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#00E5FF,#00FF85);transform:scaleX(0);transform-origin:left;transition:transform 0.4s ease;border-radius:16px 16px 0 0;}
.card17:hover::before{transform:scaleX(1);}
.card-num17{font-family:sans-serif;font-size:11px;font-weight:700;color:rgba(0,229,255,0.5);letter-spacing:0.1em;margin-bottom:16px;}
.card-title17{font-family:sans-serif;font-size:15px;font-weight:700;color:white;line-height:1.35;}
.card-title17 span{background-image:linear-gradient(90deg,#00E5FF,#00FF85);background-size:0% 2px;background-repeat:no-repeat;background-position:0 100%;padding-bottom:2px;transition:background-size 0.4s ease;}
.card17:hover .card-title17 span{background-size:100% 2px;}

/* ════ SUCCESS STORY ════ */
.card22{background:#ffffff;border-radius:16px;box-shadow:0 4px 24px rgba(0,0,0,.10);width:100%;padding:36px 36px 32px;}
.card-title{text-align:center;font-size:1.35rem;font-weight:600;color:#1a1a2e;margin-bottom:28px;letter-spacing:0.01em;}
.content-row{display:flex;gap:28px;align-items:stretch;}
.img-col{flex:0 0 320px;border-radius:12px;overflow:hidden;}
.img-col img{width:100%;height:100%;object-fit:cover;display:block;border-radius:12px;}
.info-col{flex:1;display:flex;flex-direction:column;gap:16px;}
.box{border-radius:12px;padding:18px 20px;}
.box-challenge{background:#fffbf0;border:1.5px solid #f5d97a;}
.box-outcome{background:#f4f0fb;border:1.5px solid #c9b8ef;}
.box-results{background:#1e2555;color:#ffffff;}
.box-title{font-size:0.95rem;font-weight:700;margin-bottom:8px;}
.box-challenge .box-title{color:#d4900a;}
.box-outcome .box-title{color:#5b3fae;}
.box-results .box-title{color:#ffffff;}
.box p{font-size:0.875rem;line-height:1.6;color:#3a3a4a;}
.box-results p{color:#d4d8f0;}
.outcome-intro{font-size:0.875rem;color:#3a3a4a;margin-bottom:10px;line-height:1.6;}
.outcome-intro strong{color:#1a1a2e;}
.box ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px;}
.box ul li{font-size:0.875rem;line-height:1.55;padding-left:18px;position:relative;color:#3a3a4a;}
.box ul li::before{content:"•";position:absolute;left:4px;color:#5b3fae;}
.box-results ul li{color:#d4d8f0;}
.box-results ul li::before{color:#a78bfa;}

/* ════ WHY CHOOSE ════ */
.why-sec{position:relative;padding:40px 52px;
  background:url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat}
.why-sec::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,#1A0533,#7F4DCB);}
.why-inner{position:relative;z-index:1;display:grid;grid-template-columns:1.1fr 1fr;gap:80px;align-items:center;max-width:1200px;margin:0 auto;}
.why-left .sec-pill{color:var(--teal);}
.why-left h2{font-family:sans-serif;font-size:clamp(36px,4.5vw,48px);letter-spacing:2px;color:#fff;margin-bottom:14px;line-height:1.05;}
.why-left h2 em{font-style:normal;color:var(--teal);}
.why-left p{font-family:sans-serif;font-size:16px;color:rgba(255,255,255,.65);line-height:1.75;margin-bottom:32px;}
.feat-row{display:flex;gap:16px;background:rgba(255,255,255,.06);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:20px;margin-bottom:14px;
  transition:all .25s;cursor:default;}
.feat-row:hover{background:rgba(255,255,255,.1);border-color:rgba(0,213,164,.3);transform:translateX(6px);}
.feat-icon{width:48px;height:48px;border-radius:12px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:20px;}
.feat-row p{font-family:sans-serif;font-size:16px;color:rgba(255,255,255,.88);line-height:1.65;}
.why-img-wrap{border-radius:20px;overflow:hidden;position:relative;}
.why-img-wrap img{width:100%;display:block;border-radius:20px;transition:transform 6s ease;}
.why-img-wrap:hover img{transform:scale(1.03);}
.why-badge{position:absolute;bottom:24px;left:24px;background:rgba(0,0,0,.7);
  backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:14px 18px;}
.why-badge-v{font-family:sans-serif;font-size:32px;letter-spacing:1px;color:var(--teal);line-height:1;}
.why-badge-l{font-family:sans-serif;font-size:12px;color:rgba(255,255,255,.55);}

/* ════ SERVICES GRID ════ */
.svc-sec{background:var(--dark3);padding:90px 52px;border-top:1px solid var(--border);}
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;
  background:rgba(255,255,255,.06);border-radius:24px;overflow:hidden;margin-top:52px;}
.sv{background:var(--dark3);padding:44px 36px;transition:background .25s;cursor:pointer;position:relative;overflow:hidden;}
.sv::after{content:'';position:absolute;bottom:0;left:0;height:3px;width:0;
  background:linear-gradient(90deg,var(--teal),var(--blue));transition:width .4s;}
.sv:hover::after{width:100%;}
.sv:hover{background:#17171f;}
.sv-num{font-family:sans-serif;font-size:11px;font-weight:700;letter-spacing:2px;color:rgba(255,255,255,.18);margin-bottom:18px;}
.sv-ico{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:18px;transition:transform .3s;}
.sv:hover .sv-ico{transform:scale(1.12) rotate(-5deg);}
.sv h3{font-family:sans-serif;font-size:24px;letter-spacing:1px;color:#fff;margin-bottom:10px;}
.sv p{font-family:sans-serif;font-size:16px;color:rgba(255,255,255,.5);line-height:1.65;}
.new-badge{font-family:sans-serif;font-size:9px;font-weight:700;background:var(--teal);color:#000;
  padding:3px 8px;border-radius:100px;vertical-align:middle;margin-left:7px;}

/* ════ ARTICLES ════ */
.articles-sec{background:#f0efe8;padding:40px 52px;}
.art-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
.art-card{background:#fff;border-radius:18px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.07);transition:transform .35s,box-shadow .35s;cursor:pointer;}
.art-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,.12);}
.art-card img{width:100%;height:210px;object-fit:cover;display:block;transition:transform .5s;}
.art-card:hover img{transform:scale(1.05);}
.art-body{padding:22px;}
.art-meta{font-family:sans-serif;font-size:12px;color:#999;margin-bottom:9px;}
.art-title{font-family:sans-serif;font-size:22px;letter-spacing:.5px;color:#1a1a2e;margin-bottom:10px;line-height:1.2;}
.art-desc{font-family:sans-serif;font-size:14px;color:#666;line-height:1.65;margin-bottom:14px;}
.art-tags{display:flex;flex-wrap:wrap;gap:8px;}
.art-tag{font-family:sans-serif;font-size:11px;background:#eef3e5;color:#4c5b2c;padding:5px 10px;border-radius:100px;font-weight:600;}

/* ════ CTA ════ */
.cta-sec{background:var(--dark);padding:50px 52px;text-align:center;position:relative;overflow:hidden;}
.cta-sec::before{content:'';position:absolute;width:700px;height:700px;border-radius:50%;
  background:radial-gradient(circle,rgba(46,103,250,.1),transparent 70%);
  top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;}
.cta-h{font-family:sans-serif;font-size:clamp(46px,7vw,62px);letter-spacing:2px;line-height:1;color:#fff;margin-bottom:22px;position:relative;}
.cta-h em{font-style:normal;color:var(--teal);}
.cta-p{font-family:sans-serif;font-size:16px;color:rgba(255,255,255,.55);max-width:480px;margin:0 auto 44px;line-height:1.75;position:relative;}
.cta-btns{display:flex;gap:14px;justify-content:center;position:relative;}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:#000;color:#fff;overflow-x:hidden}


/* ============================================================
   FOOTER — exact CSS from presentation-design-page.css
   ============================================================ */
footer{
  background:linear-gradient(160deg,#2a1155 0%,#4d2a8f 55%,#5f3aa8 100%);
  border-top:1px solid rgba(59,91,219,0.15);
  padding:30px 40px 10px;
}
.ft{display:grid;grid-template-columns: 1.5fr 1.2fr 1.2fr 1.2fr 1.2fr;gap:40px;max-width:1400px;margin:0 auto 20px}
.ft>div:first-child{display:flex;flex-direction:column;gap:20px}
.ft-logo{display:flex;align-items:center;gap:10px}
.ft-logo img{height:24px;width:auto}
.ft-logo span{font-family:'Inter',sans-serif;font-size:20px;font-weight:700;color:#fff;letter-spacing:-0.3px}
.fa{font-family:'Inter',sans-serif;font-size:13.5px;font-style:normal;    color: rgba(255, 255, 255, 0.5);line-height:1.8;margin:0}
.fcol{display:flex;flex-direction:column;gap:18px}
.fcol h5{font-family:'Inter',sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#00d5a4;margin:0;padding-bottom:12px;border-bottom:1px solid rgba(0,213,164,0.3)}
.fcol ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px}
.fcol li{margin:0;padding:0}
.fcol a{font-family:'Inter',sans-serif;font-size:13.5px;font-weight:400;    color: rgba(255, 255, 255, 0.5);text-decoration:none;transition:all 0.3s ease;display:inline-flex;align-items:center;gap:6px}
.fcol a:hover{color:#00d5a4;padding-left:6px}
.fcol p{font-family:'Inter',sans-serif;font-size:11px;font-weight:700;color:rgba(255,255,255,0.5);text-transform:uppercase;letter-spacing:1px;margin:4px 0 2px 0}
.fcol span{font-family:'Inter',sans-serif;font-size:13px;font-style:normal;    color: rgba(255, 255, 255, 0.5);line-height:1.6;display:block}

/* Contact column specifics */
.contact-block{display:flex;gap:12px;align-items:flex-start}
.contact-icon{width:22px;height:22px;flex-shrink:0;margin-top:2px;color:#00d5a4}
.contact-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8}
.contact-text a{font-family:'Inter',sans-serif;font-size:13.5px;color:rgba(255,255,255,0.85);text-decoration:none}
.contact-text a:hover{color:#00d5a4}

.fb2{display:flex;justify-content:space-between;align-items:center;padding-top:10px;border-top:1px solid rgba(255,255,255,0.15);max-width:1400px;margin:0 auto;font-size:12px;color:rgba(255,255,255,0.5)}
.fb2 span{font-family:'Inter',sans-serif;font-weight:500;letter-spacing:0.3px}
.fb2-l{display:flex;gap:24px;align-items:center}
.fb2-l a{font-family:'Inter',sans-serif;font-size:13px;font-weight:400;color:rgba(255,255,255,0.5);text-decoration:none;transition:all 0.3s ease}
.fb2-l a:hover{color:#00d5a4}
.social-icons{display:flex;gap:12px;align-items:center}
.social-icon{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,0.08);border:1.5px solid rgba(255,255,255,0.25);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:all 0.3s ease;color:rgba(255,255,255,0.8)}
.social-icon:hover{background:#00d5a4;border-color:#00d5a4;color:#000;transform:translateY(-3px)}
.social-icon svg{width:15px;height:15px;fill:currentColor}
.fb2-bottom{display:flex;justify-content:space-between;align-items:center;padding:14px 0;max-width:1400px;margin:0 auto}

/* Responsive */
@media(max-width:1040px){
  .ft{grid-template-columns:1fr 1fr;gap:40px}
  .fb2{flex-direction:column;gap:16px;text-align:center}
  .fb2-l{justify-content:center;flex-wrap:wrap}
}
@media(max-width:768px){
  .ft{grid-template-columns:1fr}
  footer{padding:40px 20px 20px}
}

/* ════ MODAL ════ */
.mbg{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.65);backdrop-filter:blur(8px);z-index:99999;align-items:center;justify-content:center;}
.mbg.on{display:flex;}
.modal{background:#1a2318;border:1px solid rgba(255,255,255,0.1);border-radius:24px;padding:44px;max-width:460px;width:90%;position:relative;animation:su 0.3s cubic-bezier(.32,.72,0,1);box-shadow:0 40px 80px rgba(0,0,0,0.7);}
@keyframes su{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}
.mx{position:absolute;top:16px;right:18px;background:rgba(255,255,255,0.07);border:none;width:30px;height:30px;border-radius:7px;cursor:pointer;color:rgba(255,255,255,0.55);font-size:15px;display:flex;align-items:center;justify-content:center;transition:background 0.2s;}
.mx:hover{background:rgba(255,255,255,0.12);}
.modal h3{font-size:24px;font-weight:800;letter-spacing:-0.4px;color:#fff;margin-bottom:5px;}
.modal h3 em{font-style:italic;color:#c8e645;}
.msub{font-size:13px;color:rgba(255,255,255,0.45);margin-bottom:24px;}
.mf{display:flex;flex-direction:column;gap:11px;}
.mf input,.mf select{font-family:sans-serif;font-size:13.5px;padding:13px 15px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:9px;color:#fff;outline:none;transition:border-color 0.2s;}
.mf input:focus,.mf select:focus{border-color:#c8e645;}
.mf input::placeholder{color:rgba(255,255,255,0.35);}
.mf select option{background:#1a2318;}
.mf .btn-hero-demo{width:100%;justify-content:center;margin-top:4px;}

/* ════ RESPONSIVE — TABLET (≤1100px) ════ */
@media(max-width:1100px){
  .hero-inner{flex-direction:column;padding:40px 30px 0;}
  .hero-right{flex:0 0 auto;width:100%;}
  .how-inner,.why-inner{grid-template-columns:1fr;}
  .svc-grid{grid-template-columns:1fr 1fr;}
  .ft-grid{grid-template-columns:1fr 1fr;}
}

/* ════ RESPONSIVE — DESKTOP SMALL (≤768px) ════ */
@media(max-width:768px){
  .nav-links{display:none;}
  .how-sec,.why-sec,.svc-sec,.articles-sec,.cta-sec{padding:60px 20px;}
  .card-grid-2,.svc-grid,.art-grid{grid-template-columns:1fr;}
  .expect-cards{grid-template-columns:1fr;}
  .ft-grid{grid-template-columns:1fr;}
  .ft-bottom{flex-direction:column;gap:16px;text-align:center;}
  footer{padding:40px 20px 24px;}
  .hero-h1{font-size:52px;}
  .grid17{grid-template-columns:repeat(2,1fr);}
  .wrapper20{flex-direction:column;}
  .section11{flex-direction:column;gap:36px;}
  .collage{flex:unset;width:100%;height:280px;}
}

/* ══════════════════════════════════════════════
   MOBILE HAMBURGER BUTTON
══════════════════════════════════════════════ */
.mobile-menu-btn{
  display:none;background:none;border:none;cursor:pointer;
  flex-direction:column;gap:5px;padding:8px;border-radius:8px;
  transition:background 0.2s;flex-shrink:0;
}
.mobile-menu-btn:hover{background:rgba(255,255,255,0.08);}
.mobile-menu-btn span{
  display:block;width:22px;height:2px;background:#fff;
  border-radius:2px;transition:transform 0.3s,opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.mobile-menu-btn.open span:nth-child(2){opacity:0;}
.mobile-menu-btn.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ══════════════════════════════════════════════
   MOBILE SLIDE-DOWN NAV DRAWER
══════════════════════════════════════════════ */
.mobile-nav-drawer{
  display:none;position:fixed;top:72px;left:0;right:0;
  background:rgba(4,2,14,0.98);backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:8999;overflow-y:auto;max-height:calc(100vh - 72px);
}
.mobile-nav-drawer.open{display:block;}
.mobile-nav-list{list-style:none;padding:16px 0 8px;}
.mobile-nav-list li{border-bottom:1px solid rgba(255,255,255,0.05);}
.mobile-nav-list li:last-child{border-bottom:none;}
.mobile-nav-list a,
.mobile-nav-list button{
  display:flex;align-items:center;justify-content:space-between;
  width:100%;padding:16px 24px;
  font-family:sans-serif;font-size:16px;font-weight:500;
  color:#fff;background:none;border:none;cursor:pointer;
  text-decoration:none;text-align:left;
}
.mobile-nav-list a:active,
.mobile-nav-list button:active{background:rgba(255,255,255,0.05);}
.mobile-nav-cta{padding:16px 24px 24px;}
.mobile-nav-cta .btn-hero{
  display:flex;justify-content:center;width:100%;
  font-size:15px;padding:14px 24px;
}
.mob-accordion{display:none;padding:4px 24px 12px;background:rgba(255,255,255,0.02);}
.mob-accordion.open{display:block;}
.mob-accordion a{
  display:block;padding:10px 0;
  font-family:sans-serif;font-size:14px;
  color:rgba(255,255,255,0.55);text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.mob-accordion a:last-child{border-bottom:none;}
.mob-accordion a:active{color:#00d5a4;}
.mob-chev{font-size:11px;transition:transform 0.2s;color:rgba(255,255,255,0.35);}
.mob-chev.open{transform:rotate(180deg);}

/* ══════════════════════════════════════════════
   MOBILE — PHONES (≤767px)
══════════════════════════════════════════════ */
@media(max-width:767px){

  /* Show hamburger, hide desktop nav */
  .mobile-menu-btn{display:flex;}
  .nav-links{display:none !important;}

  /* Nav bar */
  nav{padding:0 16px;gap:0;justify-content:space-between;}
  .logo{margin-right:0;}
  .logo img{width:120px !important;height:auto !important;}

  /* ── HERO ── */
  .hero-wrap{padding-top:72px;}
  .hero-inner{flex-direction:column;padding:32px 20px 0;gap:36px;}
  .hero-left{max-width:100%;}
  .hero-badge{font-size:10px;padding:6px 14px;margin-bottom:20px;}
  .hero-h1{font-size:clamp(36px,9vw,52px) !important;letter-spacing:0;margin-bottom:18px;}
  .hero-desc{font-size:14px;line-height:1.7;margin-bottom:24px;max-width:100%;}
  .hero-btns{flex-direction:column;gap:10px;}
  .btn-hero,.btn-ghost{width:100%;justify-content:center;text-align:center;padding:14px 20px;}
  .hero-right{flex:none;width:100%;padding-top:0 !important;}
  .theme-grid{grid-template-columns:1fr 1fr;gap:10px;}
  .tc{padding:18px 14px;border-radius:16px;}
  .stat-v{font-size:28px;}
  .stat-l{font-size:9px;}
  .hero-stats{gap:10;margin-top:0;padding-top:0;border-top:none;}

  /* Ticker bar */
  .ticker-bar{margin-top:32px;}
  .ti{padding:12px 18px;}
  .ti-lb{font-size:12px !important;}

  /* ── SLIDE GALLERY ── */
  .brands-section{padding-top:40px !important;padding-bottom:16px !important;}
  .slider5{width:100% !important;margin:0 auto 24px !important;}
  .slide5{width:280px;}
  .slide5 img{width:260px;}

  /* ── BRANDS LOGO TICKER ── */
  .brands-section h2.sec-h2{font-size:clamp(22px,6vw,30px) !important;margin-bottom:30px !important;}
  .slide{width:150px;}
  .slide img{max-width:110px;}

  /* ── ABOUT THIS SERVICE ── */
  .section11{flex-direction:column;gap:24px;padding:24px 20px !important;}
  .collage{flex:unset;width:100%;height:220px;border-radius:14px;}
  .content11{padding:0;}
  .content11 h2{font-size:clamp(24px,7vw,32px);margin-bottom:8px;}
  .content11 p{font-size:14px;line-height:1.65;margin-top:12px;}

  /* ── AUDIENCE CARDS ── */
  section[style*="background:#000;display:flex"]{padding:16px !important;}
  .wrapper20{flex-direction:column;gap:16px;}
  .card20{padding:22px 18px 20px;}
  .badge20{font-size:0.72rem;padding:6px 14px;}
  .intro{font-size:0.83rem;}
  .photo{aspect-ratio:16/9;}
  .sub-heading{font-size:0.85rem;}
  .bullet-list li{font-size:0.8rem;}
  .cta{font-size:0.82rem;}

  /* ── HOW WE WORK ── */
  .how-sec{padding:48px 20px !important;}
  .how-inner{grid-template-columns:1fr;gap:36px;}
  .how-left h2{font-size:clamp(28px,8vw,40px);letter-spacing:0;}
  .how-left p{font-size:14px;}
  .timeline::before{left:18px;}
  .tcircle{width:36px;height:36px;font-size:12px;}
  .tstep{gap:16px;padding-bottom:28px;}
  .tstep h3{font-size:18px;margin-bottom:6px;}
  .tstep p{font-size:13px;}

  /* ── WHAT TO EXPECT ── */
  .expect-sec{padding:48px 20px !important;}
  .expect-cards{grid-template-columns:1fr;gap:14px;margin-top:28px;}
  .exp-card{padding:28px 24px;border-radius:18px;}
  .exp-card h3{font-size:22px;margin-bottom:10px;}
  .exp-card p{font-size:14px;}

  /* ── USE CASES ── */
  .section17{padding:48px 20px !important;}
  .heading17{font-size:clamp(28px,8vw,40px);margin-bottom:32px;font-weight:700;}
  .grid17{grid-template-columns:1fr 1fr;gap:10px;}
  .card17{padding:20px 16px 18px;border-radius:14px;}
  .card-num17{font-size:10px;margin-bottom:10px;}
  .card-title17{font-size:13px;}

  /* ── SUCCESS STORY ── */
  section[style*="background:#fff;display:flex;justify-content:center"]{
    padding:32px 20px !important;
  }
  .card22{padding:24px 18px 20px;border-radius:14px;}
  .card-title{font-size:1.1rem;margin-bottom:20px;}
  .content-row{flex-direction:column;gap:16px;}
  .img-col{flex:none;width:100%;height:200px;border-radius:10px;}
  .info-col{gap:12px;}
  .box{padding:14px 16px;border-radius:10px;}
  .box-title{font-size:0.9rem;}
  .box p,.outcome-intro,.box ul li{font-size:0.82rem;}

  /* ── WHY CHOOSE ── */
  .why-sec{padding:48px 20px !important;}
  .why-inner{grid-template-columns:1fr;gap:32px;}
  .why-left h2{font-size:clamp(28px,8vw,40px);letter-spacing:0;margin-bottom:12px;}
  .why-left p{font-size:14px;margin-bottom:24px;}
  .feat-row{padding:16px;gap:12px;margin-bottom:10px;border-radius:12px;}
  .feat-icon{width:40px;height:40px;border-radius:10px;}
  .feat-row p{font-size:14px;}
  .why-img-wrap{margin-top:0 !important;}
  .why-badge{bottom:16px;left:16px;padding:10px 14px;border-radius:10px;}
  .why-badge-v{font-size:26px;}
  .why-badge-l{font-size:11px;}

  /* ── SECTION PILL / HEADING ── */
  .sec-h2{font-size:clamp(28px,8vw,38px);letter-spacing:0;}

  /* ── FAQ ── */
  .faq-sec{padding:48px 20px !important;}
  .faq-sec h2{font-size:clamp(26px,7vw,36px);}
  .faq-columns{flex-direction:column;gap:0;}
  .faq-list{margin-top:24px !important;max-width:100%;}
  .faq-btn{padding:18px 0;}
  .faq-btn-text{font-size:14px;}
  .faq-answer p{font-size:14px;}

  /* ── SERVICES ── */
  .svc-sec{padding:48px 20px !important;}
  .svc-grid{grid-template-columns:1fr;margin-top:32px;border-radius:18px;}
  .sv{padding:32px 24px;}
  .sv h3{font-size:20px;}
  .sv p{font-size:14px;}
  .sv-ico{width:44px;height:44px;}

  /* ── ARTICLES ── */
  .articles-sec{padding:48px 20px !important;}
  .art-grid{grid-template-columns:1fr;margin-top:28px;gap:16px;}
  .art-card img{height:180px;}
  .art-title{font-size:18px;}
  .art-desc{font-size:13px;}

  /* ── CTA ── */
  .cta-sec{padding:56px 20px !important;}
  .cta-h{font-size:clamp(30px,8vw,44px);letter-spacing:0;margin-bottom:16px;}
  .cta-p{font-size:14px;margin-bottom:32px;}
  .cta-btns{flex-direction:column;align-items:stretch;gap:12px;max-width:300px;margin:0 auto;}
  .cta-btns .btn-hero,.cta-btns .btn-ghost{width:100%;justify-content:center;padding:14px 20px;}

  /* ── FOOTER ── */
  footer{padding:36px 20px 20px !important;}
  .ft-grid{grid-template-columns:1fr;gap:28px !important;}
  .ft-about p{font-size:13px;}
  .ft-col h5{font-size:11px;}
  .solutions-wrap{grid-template-columns:1fr 1fr;gap:8px 20px;}
  .ft-bottom{flex-direction:column;gap:14px;text-align:center;padding-top:16px;}
  .ft-links{flex-wrap:wrap;justify-content:center;gap:12px;}
  .socials{gap:10px;}
  .soc{width:34px;height:34px;}

  /* ── MODAL ── */
  .modal{padding:30px 20px;border-radius:20px;}
  .modal h3{font-size:20px;}
  .mf input,.mf select{padding:12px 14px;font-size:13px;}
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-sec{background:#fff;padding:30px 52px;}
.faq-sec h2{font-size:clamp(32px,4vw,48px);color:#1a1a2e;margin-bottom:8px;letter-spacing:1px;}
.faq-sec .sec-pill{color:var(--blue);}
.faq-list{margin-top:36px;max-width:860px;margin-left:auto;margin-right:auto;}
.faq-item{border-bottom:1px solid #e0e0d8;overflow:hidden;}
.faq-item:first-child{border-top:1px solid #e0e0d8;}
.faq-btn{width:100%;background:none;border:none;text-align:left;padding:22px 0;display:flex;align-items:center;justify-content:space-between;cursor:pointer;gap:16px;}
.faq-btn-text{font-size:15px;color:#1a1a2e;line-height:1.4;}
.faq-icon{flex-shrink:0;width:28px;height:28px;border-radius:50%;background: linear-gradient(135deg, #1A0533, #7F4DCB);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;transition:transform 0.3s,background 0.3s;}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--teal);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease;}
.faq-item.open .faq-answer{max-height:300px;}
.faq-answer p{font-size:15px;color:#555;line-height:1.75;padding-bottom:20px;}

/* Two Column Layout */
.faq-columns {
  display: flex;
  gap: 40px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
}
.faq-columns .faq-list {
  flex: 1;
}

/* Responsive (Mobile View → Single Column) */
@media (max-width: 768px) {
  .faq-columns {
    flex-direction: column;
  }
}

/* ── EXTRA SMALL PHONES (≤400px) ── */
@media(max-width:400px){
  .hero-h1{font-size:clamp(28px,9vw,36px) !important;}
  .theme-grid{grid-template-columns:1fr 1fr;}
  .grid17{grid-template-columns:1fr;}
  .wrapper20{flex-direction:column;}
  .cta-btns{max-width:100%;}
  .ft-links{flex-direction:column;align-items:center;gap:10px;}
  .heading17{font-size:clamp(24px,8vw,32px);}
}

/* ══════════════════════════════
   BOOK-A-DEMO MODAL (overrides)
══════════════════════════════ */
.btn-book-demo{
    background:#00d5a4;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}
.btn-book-demo:hover{
    opacity:.9;
}
.mbg{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    z-index:99999;
    align-items:center;
    justify-content:center;
}
.mbg.on{
    display:flex;
}
.modal{
    background:#7b4ace;
    width:90%;
    max-width:460px;
    padding:40px;
    border-radius:20px;
    position:relative;
    animation:popup .3s ease;
}
@keyframes popup{
    from{
        transform:translateY(30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}
.mx{
    position:absolute;
    right:15px;
    top:15px;
    width:34px;
    height:34px;
    border:none;
    border-radius:8px;
    background:rgba(255,255,255,.15);
    color:#fff;
    cursor:pointer;
    font-size:18px;
}
.modal h3{
    color:#fff;
    margin-bottom:10px;
    font-size:28px;
}
.modal h3 em{
    color:#00d5a4;
    font-style:italic;
}
.msub{
    color:#fff;
    margin-bottom:25px;
}
.mf{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.mf input,
.mf select{
    width:100%;
    padding:14px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.08);
    color:#fff;
    outline:none;
}
.mf input::placeholder{
    color:#ddd;
}
.mf select option{
    color:#fff;
}
.btn-submit{
    background:#00d5a4;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    font-weight:600;
}
.btn-submit:hover{
    opacity:.9;
}