/* ============================================================
   ADSMITIC — Premium Dark Theme Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg: #080810;
  --bg-2: #0d0d1a;
  --bg-3: #121224;
  --surface: #13131f;
  --surface-2: #1a1a2e;
  --border: rgba(255, 255, 255, 0.07);
  --border-bright: rgba(255, 255, 255, 0.14);
  --text: #f0f0ff;
  --text-muted: #8888aa;
  --text-dim: #555570;
  --accent: #7c5cfc;
  --accent-2: #a78bfa;
  --accent-glow: rgba(124, 92, 252, 0.35);
  --accent-cyan: #22d3ee;
  --accent-pink: #f472b6;
  --gold: #f59e0b;
  --green: #10b981;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(124, 92, 252, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-gap: 128px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-cyan) 60%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(124, 92, 252, 0.12);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5b3fe0);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 92, 252, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124, 92, 252, 0.55), 0 0 20px rgba(124, 92, 252, 0.3);
  background: linear-gradient(135deg, #8b6dfd, var(--accent));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-bright);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: 12px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(8, 8, 16, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 92, 252, 0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(124, 92, 252, 0.15);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-icon {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 8px;
  padding: 9px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #5b3fe0);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(124, 92, 252, 0.35);
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(139, 109, 253, 0.6), rgba(91, 63, 224, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #8b6dfd, var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(124, 92, 252, 0.5), 0 0 16px rgba(124, 92, 252, 0.25);
}

.nav-cta:hover::after {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 92, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 252, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.18) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  bottom: -100px;
  right: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 0.9rem;
}

/* ---- Hero Visual ---- */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.visual-backdrop {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(124, 92, 252, 0.12) 0%, transparent 70%);
  border-radius: 30px;
}

.ad-board {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 480px;
}

.ad-card {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--border-bright);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ad-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(124, 92, 252, 0.2);
}

.ad-card-1 {
  width: 200px;
  height: 240px;
  top: 0;
  left: 0;
  animation: float-1 6s ease-in-out infinite;
}

.ad-card-2 {
  width: 170px;
  height: 200px;
  top: 20px;
  right: 10px;
  animation: float-2 7s ease-in-out infinite;
}

.ad-card-3 {
  width: 210px;
  height: 130px;
  bottom: 40px;
  left: 20px;
  animation: float-3 5.5s ease-in-out infinite;
}

.ad-card-4 {
  width: 175px;
  height: 160px;
  bottom: 0;
  right: 30px;
  animation: float-4 6.5s ease-in-out infinite;
}

@keyframes float-1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes float-2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes float-3 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes float-4 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.ad-card-inner {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ad-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ad-visual-area {
  border-radius: 8px;
  flex: 1;
  min-height: 0;
}

.luxury {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}

.luxury::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.6), rgba(245, 158, 11, 0.1));
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.ecom {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  position: relative;
  overflow: hidden;
}

.ecom::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 35px;
  height: 45px;
  border-radius: 6px;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}

.cinematic {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #101010 100%);
  position: relative;
  overflow: hidden;
}

.cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(244, 114, 182, 0.2) 0%, rgba(124, 92, 252, 0.2) 100%);
}

.direct {
  background: linear-gradient(135deg, #0c1a0c 0%, #1a2e1a 100%);
  position: relative;
  overflow: hidden;
}

.direct::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.ad-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ad-copy.tight {
  gap: 3px;
}

.ad-headline-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.ad-tagline-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  width: 85%;
}

.ad-tagline-line.short {
  width: 60%;
}

.ad-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: #fff;
  width: fit-content;
}

.ecom-cta {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.cinematic-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.direct-cta {
  background: var(--green);
  color: #000;
}

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(124, 92, 252, 0.08);
}

.glow-2 {
  box-shadow: inset 0 0 30px rgba(34, 211, 238, 0.08);
}

.glow-3 {
  box-shadow: inset 0 0 30px rgba(244, 114, 182, 0.08);
}

.glow-4 {
  box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.08);
}

.board-metrics {
  position: absolute;
  bottom: 100px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-chip {
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
  animation: float-2 5s ease-in-out infinite;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-2);
}

.metric-lbl {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent-2), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: var(--bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.problem-card::before {
  content: attr(data-index);
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.problem-card:hover {
  border-color: rgba(124, 92, 252, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 92, 252, 0.1);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section {
  background: var(--bg-2);
  overflow: hidden;
}

.solution-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
}

.solution-point:hover {
  border-color: rgba(124, 92, 252, 0.3);
  background: var(--surface-2);
}

.sp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sp-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--border-bright);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateX(6px);
}

.stat-primary {
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.15) 0%, rgba(124, 92, 252, 0.05) 100%);
  border-color: rgba(124, 92, 252, 0.3);
}

