/* ════════════════════════════════════════
   Fox Branding — Main Stylesheet
   Design: Glassmorphism Dark
   ════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #FF6A00;
  --accent2:      #FF8C40;
  --accent-dim:   rgba(255,106,0,0.12);
  --accent-line:  rgba(255,106,0,0.25);
  --glass:        rgba(255,255,255,0.04);
  --glass-hover:  rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.08);
  --bg:           #050505;
  --bg-2:         rgba(255,255,255,0.02);
  --text:         #ffffff;
  --text-muted:   #ababab;
  --text-dim:     #333333;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
}

html { scroll-behavior: smooth; }

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

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

/* ── BACKGROUND (Design C: Radial Pulse) ── */

/* Rotating ray burst from top-center */
.rays {
  position: fixed; top: -10vh; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 110vh; z-index: 0; pointer-events: none;
  background: conic-gradient(
    from 260deg at 50% 0%,
    transparent 0deg,
    rgba(255,106,0,0.04) 2deg, transparent 4deg,
    transparent 12deg,
    rgba(255,106,0,0.03) 14deg, transparent 16deg,
    transparent 24deg,
    rgba(255,80,0,0.05) 26deg, transparent 28deg,
    transparent 36deg,
    rgba(255,106,0,0.03) 38deg, transparent 40deg,
    transparent 52deg,
    rgba(255,106,0,0.04) 54deg, transparent 56deg,
    transparent 64deg,
    rgba(255,80,0,0.03) 66deg, transparent 68deg,
    transparent 80deg
  );
  animation: rayrot 30s linear infinite;
}
@keyframes rayrot { 0% { transform: translateX(-50%) rotate(0deg); } 100% { transform: translateX(-50%) rotate(360deg); } }

/* Central glow at top */
.center-glow {
  position: fixed; top: -160px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(255,106,0,0.22) 0%, rgba(255,106,0,0.06) 35%, transparent 65%);
  filter: blur(40px);
  animation: cgpulse 6s ease-in-out infinite alternate;
}
@keyframes cgpulse { 0% { opacity: 0.8; transform: translateX(-50%) scale(1); } 100% { opacity: 1; transform: translateX(-50%) scale(1.08); } }

/* Bottom ambient glow */
.btm-glow {
  position: fixed; bottom: -80px; left: 20%;
  width: 400px; height: 400px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(255,80,0,0.1) 0%, transparent 65%);
  filter: blur(80px);
  animation: btmpulse 10s ease-in-out infinite alternate;
}
@keyframes btmpulse { 0% { transform: translate(0,0); } 100% { transform: translate(60px,-20px); } }

/* Fine dot grid */
.dot-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 75%);
}

/* Horizontal line accents */
.h-lines {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to bottom, transparent 0%, transparent calc(33.33% - 0.5px), rgba(255,255,255,0.025) calc(33.33% - 0.5px), rgba(255,255,255,0.025) calc(33.33% + 0.5px), transparent calc(33.33% + 0.5px)),
    linear-gradient(to bottom, transparent 0%, transparent calc(66.66% - 0.5px), rgba(255,255,255,0.018) calc(66.66% - 0.5px), rgba(255,255,255,0.018) calc(66.66% + 0.5px), transparent calc(66.66% + 0.5px));
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 200; width: calc(100% - 48px); max-width: 1140px;
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0 24px;
  transition: all 0.3s ease;
}
.nav-inner {
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-size: 1.25rem; font-weight: 900; letter-spacing: -0.04em;
  text-decoration: none; color: var(--text); white-space: nowrap;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.83rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; padding: 8px 14px; border-radius: 10px;
  transition: all 0.2s; white-space: nowrap; display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--text); background: var(--glass); }

/* Dropdown bridge */
.has-dropdown { position: relative; }
.has-dropdown::before {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -12px; height: 12px;
}
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 8px;
  min-width: 220px; display: none;
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; font-size: 0.83rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 10px 14px; border-radius: 8px; transition: all 0.2s;
  white-space: nowrap;
}
.dropdown a:hover { color: var(--text); background: var(--glass); }

.nav-cta {
  background: var(--accent); color: #fff;
  padding: 9px 20px; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s; white-space: nowrap;
  box-shadow: 0 0 24px rgba(255,106,0,0.3);
}
.nav-cta:hover { background: var(--accent2); box-shadow: 0 0 36px rgba(255,106,0,0.5); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(5,5,5,0.97); backdrop-filter: blur(32px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem; font-weight: 700; color: var(--text-muted);
  text-decoration: none; padding: 14px 28px; border-radius: 12px;
  transition: all 0.2s; width: 100%; text-align: center;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); background: var(--glass); }
