/*
  Flickrise — India-focused colorful agency design
  Bold blue + orange CTAs, photo-led sections, visual service cards
*/
/* Fonts enqueued via wp_enqueue_style */
:root {
  --blue: #1d4ed8;
  --blue-deep: #1e3a8a;
  --blue-soft: #eff6ff;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --orange-soft: #fff7ed;
  --teal: #0d9488;
  --teal-soft: #f0fdfa;
  --ink: #0f172a;
  --muted: #475569;
  --subtle: #94a3b8;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --max: 1160px;
  --font: "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, .logo { font-family: var(--font); letter-spacing: -0.03em; margin: 0; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.preview-bar {
  position: sticky; top: 0; z-index: 300;
  text-align: center; padding: 0.5rem 1rem;
  background: var(--ink); color: #94a3b8; font-size: 0.75rem;
}
.preview-bar a { color: #fff; text-decoration: underline; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 400; pointer-events: none;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--teal));
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.35);
  transition: width 0.08s linear;
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.from-left { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.from-left.in,
.reveal.from-right.in { transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .scroll-progress { display: none; }
  * { animation: none !important; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin: 0 0 0.85rem; font-size: 0.8rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em;
}
.lead { margin: 0.85rem 0 0; color: var(--muted); font-size: 1.05rem; max-width: 40rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 48px; padding: 0.75rem 1.25rem; border-radius: 999px;
  font-family: var(--font); font-weight: 700; font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.28);
}
.btn-white { background: #fff; color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-whatsapp {
  background: #25d366; color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  overflow: visible;
}
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px rgba(15,23,42,0.05); }

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  min-height: 72px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.logo span { color: var(--orange); }
.logo-custom,
.logo-custom .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-custom img,
.logo-custom .custom-logo {
  display: block;
  max-height: 36px;
  width: auto;
  height: auto;
}

.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.85rem;
  min-width: 0;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1;
}
.nav-menu > .nav-link,
.nav-menu .mega-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  padding: 0.45rem 0;
  line-height: 1.1;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.nav-menu > .nav-link:hover,