.stat-secondary {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(34, 211, 238, 0.03) 100%);
  border-color: rgba(34, 211, 238, 0.2);
}

.stat-third {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
}

.stat-number span {
  font-size: 1.8rem;
  color: var(--accent-2);
}

.stat-primary .stat-number span {
  color: var(--accent-2);
}

.stat-secondary .stat-number span {
  color: var(--accent-cyan);
}

.stat-third .stat-number span {
  color: var(--green);
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 6px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 252, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card.featured {
  grid-column: span 2;
}

.service-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.img-ad-visual {
  background: linear-gradient(135deg, #0d0820 0%, #1a1040 100%);
}

.service-mockup-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 16px;
}

.smg-item {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.smg-1 {
  background: linear-gradient(135deg, #2d1b4e, #1a0a2e);
}

.smg-2 {
  background: linear-gradient(135deg, #1a2e3d, #0d1f2d);
}

.smg-3 {
  background: linear-gradient(135deg, #1a0a10, #2e0a2e);
}

.vid-visual {
  background: linear-gradient(135deg, #0a0a20 0%, #1a1535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vid-play-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 252, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.vid-play-ring::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 252, 0.2);
  animation: ring-pulse 3s ease-in-out 0.5s infinite;
}

.vid-play-btn {
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-left: 3px;
}

.vid-timeline {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.vid-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  background: var(--accent);
  border-radius: 2px;
}

@keyframes ring-pulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.ugc-visual {
  background: linear-gradient(135deg, #0a120a 0%, #151f15 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.ugc-face {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #7c5cfc);
  flex-shrink: 0;
}

.ugc-speech-bubble {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bubble-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.bubble-line.short {
  width: 60%;
}

.bundle-visual {
  background: linear-gradient(135deg, #0a0a1a, #151525);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-stack {
  position: relative;
  width: 80px;
  height: 80px;
}

.bs-item {
  position: absolute;
  width: 64px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bs-1 {
  background: var(--surface-2);
  transform: rotate(-8deg) translate(-18px, 4px);
}

.bs-2 {
  background: var(--surface);
  transform: rotate(-3deg) translate(-6px, 2px);
}

.bs-3 {
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.2), var(--surface));
  transform: rotate(0deg) translate(6px, 0px);
  border-color: rgba(124, 92, 252, 0.3);
}

.wl-visual {
  background: linear-gradient(135deg, #0a0a18, #12121e);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.wl-badge {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  color: var(--text-muted);
}

.wl-brand {
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.2), rgba(124, 92, 252, 0.05));
  border-color: rgba(124, 92, 252, 0.4);
  color: var(--accent-2);
}

.wl-arrows {
  font-size: 1.2rem;
  color: var(--text-dim);
}

.service-card>.service-icon,
.service-card>h3,
.service-card>p,
.service-card>.service-tags {
  padding-left: 24px;
  padding-right: 24px;
}

.service-icon {
  font-size: 1.6rem;
  padding-top: 24px;
  margin-bottom: 8px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 24px;
}

.service-tags span {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
  background: var(--bg-2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.portfolio-item:hover .port-overlay {
  opacity: 1;
}

.port-1 {
  grid-column: span 2;
}

.port-5 {
  grid-column: span 2;
}

.port-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 16, 0.95) 0%, rgba(8, 8, 16, 0.4) 60%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}

.port-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.port-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.port-tags {
  display: flex;
  gap: 6px;
}

.port-tags span {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.lux-port {
  background: linear-gradient(135deg, #0d0520 0%, #1e0a40 50%, #0d0520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, rgba(245, 158, 11, 0.05) 70%);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.3);
  top: 20%;
  left: 20%;
}

.lux-product {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.lux-text-lines {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  z-index: 1;
}

.ltl {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.ltl-1 {
  width: 100%;
}

.ltl-2 {
  width: 70%;
}

.ecom-port {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecom-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 20px;
  width: 100%;
}

.eig-item {
  aspect-ratio: 3/4;
  border-radius: 8px;
}

.eig-1 {
  background: linear-gradient(180deg, #38bdf8 0%, #0369a1 100%);
}

.eig-2 {
  background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.eig-3 {
  background: linear-gradient(180deg, #f472b6 0%, #db2777 100%);
}

.ecom-price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 1;
}

.dr-port {
  background: linear-gradient(135deg, #080808 0%, #141414 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.dr-headline-block {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drh-line {
  height: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.drh-1 {
  width: 100%;
}

.drh-2 {
  width: 75%;
}

.dr-cta-block {
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.ugc-port {
  background: linear-gradient(135deg, #05100a 0%, #0a1e10 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ugc-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, var(--accent-pink));
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.ugc-star-row {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.fashion-port {
  background: #080808;
  position: relative;
  overflow: hidden;
}

.fashion-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.25) 0%, rgba(124, 92, 252, 0.25) 50%, rgba(34, 211, 238, 0.15) 100%);
}

.fashion-tagline-lines {
  position: absolute;
  bottom: 70px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftl {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.ftl-1 {
  width: 180px;
}

.ftl-2 {
  width: 120px;
}

.app-port {
  background: linear-gradient(135deg, #0a0818 0%, #141028 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-phone-frame {
  width: 70px;
  height: 110px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #000;
  overflow: hidden;
  padding: 8px;
}

.app-screen {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent) 0%, #3b0fc0 100%);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--bg);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-connector {
  position: absolute;
  top: 52px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(124, 92, 252, 0.2));
}

.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  height: 100%;
}

.step-item:hover .step-content {
  border-color: rgba(124, 92, 252, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY ADSMITIC
   ============================================================ */
.why-section {
  background: var(--bg-2);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(124, 92, 252, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-grid .why-card:nth-child(4),
.why-grid .why-card:nth-child(5) {
  grid-column: span 1;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 252, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon-wrap {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.why-pill {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
}

/* ============================================================
   OFFER SECTION
   ============================================================ */
.offer-section {
  background: var(--bg);
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.offer-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(40px);
  pointer-events: none;
}

.offer-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  filter: blur(40px);
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  margin-bottom: 20px;
}

.offer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.offer-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.offer-includes {
  text-align: left;
  margin-bottom: 36px;
}

.offer-include-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.offer-btn {
  margin-bottom: 16px;
}

.offer-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-2);
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
  background: var(--surface);
}

.faq-item.open {
  border-color: rgba(124, 92, 252, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--accent-2);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  margin-bottom: 24px;
}

.cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.cta-divider {
  opacity: 0.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============================================================
   ANIMATIONS (Scroll Reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    display: none;
  }

  .solution-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .port-1,
  .port-5 {
    grid-column: span 2;
  }

  .steps-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .step-connector {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid .why-card:nth-child(4),
  .why-grid .why-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .port-1,
  .port-5 {
    grid-column: span 1;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 40px 24px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .solution-layout {
    grid-template-columns: 1fr;
  }

  .stat-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-points {
    flex-direction: column;
    gap: 12px;
  }

  .cta-meta {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.9rem;
  }

  .section-headline {
    font-size: 1.7rem;
  }

  .offer-card {
    padding: 32px 20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero-short {
  padding-bottom: 48px;
}

.page-hero-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.14) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}

.page-hero-content {
  max-width: 720px;
}

.page-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 32px;
}

.active-page {
  color: var(--accent-2) !important;
}

/* ============================================================
   FOOTER FAQ
   ============================================================ */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-top: 56px;
  margin-bottom: 0;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-faq {
  border-top: 1px solid var(--border);
  padding: 56px 0;
  background: var(--bg-2);
}

.footer-faq-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.footer-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
}

.footer-faq-item {
  border-bottom: 1px solid var(--border);
}

.footer-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}

.footer-faq-q:hover {
  color: var(--accent-2);
}

.footer-faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.footer-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.footer-faq-a p {
  padding-bottom: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.footer-faq-item.open .footer-faq-a {
  max-height: 200px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: rgba(124, 92, 252, 0.4);
  color: var(--accent-2);
  background: rgba(124, 92, 252, 0.08);
}

/* ============================================================
   BOOK A CALL PAGE
   ============================================================ */
.book-section {
  padding-top: 0;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}

.book-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.book-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.book-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.book-step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.book-step-body strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.book-step-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.book-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.book-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.book-form-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  overflow: hidden;
}

.book-form-header {
  padding: 32px 32px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.book-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.book-form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.book-form {
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-block {
  width: 100%;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin: 0;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  overflow: hidden;
}

.blog-featured-visual {
  height: 320px;
  width: 100%;
  overflow: hidden;
}

.blog-visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.feat-visual-1 {
  background: linear-gradient(135deg, #0d0520 0%, #1e0a40 40%, #0a1020 100%);
}

.feat-visual-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.2), rgba(34, 211, 238, 0.1));
}

.blog-vis-tag {
  position: relative;
  z-index: 1;
  padding: 6px 14px;
  background: rgba(124, 92, 252, 0.3);
  border: 1px solid rgba(124, 92, 252, 0.4);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.blog-featured-text {
  padding: 40px 40px 40px 0;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-category-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
  border-radius: 4px;
  padding: 3px 8px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-dim);
}

.blog-featured-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.blog-featured-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.blog-filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: rgba(124, 92, 252, 0.12);
  border-color: rgba(124, 92, 252, 0.35);
  color: var(--accent-2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 252, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-card-visual {
  height: 160px;
  width: 100%;
  flex-shrink: 0;
}

.blog-vis-2 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.blog-vis-3 {
  background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
}

.blog-vis-4 {
  background: linear-gradient(135deg, #0c1a0c, #1a2e1a);
}

.blog-vis-5 {
  background: linear-gradient(135deg, #0a0818, #141028);
}

.blog-vis-6 {
  background: linear-gradient(135deg, #1a0a10, #2e0a2e);
}

.blog-vis-7 {
  background: linear-gradient(135deg, #0a0a1a, #151535);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 10px;
}

.blog-card-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-2);
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: var(--accent);
}

.blog-load-more {
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.newsletter-input {
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--border-bright);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  width: 320px;
  max-width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
}

.newsletter-input::placeholder {
  color: var(--text-dim);
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */
.partner-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.partner-who-card:hover {
  border-color: rgba(124, 92, 252, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pwc-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.partner-who-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.partner-who-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-faq-grid {
    grid-template-columns: 1fr;
  }

  .book-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-visual {
    height: 200px;
  }

  .blog-featured-text {
    padding: 32px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .book-form {
    padding: 0 20px 24px;
  }

  .book-form-header {
    padding: 24px 20px 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .partner-who-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    width: 100%;
  }

  .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ============================================================
   BOOKING TABS & CALENDAR EMBED (book-a-call.html)
   ============================================================ */

/* Tabs */
.book-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 0;
}

.book-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.22s;
}

.book-tab.active {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.book-tab:hover:not(.active) {
  color: var(--text);
}

.book-tab-panel {
  display: none;
  padding: 24px 0 0;
}

.book-tab-panel.active {
  display: block;
}

/* Calendar Placeholder */
.calendar-embed-wrap {
  margin-top: 8px;
}

.calendar-placeholder {
  background: var(--bg-2);
  border: 1px dashed var(--border-bright);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}

.cal-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.cal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 20px;
}

.cal-input-row {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 12px;
}

.cal-url-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.cal-url-input:focus {
  border-color: var(--accent);
}

.cal-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}

/* Form Config Notice (partner.html) */
.form-config-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
}

.fcn-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-config-notice p {
  margin: 0;
}

.fcn-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1;
}

.fcn-close:hover {
  color: var(--text);
}

/* Blog Post Images */
.bp-hero-img {
  width: 100%;
  max-width: 820px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  display: block;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 600px) {
  .cal-input-row {
    flex-direction: column;
  }

  .book-tabs {
    flex-direction: column;
  }

  .book-tab {
    text-align: left;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   ENHANCED CARD HOVER EFFECTS
   ============================================================ */
.problem-card,
.why-card,
.solution-point,
.stat-card {
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.4s;
}

.why-card:hover {
  border-color: rgba(124, 92, 252, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(124, 92, 252, 0.12);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(124, 92, 252, 0.1);
}

.solution-point:hover {
  border-color: rgba(124, 92, 252, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 16px rgba(124, 92, 252, 0.08);
}

/* ============================================================
   HERO BADGE SHIMMER
   ============================================================ */
.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(124, 92, 252, 0.2),
      transparent);
  animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* ============================================================
   SECTION DIVIDER GLOW
   ============================================================ */
.section+.section::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 92, 252, 0.3), transparent);
  margin: 0 auto 0;
  position: relative;
  top: -1px;
}

/* ============================================================
   ENHANCED OFFER CARD
   ============================================================ */
.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg,
      rgba(124, 92, 252, 0.3),
      rgba(34, 211, 238, 0.2),
      rgba(244, 114, 182, 0.2),
      rgba(124, 92, 252, 0.3));
  background-size: 300% 300%;
  animation: offer-glow 6s ease infinite;
  border-radius: inherit;
  z-index: -1;
}

@keyframes offer-glow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ============================================================
   STEP ITEM CONNECTOR ANIMATION
   ============================================================ */
.step-connector {
  position: relative;
  overflow: hidden;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: connector-pulse 2s ease-in-out infinite;
}

@keyframes connector-pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* ============================================================
   LOGO HOVER
   ============================================================ */
.logo {
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* ============================================================
   TRUST POINTS MICRO-ANIMATION
   ============================================================ */
.trust-item {
  transition: color 0.2s ease, transform 0.2s ease;
}

.trust-item:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.trust-icon {
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.2);
}

/* ============================================================
   FOOTER SOCIAL LINK HOVER
   ============================================================ */
.social-link {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.1);
  background: rgba(124, 92, 252, 0.2);
  color: var(--accent-2);
}