/* ===== Multyventure FZC — style.css ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c1: #3A0519;
  --c2: #670D2F;
  --c3: #A53860;
  --c4: #EF88AD;
  --c4-dim: rgba(239,136,173,.55);
  --c4-glow: rgba(239,136,173,.12);
  --c3-glow: rgba(165,56,96,.15);
  --blush: #FFFFFF;
  --blush-mid: #EDEEF5;
  --border: #E2E4EE;
  --text: #1A1A2E;
  --muted: #636380;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 28px rgba(58,5,25,.10);
  --shadow-lg: 0 12px 52px rgba(58,5,25,.18);
  --shadow-glow: 0 8px 40px rgba(165,56,96,.25);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TOP BAR ---- */
.top-bar { background: var(--c1); color: rgba(255,255,255,.7); font-size: 13px; padding: 9px 0; }
.top-bar__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.7); transition: color .2s; }
.top-bar a:hover { color: var(--c4); }
.top-bar__left, .top-bar__right { display: flex; gap: 22px; align-items: center; }
.top-bar__item { display: flex; align-items: center; gap: 7px; }
.top-bar__item svg { opacity: .55; flex-shrink: 0; }

/* ---- HEADER ---- */
header { position: sticky; top: 0; z-index: 900; background: var(--white); box-shadow: 0 2px 20px rgba(58,5,25,.10); }
.header__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }

/* LOGO */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__icon { width: 44px; height: 44px; background: var(--c1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo__icon svg { fill: var(--c4); }
.logo__text { line-height: 1.2; }
.logo__name { font-size: 19px; font-weight: 800; color: var(--c1); letter-spacing: -.01em; }
.logo__name span { color: var(--c3); }
.logo__tagline { font-size: 10px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* NAV */
nav { display: flex; align-items: center; gap: 2px; }
.nav__link { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 7px; transition: background .2s, color .2s; white-space: nowrap; position: relative; }
.nav__link:hover, .nav__link.active { background: var(--blush); color: var(--c1); }

/* DROPDOWN */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dropdown-toggle svg { transition: transform .2s; }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px; min-width: 580px;
  display: none; grid-template-columns: 1fr 1fr; gap: 4px; z-index: 1000;
}
.nav__dropdown:hover .nav__dropdown-menu { display: grid; }
.nav__drop-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: 10px; transition: background .2s; }
.nav__drop-item:hover { background: var(--blush); }
.nav__drop-icon { width: 34px; height: 34px; background: var(--c3-glow); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__drop-icon svg { fill: var(--c3); }
.nav__drop-title { font-size: 13px; font-weight: 700; color: var(--c1); line-height: 1.3; }
.nav__drop-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all .25s; cursor: pointer; border: none; }
.btn-primary { background: var(--c3); color: var(--white); }
.btn-primary:hover { background: var(--c2); transform: translateY(-1px); box-shadow: var(--shadow-glow); color: var(--white); }
.btn-outline { background: transparent; color: var(--c1); border: 2px solid var(--c1); }
.btn-outline:hover { background: var(--c1); color: var(--white); }
.btn-white { background: var(--white); color: var(--c1); }
.btn-white:hover { background: var(--blush); color: var(--c1); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: var(--white); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--c1); }
.nav__close { display: none; }

