@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-bangla-heading: 'Anek Bangla', sans-serif;
  --font-bangla-body: 'Noto Sans Bengali', sans-serif;
  --font-display: 'Lexend Deca', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --bg: #FAFAF8;
  --bg2: #F4F3EF;
  --bg3: #EAE8E2;
  --surface: #FFFFFF;
  --surface2: #F7F6F2;
  --accent: #E84D1C;
  --accent2: #FF6B3D;
  --accent-soft: rgba(232, 77, 28, 0.08);
  --accent-mid: rgba(232, 77, 28, 0.18);
  --blue: #1E4FD8;
  --blue2: #4272F5;
  --blue-soft: rgba(30, 79, 216, 0.08);
  --green: #16A34A;
  --text: #1A1814;
  --text2: #5C5649;
  --text3: #9E9589;
  --border: #E2DED6;
  --border2: rgba(232, 77, 28, 0.2);

  /* Additional UI Colors */
  --stars-color: #F59E0B;
  --grid-dots: #C8C4BC;
  --dark-pill: #1F2430;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 18px;
  --radius-3xl: 22px;
  --radius-max: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-bangla-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-bangla-heading), var(--font-display);
}

.pt-0 {
  padding-top: 0;
}

.mt-0 {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.icon-svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* subtle dot grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, var(--grid-dots) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 72px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 2px 8px rgba(232, 77, 28, 0.3) !important;
}

.nav-cta:hover {
  background: var(--accent2) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 77, 28, 0.35) !important;
}

/* Premium Menu Toggle Button */
.menu-toggle {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1003;
  /* Stay above overlay and nav background */
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Inner wrapper for absolute hamburger lines */
.hamburger-box {
  position: relative;
  width: 20px;
  height: 14px;
}

.hamburger-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: var(--radius-pill);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, background-color 0.3s ease;
}

/* Initial bar positions */
.hamburger-bar:nth-child(1) {
  top: 0px;
}

.hamburger-bar:nth-child(2) {
  top: 6px;
}

.hamburger-bar:nth-child(3) {
  top: 12px;
}

/* Morphing standard X close icon */
.menu-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile full-screen overlay panel */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 1.5rem 2rem;
  /* Account for 72px header and reserve space for bottom margins */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Glow effects inside mobile overlay */
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 77, 28, 0.06) 0%, transparent 70%);
  top: 15%;
  left: -50px;
  pointer-events: none;
}

.mobile-menu-overlay::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 79, 216, 0.06) 0%, transparent 70%);
  bottom: 15%;
  right: -50px;
  pointer-events: none;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* Fill overlay padding box vertically */
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 2;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Center links in the remaining vertical space */
  gap: 1.5rem;
  width: 100%;
  flex-grow: 1;
  /* Grow to fill middle space */
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
  position: relative;
}

.mobile-link:not(.mobile-cta):hover {
  color: var(--accent);
}

.mobile-menu-overlay.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for list items when open */
.mobile-menu-overlay.open .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.open .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.open .mobile-link:nth-child(3) {
  transition-delay: 0.25s;
}

.mobile-menu-overlay.open .mobile-link:nth-child(4) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.open .mobile-link:nth-child(5) {
  transition-delay: 0.35s;
}

.mobile-menu-overlay.open .mobile-link:nth-child(6) {
  transition-delay: 0.4s;
}

.mobile-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(232, 77, 28, 0.25);
  text-align: center;
  width: 100%;
  transition: var(--transition-fast);
  display: inline-block;
}

.mobile-cta:hover {
  background: var(--accent2) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 77, 28, 0.35);
}

.mobile-menu-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text2);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  width: 100%;
}

.mobile-menu-overlay.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-blob1 {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 77, 28, 0.07) 0%, transparent 65%);
  top: -200px;
  left: -250px;
  pointer-events: none;
}

.hero-blob2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 79, 216, 0.07) 0%, transparent 65%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--border2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}



.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: var(--text);
  word-spacing: 7px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 470px;
  font-weight: 400;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(232, 77, 28, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 77, 28, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

/* ── HERO DASHBOARD ── */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dashboard-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 79, 216, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}

.dash-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.35
  }
}

.roas-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.roas-label {
  font-size: 0.78rem;
  color: var(--text2);
  margin-top: 0.3rem;
}

.roas-up {
  color: var(--green);
  font-weight: 600;
  font-size: 0.82rem;
}

.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  margin-top: 1rem;
}

.bar {
  flex: 1;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  background: linear-gradient(180deg, #93C5FD 0%, #BFDBFE 100%);
  transform-origin: bottom;
  animation: growUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bar:nth-child(1) {
  animation-delay: 0.05s;
}

.bar:nth-child(2) {
  animation-delay: 0.1s;
}

.bar:nth-child(3) {
  animation-delay: 0.15s;
}

.bar:nth-child(4) {
  animation-delay: 0.2s;
}

.bar:nth-child(5) {
  animation-delay: 0.25s;
}

.bar:nth-child(6) {
  animation-delay: 0.3s;
}

.bar:nth-child(7) {
  animation-delay: 0.35s;
}

.bar:nth-child(8) {
  animation-delay: 0.4s;
}

.bar:nth-child(9) {
  animation-delay: 0.45s;
}

.bar:nth-child(10) {
  animation-delay: 0.5s;
}

.bar.accent {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(232, 77, 28, 0.25) 100%);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.metric-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.metric-pill .val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}

.metric-pill .lbl {
  font-size: 0.62rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.spark-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.spark-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #BFDBFE 0%, var(--blue) 60%, var(--accent) 100%);
  border-radius: 2px;
}

.spark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(232, 77, 28, 0.5);
}