.mobile-menu .nav-cta { font-size: 1rem; margin-top: auto; text-align: center; display: block; width: 100%; color: #fff; }

/* ── MARQUEE ── */
.marquee-wrap {
  position: relative; z-index: 2;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(8px);
  overflow: hidden; padding: 18px 0;
}
.mq-track {
  display: flex; gap: 48px;
  animation: mq 22s linear infinite; width: max-content;
}
.mq-track:hover { animation-play-state: paused; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mq-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.73rem; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap;
}
.mq-sep { color: var(--accent); opacity: 0.5; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { position: relative; z-index: 2; padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: rgba(255,255,255,0.015); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.7rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75;
  max-width: 560px;
}
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Gradient heading */
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, #FFD080 50%, var(--accent2) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradshift 4s ease infinite;
}
@keyframes gradshift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.white-grad {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── HERO ── */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px 24px 80px;
  text-align: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 100px; padding: 8px 20px;
  font-size: 0.73rem; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 36px;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.3; transform:scale(1.6); } }

.hero-h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.05em; margin-bottom: 32px;
  max-width: 900px;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.75;
  max-width: 540px; margin: 0 auto 48px;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-pills {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 100px; padding: 9px 18px;
}
.pill-icon { font-size: 0.9rem; }
.pill-text { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.pill-val { font-size: 0.78rem; font-weight: 800; color: var(--accent); }

/* Page hero (inner pages) */
.page-hero {
  position: relative; z-index: 2;
  padding: 160px 24px 80px;
  text-align: center;
}
.page-hero .section-title { max-width: 720px; margin: 16px auto 16px; }
.page-hero .section-sub { margin: 0 auto; }
.page-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 40px rgba(255,106,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,106,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-glass {
  background: var(--glass); color: rgba(255,255,255,0.75);
  border: 1px solid var(--glass-border); backdrop-filter: blur(12px);
}
.btn-glass:hover { background: var(--glass-hover); color: var(--text); border-color: rgba(255,255,255,0.15); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; border-radius: 8px; }

/* ── GLASS CARDS ── */
.g-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative; overflow: hidden;
}
.g-card::before {
  content: ''; position: absolute;
  top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.6), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.g-card:hover {
  background: var(--glass-hover);
  border-color: var(--accent-line);
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 40px rgba(255,106,0,0.08);
}
.g-card:hover::before { opacity: 1; }

.g-card-accent {
  background: linear-gradient(135deg, rgba(255,106,0,0.12) 0%, rgba(255,106,0,0.04) 100%);
  border-color: var(--accent-line);
}

.g-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,106,0,0.22); border: 1px solid rgba(255,106,0,0.4);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 20px;
  flex-shrink: 0;
}
.g-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; color: #fff; }
.g-card p { font-size: 0.83rem; color: #fff; line-height: 1.65; margin-bottom: 16px; }
a.g-card.g-card-link { display: flex; flex-direction: column; align-items: flex-start; }
.g-card .service-features { grid-template-columns: 1fr; gap: 6px; margin: 10px 0; }
.g-card .feature-item { padding: 10px 14px; border-radius: 10px; }
.g-card .feature-item p { margin: 0; }

.g-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.g-tag {
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,106,0,0.7); background: rgba(255,106,0,0.06);
  border: 1px solid rgba(255,106,0,0.12);
  border-radius: 6px; padding: 3px 10px; letter-spacing: 0.03em;
}