/* ---- HERO ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--c1); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-image: url('https://images.pexels.com/photos/3770107/pexels-photo-3770107.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'); background-size: cover; background-position: center; opacity: .18; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(58,5,25,.97) 0%, rgba(103,13,47,.90) 60%, rgba(165,56,96,.7) 100%); }
.hero__geo { position: absolute; right: -80px; top: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(239,136,173,.12) 0%, transparent 70%); pointer-events: none; }
.hero__geo2 { position: absolute; left: -120px; bottom: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(103,13,47,.4) 0%, transparent 70%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 100px 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(239,136,173,.15); border: 1px solid rgba(239,136,173,.3); color: var(--c4); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero__title { font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--c4); }
.hero__desc { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 36px; max-width: 500px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.hero__stat { background: rgba(255,255,255,.06); border: 1px solid rgba(239,136,173,.15); border-radius: var(--radius); padding: 20px; text-align: center; backdrop-filter: blur(10px); }
.hero__stat-num { font-size: 34px; font-weight: 800; color: var(--c4); line-height: 1; }
.hero__stat-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 5px; }
.hero__visual { position: relative; }
.hero__img-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(239,136,173,.15); height: 460px; }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-badge { position: absolute; bottom: -18px; left: -18px; background: var(--c3); color: var(--white); padding: 16px 22px; border-radius: 12px; font-weight: 700; line-height: 1.3; box-shadow: 0 8px 24px rgba(165,56,96,.45); }
.hero__img-badge span { display: block; font-size: 24px; }
.hero__img-badge small { font-size: 11px; opacity: .85; font-weight: 500; }

/* ---- SECTION HEADER ---- */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head__tag { display: inline-block; background: var(--c3-glow); color: var(--c3); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.sec-head__title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--c1); line-height: 1.15; }
.sec-head__title em { font-style: normal; color: var(--c3); }
.sec-head__sub { font-size: 16px; color: var(--muted); margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section--blush { background: var(--blush); }
.section--dark { background: var(--c1); }
.section--c2 { background: var(--c2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ SERVICES SHOWCASE ============ */
.svc-showcase { border-top: 1px solid var(--border); }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.svc-row__content {
  padding: 52px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.svc-row__num {
  position: absolute;
  bottom: -24px;
  right: -8px;
  font-size: 200px;
  font-weight: 900;
  color: var(--c1);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.svc-row--rev .svc-row__num { right: auto; left: -8px; }

.svc-row__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-row__label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--c3);
  flex-shrink: 0;
  display: block;
}

.svc-row__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--c1);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.015em;
  position: relative;
  z-index: 1;
}

.svc-row__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.svc-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.svc-row__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color .25s, color .25s;
}
.svc-row:hover .svc-row__tag { border-color: var(--c3); color: var(--c3); }

.svc-row__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c1);
  padding-bottom: 3px;
  border-bottom: 2px solid var(--c3);
  align-self: flex-start;
  transition: gap .25s, color .25s;
  position: relative;
  z-index: 1;
}
.svc-row__link:hover { color: var(--c3); gap: 16px; }

.svc-row__img {
  position: relative;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path .55s cubic-bezier(.25,.46,.45,.94);
}
.svc-row--rev .svc-row__img {
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}
.svc-row:hover .svc-row__img,
.svc-row--rev:hover .svc-row__img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.svc-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.svc-row:hover .svc-row__img img { transform: scale(1.05); }
.svc-row__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,5,25,.65) 0%, rgba(103,13,47,.3) 100%);
  opacity: 0;
  transition: opacity .4s;
}
.svc-row:hover .svc-row__img-overlay { opacity: 1; }

/* ============ STATS BAR ============ */
.stats-bar { background: var(--c2); }
.stats-bar__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 44px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-item__num { font-size: 44px; font-weight: 800; color: var(--c4); line-height: 1; }
.stat-item__label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; }

/* ============ INDUSTRIES BENTO ============ */
.industries-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.ind-b {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.ind-b:hover { transform: scale(1.015); }
.ind-b img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.ind-b:hover img { transform: scale(1.08); }
.ind-b__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,5,25,.92) 0%, rgba(58,5,25,.55) 45%, rgba(58,5,25,.15) 100%); transition: background .4s; }
.ind-b:hover .ind-b__overlay { background: linear-gradient(to top, rgba(103,13,47,.95) 0%, rgba(103,13,47,.6) 45%, rgba(165,56,96,.15) 100%); }
.ind-b__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.ind-b__icon { width: 36px; height: 36px; background: var(--c3); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: background .3s; }
.ind-b:hover .ind-b__icon { background: var(--c4); }
.ind-b__icon svg { fill: white; width: 18px; height: 18px; }
.ind-b h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ind-b__sub { font-size: 12px; color: var(--c4-dim); }
.ind-b__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.ind-b:hover .ind-b__tags { max-height: 80px; }
.ind-b__tag { background: rgba(239,136,173,.2); color: var(--c4); font-size: 10.5px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }

