/* ==========================================================================
   OpenAgent Design System — v2 "Indigo"
   Palette: indigo #4E2FDA · pink #FB3189 · light bg #F6F5FD · ink #16123A
   Font: Poppins | Icons: Font Awesome 6
   ========================================================================== */

:root {
  --indigo: #4E2FDA;
  --indigo-hover: #3A1FC0;
  --indigo-deep: #241068;
  --indigo-light: #EDEAFB;
  --indigo-soft: #F6F5FD;
  --pink: #FB3189;
  --pink-light: #FEBFDA;
  --red: #FF0A54;
  --purple-lilac: #CAC6FD;
  --yellow: #FFE8A4;
  --mint: #D4FFD6;
  --ink: #16123A;
  --body: #5C5C77;
  --white: #FFFFFF;
  --line: #E8E6F5;
  --grad-main: linear-gradient(135deg, #4E2FDA 0%, #7A4DF0 55%, #FB3189 130%);
  --grad-btn: linear-gradient(90deg, #FB3189 0%, #FF0A54 100%);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 4px 16px rgba(22, 18, 58, .07);
  --shadow-md: 0 12px 34px rgba(78, 47, 218, .13);
  --shadow-lg: 0 24px 60px rgba(78, 47, 218, .18);
  --ff: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-heading: 'Playfair Display', Georgia, serif;
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-family: var(--ff-heading);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.85rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.85rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); }
h4 { font-size: 1.08rem; }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }

::selection { background: var(--indigo); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--indigo); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 0 10px 26px rgba(78,47,218,.32); }
.btn-primary:hover { background: var(--indigo-hover); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(78,47,218,.42); }
.btn-pink { background: var(--grad-btn); color: #fff; box-shadow: 0 10px 26px rgba(251,49,137,.35); }
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255,10,84,.42); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--indigo); box-shadow: 0 10px 26px rgba(0,0,0,.14); }
.btn-white:hover { transform: translateY(-3px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.65); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--indigo); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.topbar.scrolled { box-shadow: 0 8px 30px rgba(22,18,58,.08); padding: 10px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.45rem; color: var(--ink); letter-spacing: -.03em; }
.brand .dot {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  background: var(--grad-main);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
}
.brand span { color: var(--indigo); }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop > li { position: relative; }
.nav-desktop > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  font-weight: 500; font-size: 15px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-desktop > li > a i { font-size: 11px; transition: transform .25s; }
.nav-desktop > li > a:hover, .nav-desktop > li.active > a { color: var(--indigo); background: var(--indigo-light); }
.nav-desktop > li.open > a i { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(12px);
  min-width: 280px; background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .28s ease; border: 1px solid var(--line);
}
.dropdown::before { content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: translateX(-50%) rotate(45deg); }
.nav-desktop > li.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  transition: background .2s, color .2s, padding-left .2s;
}
.dropdown a i { color: var(--indigo); font-size: 14px; width: 20px; text-align: center; }
.dropdown a:hover { background: var(--indigo-light); color: var(--indigo); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--indigo-light); color: var(--indigo);
  align-items: center; justify-content: center; font-size: 19px;
}

.offcanvas {
  position: fixed; inset: 0 0 0 auto; width: min(400px, 88vw); z-index: 1500;
  background: #fff; padding: 28px 26px 60px;
  transform: translateX(105%); transition: transform .4s cubic-bezier(.7,0,.3,1);
  overflow-y: auto; box-shadow: -20px 0 60px rgba(22,18,58,.18);
}
.offcanvas.open { transform: translateX(0); }
.oc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.oc-close { width: 44px; height: 44px; border-radius: 12px; background: var(--indigo-light); color: var(--indigo); font-size: 18px; }
.oc-nav > li { border-bottom: 1px solid var(--line); }
.oc-link {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 15px 2px; font-weight: 600; font-size: 16px; color: var(--ink); text-align: left;
}
.oc-link i { transition: transform .3s; color: var(--indigo); }
.oc-item.open .oc-link i { transform: rotate(180deg); }
.oc-sub { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.oc-sub a { display: block; padding: 10px 14px; color: var(--body); font-size: 14.5px; border-left: 2px solid var(--line); margin-left: 4px; }
.oc-item.open .oc-sub { max-height: 420px; }
.oc-sub a:hover { color: var(--indigo); border-color: var(--indigo); }
.offcanvas .btn { width: 100%; margin-top: 24px; }
.overlay { position: fixed; inset: 0; background: rgba(22,18,58,.5); z-index: 1400; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.show { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: 70px 0 0;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(202,198,253,.55), transparent 65%),
    radial-gradient(700px 420px at -10% 30%, rgba(254,191,218,.4), transparent 60%),
    var(--indigo-soft);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  color: var(--indigo); font-weight: 600; font-size: 13.5px;
  padding: 9px 20px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1;} 50% { transform: scale(1.5); opacity: .55;} }