.nav-menu > .nav-link.is-active,
.nav-menu .mega-parent:hover,
.nav-item.is-open .mega-parent {
  color: var(--blue);
}
.mega-trigger-row {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.mega-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 6px;
}
.mega-toggle:hover { color: var(--blue); background: var(--blue-soft); }
.mega-chevron {
  display: inline-flex;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.mega-chevron svg { width: 100%; height: 100%; display: block; }
.nav-item.is-open .mega-chevron { transform: rotate(180deg); }

/* Mega dropdowns */
.nav-item.has-mega { position: static; }
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 120;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
/* Invisible bridge so mouse can travel from label → panel without closing */
.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 22px;
}
.nav-item.is-open > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mega-panel[hidden] { display: block !important; }
.nav-item:not(.is-open) > .mega-panel[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mega-panel__inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  padding: 1.15rem;
}
.mega-panel--services .mega-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1.15rem;
  align-items: stretch;
}
.mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.25rem;
}
.mega-list { display: grid; gap: 0.2rem; align-content: start; }
.mega-link {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.55rem !important;
  border-radius: 12px;
  white-space: normal !important;
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
  text-decoration: none;
}
.mega-link:hover { background: var(--bg); }
.mega-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
}
.mega-ico svg { width: 20px; height: 20px; display: block; }
.mega-link.tone-orange .mega-ico { background: var(--orange-soft); color: var(--orange-deep); }
.mega-link.tone-green .mega-ico { background: #ecfdf5; color: #059669; }
.mega-link.tone-pink .mega-ico { background: #fdf2f8; color: #db2777; }
.mega-link.tone-purple .mega-ico { background: #f5f3ff; color: #7c3aed; }
.mega-link.tone-teal .mega-ico { background: #f0fdfa; color: #0d9488; }
.mega-link.tone-red .mega-ico { background: #fef2f2; color: #dc2626; }
.mega-link.tone-indigo .mega-ico { background: #eef2ff; color: #4f46e5; }

.mega-promo {
  background: linear-gradient(160deg, var(--orange-soft), #fff 55%, var(--blue-soft));
  border-radius: 14px;
  padding: 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid var(--line);
}
.mega-promo__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}
.mega-promo strong {
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--ink);
}
.mega-promo p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}
.mega-promo .btn { margin-top: auto; min-height: 42px; justify-content: center; }

.mega-industries {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.mega-ind {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  padding: 0.85rem 0.5rem !important;
  border-radius: 14px;
  white-space: normal !important;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.2;
  color: inherit !important;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mega-ind:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(15,23,42,0.08); }
.mega-ind__ico {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mega-ind__ico svg { width: 28px; height: 28px; display: block; }
.mega-ind.tone-blue { background: #eff6ff; color: #1d4ed8; }
.mega-ind.tone-orange { background: #fff7ed; color: #ea580c; }
.mega-ind.tone-green { background: #ecfdf5; color: #059669; }
.mega-ind.tone-purple { background: #f5f3ff; color: #7c3aed; }
.mega-ind.tone-teal { background: #f0fdfa; color: #0f766e; }
.mega-ind.tone-pink { background: #fdf2f8; color: #db2777; }
.mega-ind.tone-amber { background: #fffbeb; color: #b45309; }
.mega-ind.tone-lavender { background: #f3e8ff; color: #7e22ce; }
.mega-ind.tone-lime { background: #f7fee7; color: #65a30d; }
.mega-ind.tone-brown { background: #fef3c7; color: #92400e; }
.mega-ind.tone-magenta { background: #fce7f3; color: #be185d; }
.mega-ind.tone-sky { background: #e0f2fe; color: #0284c7; }
.mega-ind.tone-mint { background: #ecfdf5; color: #047857; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.nav-actions .btn {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  font-size: 0.84rem;
  white-space: nowrap;
  line-height: 1;
}
.btn-label-short { display: none; }

/* Header cart icon */
.fr-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.fr-cart-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff7ed;
}
.fr-cart-link[hidden],
.fr-cart-link--empty {
  display: none !important;
}
.fr-cart-link .fr-icon {
  width: 20px;
  height: 20px;
  display: block;
  line-height: 0;
}
.fr-cart-link .fr-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fr-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.35);
}

/* Shop: text on desktop, icon on mobile */
.btn-shop .fr-shop-icon {
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.btn-shop .fr-shop-icon .fr-icon {
  width: 18px;
  height: 18px;
  display: block;
  line-height: 0;
}
.btn-shop .fr-shop-icon .fr-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.btn-shop .fr-shop-label {
  display: inline;
}

/* Account dropdown (Dashboard → Log out) */
.fr-account-menu {
  position: relative;
}
.fr-account-menu__toggle {
  gap: 0.35rem;
}
.fr-account-menu__icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 0;
  flex-shrink: 0;
}
.fr-account-menu__icon .fr-icon {
  width: 18px;
  height: 18px;
  display: block;
  line-height: 0;
}
.fr-account-menu__icon .fr-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.fr-account-menu__label {
  display: inline;
}
.fr-account-menu__chevron {
  display: inline-flex;
  transition: transform 0.2s ease;
}
.fr-account-menu.is-open .fr-account-menu__chevron {
  transform: rotate(180deg);
}
.fr-account-menu__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 180;
  min-width: 11.5rem;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}
.fr-account-menu__panel[hidden] {
  display: none !important;
}
.fr-account-menu__link {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}
.fr-account-menu__link:hover {
  background: var(--blue-soft);
  color: var(--blue);
}
.fr-account-menu__link--logout {
  color: #b91c1c;
  border-top: 1px solid var(--line);
  margin-top: 0.25rem;
  border-radius: 0 0 8px 8px;
}
.fr-account-menu__link--logout:hover {
  background: #fef2f2;
  color: #991b1b;
}

.btn-login .fr-login-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 0;
  flex-shrink: 0;
}
.btn-login .fr-login-icon .fr-icon {
  width: 18px;
  height: 18px;
  display: block;
  line-height: 0;
}
.btn-login .fr-login-icon .fr-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.btn-login .fr-login-label {
  display: inline;
}

.logo-custom {
  flex-shrink: 0;
  max-width: 160px;
}
.logo-custom img {
  max-height: 36px;
  width: auto;
  height: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.nav-toggle .fr-icon { width: 20px; height: 20px; display: block; }
.nav-toggle .fr-icon svg { width: 100%; height: 100%; display: block; }
.nav-toggle .fr-icon-close { display: none; }
.nav.is-open .nav-toggle .fr-icon-menu { display: none; }
.nav.is-open .nav-toggle .fr-icon-close { display: block; }

/* ========== COLORFUL HERO ========== */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(12px,-16px) scale(1.08); }
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35); }
  50% { box-shadow: 0 10px 28px rgba(249, 115, 22, 0.5), 0 0 0 8px rgba(249, 115, 22, 0.12); }
}
@keyframes shine-sweep {
  0% { transform: translateX(-120%) skewX(-15deg); }
  100% { transform: translateX(220%) skewX(-15deg); }
}
@keyframes industry-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { transform: scale(1.15); opacity: 0.85; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(29, 78, 216, 0.12); }
  50% { box-shadow: 0 6px 22px rgba(249, 115, 22, 0.18); }
}
@keyframes soft-pop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.btn-pulse { animation: btn-pulse 2.4s ease-in-out infinite; }

.hero-social-proof {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0 0 0.85rem; padding: 0.4rem 0.85rem;
  border-radius: 999px; background: rgba(255,255,255,0.9);
  border: 1px solid var(--line); font-size: 0.82rem; color: var(--muted);
  animation: soft-pop 0.6s var(--ease) both;
}
.hero-social-proof strong { color: var(--ink); }
.hero-social-proof .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: live-pulse 1.8s ease-out infinite;
}

.hero-rotator {
  display: inline-grid;
  vertical-align: bottom;
  color: var(--blue);
  min-width: 14ch;
}
.hero-rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero-rotator span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: 1.15rem;
}
.hero-trust-row span {
  font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.65rem; border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: transform 0.25s, border-color 0.25s, color 0.25s;
}
.hero-trust-row span:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  color: var(--blue);
}

.hero-main-img {
  position: relative;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  border: 4px solid #fff;
  animation: floaty 6s ease-in-out infinite;
}
.hero-main-img img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}
.hero-visual:hover .hero-main-img img { transform: scale(1.06); }
.hero-img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine-sweep 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-float.mid {
  left: 8%; bottom: 38%;
  animation-delay: 0.7s;
}

.hero {
  position: relative; overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 50% 45% at 90% 10%, rgba(249,115,22,0.18), transparent 55%),
    radial-gradient(ellipse 45% 50% at 5% 80%, rgba(29,78,216,0.14), transparent 55%),
    linear-gradient(180deg, #fff 0%, #eff6ff 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(30px); pointer-events: none;
  animation: blob 9s ease-in-out infinite;
}
.hero-blob.a { width: 280px; height: 280px; background: rgba(249,115,22,0.35); right: 8%; top: 8%; }
.hero-blob.b { width: 220px; height: 220px; background: rgba(29,78,216,0.28); left: 4%; bottom: 10%; animation-delay: 1s; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 0.8rem; font-weight: 700; color: var(--blue);
  margin-bottom: 0.75rem;
  animation: badge-glow 3s ease-in-out infinite;
}
.hero-badge i {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
}
.hero h1 .hl { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-note { margin-top: 0.9rem; font-size: 0.88rem; color: var(--muted); font-weight: 500; }

.hero-visual { position: relative; }
.hero-float {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 0.85rem 1rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); animation: floaty 5s ease-in-out infinite;
  will-change: transform;
}
.hero-float.top {
  top: 8%; left: -6%; animation-delay: 0.4s;
}
.hero-float.bot {
  right: -4%; bottom: 10%; animation-delay: 1s;
}
.hero-float strong { display: block; font-family: var(--font); font-size: 1.35rem; color: var(--blue); line-height: 1.2; }
.hero-float > span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.hero-float strong [data-count],
.hero-float strong span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.hero-float .up { color: #16a34a; }

/* STATS STRIP */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff; border-radius: 20px; overflow: hidden;
  margin-top: -1.5rem; position: relative; z-index: 2;
  box-shadow: var(--shadow-lg);
}
.stat {
  padding: 1.5rem 1.25rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block; font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.25rem;
}
.stat > span { font-size: 0.85rem; opacity: 0.85; }
.stat strong [data-count],
.stat strong span {
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
  letter-spacing: inherit;
}

.industry-band {
  position: relative;
  overflow: hidden;
  margin-top: 1.75rem;
  padding: 1.35rem 0 1.5rem;
  background:
    linear-gradient(90deg, rgba(248,250,252,0.95), rgba(239,246,255,0.9), rgba(255,247,237,0.9), rgba(248,250,252,0.95));
  border-block: 1px solid var(--line);
}
.industry-band-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 15% 50%, rgba(249,115,22,0.1), transparent 60%),
    radial-gradient(ellipse 40% 80% at 85% 50%, rgba(29,78,216,0.1), transparent 60%);
  pointer-events: none;
}
.industry-band-label {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.industry-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.7rem;
  width: max-content;
  animation: industry-run 36s linear infinite;
  padding: 0.2rem 0 0.55rem;
}
.industry-track.reverse {
  animation: industry-run-rev 42s linear infinite;
  padding-bottom: 0.15rem;
}
.industry-band:hover .industry-track {
  animation-play-state: paused;
}
@keyframes industry-run-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.industry-track .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 750;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.industry-track .chip i {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1;
}
.industry-track .chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.industry-track .chip:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}
.industry-track .chip.c1 { background: #e8f1ff; color: #1e3a8a; border-color: #bfdbfe; }
.industry-track .chip.c2 { background: #fff1e6; color: #9a3412; border-color: #fed7aa; }
.industry-track .chip.c3 { background: #e7f8f0; color: #065f46; border-color: #a7f3d0; }
.industry-track .chip.c4 { background: #f3e8ff; color: #6b21a8; border-color: #e9d5ff; }
.industry-track .chip.c5 { background: #e0f7fa; color: #0e7490; border-color: #a5f3fc; }
.industry-track .chip.c6 { background: #ffe4e6; color: #9f1239; border-color: #fecdd3; }
.industry-track .chip.c7 { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.industry-track .chip.c8 { background: #ede9fe; color: #5b21b6; border-color: #ddd6fe; }
.industry-track .chip.c9 { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.industry-track .chip.c10 { background: #ffedd5; color: #c2410c; border-color: #fdba74; }

.promise-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 1.75rem 0 0.25rem;
}
.promise {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.promise:hover { transform: translateY(-4px); border-color: #bfdbfe; }
.promise:nth-child(1) { background: linear-gradient(135deg, var(--orange-soft), #fff); }
.promise:nth-child(2) { background: linear-gradient(135deg, var(--blue-soft), #fff); }
.promise:nth-child(3) { background: linear-gradient(135deg, var(--teal-soft), #fff); }
.promise strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.promise span { font-size: 0.82rem; color: var(--muted); }

/* INDUSTRIES WE SERVE */
.industries-sec {
  background: #fff;
  border-block: 1px solid var(--line);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  max-width: 960px;
  margin-inline: auto;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 92px;
  padding: 0.85rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
a.industry-card h3 {
  color: inherit;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.industry-card:nth-child(1) { background: #e8f1ff; color: #1e3a8a; }
.industry-card:nth-child(2) { background: #fff1e6; color: #9a3412; }
.industry-card:nth-child(3) { background: #e7f8f0; color: #065f46; }
.industry-card:nth-child(4) { background: #f3e8ff; color: #6b21a8; }
.industry-card:nth-child(5) { background: #e0f7fa; color: #0e7490; }
.industry-card:nth-child(6) { background: #ffe4e6; color: #9f1239; }
.industry-card:nth-child(7) { background: #fef3c7; color: #92400e; }
.industry-card:nth-child(8) { background: #ede9fe; color: #5b21b6; }
.industry-card:nth-child(9) { background: #dcfce7; color: #166534; }
.industry-card:nth-child(10) { background: #ffedd5; color: #c2410c; }
.industry-card:nth-child(11) { background: #fce7f3; color: #9d174d; }
.industry-card:nth-child(12) { background: #ecfeff; color: #155e75; }
.industry-card:nth-child(13) { background: #fef9c3; color: #854d0e; }
.industry-card:nth-child(14) { background: #dbeafe; color: #1e40af; }
.industry-card:nth-child(15) { background: #fae8ff; color: #86198f; }
.industry-card:nth-child(16) { background: #ccfbf1; color: #115e59; }
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 23, 42, 0.06);
}
.industry-ico {
  width: 28px;
  height: 28px;
  color: inherit;
  transition: transform 0.3s var(--ease);
}
.industry-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.industry-card:hover .industry-ico {
  transform: scale(1.08);
}
.industry-card h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* SERVICE TABS */
.service-tabs-sec { background: var(--bg); }
.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0 0 1.75rem;
}
.svc-tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  position: relative;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  background: #eef2f7;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.svc-tab:hover { transform: translateY(-1px); }
.svc-tab.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.28);
}
.svc-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--blue);
}
.svc-panels { position: relative; }
.svc-panel {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  animation: soft-pop 0.35s var(--ease);
}
.svc-panel.is-active { display: grid; }
.svc-panel h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--blue-deep);
}
.svc-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.svc-panel .svc-points {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 1.25rem;
}
.svc-panel .svc-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}
.svc-panel .svc-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.svc-panel-visual {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue-soft);
  border: 1px solid var(--line);
}
.svc-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-panel:hover .svc-panel-visual img { transform: scale(1.04); }

/* SECTION */
.section { padding: 4.5rem 0; }
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* WHO / STAGE CARDS with images */
.stage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.stage-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.stage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stage-card .pic { aspect-ratio: 16/10; position: relative; }
.stage-card .pic img { width: 100%; height: 100%; }
.stage-card .pic .tag {
  position: absolute; left: 0.85rem; bottom: 0.85rem;
  background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 750;
  padding: 0.35rem 0.65rem; border-radius: 999px; text-transform: uppercase;
}
.stage-card .body { padding: 1.25rem 1.2rem 1.4rem; }
.stage-card p { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.92rem; }
.stage-card .price { display: inline-block; margin-top: 0.9rem; font-weight: 750; color: var(--blue); font-size: 0.9rem; }
.stage-card .pic img { transition: transform 0.6s var(--ease); }
.stage-card:hover .pic img { transform: scale(1.08); }
.stage-cta {
  display: inline-block; margin-top: 0.55rem; margin-left: 0.65rem;
  font-size: 0.85rem; font-weight: 750; color: var(--orange);
}

/* SERVICES colorful */
.services-sec { background: #fff; border-block: 1px solid var(--line); }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
}
.svc-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 0;
  background: var(--bg); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); transition: border-color 0.25s, transform 0.25s;
}
.svc-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.svc-card .pic { min-height: 160px; overflow: hidden; }
.svc-card .pic img {
  width: 100%; height: 100%; min-height: 160px;
  transition: transform 0.55s var(--ease);
}
.svc-card:hover .pic img { transform: scale(1.08); }
.svc-card .link {
  font-weight: 700; color: var(--blue); font-size: 0.88rem;
  transition: transform 0.25s, gap 0.25s;
  display: inline-block;
}
.svc-card:hover .link { transform: translateX(4px); }
.svc-card .body { padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; }
.svc-card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 0.65rem;
  font-size: 0.75rem; font-weight: 800; color: #fff;
}
.svc-card.seo .ico { background: var(--blue); }
.svc-card.ads .ico { background: var(--orange); }
.svc-card.web .ico { background: var(--teal); }
.svc-card.social .ico { background: #7c3aed; }
.svc-card p { margin: 0.4rem 0 0.85rem; color: var(--muted); font-size: 0.9rem; }

/* IMAGE BANNER */
.banner {
  position: relative; border-radius: 24px; overflow: hidden;
  min-height: 340px; display: grid; align-items: end;
  box-shadow: var(--shadow-lg);
}
.banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.88) 10%, rgba(15,23,42,0.35) 70%, transparent);
}
.banner-content {
  position: relative; z-index: 1; color: #fff; padding: 2.5rem;
  max-width: 34rem;
}
.banner-content .lead { color: rgba(255,255,255,0.8); }
.banner-content .hero-actions { margin-top: 1.25rem; }

/* RESULTS with images */
.cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.case {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.case .pic { aspect-ratio: 16/11; overflow: hidden; }
.case .pic img {
  width: 100%; height: 100%;
  transition: transform 0.55s var(--ease);
}
.case:hover .pic img { transform: scale(1.07); }
.case:hover { transform: translateY(-4px); transition: transform 0.3s var(--ease); }
.case .body { padding: 1.2rem; }
.case .type { font-size: 0.72rem; font-weight: 750; color: var(--orange); text-transform: uppercase; letter-spacing: 0.04em; }
.case p { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.9rem; }
.case-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
  margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line);
}
.case-stats strong {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.55rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue);
}
/* Number spans inside strong must inherit the big blue style —
   do NOT use a bare `.case-stats span` (that was breaking 3.2x etc.) */
.case-stats strong span {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.case-stats .case-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.25;
}
.results-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--orange-soft), var(--blue-soft));
  border-radius: 18px; border: 1px solid var(--line);
}
.results-cta p { margin: 0; font-weight: 700; font-size: 1.05rem; }

/* TIMELINE visual */
.timeline-sec { background: var(--blue-soft); overflow: hidden; }

/* Vertical process timeline */
@keyframes process-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
}

.process-timeline {
  position: relative;
  max-width: 720px;
  margin: 2rem auto 0;
  --rail: 48px;
  --line-w: 3px;
  padding-left: 0;
}
.process-line {
  position: absolute;
  left: calc(var(--rail) / 2);
  top: 24px;
  bottom: 24px;
  width: var(--line-w);
  margin-left: calc(var(--line-w) / -2);
  background: #bfdbfe;
  border-radius: 99px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.process-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  border-radius: inherit;
  transition: height 0.15s linear;
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: var(--rail) 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
  /* Keep dots locked to the rail — don't slide the whole step */
  transform: none !important;
}
.process-step:last-child { padding-bottom: 0; }
.process-step.reveal {
  opacity: 1;
}
.process-dot {
  position: relative;
  z-index: 2;
  width: var(--rail);
  height: var(--rail);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  justify-self: center;
}
.process-dot span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s var(--ease);
  transform: none;
}
.process-step.in .process-dot span,
.process-step.active .process-dot span {
  animation: pulse-dot 1.8s ease-out infinite;
  transform: none;
}
.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  opacity: 0;
  transform: translateY(14px);
}
.process-step.in .process-card,
.process-step.active .process-card {
  opacity: 1;
  transform: none;
  animation: process-pop 0.55s var(--ease) both;
}
.process-step:hover .process-card {
  transform: translateX(6px);
  border-color: #fdba74;
  box-shadow: var(--shadow-lg);
}
.process-card .time {
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--blue);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.process-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Horizontal marquee */
@keyframes marquee-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-band {
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue) 40%, var(--orange));
  color: #fff;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(255,255,255,0.12);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-run 28s linear infinite;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  opacity: 0.55;
  color: #fdba74;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* Legacy tl-grid kept unused */
.tl-grid { display: none; }

/* Full footer */
.site-footer-full {
  background: var(--ink);
  color: #94a3b8;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand .logo { color: #fff; display: inline-block; margin-bottom: 0.85rem; }
.footer-brand p { margin: 0; font-size: 0.9rem; line-height: 1.6; max-width: 28rem; }
.footer-social {
  display: flex; gap: 0.5rem; margin-top: 1.15rem;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--orange); }
.site-footer-full h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
}
.site-footer-full ul { display: grid; gap: 0.55rem; }
.site-footer-full a { color: #94a3b8; font-size: 0.9rem; transition: color 0.2s; }
.site-footer-full a:hover { color: #fff; }
.footer-contact li { font-size: 0.9rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.15rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

.site-footer {
  padding: 1.5rem 0 2rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.85rem;
}

/* WHY US */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.why-img {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; border: 4px solid #fff;
}
.why-img img { width: 100%; height: 100%; }
.why-list { display: grid; gap: 0.85rem; margin-top: 1.25rem; }
.why-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1rem; background: #fff; border-radius: 14px; border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: #bfdbfe;
}
.why-item .dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; font-weight: 800; font-size: 0.75rem;
}
.why-item p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }

/* TESTIMONIALS */
.rating-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0.85rem auto 0; padding: 0.45rem 0.9rem;
  border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 0.88rem; color: var(--muted);
}
.rating-pill .stars { color: #f59e0b; letter-spacing: 1px; }
.rating-pill strong { color: var(--ink); }

.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.t-card {
  background: #fff; border-radius: 20px; padding: 1.4rem;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.t-card.is-focus {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: var(--shadow-lg);
}
.t-card .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 0.75rem; font-size: 0.9rem; }
.t-card p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.t-user {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1.15rem;
}
.t-user img {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--orange-soft);
}
.t-user strong { display: block; font-size: 0.9rem; }
.t-user span { font-size: 0.78rem; color: var(--muted); }

/* PRICING */
.pricing { background: linear-gradient(180deg, #fff, var(--blue-soft)); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.plan {
  background: #fff; border-radius: 22px; padding: 1.6rem 1.4rem;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.plan.hot {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue));
  color: #fff; border: 0; transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(29,78,216,0.3);
  animation: btn-pulse 3s ease-in-out infinite;
}
.plan.hot .muted, .plan.hot li { color: rgba(255,255,255,0.78); }
.plan-name {
  font-size: 0.78rem; font-weight: 750; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--orange); margin-bottom: 0.5rem;
}
.plan.hot .plan-name { color: #fdba74; }
.plan-price { font-family: var(--font); font-size: 2.2rem; font-weight: 800; }
.plan-price small { font-size: 0.9rem; font-weight: 500; opacity: 0.7; }
.muted { margin: 0.6rem 0 1.1rem; color: var(--muted); font-size: 0.9rem; }
.plan ul { display: grid; gap: 0.45rem; margin-bottom: 1.25rem; flex: 1; }
.plan li {
  position: relative; padding-left: 1.2rem; font-size: 0.9rem; color: var(--muted);
}
.plan li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.plan.hot li::before { color: #86efac; }
.badge {
  display: inline-block; margin-bottom: 0.55rem; font-size: 0.7rem; font-weight: 800;
  background: var(--orange); color: #fff; padding: 0.3rem 0.55rem; border-radius: 999px;
}
.price-reassure {
  text-align: center; margin: 1.5rem auto 0; max-width: 36rem;
  color: var(--muted); font-size: 0.95rem;
}

/* FAQ */
.faq-wrap {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem;
}
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.15rem; margin-bottom: 0.65rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq details[open] {
  border-color: #bfdbfe;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--orange); font-size: 1.2rem;
  transition: transform 0.25s;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0.65rem 0 0; color: var(--muted); font-size: 0.92rem;
  animation: soft-pop 0.35s var(--ease);
}

/* TOOLS */
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tool {
  background: #fff; border-radius: 16px; padding: 1.25rem;
  border: 1px solid var(--line); text-align: center;
  display: block; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.tool:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #bfdbfe;
}
.tool .emoji {
  width: 48px; height: 48px; margin: 0 auto 0.75rem; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: var(--blue-soft);
  transition: transform 0.3s var(--ease);
}
.tool:hover .emoji { transform: scale(1.08) rotate(-4deg); }
.tool p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.85rem; }
.tool-cta {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.82rem; font-weight: 750; color: var(--orange);
}

/* CTA */
.cta-band {
  padding: 2rem 0 4.5rem;
}
.cta-box {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.5rem; align-items: center;
  background: linear-gradient(135deg, var(--orange), #fb923c 40%, var(--blue) 40.1%, var(--blue-deep));
  border-radius: 28px; padding: 2.25rem; color: #fff; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box .lead { color: rgba(255,255,255,0.85); }
.cta-note {
  margin: 1rem 0 0; font-size: 0.85rem; opacity: 0.85;
}
.cta-box .pic {
  border-radius: 18px; overflow: hidden; aspect-ratio: 16/11;
  border: 3px solid rgba(255,255,255,0.35);
}
.cta-box .pic img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}
.cta-box:hover .pic img { transform: scale(1.05); }

.site-footer {
  padding: 1.5rem 0 2rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.85rem;
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 250;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  font-weight: 800; font-size: 0.7rem;
  animation: floaty 3.5s ease-in-out infinite, live-pulse 2.4s ease-out infinite;
}

.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 240;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15,23,42,0.08);
  gap: 0.55rem;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { flex: 1; min-height: 44px; }

/* Single service pages */
.fr-service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}
.fr-service-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1rem;
}
.fr-service-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.fr-service-step p { margin: 0; color: var(--muted); font-weight: 600; line-height: 1.4; }
.fr-related-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.fr-related-services .mega-link {
  background: #fff;
  border: 1px solid var(--line);
}
.fr-service-body {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
}
.fr-industries-hub {
  margin-top: 0.5rem;
}
.fr-industries-hub .mega-ind {
  min-height: 110px;
}

/* Industry problem → solution */
.fr-industry-problems-sec {
  background: linear-gradient(180deg, #fff7ed 0%, #fff 55%);
}
.fr-industry-problems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.35rem;
}
.fr-industry-problem {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 1.05rem 1rem;
}
.fr-industry-problem__mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #fff1e6;
  color: #c2410c;
  font-weight: 800;
  font-size: 0.85rem;
}
.fr-industry-problem p {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
  font-size: 0.98rem;
}
.fr-industry-expert-sec {
  background: linear-gradient(180deg, #eff6ff 0%, #fff 60%);
}
.fr-industry-ps {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.fr-industry-ps__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.fr-industry-ps__problem,
.fr-industry-ps__solution {
  padding: 0.35rem 0.25rem;
}
.fr-industry-ps__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.fr-industry-ps__problem .fr-industry-ps__label { color: #c2410c; }
.fr-industry-ps__solution .fr-industry-ps__label { color: var(--blue); }
.fr-industry-ps__problem p,
.fr-industry-ps__solution p {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}
.fr-industry-ps__solution {
  background: var(--blue-soft);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}
.fr-industry-ps__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  opacity: 0.75;
}
.fr-industry-solutions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.fr-industry-solution {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1rem;
}
.fr-industry-solution__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.fr-industry-solution p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 820px) {
  .fr-industry-problems,
  .fr-industry-solutions {
    grid-template-columns: 1fr;
  }
  .fr-industry-ps__row {
    grid-template-columns: 1fr;
  }
  .fr-industry-ps__arrow {
    transform: rotate(90deg);
    padding: 0.15rem 0;
  }
}
@media (max-width: 560px) {
  .fr-service-steps { grid-template-columns: 1fr; }
  .logo-custom { max-width: 104px; }
  .logo-custom img { max-height: 28px; }
  .nav-actions .btn {
    padding: 0.38rem 0.55rem;
    font-size: 0.72rem;
  }
  .fr-account-menu__panel {
    right: 0;
    min-width: 10.5rem;
  }
}

.banner img { transition: transform 8s linear; }
.banner:hover img { transform: scale(1.05); }

@media (max-width: 1100px) {
  .site-header {
    overflow: visible;
  }
  .nav {
    position: static;
    grid-template-columns: 1fr auto auto;
    column-gap: 0.45rem;
    /* Logo left · action icons · hamburger right */
  }
  .logo,
  .logo-custom {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 0.3rem;
    max-width: none;
  }
  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .nav-actions .btn {
    min-height: 36px;
    padding: 0.4rem 0.65rem;
    font-size: 0.76rem;
  }
  /* Mobile icon buttons: Shop + Cart + Profile — always visible */
  .nav-actions .btn-shop,
  .nav-actions .btn-login,
  .nav-actions .fr-account-menu__toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }
  .btn-shop .fr-shop-icon {
    display: inline-flex;
  }
  .btn-shop .fr-shop-label {
    display: none;
  }
  .fr-cart-link {
    width: 36px;
    height: 36px;
  }
  .fr-cart-link .fr-icon {
    width: 18px;
    height: 18px;
  }
  .fr-account-menu__icon {
    display: inline-flex;
  }
  .fr-account-menu__label,
  .fr-account-menu__chevron {
    display: none !important;
  }
  .btn-login .fr-login-icon {
    display: inline-flex;
  }
  .btn-login .fr-login-label {
    display: none;
  }
  .logo-custom {
    max-width: 118px;
  }
  .logo-custom img {
    max-height: 30px;
  }
  .logo:not(.logo-custom) {
    font-size: 1.1rem;
  }
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 160;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    margin: 0;
    padding: 0.65rem max(1rem, calc((100vw - var(--max)) / 2)) 1rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    max-height: min(78vh, calc(100dvh - 72px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open .nav-menu { display: flex; }
  .nav-menu > .nav-link,
  .nav-menu .mega-parent {
    padding: 0.75rem 0.35rem;
    white-space: normal;
  }
  .mega-trigger-row {
    width: 100%;
    justify-content: space-between;
  }
  .mega-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-item.has-mega { width: 100%; }
  .mega-panel {
    position: static;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    transition: none;
  }
  .mega-panel::before { display: none; }
  .nav-item.is-open > .mega-panel { display: block; }
  .mega-panel[hidden] { display: none !important; }
  .nav-item.is-open > .mega-panel[hidden] { display: block !important; }
  .mega-panel__inner {
    box-shadow: none;
    border-radius: 12px;
    padding: 0.75rem;
    margin: 0.15rem 0 0.5rem;
  }
  .mega-panel--services .mega-panel__inner {
    grid-template-columns: 1fr;
  }
  .mega-cols { grid-template-columns: 1fr; }
  .mega-promo { display: none; }
  .mega-industries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid, .stage-grid, .svc-grid, .cases,
  .why-grid, .t-grid, .price-grid, .tools-grid, .faq-wrap,
  .stats-strip, .cta-box, .svc-card, .footer-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-panel { grid-template-columns: 1fr; }
  .svc-tab { flex: 1 1 auto; text-align: center; font-size: 0.82rem; padding: 0.75rem 0.85rem; }
  .svc-tab.is-active::after { display: none; }
  .process-timeline { max-width: 100%; }
  .promise-row { grid-template-columns: 1fr; }
  .plan.hot { transform: none; animation: none; }
  .hero-float { display: none; }
  .t-card.is-focus { transform: none; }
  .mobile-cta { display: flex; }
  .wa-float { bottom: 5.5rem; }
  .cta-box {
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 38%, var(--blue) 38.1%, var(--blue-deep));
  }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
}
@media (max-width: 700px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
  .industry-card { min-height: 84px; padding: 0.7rem 0.4rem; }
  .industry-card h3 { font-size: 0.72rem; }
}


/* WP theme overrides */
.preview-bar { display: none !important; }
.fr-content { padding: 3.5rem 0 4.5rem; }
.fr-content .wrap { max-width: 800px; }
.fr-content h1 { margin-bottom: 1rem; }
.fr-content .entry-content { color: var(--muted); }
.fr-content .entry-content p { margin: 0 0 1rem; }
.fr-content .entry-content a { color: var(--blue); text-decoration: underline; }
/* Keep button labels readable — don't inherit blue underlined link styles */
.fr-content .entry-content a.btn,
.woocommerce-account .entry-content a.btn,
.woocommerce-MyAccount-content a.btn,
.woocommerce-MyAccount-content a.button,
.woocommerce-orders-table a.button,
.woocommerce-orders-table a.woocommerce-button {
  text-decoration: none !important;
}
.fr-content .entry-content a.btn-blue,
.woocommerce-MyAccount-content a.btn-blue {
  color: #fff !important;
}
.fr-content .entry-content a.btn-orange,
.woocommerce-MyAccount-content a.btn-orange,
.woocommerce-MyAccount-content a.button,
.woocommerce-orders-table a.button,
.woocommerce-orders-table a.woocommerce-button {
  color: #fff !important;
}
.fr-content .entry-content a.btn-ghost,
.woocommerce-MyAccount-content a.btn-ghost {
  color: var(--ink) !important;
}

.logo-custom a { display: inline-flex; align-items: center; max-width: 100%; }
.logo-custom img { max-height: 36px; width: auto; height: auto; }
.nav-menu a { text-decoration: none; }