/* ── STATS STRIP ── */
.stats {
  background: var(--text);
  padding: 2.75rem 5%;
  position: relative;
  z-index: 1;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent2);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: auto;
  height: 100%;
}

/* ── SECTION UTIL ── */
section {
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text);
  word-spacing: 4px;
}

.section-sub {
  font-size: 0.97rem;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head .section-tag {
  justify-content: center;
}

.section-head .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES ── */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: var(--radius-xxl) var(--radius-xxl) 0 0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border2);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--blue-soft);
  border: 1px solid rgba(30, 79, 216, 0.15);
  color: var(--blue);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
}

/* ── WHY US ── */
.why {
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-mid);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.why-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
}

/* ── CASE STUDIES ── */
.cases {
  background: var(--bg);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.case-visual {
  background: var(--bg2);
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.case-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 77, 28, 0.05) 0%, rgba(30, 79, 216, 0.03) 100%);
}

.case-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  position: relative;
  z-index: 1;
}

.case-bar {
  flex: 1;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  position: relative;
  transform-origin: bottom;
}

.case-card.visible .case-bar {
  animation: growUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.case-card.visible .case-bar:nth-child(1) {
  animation-delay: 0.15s;
}

.case-card.visible .case-bar:nth-child(2) {
  animation-delay: 0.2s;
}

.case-card.visible .case-bar:nth-child(3) {
  animation-delay: 0.25s;
}

.case-card.visible .case-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.case-card.visible .case-bar:nth-child(5) {
  animation-delay: 0.35s;
}

.case-card.visible .case-bar:nth-child(6) {
  animation-delay: 0.4s;
}

.case-card.visible .case-bar:nth-child(7) {
  animation-delay: 0.45s;
}

.case-bar.before {
  background: var(--bg3);
}

.case-bar.after {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(232, 77, 28, 0.3) 100%);
  box-shadow: 0 0 16px rgba(232, 77, 28, 0.2);
}

.case-bar.mid {
  background: linear-gradient(180deg, #93C5FD 0%, rgba(147, 197, 253, 0.4) 100%);
}

.case-metric-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.case-big-metric {
  text-align: center;
}

.case-big-metric .v {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.case-big-metric .l {
  font-size: 0.6rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.divider-v {
  width: 1px;
  background: var(--border);
}

.case-body {
  padding: 1.5rem;
}

.case-industry {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.case-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.case-body p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.case-results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-result-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text2);
}

.case-result-row::before {
  content: '↑';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

.case-result-row.down::before {
  content: '↓';
}

/* ── PROCESS ── */
.process {
  background: var(--text);
}

.process .section-tag {
  color: var(--accent2);
}

.process .section-tag::before {
  background: var(--accent2);
}

.process .section-title {
  color: #fff;
}

.process .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 77, 28, 0.5), rgba(30, 79, 216, 0.5), transparent);
}

.step {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark-pill);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent2);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--text);
}

.step:nth-child(2) .step-num {
  color: #60A5FA;
}

.step:nth-child(3) .step-num {
  color: #C4B5FD;
}

.step:nth-child(4) .step-num {
  color: #4ADE80;
}

.step h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}

.step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  font-weight: 400;
}

/* ── INDUSTRIES ── */
.industries {
  background: var(--bg2);
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industry-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.industry-pill:hover {
  border-color: var(--border2);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-soft);
  font-weight: 800;
}

.stars {
  color: var(--stars-color);
  margin-bottom: 1rem;
  display: flex;
  gap: 3px;
}

.star-icon {
  width: 1rem;
  height: 1rem;
  fill: var(--stars-color);
  stroke: var(--stars-color);
  stroke-width: 1.5;
}

.testi-text {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.testi-role {
  font-size: 0.72rem;
  color: var(--text3);
}

/* ── AUDIT CTA ── */
.audit-cta {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.audit-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 77, 28, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.audit-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-max);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.audit-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: var(--text);
}

.audit-inner h2 em {
  font-style: normal;
  color: var(--accent);
}

.audit-inner>div>p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.75;
  font-weight: 400;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.72rem 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: var(--text3);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 77, 28, 0.12);
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 3.5rem 5% 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-logo span {
  color: var(--accent2);
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  font-weight: 400;
  margin-top: 0.75rem;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
}

.social-btn:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  background: rgba(255, 107, 61, 0.1);
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.6rem;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  align-items: baseline;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text2);
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link .icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@keyframes growUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

/* ── DROPDOWN NAVIGATION ── */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(20px);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
  z-index: 1010;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content a {
  display: block;
  padding: 0.8rem 1.25rem;
  color: var(--text2) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: var(--accent-soft);
  color: var(--accent) !important;
  padding-left: 1.5rem;
}

/* ── INNER HERO ── */
.inner-hero {
  padding: 8rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.inner-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inner-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.inner-hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.inner-hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ── GOOGLE SEARCH MOCKUP ── */
.google-search-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  font-family: Arial, sans-serif;
  text-align: left;
}