.hero h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, var(--indigo), var(--pink)); -webkit-background-clip: text; background-clip: text; }
.hero p.lede { max-width: 620px; margin: 20px auto 0; font-size: clamp(1rem, 1.6vw, 1.15rem); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

.hero-visual { position: relative; max-width: 1080px; margin: 56px auto 0; }
.hero-card {
  background: var(--grad-main);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  min-height: 320px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end; justify-content: space-around;
  padding: 48px 40px 0;
}
.metric-chip {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px); color: #fff;
  border-radius: 18px 18px 0 0; padding: 22px 26px 26px; min-width: 170px;
  animation: floaty 5s ease-in-out infinite;
}
.metric-chip:nth-child(2) { animation-delay: -1.6s; }
.metric-chip:nth-child(3) { animation-delay: -3.2s; }
.metric-chip strong { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.metric-chip span { font-size: 13px; opacity: .85; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

.shape { position: absolute; z-index: 1; pointer-events: none; }
.shape-star { color: var(--yellow); filter: drop-shadow(0 6px 14px rgba(255,214,102,.55)); animation: spin-slow 9s linear infinite; }
.shape-ring { color: var(--purple-lilac); animation: floaty 6s ease-in-out infinite; }
.shape-blob { color: rgba(251,49,137,.16); }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Marquee strips
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  background: var(--indigo); color: #fff;
  padding: 18px 0;
  position: relative;
}
.marquee.alt { background: var(--pink); }
.marquee-track { display: inline-flex; gap: 0; animation: scroll-x 26s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 700; letter-spacing: -.01em;
  text-transform: uppercase;
}
.marquee-track span i { font-size: .8em; opacity: .85; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

.logo-marquee { background: #fff; padding: 42px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.logo-marquee .marquee-track { animation-duration: 32s; }
.partner-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 30px; margin-right: 22px;
  background: var(--indigo-soft); border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); font-weight: 600; font-size: 15.5px;
}
.partner-chip i { color: var(--indigo); }

/* --------------------------------------------------------------------------
   Sections & headings
   -------------------------------------------------------------------------- */
.section { padding: 96px 0; position: relative; }
.section.tint { background: var(--indigo-soft); }
.section.dark-tint { background: linear-gradient(160deg, var(--indigo-deep), #37188F 60%, #5A21C4); color: #fff; }
.section.dark-tint h2, .section.dark-tint h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pink); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 14px;
}
.tag-label::before { content: "\f005"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 11px; }

/* --------------------------------------------------------------------------
   Service cards (home + services hub)
   -------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.services-grid.five { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.service-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  padding: 34px 30px 30px;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column; gap: 14px; min-height: 300px;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card.featured { background: var(--grad-main); border: 0; color: #fff; }
.service-card.featured h3, .service-card.featured p { color: #fff; }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px; flex: none;
  background: var(--indigo-light); color: var(--indigo);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: background .3s, color .3s, transform .3s;
}
.service-card:hover .service-icon { background: var(--indigo); color: #fff; transform: rotate(-8deg) scale(1.06); }
.service-card.featured .service-icon { background: rgba(255,255,255,.16); color: #fff; }
.service-card p { font-size: 15px; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; color: var(--indigo);
}
.card-link i { transition: transform .25s; }
.service-card:hover .card-link i { transform: translateX(6px); }
.service-card.featured .card-link { color: #fff; }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */
.stats-band {
  background: var(--indigo-deep); color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative; overflow: hidden;
}
.stats-band::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(circle at 80% 20%, rgba(251,49,137,.35), transparent 45%), radial-gradient(circle at 15% 85%, rgba(122,77,240,.5), transparent 45%); }
.stat { position: relative; text-align: center; }
.stat strong { display: block; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat strong .plus { color: var(--pink); }
.stat span { font-size: 14.5px; opacity: .82; }

/* --------------------------------------------------------------------------
   Why choose us
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-grid.span-2 { grid-template-columns: repeat(2, 1fr); }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .service-icon { margin-bottom: 18px; }
.why-card p { margin-top: 10px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 28px; position: relative; transition: transform .3s, box-shadow .3s; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 3rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--purple-lilac);
  margin-bottom: 16px; display: block;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.client-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 60px; }
.client-tile {
  background: var(--indigo-soft); border: 1px solid var(--line); border-radius: var(--r);
  min-height: 86px; display: flex; align-items: center; justify-content: center;
  padding: 14px; font-weight: 700; font-size: 14px; color: var(--ink); text-align: center;
  transition: transform .25s, box-shadow .25s, color .25s;
}
.client-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); color: var(--indigo); }

.tslider { position: relative; max-width: 860px; margin-inline: auto; }
.tslides { position: relative; overflow: hidden; border-radius: var(--r-xl); }
.tslide {
  display: none; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 46px 48px; text-align: center;
  box-shadow: var(--shadow-md);
}
.tslide.active { display: block; animation: fade-up .5s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: none;} }
.tslide .quote-ic { font-size: 30px; color: var(--pink); margin-bottom: 18px; }
.tslide blockquote { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--ink); font-weight: 500; line-height: 1.7; }
.t-person { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px;
}
.t-person strong { display: block; color: var(--ink); font-size: 15.5px; text-align: left; }
.t-person span { font-size: 13.5px; }
.t-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.t-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 15px;
  transition: .25s;
}
.t-arrow:hover { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.t-dots { display: flex; gap: 8px; }
.t-dots button { width: 9px; height: 9px; border-radius: 999px; background: var(--purple-lilac); transition: .25s; }
.t-dots button.on { width: 30px; background: var(--indigo); }

/* --------------------------------------------------------------------------
   Blog cards
   -------------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--indigo-deep); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-thumb i { font-size: 52px; color: rgba(255,255,255,.9); }
.bt-g1 { background: linear-gradient(135deg,#4E2FDA,#9B6DFF); }
.bt-g2 { background: linear-gradient(135deg,#FB3189,#FF7A59); }
.bt-g3 { background: linear-gradient(135deg,#241068,#4E2FDA); }
.bt-g4 { background: linear-gradient(135deg,#0BA5A4,#4E2FDA); }
.bt-g5 { background: linear-gradient(135deg,#F59E0B,#FB3189); }
.bt-g6 { background: linear-gradient(135deg,#6366F1,#EC4899); }
.blog-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--body); }
.blog-meta i { color: var(--pink); }
.blog-body h3 { font-size: 1.12rem; }
.blog-body h3 a:hover { color: var(--indigo); }
.blog-body p { font-size: 14.5px; flex: 1; }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--grad-main);
  border-radius: var(--r-xl);
  padding: clamp(50px, 7vw, 84px) clamp(26px, 6vw, 80px);
  text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.cta-banner::before { width: 340px; height: 340px; top: -140px; right: -90px; }
.cta-banner::after { width: 260px; height: 260px; bottom: -120px; left: -70px; }
.cta-banner h2 { color: #fff; position: relative; z-index: 1; }
.cta-banner p { position: relative; z-index: 1; opacity: .92; max-width: 560px; margin: 14px auto 0; }
.cta-banner .btn-row { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--indigo-deep); color: #CBC7E8; padding: 76px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 0%, rgba(251,49,137,.18), transparent 60%), radial-gradient(500px 260px at 5% 100%, rgba(122,77,240,.25), transparent 60%); pointer-events: none; }
.footer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px;
  padding-bottom: 54px;
}
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-about p { font-size: 15px; margin: 18px 0 22px; max-width: 320px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14.5px; color: #CBC7E8; transition: color .2s, padding-left .2s; }
.footer ul a:hover { color: #fff; padding-left: 6px; }
.footer .brand { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
  transition: .25s;
}
.socials a:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-4px); }
/* real brand colors per network */
.socials a[href*="x.com"], .socials a[href*="twitter.com"] { background: #000000; border-color: #000000; color: #fff; }
.socials a[href*="facebook.com"] { background: #1877F2; border-color: #1877F2; color: #fff; }
.socials a[href*="instagram.com"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); border-color: transparent; color: #fff; }
.socials a[href*="linkedin.com"] { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.socials a[href*="wa.me"] { background: #25D366; border-color: #25D366; color: #fff; }
/* WhatsApp CTAs are always WhatsApp green, on every theme */
body a.btn[href*="wa.me"] { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; }
body a.btn[href*="wa.me"]:hover { background: #1fb857 !important; border-color: #1fb857 !important; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; }
.contact-list i { color: var(--pink); margin-top: 5px; width: 17px; text-align: center; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px;
}

/* WhatsApp float */
.fwa {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* --------------------------------------------------------------------------
   Inner page hero + breadcrumb
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 74px 0 64px;
  background:
    radial-gradient(700px 360px at 88% -10%, rgba(202,198,253,.6), transparent 62%),
    radial-gradient(560px 300px at 0% 120%, rgba(254,191,218,.45), transparent 60%),
    var(--indigo-soft);
}
.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; margin-bottom: 16px; background: #fff; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb i { font-size: 9px; color: var(--pink); }
.breadcrumb [aria-current] { color: var(--indigo); font-weight: 600; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 46px; }
.ptab {
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  background: var(--indigo-soft); color: var(--ink); border: 1px solid var(--line);
  transition: .25s;
}
.ptab:hover { border-color: var(--indigo); color: var(--indigo); }
.ptab.on { background: var(--indigo); color: #fff; border-color: var(--indigo); box-shadow: 0 8px 22px rgba(78,47,218,.3); }
.plan-panel { display: none; }
.plan-panel.on { display: block; animation: fade-up .45s ease both; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 38px 32px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan-card.popular { background: var(--grad-main); color: #fff; border: 0; position: relative; }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; letter-spacing: .04em;
}
.plan-tier { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; color: var(--pink); }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 6px 0 18px; }
.plan-price strong { font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.plan-price span { font-size: 14px; }
.plan-card.popular .plan-tier, .plan-card.popular .plan-price strong { color: #fff; }
.plan-feats { margin: 0 0 28px; flex: 1; }
.plan-feats li { display: flex; gap: 11px; font-size: 14.5px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.plan-feats li:last-child { border: 0; }
.plan-feats i { color: #16A34A; margin-top: 4px; font-size: 13px; }
.plan-card.popular .plan-feats li { border-color: rgba(255,255,255,.25); }
.plan-card.popular .plan-feats i { color: #7CFFB2; }
.plan-note { text-align: center; margin-top: 34px; font-size: 14px; }

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.fbtn {
  padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: var(--indigo-soft); border: 1px solid var(--line); color: var(--ink); transition: .25s;
}
.fbtn:hover { border-color: var(--indigo); color: var(--indigo); }
.fbtn.on { background: var(--pink); border-color: var(--pink); color: #fff; box-shadow: 0 8px 20px rgba(251,49,137,.3); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; display: block;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-card .work-thumb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.work-card .work-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.work-card:hover .work-thumb img { transform: scale(1.08); }
.work-card .work-thumb i {
  font-size: 54px; color: rgba(255,255,255,.9);
  transition: transform .45s ease;
}
.work-card:hover .work-thumb i { transform: scale(1.08); }
.work-info {
  position: absolute; inset: auto 0 0 0; padding: 26px 24px 20px;
  background: linear-gradient(to top, rgba(15,12,38,.96) 0%, rgba(15,12,38,.75) 60%, transparent 100%);
  color: #fff; z-index: 2;
}
.work-tags { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--purple-lilac); display: block; margin-bottom: 6px; }
.work-info h3 { color: #fff; font-size: 1.15rem; }
.wt-g1 { background: linear-gradient(135deg,#241068,#4E2FDA 60%,#9B6DFF); }
.wt-g2 { background: linear-gradient(135deg,#FB3189,#FF7A59); }
.wt-g3 { background: linear-gradient(135deg,#0BA5A4,#4E2FDA); }
.wt-g4 { background: linear-gradient(135deg,#F59E0B,#FB3189); }
.wt-g5 { background: linear-gradient(135deg,#4338CA,#EC4899); }
.wt-g6 { background: linear-gradient(135deg,#111827,#4E2FDA); }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-wrap { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--purple-lilac); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; padding: 21px 24px; font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.faq-q .chev {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  background: var(--indigo-light); color: var(--indigo);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
  transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .chev { transform: rotate(180deg); background: var(--indigo); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }
.info-cards { display: grid; gap: 18px; }
.info-card { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: transform .25s, box-shadow .25s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.info-card .ic {
  width: 54px; height: 54px; border-radius: 16px; flex: none;
  background: var(--indigo-light); color: var(--indigo);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.info-card h4 { margin-bottom: 5px; }
.info-card p, .info-card a { font-size: 14.5px; }
.info-card a:hover { color: var(--indigo); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 16px; outline: none; background: var(--indigo-soft);
  transition: border .2s, background .2s; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--indigo); background: #fff; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 500; color: #16A34A; display: none; }
.form-status.show { display: block; }

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.media-panel {
  border-radius: var(--r-xl); min-height: 380px;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 110px; color: rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.media-panel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 200px at 80% 15%, rgba(255,255,255,.25), transparent 60%); }
.float-chip {
  position: absolute; bottom: -24px; left: -24px;
  background: #fff; border-radius: var(--r); padding: 20px 26px;
  box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip strong { font-size: 1.6rem; color: var(--ink); display: block; line-height: 1.1; }
.float-chip span { font-size: 13px; }
.float-chip .fc-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--indigo-light); color: var(--indigo); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.split-copy .check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); font-weight: 500; }
.check-list i { color: var(--pink); margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 30px; text-align: center; transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 110px; height: 110px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800;
  box-shadow: 0 14px 30px rgba(78,47,218,.3);
}
.team-card h3 { font-size: 1.15rem; }
.team-role { color: var(--pink); font-size: 13.5px; font-weight: 600; margin-top: 5px; }

.stack-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.stack-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 16px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
.stack-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--purple-lilac); }
.stack-tile i { font-size: 34px; color: var(--indigo); margin-bottom: 10px; }
.stack-tile span { font-weight: 600; font-size: 14px; color: var(--ink); display: block; }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-tile { border-radius: var(--r-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.92); font-size: 42px; }

/* --------------------------------------------------------------------------
   Photo additions (Unsplash) — hero background, service cards, panels
   -------------------------------------------------------------------------- */
.hero.hero-photo {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-photo h1 { color: #fff; }
.hero-photo h1 em {
  color: transparent;
  background: linear-gradient(90deg, #C4B5FD, #FF9CC6);
  -webkit-background-clip: text; background-clip: text;
}
.hero-photo p.lede { color: rgba(255,255,255,.88); }
.hero-photo .eyebrow { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; }
.hero-photo .btn-ghost { color: #fff; border-color: #fff; }
.hero-photo .btn-ghost:hover { background: #fff; color: var(--ink); }

.card-media {
  display: block; width: calc(100% + 60px); max-width: none;
  margin: -34px -30px 2px; height: 200px; object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.service-card.featured .card-media { margin-top: 0; width: 100%; margin-left: 0; }

.media-panel img.photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}

.contact-visual img {
  width: 100%; max-height: 450px; object-fit: cover;
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
}

/* Scroll-to-top */
.to-top {
  position: fixed; right: 26px; bottom: 94px; z-index: 1190;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--indigo); color: #fff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(78,47,218,.38);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--indigo-hover); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.rv.in-view { opacity: 1; transform: none; }
.rv[data-delay="1"] { transition-delay: .1s; }
.rv[data-delay="2"] { transition-delay: .2s; }
.rv[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-track, .metric-chip, .float-chip, .shape-star { animation: none !important; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-desktop { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: inline-flex; }
  .services-grid, .why-grid, .blog-grid, .work-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .client-wall { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.rev .split-media { order: 0; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .services-grid, .why-grid, .blog-grid, .work-grid, .process-grid, .team-grid,
  .form-grid, .plan-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 40px 22px; gap: 26px 12px; }
  .client-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-card { flex-direction: column; align-items: stretch; padding: 26px 22px 0; gap: 14px; min-height: 0; }
  .metric-chip { border-radius: 16px; padding: 16px 20px; }
  .tslide { padding: 34px 24px; }
  .float-chip { left: 12px; bottom: -20px; padding: 15px 18px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media print {
  .topbar, .fwa, .offcanvas, .overlay, .marquee, .to-top { display: none; }
}