/* Grid layout for industries */
.ind-b:nth-child(1) { grid-column: span 5; grid-row: span 2; min-height: 420px; }
.ind-b:nth-child(2) { grid-column: span 4; min-height: 200px; }
.ind-b:nth-child(3) { grid-column: span 3; min-height: 200px; }
.ind-b:nth-child(4) { grid-column: span 4; min-height: 200px; }
.ind-b:nth-child(5) { grid-column: span 3; min-height: 200px; }
.ind-b:nth-child(6) { grid-column: span 4; min-height: 200px; }
.ind-b:nth-child(7) { grid-column: span 8; min-height: 220px; }

/* ============ WHY CHOOSE ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.why-img { border-radius: 18px; overflow: hidden; height: 520px; position: relative; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(58,5,25,.3)); }
.why-list { display: grid; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px; border-radius: 12px; transition: background .2s; }
.why-item:hover { background: var(--blush); }
.why-item__num { width: 42px; height: 42px; background: var(--c3); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; }
.why-item h3 { font-size: 15px; font-weight: 700; color: var(--c1); margin-bottom: 4px; }
.why-item p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: var(--shadow); border: 1px solid rgba(58,5,25,.06); transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--c3); font-size: 15px; }
.testi-card p { font-size: 14px; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--c1); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--c1); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ============ BLOG SECTION ============ */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.blog-card__img { height: 220px; overflow: hidden; position: relative; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__img img { transform: scale(1.07); }
.blog-card__cat { position: absolute; top: 16px; left: 16px; background: var(--c3); color: var(--white); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.blog-card__body { padding: 26px 26px 28px; }
.blog-card__meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--c1); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--c3); margin-top: 16px; transition: gap .2s; }
.blog-card:hover .blog-card__link { gap: 10px; }

/* ============ CTA BANNER ============ */
.cta-banner { background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: -120px; top: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,136,173,.15) 0%, transparent 70%); }
.cta-banner__inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 88px 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 18px; }
.cta-banner h2 em { font-style: normal; color: var(--c4); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.68); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: #1a040d; color: rgba(255,255,255,.6); }
.footer__top { max-width: 1200px; margin: 0 auto; padding: 64px 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer__brand-name { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer__brand-name span { color: var(--c4); }
.footer__brand-desc { font-size: 13.5px; line-height: 1.8; margin-bottom: 24px; max-width: 280px; color: rgba(255,255,255,.45); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all .2s; }
.footer__social a:hover { border-color: var(--c4); color: var(--c4); background: rgba(239,136,173,.1); }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13.5px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__links a:hover { color: var(--c4); }
.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--c3); }
.footer__contact-item span { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer__contact-item a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer__contact-item a:hover { color: var(--c4); }
.footer__wa-btn { display: inline-flex; align-items: center; gap: 9px; background: #25d366; color: var(--white); padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-top: 6px; transition: background .2s; }
.footer__wa-btn:hover { background: #20ba5a; color: var(--white); }
.footer__divider { max-width: 1200px; margin: 0 auto; height: 1px; background: rgba(255,255,255,.06); }
.footer__bottom { max-width: 1200px; margin: 0 auto; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer__copy { font-size: 12.5px; color: rgba(255,255,255,.22); }
.footer__policy { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__policy a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer__policy a:hover { color: rgba(255,255,255,.6); }

/* ---- FLOATING WHATSAPP ---- */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; background: #25d366; color: var(--white); padding: 13px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.55); color: var(--white); }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%); padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239,136,173,.1) 0%, transparent 70%); }
.page-hero__inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--c4); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.68); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--c4); }
.breadcrumb span { opacity: .4; }

/* ============ SERVICES PAGE — SPOTLIGHT ============ */
.svc-spotlight { display: grid; grid-template-columns: 320px 1fr; gap: 0; min-height: 600px; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.svc-list { background: var(--c1); padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.svc-list-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 10px; cursor: pointer; transition: background .25s; }
.svc-list-item:hover { background: rgba(255,255,255,.06); }
.svc-list-item.active { background: var(--c3); }
.svc-list-icon { width: 36px; height: 36px; background: rgba(239,136,173,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.svc-list-item.active .svc-list-icon { background: rgba(255,255,255,.2); }
.svc-list-icon svg { fill: var(--c4); }
.svc-list-item.active .svc-list-icon svg { fill: white; }
.svc-list-name { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.7); transition: color .25s; }
.svc-list-item.active .svc-list-name, .svc-list-item:hover .svc-list-name { color: var(--white); }
.svc-list-num { font-size: 11px; color: rgba(255,255,255,.3); margin-left: auto; font-weight: 700; }
.svc-list-item.active .svc-list-num { color: rgba(255,255,255,.6); }

.svc-panels { background: var(--white); }
.svc-panel { display: none; height: 100%; }
.svc-panel.active { display: flex; flex-direction: column; }
.svc-panel__img { height: 300px; overflow: hidden; position: relative; }
.svc-panel__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-panel__img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(58,5,25,.5) 0%, transparent 60%); }
.svc-panel__badge { position: absolute; top: 20px; left: 24px; background: var(--c3); color: white; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.svc-panel__body { padding: 36px 40px 32px; flex: 1; overflow-y: auto; }
.svc-panel__body h2 { font-size: 26px; font-weight: 800; color: var(--c1); margin-bottom: 14px; }
.svc-panel__body p { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.svc-panel__features { margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.svc-panel__features li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--border); }
.svc-panel__features li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--c3); flex-shrink: 0; }