.search-header-mock {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.search-bar-mock {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-mock {
  margin-bottom: 1.25rem;
}

.search-result-mock:last-child {
  margin-bottom: 0;
}

.search-ad-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 3px;
  padding: 0 0.25rem;
  margin-right: 0.4rem;
  line-height: 1.2;
}

.search-ad-url {
  font-size: 0.75rem;
  color: var(--text2);
  margin-bottom: 0.2rem;
}

.search-ad-title {
  font-size: 1.05rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.search-ad-title:hover {
  text-decoration: underline;
}

.search-ad-desc {
  font-size: 0.82rem;
  color: #4d5156;
  line-height: 1.4;
}

.search-ad-sitelinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.sitelink-title {
  font-size: 0.85rem;
  color: var(--blue);
}

.sitelink-desc {
  font-size: 0.75rem;
  color: var(--text3);
}

/* ── META ADS MOCKUP ── */
.meta-feed-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.meta-post-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.meta-post-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
}

.meta-post-identity {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.meta-post-sponsored {
  font-size: 0.65rem;
  color: var(--text3);
  font-weight: 500;
}

.meta-post-body {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.meta-post-creative {
  background: var(--bg2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.meta-creative-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(232, 77, 28, 0.15) 0%, rgba(30, 79, 216, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.meta-creative-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-xs);
}

.meta-post-info {
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}

.meta-info-headline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.meta-info-desc {
  font-size: 0.7rem;
  color: var(--text3);
  margin-top: 2px;
}

.meta-btn-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── TRACKING DATA FLOW MOCKUP ── */
.tracking-flow-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.flow-node {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.85rem;
  text-align: center;
  width: 90px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.flow-node.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.flow-node.blue {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}

.flow-node h5 {
  font-size: 0.7rem;
  margin-bottom: 2px;
}

.flow-node p {
  font-size: 0.55rem;
  color: var(--text3);
}

.flow-line-connector {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed var(--border);
  z-index: 1;
}

.flow-data-packet {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: -3px;
  box-shadow: 0 0 8px var(--accent);
  animation: flowForward 3s infinite linear;
}

@keyframes flowForward {
  0% {
    left: 10%;
  }

  100% {
    left: 90%;
  }
}

/* ── BLOG SYSTEM ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border2);
}

.blog-img-holder {
  height: 250px;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.blog-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--surface2);
  padding-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--text3);
}

.blog-read-more {
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ── CONTACT & CALENDLY SCHEDULER ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: start;
}

.calendly-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}

.calendly-header {
  background: var(--bg2);
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calendly-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.calendly-header-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
}

.calendly-header-text p {
  font-size: 0.7rem;
  color: var(--text3);
}

.calendly-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  flex-grow: 1;
  height: calc(100% - 73px);
}

.calendly-calendar {
  padding: 1rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calendar-month {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-day-label {
  font-size: 0.6rem;
  color: var(--text3);
  font-weight: 700;
  padding: 0.25rem 0;
  text-transform: uppercase;
}

.calendar-day {
  font-size: 0.75rem;
  padding: 0.4rem 0;
  border-radius: var(--radius-sm);
  color: var(--text3);
  cursor: not-allowed;
}

.calendar-day.active {
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  background: var(--bg2);
  transition: var(--transition-fast);
}

.calendar-day.active:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.calendar-day.selected {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
}

.calendly-slots {
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendly-slots-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text3);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.time-slot {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.time-slot.selected {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
}

/* ── INNER PAGE GENERALS ── */

.inner-section.alternate {
  background: var(--bg2);
}

.inner-section.dark {
  background: var(--text);
  color: #fff;
}

.inner-section.dark .section-title {
  color: #fff;
}

.inner-section.dark .section-sub {
  color: rgba(255, 255, 255, 0.45);
}

/* ── RESPONSIVE INNER OVERRIDES ── */
@media (max-width: 900px) {
  .inner-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .google-search-mockup,
  .meta-feed-mockup,
  .tracking-flow-mockup {
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .calendly-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .calendly-mock {
    height: auto;
  }

  .calendly-calendar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ── INTERACTIVE CALCULATORS ── */
.calculator-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.calculator-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.slider-group {
  margin-bottom: 2rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.slider-label span.val-display {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
}

/* Custom styled range slider */
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--bg2);
  outline: none;
  margin-top: 0.75rem;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(232, 77, 28, 0.4);
  transition: transform 0.15s, background-color 0.15s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--accent2);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(232, 77, 28, 0.4);
  transition: transform 0.15s, background-color 0.15s;
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  background: var(--accent2);
}

.premium-progress-bar-container {
  width: 100%;
  height: 6px;
  background: var(--bg2);
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
}

.premium-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #EF4444);
  border-radius: var(--radius-pill);
  transition: width 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-results-panel {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.calc-results-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 77, 28, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.calc-result-row {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
}

.calc-result-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.calc-result-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.calc-result-val {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
}

.calc-result-val.secondary {
  color: var(--blue2);
}

/* ── FAQ ACCORDION ── */
.faq-accordion {
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--surface);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-question svg {
  transition: transform 0.25s ease;
  color: var(--text3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
}

.faq-item.active {
  border-color: var(--border2);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  /* arbitrary high value for transitions */
  padding-bottom: 1.25rem;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}

/* ── COMPARISON TABLE ── */
.comparison-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  margin-top: 2rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg2);
}

.comparison-table td {
  font-size: 0.85rem;
  color: var(--text2);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comp-feature {
  font-weight: 700;
  color: var(--text);
  width: 40%;
}

.comp-cell-green {
  color: var(--green) !important;
  font-weight: 700;
}

.comp-cell-red {
  color: var(--accent) !important;
  font-weight: 700;
}

/* ── CREATIVE SCORECARD QUIZ ── */
.scorecard-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.scorecard-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.scorecard-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.scorecard-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.scorecard-item:hover {
  background: var(--bg2);
  border-color: var(--border2);
  transform: translateX(4px);
}

.scorecard-item.checked {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.scorecard-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text3);
  border-radius: 4px;
  position: relative;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.scorecard-item.checked .scorecard-checkbox {
  border-color: var(--accent);
  background: var(--accent);
}

.scorecard-item.checked .scorecard-checkbox::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.scorecard-feedback-panel {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.gauge-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
}

.gauge-svg {
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}

.gauge-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
  stroke-linecap: round;
}

.scorecard-gauge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

/* ── STEP ONBOARDING FORM WIZARD ── */
.wizard-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-steps-indicator::before {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--border);
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.wizard-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text3);
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.wizard-step-dot.active {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--accent);
  box-shadow: 0 0 10px rgba(232, 77, 28, 0.2);
}

.wizard-step-dot.completed {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.wizard-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.wizard-panel.active {
  display: block;
}

.wizard-panel .form-group,
.wizard-panel .form-row {
  margin-bottom: 1.25rem;
}

.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

/* ── STACK GRID FOR TECH STACK ── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.stack-card:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.stack-card h5 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.stack-card p {
  font-size: 0.65rem;
  color: var(--text3);
}

/* ── TIMELINE ── */
.timeline-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline-item h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 400;
}

/* ── BLOG FILTERING ── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(232, 77, 28, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── GOOGLE SHOPPING FEED MOCKUP ── */
.shopping-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card-mock:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.product-image-mock {
  height: 180px;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.product-badge-mock {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
}

.product-details-mock {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title-mock {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.product-merchant-mock {
  font-size: 0.72rem;
  color: var(--text3);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.product-price-row-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price-mock {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.product-rating-mock {
  color: var(--stars-color);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* ── YOUTUBE VIDEO PLAYER MOCKUP ── */
.youtube-player-mock {
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.yt-video-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yt-play-button {
  width: 68px;
  height: 48px;
  background: #FF0000;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
  z-index: 2;
}

.yt-play-button:hover {
  transform: scale(1.1);
  background: #E50000;
}

.yt-ad-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  z-index: 10;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 80%;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.3s ease;
}

.yt-ad-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.yt-ad-text h5 {
  font-size: 0.78rem;
  font-weight: 700;
}

.yt-ad-text p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.yt-skip-button {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 11;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.yt-skip-button:hover {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── FACEBOOK MOBILE AD FORMAT SWITCHER ── */
.phone-frame-mock {
  width: 290px;
  height: 580px;
  border: 12px solid #1A1814;
  border-radius: 40px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-notch-mock {
  width: 120px;
  height: 20px;
  background: #1A1814;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.phone-screen-mock {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 0.85rem 1rem;
  position: relative;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}

.format-tabs-bar {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.format-tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.12rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.format-tab-btn:hover {
  border-color: var(--border2);
}

.format-tab-btn.active {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
  box-shadow: 0 4px 12px rgba(30, 79, 216, 0.2);
}

/* ── EVENT TRACKING SANDBOX CONSOLE ── */
.sandbox-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.sandbox-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.sandbox-triggers {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sandbox-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1rem 1.35rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.sandbox-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.sandbox-btn svg {
  color: var(--text3);
  transition: transform 0.2s;
}

.sandbox-btn:hover svg {
  transform: translateX(3px);
  color: var(--accent);
}

.console-mock {
  background: #0F172A;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.76rem;
  color: #38BDF8;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.console-header-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.5rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.console-dots-row {
  display: flex;
  gap: 4px;
}

.console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* ── VERTICAL CONNECTED FUNNEL ROADMAP ── */
.funnel-roadmap-vertical {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}

.funnel-roadmap-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 2px;
  background: dashed var(--border);
  z-index: 1;
}

.funnel-stage-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.funnel-stage-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg);
}

.funnel-stage-item:nth-child(1) .funnel-stage-badge {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.funnel-stage-item:nth-child(2) .funnel-stage-badge {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.funnel-stage-item:nth-child(3) .funnel-stage-badge {
  border-color: var(--green);
  color: var(--green);
  background: rgba(22, 163, 74, 0.08);
}

.funnel-stage-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.funnel-stage-text p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
}

/* ── BESPOKE MAGAZINE BLOG LAYOUT ── */
.featured-blog-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xxl);
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.featured-blog-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.featured-blog-details {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-blog-details h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 1rem 0;
  letter-spacing: -0.02em;
  color: var(--text);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 380px));
  gap: 2.5rem;
  justify-content: center;
}

.magazine-card {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  padding-bottom: 2rem !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.magazine-card:hover {
  border-color: var(--accent) !important;
}

.magazine-card .blog-img-holder {
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.magazine-card-body {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.magazine-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
  line-height: 1.45;
}

.magazine-card-body p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.magazine-card-body h3 a,
.featured-blog-details h2 a {
  color: inherit;
  transition: color 0.2s ease;
  text-decoration: none;
}
.magazine-card-body h3 a:hover,
.featured-blog-details h2 a:hover {
  color: var(--accent);
}
.magazine-card .blog-img-holder {
  transition: opacity 0.2s ease;
}
.magazine-card a.blog-img-holder:hover {
  opacity: 0.9;
}
.featured-blog-card a.blog-img-holder:hover {
  opacity: 0.95;
}

/* ── ACQUISITION CONFIGURATOR WIZARD ── */
.configurator-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.configurator-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.config-toggle-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.config-toggle-card:hover {
  border-color: var(--border2);
  background: var(--accent-soft);
}

.config-toggle-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.config-toggle-card h6 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* ── BLUEPRINT BLUE DESIGN ── */
.blueprint-card {
  background: #0B1930;
  border: 2px dashed rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #E2E8F0;
  font-family: monospace;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.blueprint-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.blueprint-header {
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #38BDF8;
}

.blueprint-header h4 {
  font-family: inherit;
  font-weight: 700;
}

.blueprint-row {
  margin-bottom: 1.25rem;
}

.blueprint-row:last-child {
  margin-bottom: 0;
}

.blueprint-label {
  color: #38BDF8;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.blueprint-val {
  font-size: 0.82rem;
  margin-top: 0.25rem;
  color: #94A3B8;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .sandbox-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-blog-details {
    padding: 2rem;
  }
}

/* ═══════════════════════════════════════════════════
   ROCKET BD — HOMEPAGE PREMIUM ADDITIONS
   Added: Partner Strip, Float Badge, BD Solution Badge,
   Enhanced Animations, Service Glassmorphism, Stats Gradient,
   Section Dividers, CTA Pulse, Testi Border, Industry Lift
═══════════════════════════════════════════════════ */

/* ── PARTNER BADGES STRIP ── */
.partner-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.partner-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 77, 28, 0.03) 0%, transparent 50%, rgba(30, 79, 216, 0.03) 100%);
  pointer-events: none;
}

.partner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.42rem 1rem;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text2);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.partner-badge:hover {
  border-color: var(--border2);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(232, 77, 28, 0.12);
  transform: translateY(-2px);
}

/* Stagger partner badge fade-ins */
.partner-badge:nth-child(1) {
  transition-delay: 0.05s;
}

.partner-badge:nth-child(2) {
  transition-delay: 0.1s;
}

.partner-badge:nth-child(3) {
  transition-delay: 0.15s;
}

.partner-badge:nth-child(4) {
  transition-delay: 0.2s;
}

/* ── HERO FLOATING BADGE ── */
.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  animation: floatBadge 3.5s ease-in-out infinite;
  width: fit-content;
  position: relative;
}

.float-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(232, 77, 28, 0.6);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── BD SOLUTION BADGE on service cards ── */
.service-card--bd {
  position: relative;
}

.bd-solution-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(232, 77, 28, 0.4);
  z-index: 2;
  white-space: nowrap;
}

/* ── ENHANCED SERVICE CARD GLASSMORPHISM ── */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(232, 77, 28, 0.08);
  border-color: var(--border2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── PREMIUM STATS GRADIENT TEXT ── */
.stat-num {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 60%, #FF8C5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION DIVIDER GLOW LINES ── */
.why::before,
.cases::before,
.testimonials::before,
.industries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border2) 50%, var(--border) 70%, transparent 100%);
  pointer-events: none;
}

/* ── ENHANCED FADE-IN WITH SCALE ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── CTA BUTTON PULSE ANIMATION ── */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(232, 77, 28, 0.3);
  }

  50% {
    box-shadow: 0 4px 32px rgba(232, 77, 28, 0.55), 0 0 0 6px rgba(232, 77, 28, 0.08);
  }
}

.audit-cta-pulse {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.audit-cta-pulse:hover {
  animation: none;
  box-shadow: 0 8px 24px rgba(232, 77, 28, 0.45);
}

.testi-card {
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testi-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xxl) + 1px);
  background: linear-gradient(135deg, var(--accent), var(--blue));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-card:hover::after {
  opacity: 1;
}

/* Transitions for testi-card children to make hover color change smooth */
.testi-card .testi-text,
.testi-card .testi-name,
.testi-card .testi-role,
.testi-card .testi-bigquote,
.testi-card .testi-avatar,
.testi-card::before {
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Adjust colors when card is hovered to keep text readable against gradient background */
.testi-card:hover .testi-text {
  color: rgba(255, 255, 255, 0.95);
}

.testi-card:hover .testi-name {
  color: #ffffff;
}

.testi-card:hover .testi-role {
  color: rgba(255, 255, 255, 0.75);
}

.testi-card:hover .testi-bigquote {
  color: rgba(255, 255, 255, 0.15);
}

.testi-card:hover::before {
  color: rgba(255, 255, 255, 0.15);
}

.testi-card:hover .testi-avatar {
  background: #ffffff;
  color: var(--accent);
}

/* Premium big quote mark for testi-card */
.testi-bigquote {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.7;
  color: var(--accent-soft);
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: -0.02em;
}

/* ── INDUSTRY PILL HOVER LIFT ANIMATION ── */
.industry-pill {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-pill:hover {
  border-color: var(--border2);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(232, 77, 28, 0.12);
}

/* ── HERO SECTION TAG ANIMATION ── */
.hero-tag {
  animation: fadeSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-sub {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.btn-group {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-float-badge {
  animation: floatBadge 3.5s ease-in-out infinite, fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-visual {
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── PARTNER STRIP RESPONSIVE ── */
@media (max-width: 768px) {
  .partner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .partner-badges {
    gap: 0.5rem;
  }

  .partner-badge {
    font-size: 0.72rem;
    padding: 0.38rem 0.85rem;
  }

  .hero-float-badge {
    font-size: 0.72rem;
    margin-top: 1.5rem;
  }

  .bd-solution-badge {
    font-size: 0.55rem;
    padding: 0.22rem 0.5rem;
  }

  .testi-bigquote {
    font-size: 5rem;
  }
}

/* ═══ SUBPAGES INTERNAL STYLES MIGRATION ═══ */

/* ── about.html styles ── */
.about-blueprint-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── analytics-tracking.html styles ── */
/* Telemetry flow diagram styles */
.telemetry-wrapper {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0;
}

.telemetry-badge {
  position: absolute;
  background: var(--text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-adblock {
  top: -10px;
  left: 20%;
  background: #EF4444;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-cookie {
  bottom: 0px;
  left: 45%;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation-delay: 1s;
}

.badge-safari {
  top: -15px;
  right: 20%;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation-delay: 2s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.telemetry-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.telemetry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
}

.telemetry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.server-card {
  background: var(--text);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.telemetry-card.server-card h4 {
  color: #fff;
}

.telemetry-card.server-card p {
  color: rgba(255, 255, 255, 0.85);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.telemetry-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.telemetry-card p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
}

.telemetry-events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.event-pill {
  background: var(--bg2);
  color: var(--text2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.event-pill.success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
  border-color: rgba(22, 163, 74, 0.2);
}

.telemetry-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  color: var(--text3);
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--text3));
}

.connector-arrow {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--text3);
  font-size: 0;
  color: transparent;
}

/* Checklist styles */
.premium-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.checklist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.checklist-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}

.checklist-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.checklist-card p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.5;
}

/* Sandbox console styles */
.console-mock {
  background: #0B0E14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.console-header-mock {
  background: #171E29;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.console-tabs {
  display: flex;
  gap: 1rem;
}

.console-tab {
  font-size: 0.75rem;
  color: #9E9589;
  font-family: var(--font-display);
  cursor: pointer;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}

.console-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.console-body-wrap {
  padding: 1.5rem;
  min-height: 250px;
}

#consoleOutput {
  font-family: 'Fira Code', Consolas, Monaco, monospace;
  font-size: 0.82rem;
  color: #E2E8F0;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
}

/* JSON Highlighting Colors */
.json-key {
  color: var(--accent2);
  font-weight: bold;
}

.json-string {
  color: #16A34A;
}

.json-number {
  color: #F59E0B;
}

.json-boolean {
  color: var(--blue2);
}

.json-null {
  color: #9E9589;
}

/* ── case-studies.html styles ── */
.case-study-showcase {
  padding: 5rem 5%;
  border-bottom: 1px solid var(--border);
}

.case-study-showcase:nth-child(even) {
  background: var(--bg2);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.showcase-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.meta-tag-pill {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid var(--border2);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.case-details-section {
  margin-bottom: 1.75rem;
}

.case-details-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-details-section h4 svg {
  color: var(--accent);
}

.case-details-section p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

.showcase-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metric-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-spotlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.metric-spotlight .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.metric-spotlight .label {
  font-size: 0.72rem;
  color: var(--text3);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.metric-spotlight .compare {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 0.25rem;
  display: block;
}

.chart-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.chart-header {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
}

.chart-bars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chart-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  width: 70px;
}

.chart-bar-outer {
  flex: 1;
  height: 14px;
  background: var(--bg2);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.chart-bar-inner {
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--blue-soft) 0%, var(--blue) 100%);
  transition: width 1s ease-in-out;
}

.chart-bar-inner.accent {
  background: linear-gradient(90deg, var(--accent-soft) 0%, var(--accent) 100%);
}

.chart-bar-val {
  font-size: 0.75rem;
  font-weight: 700;
  width: 45px;
  text-align: right;
}

/* ── facebook-ads.html & google-ads.html shared styles ── */

/* Ecosystem Flow Map */
.ecosystem-flow-container {
  max-width: 800px;
  margin: 2.5rem auto 0;
  position: relative;
}

.ecosystem-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.ecosystem-step:last-child {
  margin-bottom: 0;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.step-circle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.step-circle .step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--text);
  color: #fff;
  padding: 0.15rem 0.35rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
}

.step-connector {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(180deg, var(--border), transparent);
  margin-top: 0.5rem;
  position: relative;
  min-height: 80px;
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  flex-grow: 1;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.step-content:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.step-details-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.7rem;
  color: var(--text3);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}

.detail-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ── google-ads.html specific styles ── */
.premium-leak-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.premium-leak-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 77, 28, 0.4);
}

.premium-leak-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.premium-leak-card:hover::after {
  opacity: 1;
}

.leak-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.leak-badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leak-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-leak-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.leak-problem {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.solution-arrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.leak-solution {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

.step-search {
  background: var(--blue);
  box-shadow: 0 0 15px rgba(30, 79, 216, 0.4);
}

.step-shopping {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(232, 77, 28, 0.4);
}

.step-youtube {
  background: #EF4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}




/* ═══ INLINE STYLES CONSOLIDATION ═══ */
.u-inline-flex-center {
  display: inline-flex;
  align-items: center;
}

.u-dropdown-arrow-svg {
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.2rem;
  transition: transform 0.2s;
}

.u-menu-divider {
  width: 100%;
  border-top: 1px solid var(--border);
  margin: 0.5rem 0;
  opacity: 0.3;
}

.u-menu-section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin: 0.25rem 0;
  text-align: center;
  width: 100%;
}

.u-menu-sub-link {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.u-mt-1rem {
  margin-top: 1rem;
}

.u-menu-footer-brand {
  margin-top: 0.25rem;
  font-weight: 700;
  color: var(--text);
}

.u-h-30pct {
  height: 30%;
}

.u-h-45pct {
  height: 45%;
}

.u-h-35pct {
  height: 35%;
}

.u-h-60pct {
  height: 60%;
}

.u-h-50pct {
  height: 50%;
}

.u-h-75pct {
  height: 75%;
}

.u-h-85pct {
  height: 85%;
}

.u-h-90pct {
  height: 90%;
}

.u-h-80pct {
  height: 80%;
}

.u-h-100pct {
  height: 100%;
}

.u-style-1 {
  color: var(--green);
}

.u-style-2 {
  padding: 1rem 1.5rem;
}

.u-style-3 {
  font-size: 0.66rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.u-style-4 {
  font-size: 0.72rem;
  color: var(--text3);
}

.u-style-5 {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

.u-style-6 {
  color: var(--blue);
}

.u-style-7 {
  color: #1877F2;
}

.u-style-8 {
  color: var(--accent);
}

.u-style-9 {
  background: var(--accent-soft);
  border-color: var(--border2);
}

.u-h-42pct {
  height: 42%;
}

.u-h-38pct {
  height: 38%;
}

.u-h-55pct {
  height: 55%;
}

.u-h-65pct {
  height: 65%;
}

.u-mr-0.4rem {
  margin-right: 0.4rem;
}

.u-h-70pct {
  height: 70%;
}

.u-h-88pct {
  height: 88%;
}

.u-h-95pct {
  height: 95%;
}

.u-style-10 {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.u-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}

.u-color-accent-imp {
  color: var(--accent) !important;
}

.u-color-accent {
  color: var(--accent);
}

.u-style-11 {
  grid-template-columns: 1fr;
  text-align: center;
}

.u-style-12 {
  max-width: 800px;
  margin: 0 auto;
}

.u-style-13 {
  justify-content: center;
}

.u-style-14 {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.u-style-15 {
  padding-top: 0;
}

.u-style-16 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.u-style-17 {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
}

.u-style-18 {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.u-style-19 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.u-style-20 {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.u-style-21 {
  font-size: 1.8rem;
  color: var(--blue);
  flex-shrink: 0;
}

.u-style-22 {
  font-size: 1.8rem;
  color: var(--green);
  flex-shrink: 0;
}

.u-style-23 {
  margin-top: 0;
}

.u-style-24 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.u-menu-sub-link-active {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.25rem;
  color: var(--accent);
}

.u-style-25 {
  font-size: 0.6rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.u-style-26 {
  margin-top: 1rem;
  font-size: 0.68rem;
  color: var(--text2);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.u-style-27 {
  color: var(--green);
  font-weight: 700;
}

.u-style-28 {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.u-style-29 {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-mid), transparent);
  opacity: 0.8;
}

.u-style-30 {
  background: var(--blue-soft);
  color: var(--blue);
}

.u-style-31 {
  background: var(--accent-soft);
  color: var(--accent);
}

.u-style-32 {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 0.72rem;
  color: #fff;
  font-family: monospace;
  text-align: left;
  margin-top: 0.5rem;
}

.u-style-33 {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
}

.u-style-34 {
  width: 10%;
}

.u-style-35 {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg2);
  outline: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.u-style-36 {
  color: var(--accent2);
}

.u-style-37 {
  width: 1.2rem;
  height: 1.2rem;
}

.u-style-38 {
  display: flex;
  align-items: center;
}

.u-style-39 {
  background: #EF4444;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.u-style-40 {
  background: #F59E0B;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.u-style-41 {
  background: #10B981;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.u-style-42 {
  display: flex;
  gap: 0.75rem;
}

.u-style-43 {
  background: #0B0E14;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 280px;
  overflow-y: auto;
}

.u-style-44 {
  margin: 0;
  color: #E2E8F0;
  font-family: 'Fira Code', Consolas, Monaco, monospace;
}

.u-style-45 {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.u-style-46 {
  width: 1rem;
  height: 1rem;
}

.u-style-47 {
  text-align: center;
  padding: 2rem 0;
  color: var(--text);
}

.u-style-48 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.u-style-49 {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
}

.u-style-50 {
  padding-top: 2rem;
}

.u-style-51 {
  width: fit-content;
}

.u-style-52 {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.u-style-53 {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.u-style-54 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(30, 79, 216, 0.05) 100%);
  margin-bottom: 0;
}

.u-style-55 {
  font-weight: 800;
  color: var(--text3);
  font-size: 2.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.u-style-56 {
  font-weight: 800;
  color: var(--text3);
  font-size: 1.25rem;
}

.u-style-57 {
  margin-top: 2.5rem;
}

.u-style-58 {
  padding: 1.5rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.u-style-59 {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.u-style-60 {
  width: 30px;
  height: 30px;
  font-size: 0.75rem;
}

.u-style-61 {
  font-size: 0.8rem;
}

.u-style-62 {
  font-size: 0.65rem;
}

.u-style-63 {
  color: var(--accent);
  font-weight: 700;
}

.u-style-64 {
  width: 42%;
}

.u-style-65 {
  width: 65%;
}

.u-style-66 {
  width: 100%;
}

.u-style-67 {
  color: var(--green);
  font-weight: 700;
}

.u-style-68 {
  width: 72%;
}

.u-style-69 {
  width: 52%;
}

.u-style-70 {
  grid-template-columns: 1fr;
  text-align: center;
  padding-bottom: 2rem;
}

.u-style-71 {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.u-style-72 {
  gap: 1.5rem;
}

.u-style-73 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.u-style-74 {
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
}

.u-style-75 {
  justify-content: flex-end;
}

.u-style-76 {
  border: 1px solid var(--border);
  box-shadow: none;
  height: auto;
}

.u-style-77 {
  grid-template-columns: 1.1fr 0.9fr;
  height: auto;
}

.u-style-78 {
  border-bottom: none;
}

.u-style-79 {
  font-size: 0.75rem;
  color: var(--text3);
  text-align: center;
  padding: 2rem 0;
}

.u-style-80 {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.u-style-81 {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.u-style-82 {
  width: 38px;
  height: 38px;
}

.u-style-83 {
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.u-style-84 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25);
}

.u-style-85 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.u-style-86 {
  font-size: 0.875rem;
  color: var(--text2);
  max-width: 420px;
  line-height: 1.6;
  font-weight: 300;
}

.u-style-87 {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
}

.u-style-88 {
  width: 0.55rem;
  height: 0.55rem;
  stroke-width: 3;
  display: inline-block;
  vertical-align: middle;
}

.u-style-89 {
  text-align: center;
  color: var(--text);
  padding: 0 1rem;
}

.u-style-90 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
}

.u-style-91 {
  font-size: 0.68rem;
  color: var(--text2);
  margin-top: 4px;
  font-weight: 600;
}

.u-style-92 {
  background: var(--blue);
  box-shadow: 0 0 15px rgba(30, 79, 216, 0.4);
}

.u-style-93 {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(232, 77, 28, 0.4);
}

.u-style-94 {
  background: #F59E0B;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.u-style-95 {
  background: var(--green);
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.4);
}

.u-style-96 {
  font-size: 0.88rem;
  font-weight: 500;
}

.u-style-97 {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.u-style-98 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.u-style-99 {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.u-style-100 {
  display: block;
  padding-top: 2rem;
}

.u-style-101 {
  border: none;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.u-style-102 {
  width: 28px;
  height: 28px;
  font-size: 0.6rem;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.u-style-103 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.u-style-104 {
  font-size: 0.5rem;
  color: var(--text3);
}

.u-style-105 {
  font-size: 0.68rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--text2);
  font-weight: 300;
}

.u-style-106 {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.u-style-107 {
  height: 160px;
  background: linear-gradient(135deg, rgba(232, 77, 28, 0.1) 0%, rgba(30, 79, 216, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-style-108 {
  font-size: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
}

.u-style-109 {
  text-align: center;
  color: var(--text);
}

.u-style-110 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.u-style-111 {
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.u-style-112 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
}

.u-style-113 {
  font-size: 0.55rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.u-style-114 {
  display: none;
  background: linear-gradient(180deg, #833AB4 0%, #FD1D1D 50%, #F56040 100%);
  padding: 2rem 0.85rem;
  color: #fff;
}

.u-style-115 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.u-style-116 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.u-style-117 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.6rem;
}

.u-style-118 {
  font-size: 0.65rem;
  font-weight: 700;
}

.u-style-119 {
  font-size: 0.5rem;
  opacity: 0.8;
}

.u-style-120 {
  text-align: center;
  margin-top: 4rem;
  z-index: 2;
}

.u-style-121 {
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.u-style-122 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.u-style-123 {
  text-align: center;
  margin-bottom: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.u-style-124 {
  font-size: 0.8rem;
  animation: bounce 1.5s infinite;
}

.u-style-125 {
  background: #fff;
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.u-style-126 {
  display: none;
  padding-top: 2rem;
}

.u-style-127 {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.u-style-128 {
  width: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  overflow: hidden;
}

.u-style-129 {
  height: 100px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.u-style-130 {
  padding: 0.4rem;
}

.u-style-131 {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.u-style-132 {
  display: block;
  text-align: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.25rem 0;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 0.3rem;
}

.u-style-133 {
  height: 100px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.u-style-134 {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.u-style-135 {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.u-style-136 {
  font-size: 0.85rem;
  color: var(--text2);
  font-weight: 300;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.u-style-137 {
  max-width: 760px;
  margin: 3rem auto 0;
}

.u-style-138 {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
}

.u-style-139 {
  color: #F59E0B;
}

.u-style-140 {
  color: #16A34A;
}

.u-style-141 {
  width: 0.8rem;
  height: 0.8rem;
  color: var(--text3);
}

.u-style-142 {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.u-style-143 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.u-style-144 {
  color: var(--blue);
}

.u-style-145 {
  color: var(--stars-color);
}

.u-style-146 {
  color: var(--green);
}

.u-style-147 {
  width: 30%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.u-style-148 {
  margin-top: 1.5rem;
}

.u-style-149 {
  display: block;
}

.u-style-150 {
  max-width: 600px;
  margin: 0 auto;
}

.u-style-151 {
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}

.u-style-152 {
  margin-top: 2rem;
  text-align: center;
}

.u-style-153 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.u-style-154 {
  font-size: 0.85rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.6;
}

.u-display-none {
  display: none;
}

.u-style-155 {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
}

.u-style-156 {
  color: var(--text3);
  font-size: 0.6rem;
}

.u-style-157 {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
}

.u-style-158 {
  width: 60px;
  height: 60px;
  background: #F59E0B;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
}

.u-style-159 {
  margin-top: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.u-style-160 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(232, 77, 28, 0.15) 0%, rgba(15, 23, 42, 1) 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.u-style-161 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.0);
  cursor: pointer;
}

.u-style-162 {
  font-size: 2rem;
  color: #fff;
  padding-left: 5px;
}

.u-style-163 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.u-style-164 {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
}

.u-style-165 {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.u-style-166 {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  opacity: 0.8;
}