.g-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: #fff; margin-top: 16px;
  text-decoration: none; transition: all 0.2s;
}
a.g-card.g-card-link { color: #fff; }
.g-card:hover .g-card-link { color: var(--accent); }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px; }

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px;
  backdrop-filter: blur(16px);
  transition: all 0.3s;
}
.bento-card:hover { background: var(--glass-hover); border-color: rgba(255,106,0,0.15); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-stat {
  background: linear-gradient(135deg, rgba(255,106,0,0.1) 0%, rgba(255,106,0,0.03) 100%);
  border-color: rgba(255,106,0,0.2);
  display: flex; flex-direction: column; justify-content: center;
}
.bento-big-num {
  font-size: 4.5rem; font-weight: 900; letter-spacing: -0.06em;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.bento-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.bento-icon { font-size: 1.6rem; margin-bottom: 16px; }
.bento-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.bento-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* Bento rings visual */
.bento-visual {
  background: linear-gradient(135deg, rgba(255,106,0,0.06) 0%, transparent 100%);
  border-color: rgba(255,106,0,0.1); overflow: hidden;
}
.bento-rings { position: relative; height: 160px; }
.b-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,106,0,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: bspin 20s linear infinite;
}
.b-ring:nth-child(2) { animation-duration: 28s; animation-direction: reverse; border-style: dashed; }
.b-ring:nth-child(3) { animation-duration: 36s; }
.b-ring-1 { width: 90px; height: 90px; }
.b-ring-2 { width: 140px; height: 140px; }
.b-ring-3 { width: 190px; height: 190px; }
@keyframes bspin { 0% { transform: translate(-50%,-50%) rotate(0deg); } 100% { transform: translate(-50%,-50%) rotate(360deg); } }
.b-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.b-center-num { font-size: 1.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.b-center-lbl { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── CTA SECTION ── */
.section-cta { padding: 80px 0 100px; }

.cta-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,106,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card::after {
  content: ''; position: absolute;
  top: -1px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.5), transparent);
}
.cta-card h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: 14px; line-height: 1.05; position: relative;
}
.cta-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; position: relative; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-contact-row {
  margin-top: 28px; display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.cta-contact-row a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.cta-contact-row a:hover { color: rgba(255,255,255,0.7); }

/* ── PROCESS STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative;
}
.step-num {
  font-size: 3rem; font-weight: 900; letter-spacing: -0.06em;
  color: rgba(255,106,0,0.15); line-height: 1; margin-bottom: 12px;
}
.step-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 8px;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s; gap: 16px;
  user-select: none;
}
.faq-q:hover { background: var(--glass-hover); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  border-radius: 6px; font-size: 0.9rem; font-weight: 700; color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  font-size: 0.875rem; color: #fff; line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ── USP GRID (small) ── */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 12px; }
.usp-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.usp-icon { font-size: 1.8rem; margin-bottom: 10px; }
.usp-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.usp-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: var(--text);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--accent-line); transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border-bottom: 1px solid var(--glass-border);
  position: relative; overflow: hidden;
}
.blog-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.05) 0%, transparent 60%);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 0.65rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; gap: 12px; margin-top: 16px; font-size: 0.75rem; color: var(--text-dim); }

/* ── CONTENT ARTICLE (blog posts) ── */
.article-content {
  max-width: 760px; margin: 0 auto; font-size: 1rem;
  color: rgba(255,255,255,0.85); line-height: 1.8;
}
.article-content h2 { font-size: 1.6rem; font-weight: 800; margin: 48px 0 16px; letter-spacing: -0.03em; }
.article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 36px 0 12px; }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { margin-bottom: 8px; color: rgba(255,255,255,0.75); }
.article-content strong { color: var(--text); font-weight: 700; }
.article-highlight {
  background: var(--glass); border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0;
  font-style: italic; color: rgba(255,255,255,0.7);
}

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.4), transparent);
}
.stat-card:hover { border-color: rgba(255,106,0,0.2); transform: translateY(-3px); }
.stat-num {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -0.05em; color: var(--accent); line-height: 1;
  filter: drop-shadow(0 0 20px rgba(255,106,0,0.35));
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }

/* CTA dot-grid overlay */
.cta-dots {
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

/* Contact cards */
.contact-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px;
  text-decoration: none; color: var(--text);
  transition: all 0.25s;
}
.contact-card:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.contact-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.contact-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 4px; }
.contact-value { font-size: 1.05rem; font-weight: 700; color: var(--accent); }
.contact-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.65); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3rem; }
.review-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review-stars { color: #FF6A00; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: #fff; line-height: 1.65; flex: 1; }
.review-author { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); border-top: 1px solid var(--glass-border); padding-top: 12px; }
.review-source { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 60px 24px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.f-logo { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 12px; }
.f-logo span { color: var(--accent); }
.f-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.f-socials { display: flex; gap: 8px; }
.f-soc {
  width: 34px; height: 34px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-decoration: none;
  transition: all 0.2s;
}
.f-soc:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.f-col h4 {
  font-size: 0.65rem; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px;
}
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col li { font-size: 0.82rem; color: var(--text-muted); }
.f-col a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }
.footer-bottom a { font-size: 0.75rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-muted); }

/* ── FADE UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ── SERVICE DETAIL PAGE ── */
.service-intro { max-width: 860px; margin: 0 auto; }
.service-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
.feature-item {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.feature-check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.85rem; font-weight: 700; margin-top: 2px;
}
.feature-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Pricing table */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.price-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(255,106,0,0.1) 0%, rgba(255,106,0,0.04) 100%);
  border-color: var(--accent-line);
}
.price-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.price-name { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.price-amount { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px; }
.price-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-list li { font-size: 0.83rem; color: rgba(255,255,255,0.75); display: flex; gap: 10px; align-items: flex-start; }
.price-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Local landing page hero */
.local-hero { background: linear-gradient(135deg, rgba(255,106,0,0.06) 0%, transparent 60%); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
  .hero-h1 { font-size: 3.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner .nav-cta { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .navbar { width: calc(100% - 24px); top: 12px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .page-hero-btns { flex-direction: column; align-items: center; }
}
