/* ==========================================================================
   SEOPune360 — Global Stylesheet
   Brand: Orange gradient + Charcoal | Professional, animated, responsive
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors (from logo) */
  --orange: #f26522;
  --orange-light: #ff8a3d;
  --orange-dark: #d9420a;
  --orange-50: #fff4ee;
  --orange-100: #ffe3d3;

  --charcoal: #1e2329;
  --ink: #14181d;
  --slate: #5b6571;
  --muted: #8a94a1;
  --line: #e9edf2;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-dark: #14181d;

  --grad-brand: linear-gradient(135deg, #ff8a3d 0%, #f26522 45%, #d9420a 100%);
  --grad-brand-soft: linear-gradient(135deg, #fff4ee 0%, #ffe3d3 100%);

  /* Typography */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(20, 24, 29, 0.06);
  --shadow: 0 14px 40px rgba(20, 24, 29, 0.10);
  --shadow-lg: 0 30px 70px rgba(20, 24, 29, 0.16);
  --shadow-orange: 0 16px 40px rgba(242, 101, 34, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; color: var(--slate); }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 78px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #cdd4dd; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #aab3bf; }

.text-center { text-align: center; }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin: 0 auto 44px; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-head p { font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(242, 101, 34, 0.45); }
.btn-ghost {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange-dark); box-shadow: var(--shadow-sm); }
.btn-outline-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(20, 24, 29, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; flex: none; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-text .t-seo { color: var(--charcoal); }
.logo-text .t-pune { color: var(--orange); }
.logo-text .t-360 { color: var(--orange-dark); }

/* Desktop nav */
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li > a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--charcoal);
  padding: 10px 16px;
  border-radius: 100px;
  position: relative;
  transition: color 0.25s, background 0.25s;
}
.nav-menu > li > a:hover { color: var(--orange-dark); background: var(--orange-50); }
.nav-menu > li > a.active { color: var(--orange-dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  padding: 20px 24px 48px;
}
.mobile-nav.open { transform: translateX(0); }
.m-item { border-bottom: 1px solid var(--line); }
.m-item > a,
.m-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.m-acc-trigger .chev { transition: transform 0.3s var(--ease); color: var(--orange); }
.m-acc-trigger.open .chev { transform: rotate(180deg); }
.m-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.m-acc-panel ul { padding: 0 4px 14px; }
.m-acc-panel a {
  display: block;
  padding: 11px 14px;
  color: var(--slate);
  font-weight: 500;
  border-radius: 10px;
}
.m-acc-panel a:hover { background: var(--orange-50); color: var(--orange-dark); }
.mobile-nav .btn { width: 100%; margin-top: 24px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 76px 0 84px;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(255, 138, 61, 0.16), transparent 60%),
    radial-gradient(900px 480px at 10% 8%, rgba(242, 101, 34, 0.08), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  margin-bottom: 22px;
}
.hero-lead { font-size: 1.18rem; max-width: 520px; margin-bottom: 32px; color: var(--slate); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero-trust .pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-family: var(--font-head); font-size: 0.92rem; color: var(--charcoal);
}
.hero-trust .pill svg { width: 18px; height: 18px; color: var(--orange); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  z-index: 2;
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-head h4 { font-size: 1.05rem; margin: 0; }
.hero-card-head .tag { font-size: 0.78rem; font-weight: 700; color: #16a34a; background: #e8f7ed; padding: 5px 11px; border-radius: 100px; }
.hero-chart-wrap { height: 220px; }
.hero-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.hero-mini .m { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 12px; text-align: center; }
.hero-mini .m b { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); }
.hero-mini .m span { font-size: 0.74rem; color: var(--muted); }

.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  z-index: 3;
}
.float-badge .ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--grad-brand); }
.float-badge .ic svg { width: 18px; height: 18px; }
.float-badge.b1 { top: -22px; left: -26px; animation: floaty 5s ease-in-out infinite; }
.float-badge.b2 { bottom: 28px; right: -30px; animation: floaty 6s ease-in-out infinite 0.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================================
   LOGO / MARQUEE STRIP
   ========================================================================== */
.logos-strip { padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-strip .lead { text-align: center; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 18px 46px; align-items: center; justify-content: center; }
.logos-row span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #c2cad4; }

/* ==========================================================================
   STAT BANNER
   ========================================================================== */
.stats-banner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3rem); line-height: 1; }
.stat .num .suffix { -webkit-text-fill-color: var(--orange); color: var(--orange); }
.stat .label { color: var(--slate); font-weight: 500; margin-top: 8px; font-size: 0.98rem; }
.section--dark .stat .label { color: #9aa4b0; }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  color: var(--orange-dark);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: 0.96rem; margin-bottom: 18px; }
.service-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  color: var(--orange-dark);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ==========================================================================
   FEATURE / SPLIT SECTIONS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: -1; }