/* ============ INDUSTRIES PAGE ============ */
.ind-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ind-page-card { border-radius: 18px; overflow: hidden; position: relative; min-height: 340px; cursor: pointer; }
.ind-page-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s; }
.ind-page-card:hover img { transform: scale(1.06); }
.ind-page-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,5,25,.95) 0%, rgba(58,5,25,.6) 50%, rgba(58,5,25,.2) 100%); transition: background .4s; }
.ind-page-card:hover .ind-page-card__overlay { background: linear-gradient(to top, rgba(103,13,47,.97) 0%, rgba(103,13,47,.65) 50%, rgba(165,56,96,.15) 100%); }
.ind-page-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.ind-page-card__icon { width: 46px; height: 46px; background: var(--c3); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ind-page-card h2 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.ind-page-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 14px; }
.ind-page-card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ind-page-card__tag { background: rgba(239,136,173,.2); color: var(--c4); font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 100px; }

/* ============ ABOUT & CONTACT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 18px; overflow: hidden; height: 500px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.value-card { background: var(--white); border-radius: 12px; padding: 22px; border-left: 3px solid var(--c3); border: 1px solid var(--border); border-left: 3px solid var(--c3); }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--c1); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 44px; box-shadow: var(--shadow); }
.contact-form-wrap h2 { font-size: 24px; font-weight: 800; color: var(--c1); margin-bottom: 8px; }
.contact-form-wrap p { font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--c1); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text); font-family: inherit; transition: border .2s; outline: none; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info h2 { font-size: 26px; font-weight: 800; color: var(--c1); margin-bottom: 8px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.ci-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 16px; }
.ci-item__icon { width: 46px; height: 46px; background: var(--c1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item__icon svg { color: var(--c4); }
.ci-item h4 { font-size: 13px; font-weight: 700; color: var(--c1); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .06em; }
.ci-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.ci-item a { color: var(--c3); }

/* ============ BLOG PAGE ============ */
.blog-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-header-card { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 8px; }
.blog-header-card__img { position: relative; }
.blog-header-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-header-card__body { background: var(--c1); padding: 44px; display: flex; flex-direction: column; justify-content: flex-end; }
.blog-header-card .blog-card__cat { position: static; display: inline-block; margin-bottom: 16px; }
.blog-header-card h2 { font-size: 26px; font-weight: 800; color: white; line-height: 1.3; margin-bottom: 14px; }
.blog-header-card p { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.8; }
.blog-header-card .blog-card__link { color: var(--c4); }