.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .fi-ic {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; background: var(--orange-50); color: var(--orange-dark);
}
.feature-item .fi-ic svg { width: 20px; height: 20px; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 3px; }
.feature-item p { font-size: 0.94rem; margin: 0; }

/* Chart card */
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.chart-card .ch-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.chart-card .ch-head h4 { margin: 0; font-size: 1.1rem; }
.chart-card .ch-sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.chart-holder { position: relative; height: 300px; }
.chart-holder.sm { height: 240px; }

/* Animated heatmap */
.heatmap { width: 100%; overflow-x: auto; padding-bottom: 4px; }
.hm-grid { display: grid; gap: 6px; min-width: 540px; }
.hm-colh { font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; color: var(--muted); text-align: center; align-self: end; padding-bottom: 4px; }
.hm-rowh { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--charcoal); display: flex; align-items: center; padding-right: 12px; white-space: nowrap; }
.hm-cell { height: 36px; border-radius: 7px; background: #eef1f5; opacity: 0; transform: scale(0.55); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.hm-cell.in { opacity: 1; transform: scale(1); }
.hm-cell:hover { outline: 2px solid var(--orange); outline-offset: 1px; }
.hm-legend { display: flex; align-items: center; gap: 8px; justify-content: flex-end; margin-top: 16px; font-size: 0.76rem; color: var(--muted); font-weight: 600; }
.hm-legend .scale { display: inline-flex; gap: 3px; }
.hm-legend .scale i { width: 18px; height: 12px; border-radius: 3px; display: inline-block; }

/* ==========================================================================
   PROCESS / TIMELINE
   ========================================================================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.process-step .step-num {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff;
  background: var(--grad-brand); margin-bottom: 16px;
}
.process-step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   CASE STUDY CARDS
   ========================================================================== */
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case-banner { padding: 22px 24px; background: var(--grad-brand-soft); display: flex; align-items: center; justify-content: space-between; }
.case-banner .industry { font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.case-banner .logo-dot { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--orange); box-shadow: var(--shadow-sm); }
.case-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.case-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.case-body p { font-size: 0.94rem; }
.case-chart { height: 180px; margin: 8px 0 18px; position: relative; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.case-metrics .cm { text-align: center; }
.case-metrics .cm b { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--orange-dark); }
.case-metrics .cm span { font-size: 0.72rem; color: var(--muted); }

/* Client logo on case card */
.case-logo { height: 104px; display: grid; place-items: center; padding: 22px 24px; background: #fff; border-bottom: 1px solid var(--line); }
.case-logo img { max-height: 56px; max-width: 80%; width: auto; object-fit: contain; }
.case-industry { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 8px; }

/* Client logo wall */
.logo-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; }
.logo-wall .lw { width: 190px; height: 92px; display: grid; place-items: center; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.logo-wall .lw:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lw img { max-height: 52px; max-width: 80%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 560px) { .logo-wall .lw { width: calc(50% - 11px); height: 80px; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); height: 100%;
}
.quote-card .stars { color: var(--orange); margin-bottom: 14px; letter-spacing: 3px; }
.quote-card blockquote { margin: 0 0 20px; font-size: 1.02rem; color: var(--charcoal); }
.quote-author { display: flex; align-items: center; gap: 13px; }
.quote-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-author b { display: block; font-family: var(--font-head); font-size: 0.98rem; color: var(--ink); }
.quote-author span { font-size: 0.84rem; color: var(--muted); }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  padding: 54px 0 50px;
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(255,138,61,0.16), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.12rem; max-width: 620px; margin: 0 auto; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.breadcrumb a:hover { color: var(--orange-dark); }
.breadcrumb .sep { opacity: 0.5; }

/* ==========================================================================
   DETAILED SERVICE BLOCK
   ========================================================================== */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 28px 0; }
.svc-block.reverse .svc-visual { order: -1; }
.svc-block .svc-icon-lg {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; margin-bottom: 20px;
}
.svc-block .svc-icon-lg svg { width: 30px; height: 30px; }
.svc-block h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.check-list { display: grid; gap: 12px; margin-top: 20px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--charcoal); font-size: 0.98rem; }
.check-list li svg { flex: none; width: 22px; height: 22px; color: #16a34a; margin-top: 1px; }

/* ==========================================================================
   SERVICE VISUAL MOCKS
   ========================================================================== */
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }

/* Local pack (GEO) */
.local-row { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); margin-bottom: 12px; transition: border-color 0.3s, transform 0.3s; }
.local-row:last-child { margin-bottom: 0; }
.local-row.top { border-color: var(--orange); background: var(--orange-50); }
.local-row .rank { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.local-row.dim .rank { background: #e6ebf1; color: var(--muted); }
.local-row .li-body b { font-family: var(--font-head); font-size: 0.98rem; color: var(--ink); display: block; }
.local-row .li-body span { font-size: 0.82rem; color: var(--muted); }
.local-row .li-body .st { color: var(--orange); letter-spacing: 1px; }

/* Browser mock (web design) */
.browser { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d9dee6; display: inline-block; }
.browser-bar i:nth-child(1) { background: #ff5f57; } .browser-bar i:nth-child(2) { background: #febc2e; } .browser-bar i:nth-child(3) { background: #28c840; }
.browser-bar .url { margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 5px 14px; font-size: 0.78rem; color: var(--muted); }
.browser-body { padding: 20px; }
.skel { background: var(--bg-soft); border-radius: 8px; }
.skel-hero { height: 86px; background: var(--grad-brand-soft); border-radius: 10px; margin-bottom: 14px; }
.skel-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.skel-row .skel { height: 64px; }
.skel-line { height: 11px; margin-top: 14px; }
.skel-line.w70 { width: 70%; } .skel-line.w40 { width: 40%; }

/* Stat panel */
.stat-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-panel .sp { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.stat-panel .sp .v { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--orange-dark); line-height: 1; }
.stat-panel .sp .k { font-size: 0.88rem; color: var(--slate); margin-top: 6px; }
.stat-panel .sp.accent { background: var(--grad-brand); border: none; }
.stat-panel .sp.accent .v, .stat-panel .sp.accent .k { color: #fff; }

/* ==========================================================================
   ACCORDION (FAQ)
   ========================================================================== */
.accordion { max-width: 800px; margin: 0 auto; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.acc-item.open { box-shadow: var(--shadow-sm); border-color: var(--orange-100); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); text-align: left;
}
.acc-trigger .acc-ic {
  flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange-50); color: var(--orange-dark); transition: transform 0.3s var(--ease), background 0.3s;
}
.acc-item.open .acc-trigger .acc-ic { transform: rotate(45deg); background: var(--orange); color: #fff; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-panel-inner { padding: 0 22px 22px; color: var(--slate); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--bg-dark); color: #cdd4dd; border-radius: var(--radius-lg); padding: 40px 34px;
  position: relative; overflow: hidden;
}
.contact-info-card::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: var(--grad-brand); filter: blur(20px); opacity: 0.35; bottom: -90px; right: -70px;
}
.contact-info-card h3 { color: #fff; font-size: 1.5rem; }
.contact-info-card .ci-item { display: flex; gap: 15px; align-items: flex-start; margin-top: 26px; position: relative; z-index: 1; }
.contact-info-card .ci-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--orange-light); }
.contact-info-card .ci-ic svg { width: 20px; height: 20px; }
.contact-info-card .ci-item b { color: #fff; font-family: var(--font-head); display: block; margin-bottom: 2px; }
.contact-info-card .ci-item span, .contact-info-card .ci-item a { color: #aab3bf; font-size: 0.95rem; }
.contact-info-card .ci-item a:hover { color: var(--orange-light); }
.contact-socials { display: flex; gap: 12px; margin-top: 34px; position: relative; z-index: 1; }
.contact-socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background 0.3s, transform 0.3s; }
.contact-socials a:hover { background: var(--orange); transform: translateY(-3px); }
.contact-socials svg { width: 18px; height: 18px; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.96rem; color: var(--charcoal); background: var(--bg-soft);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.12);
}
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 10px; background: #e8f7ed; color: #15803d;
  border: 1px solid #b7e4c7; border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 18px; font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }
.form-error {
  display: none; align-items: center; gap: 10px; background: #fdecec; color: #b91c1c;
  border: 1px solid #f5c2c2; border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 18px; font-weight: 500;
}
.form-error.show { display: flex; }
.form-error svg { width: 20px; height: 20px; flex: none; }
.form-error a { color: #b91c1c; text-decoration: underline; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.12);
}
.cta-banner::before { width: 280px; height: 280px; top: -120px; left: -60px; }
.cta-banner::after { width: 220px; height: 220px; bottom: -110px; right: -40px; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; position: relative; z-index: 1; }
.cta-banner .cta-actions { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: #fff; color: var(--orange-dark); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.cta-banner .btn-primary:hover { background: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--bg-dark); color: #9aa4b0; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo-text { font-size: 1.5rem; }
.footer-brand .logo-text .t-seo { color: #fff; }
.footer-brand p { margin-top: 18px; max-width: 320px; color: #8a94a1; font-size: 0.95rem; }
.footer-col h5 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #9aa4b0; font-size: 0.94rem; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-bottom p { margin: 0; font-size: 0.88rem; color: #7a8492; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #cdd4dd; transition: background 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split, .svc-block { gap: 40px; }
}

@media (max-width: 860px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 54px 0; }
  .split, .svc-block, .svc-block.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media, .svc-block.reverse .svc-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cards-grid, .cards-grid.cols-2, .process { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
  .cta-banner { padding: 44px 24px; }
  .float-badge.b1 { left: 0; top: -16px; }
  .float-badge.b2 { right: 0; }
  .hero-mini .m b { font-size: 1.05rem; }
}

/* ==========================================================================
   PREMIUM MOTION LAYER (studio-grade · mobile-first · performant)
   Inspired by the genre (Lollypop, Think Design, F1Studioz). Original code.
   ========================================================================== */

/* Kinetic headline word reveal (added by JS via .split-head) */
.split-head .word { display: inline-block; }
.split-head .word-in {
  display: inline-block;
  transform: translateY(0.62em);
  opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.split-head.revealed .word-in { transform: none; opacity: 1; }

/* Animated nav underline */
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }

/* Infinite logo marquee */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .lw { flex: 0 0 auto; width: 188px; height: 92px; margin: 0; padding: 14px 20px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Magnetic + parallax helpers (transform set by JS) */
.magnetic { transition: transform 0.35s var(--ease); will-change: transform; }
[data-parallax] { will-change: transform; }

/* Desktop-only micro-interactions */
@media (hover: hover) and (pointer: fine) {
  .case-logo img { transition: transform 0.45s var(--ease); }
  .case-card:hover .case-logo img { transform: scale(1.05); }
}

/* Mobile motion tuning — snappier, lighter */
@media (max-width: 560px) {
  [data-reveal] { transform: translateY(20px); }
  .marquee-track { animation-duration: 22s; gap: 14px; }
  .marquee .lw { width: 150px; height: 78px; padding: 12px 16px; }
  .lw img { max-height: 44px; }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .split-head .word-in { transform: none; opacity: 1; transition: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .magnetic, [data-parallax] { transform: none !important; }
}