/* ============ SERVICE DETAIL PAGES ============ */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-detail-content .sec-head__tag { display: inline-block; margin-bottom: 16px; }
.svc-detail-content h2 { font-size: 38px; font-weight: 800; color: var(--c1); line-height: 1.1; margin-bottom: 20px; letter-spacing: -.015em; }
.svc-detail-content > p { font-size: 15.5px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }
.svc-detail-img { border-radius: 18px; overflow: hidden; height: 500px; box-shadow: var(--shadow-lg); }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 20px 0 32px; }
.svc-detail-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.svc-check-dot { width: 22px; height: 22px; background: var(--c1); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.svc-check-dot svg { stroke: white; fill: none; }

.svc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; transition: box-shadow .3s, border-color .3s, transform .3s; }
.svc-feat-card:hover { box-shadow: var(--shadow); border-color: var(--c3); transform: translateY(-3px); }
.svc-feat-icon { width: 48px; height: 48px; background: var(--c3-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-feat-icon svg { fill: var(--c3); }
.svc-feat-card h3 { font-size: 15px; font-weight: 700; color: var(--c1); margin-bottom: 8px; }
.svc-feat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

.svc-process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 48px; }
.svc-process-steps::before { content: ''; position: absolute; top: 27px; left: calc(10% + 26px); right: calc(10% + 26px); height: 2px; background: linear-gradient(to right, var(--c3), var(--c4)); z-index: 0; }
.svc-step { text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.svc-step__circle { width: 54px; height: 54px; background: var(--white); border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; color: var(--c1); margin: 0 auto 18px; position: relative; z-index: 1; transition: all .3s; }
.svc-step:hover .svc-step__circle { background: var(--c1); color: var(--white); border-color: var(--c1); }
.svc-step h4 { font-size: 13.5px; font-weight: 700; color: var(--c1); margin-bottom: 6px; }
.svc-step p { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* Services overview grid */
.svc-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-overview-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all .3s; text-decoration: none; display: block; }
.svc-overview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c3); }
.svc-overview-card__img { height: 200px; overflow: hidden; position: relative; }
.svc-overview-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.svc-overview-card:hover .svc-overview-card__img img { transform: scale(1.08); }
.svc-overview-card__num { position: absolute; top: 14px; left: 16px; background: var(--c3); color: white; font-size: 11px; font-weight: 800; letter-spacing: .12em; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; }
.svc-overview-card__body { padding: 26px; }
.svc-overview-card__label { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; color: var(--c3); text-transform: uppercase; margin-bottom: 8px; }
.svc-overview-card h3 { font-size: 19px; font-weight: 800; color: var(--c1); margin-bottom: 10px; line-height: 1.25; }
.svc-overview-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.svc-overview-card__cta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--c3); transition: gap .2s; }
.svc-overview-card:hover .svc-overview-card__cta { gap: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row__img { min-height: 280px; clip-path: none !important; order: -1; }
  .svc-row__content { padding: 40px 36px; }
  .svc-row__title { font-size: 28px; }
  .industries-bento { grid-template-columns: repeat(2, 1fr); }
  .ind-b { grid-column: span 1 !important; min-height: 220px !important; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__img-wrap { height: 340px; }
  .hero__img-badge { left: 10px; bottom: -10px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-full-grid { grid-template-columns: 1fr 1fr; }
  .blog-header-card { grid-column: span 2; }
  .svc-spotlight { grid-template-columns: 260px 1fr; }
  .ind-page-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-features-grid { grid-template-columns: 1fr 1fr; }
  .svc-process-steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .svc-process-steps::before { display: none; }
  .svc-step { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 12px; }
  .svc-overview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 24px; flex-direction: column; z-index: 998; overflow-y: auto; }
  nav.open { display: flex; }
  .nav__link { font-size: 17px; padding: 14px 16px; border-radius: 10px; }
  .nav__dropdown:hover .nav__dropdown-menu { display: none; }
  .nav__dropdown-menu { position: static; transform: none; min-width: auto; border: none; box-shadow: none; background: var(--blush); display: none; grid-template-columns: 1fr; }
  .nav__dropdown.open .nav__dropdown-menu { display: grid; }
  .menu-toggle { display: block; }
  .header__inner .btn { display: none; }
  .nav__close { display: flex; align-items: center; justify-content: center; align-self: flex-end; background: none; border: 1px solid var(--border); border-radius: 50%; width: 38px; height: 38px; cursor: pointer; color: var(--c1); margin-bottom: 8px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .svc-row__content { padding: 32px 24px; }
  .svc-row__title { font-size: 24px; }
  .svc-row__num { font-size: 120px; }
  .svc-row__img { min-height: 240px; }
  .footer__top { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .blog-header-card { grid-template-columns: 1fr; grid-column: 1; }
  .blog-header-card__img { height: 220px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .svc-spotlight { grid-template-columns: 1fr; }
  .svc-list { flex-direction: row; flex-wrap: wrap; overflow-x: auto; }
  .svc-list-item { flex-shrink: 0; }
  .svc-list-name { display: none; }
  .svc-panel__features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-process-steps { grid-template-columns: 1fr 1fr; }
  .svc-detail-checks { grid-template-columns: 1fr; }
  .svc-overview-grid { grid-template-columns: 1fr; }
}

/* ===== CATEGORY SHOWCASE ===== */
.cat-section{padding:96px 0;background:#f8f9fb}
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:56px}
.cat-card{
  position:relative;border-radius:16px;overflow:hidden;height:440px;
  background-image:var(--bg);background-size:cover;background-position:center;
  cursor:default;transition:transform .4s ease
}
.cat-card:hover{transform:translateY(-6px)}
.cat-card__overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(5,12,30,.96) 0%,rgba(5,12,30,.5) 45%,rgba(5,12,30,.12) 100%);
  transition:all .4s
}
.cat-card:hover .cat-card__overlay{background:linear-gradient(to top,rgba(5,12,30,.92) 0%,rgba(5,12,30,.62) 55%,rgba(5,12,30,.2) 100%)}
.cat-card__body{position:absolute;bottom:0;left:0;right:0;padding:30px 28px;z-index:2}
.cat-card__num{
  font-size:11px;font-weight:800;letter-spacing:.2em;text-transform:uppercase;
  color:var(--accent,#2563eb);margin-bottom:10px;display:block
}
.cat-card__title{
  font-family:var(--font-head,'Inter',sans-serif);font-size:22px;font-weight:800;
  color:#fff;line-height:1.2;margin-bottom:12px
}
.cat-card__desc{font-size:13.5px;color:rgba(255,255,255,.7);line-height:1.65}
@media(max-width:1100px){.cat-grid{grid-template-columns:repeat(2,1fr)}.cat-card{height:400px}}
@media(max-width:600px){.cat-grid{grid-template-columns:1fr}.cat-card{height:320px}}

/* ===== CATEGORY SECTIONS ===== */
.cat-sec{padding:90px 0;background:#ffffff}
.cat-sec--alt{background:#ffffff}
.cat-sec__inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.cat-sec__inner--rev{direction:rtl}
.cat-sec__inner--rev>*{direction:ltr}
.cat-sec__img{position:relative;border-radius:18px;overflow:hidden;box-shadow:0 24px 64px rgba(0,0,0,.13)}
.cat-sec__img img{width:100%;height:480px;object-fit:cover;display:block;transition:transform .5s ease}
.cat-sec__img:hover img{transform:scale(1.04)}
.cat-sec__img-badge{
  position:absolute;top:20px;right:20px;
  background:rgba(58,5,25,.6);backdrop-filter:blur(6px);
  color:#fff;font-size:11px;font-weight:700;letter-spacing:.14em;
  padding:6px 14px;border-radius:20px
}
.cat-sec__content{padding:8px 0}
.cat-sec__tag{
  display:inline-block;font-size:11px;font-weight:800;letter-spacing:.2em;
  text-transform:uppercase;color:#A53860;margin-bottom:14px
}
.cat-sec__title{font-family:'Segoe UI',system-ui,sans-serif;font-size:38px;font-weight:800;color:#1A1A2E;line-height:1.15;margin-bottom:20px}
.cat-sec__title span{color:#A53860}
.cat-sec__desc{font-size:15.5px;color:#636380;line-height:1.75;margin-bottom:14px}
.cat-sec__tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px}
.cat-sec__tags span{
  background:#F9EBF0;color:#670D2F;
  font-size:12px;font-weight:600;padding:5px 14px;border-radius:20px;
  letter-spacing:.04em;border:1px solid #EBC4D0
}
@media(max-width:900px){
  .cat-sec__inner,.cat-sec__inner--rev{grid-template-columns:1fr;direction:ltr}
  .cat-sec__img img{height:320px}
  .cat-sec__title{font-size:30px}
}

