/* ============================================================
   Growbizz Media — Main Stylesheet
   Dark glassmorphic agency design · Pixel-matched to showcase
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Lovable showcase palette (oklch) */
  --bg: oklch(14% 0.04 275);
  --bg-fallback: #0a0c18;
  --gradient-hero:
    radial-gradient(ellipse at top, oklch(32% 0.15 274 / 0.6), transparent 60%),
    radial-gradient(
      ellipse at bottom right,
      oklch(40% 0.18 290 / 0.4),
      transparent 55%
    ),
    oklch(14% 0.04 275);
  --bg-elevated: oklch(19% 0.05 275);
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);

  --accent: #7c83fd;
  --accent-soft: #8b93ff;
  --accent-deep: #6366f1;
  --accent-glow: rgba(124, 131, 253, 0.35);
  --gradient-btn: linear-gradient(135deg, #6b73f5 0%, #8b5cf6 100%);
  --gradient-text: linear-gradient(180deg, #ffffff 0%, #a5b4fc 100%);

  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-label: #a5b4fc;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --header-h: 72px;
  --container: 1300px;
  --pad-x: clamp(1.25rem, 4vw, 2rem);
  /* Belle Sans Ex Wide Med — project brand font (Syne fallback until local files load) */
  --font:
    "Belle Sans Ex Wide Med", "BelleSansExWideMed", "Syne", ui-sans-serif,
    system-ui, sans-serif;

  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-feature-settings:
    "liga" 1,
    "kern" 1;
  background: var(--gradient-hero);
  background-color: var(--bg-fallback);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Ambient page glow (Lovable uses body gradient only) ---------- */
body::before {
  content: none;
}

.site-main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.container-wide {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 1rem;
}

.gradient-word {
  background: linear-gradient(90deg, #ffffff 0%, #a5b4fc 55%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-word {
  color: var(--accent-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 131, 253, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn .arrow {
  font-size: 1.1em;
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 85px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.logo-footer .logo-img {
  height: 110px;
  max-width: 160px;
}

/* ============================================================
   FIXED HEADER — glassmorphic pill (Lovable-matched)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem var(--pad-x) 0;
  transition: padding 0.3s var(--ease);
}

.site-header.scrolled {
  padding-top: 0.65rem;
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.3rem 1.1rem 0.3rem 1.25rem;
  background: rgba(10, 12, 24, 0.72);
  background: color-mix(in oklab, var(--bg-elevated) 60%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(99, 102, 241, 0.08);
}

/* Desktop nav links */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.header-cta {
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7c83fd 0%, #6b73f5 100%);
  box-shadow: 0 4px 18px rgba(124, 131, 253, 0.35);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition:
    transform 0.28s var(--ease),
    opacity 0.2s;
}

.nav-toggle-bar:nth-child(1) {
  top: 14px;
}
.nav-toggle-bar:nth-child(2) {
  top: 20px;
}
.nav-toggle-bar:nth-child(3) {
  top: 26px;
}

/* Hamburger → X when open */
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Mobile menu — hidden on desktop */
.nav-backdrop,
.mobile-menu {
  display: none;
}

/* Offset for fixed header */
.site-main {
  padding-top: calc(var(--header-h) + 1.5rem);
}

/* ============================================================
   HOME — HERO (glow image + dark overlay, matching design)
   ============================================================ */
.hero {
  position: relative;
  /* Tall hero so CTAs sit lower (Lovable: buttons below first fold) */
  min-height: 100vh;
  padding: 5.5rem 0 5rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: var(--bg-fallback);
  background-image: url("../images/hero-glow.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

/* Dark overlay — keeps text readable over the glow (same as design) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(10, 12, 24, 0.92) 0%,
      rgba(10, 12, 24, 0.72) 42%,
      rgba(10, 12, 24, 0.45) 70%,
      rgba(10, 12, 24, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 12, 24, 0.55) 0%,
      rgba(10, 12, 24, 0.25) 40%,
      rgba(10, 12, 24, 0.75) 100%
    ),
    radial-gradient(
      ellipse 70% 60% at 70% 45%,
      oklch(32% 0.15 274 / 0.12),
      transparent 65%
    );
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.hero-content {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Text block sits upper; buttons pushed down */
  padding-top: clamp(1.5rem, 6vh, 4.5rem);
  padding-bottom: 1rem;
  min-height: calc(100vh - var(--header-h) - 5rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-label);
  margin-bottom: 1.75rem;
  align-self: flex-start;
}

.hero-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.35rem;
}

.hero-desc {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

/* CTAs sit lower in the hero — like Lovable */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: clamp(2.5rem, 8vh, 5.5rem);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 1rem 0 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.stat-value {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   SECTION: Services preview (Home)
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-head.centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-btn);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.service-num {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--accent-soft);
  transition: gap 0.25s var(--ease);
}

.learn-more:hover {
  gap: 0.65rem;
}

/* ============================================================
   WHY GROWBIZZ
   ============================================================ */
.why {
  padding: 5rem 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.why-title {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.why-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(124, 131, 253, 0.12);
  border: 1px solid rgba(124, 131, 253, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.process-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.process-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.process-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.process-num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  min-width: 2rem;
}

.process-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.process-body p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 2rem 0 5rem;
}

.cta-box {
  background: linear-gradient(
    135deg,
    rgba(20, 22, 50, 0.9) 0%,
    rgba(40, 35, 80, 0.55) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(99, 102, 241, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

.cta-simple {
  padding: 5rem 0;
  text-align: center;
}

.cta-simple h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.cta-simple p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: oklch(14% 0.04 275 / 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  /* margin: 1.25rem 0 1.5rem; */
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.social-link:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(124, 131, 253, 0.1);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 1.15rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.service-detail {
  padding: 1.5rem 0;
}

.service-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-panel.reverse .service-panel-info {
  order: 2;
}

.service-panel.reverse .service-features {
  order: 1;
}

.service-panel-info .icon-box {
  margin-bottom: 1.25rem;
}

.service-panel-info .eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
}

.service-panel-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.service-panel-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 1.35rem;
}

.about-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0 4rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.promise {
  padding: 2rem 0 5rem;
}

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promise-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promise-stack {
  font-size: clamp(2.5rem, 7vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: center;
}

.promise-stack .line-grow {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promise-stack .line-bizz {
  color: #fff;
}

.promise-stack .line-media {
  color: rgba(255, 255, 255, 0.45);
}

.promise-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
}

.promise-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 6.5rem 0 5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-detail-value a:hover {
  color: var(--accent-soft);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}

.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: rgba(124, 131, 253, 0.5);
  box-shadow: 0 0 0 3px rgba(124, 131, 253, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select option {
  background: #0a0b1e;
  color: #fff;
}

.form-alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.925rem;
}

.form-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeUp 0.7s var(--ease) both;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-layout,
  .promise-layout,
  .contact-layout,
  .service-panel,
  .service-panel.reverse {
    grid-template-columns: 1fr;
  }
  .service-panel.reverse .service-panel-info,
  .service-panel.reverse .service-features {
    order: unset;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile — fixed header + menu box below (Lovable) */
@media (max-width: 900px) {
  .nav-desktop {
    display: none !important;
  }
  .header-cta {
    display: none !important;
  }
  .nav-toggle {
    display: flex;
  }

  .site-header {
    /* Keep header fixed on mobile */
    position: fixed;
  }

  .header-inner {
    border-radius: 9999px;
    padding: 0.65rem 0.85rem 0.65rem 1.05rem;
    /* Match Lovable mobile bar */
    background: rgba(10, 12, 24, 0.82);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.07) inset,
      0 8px 28px rgba(0, 0, 0, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.25);
  }

  /* Soft backdrop behind open menu */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 12, 24, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s var(--ease),
      visibility 0.28s;
  }

  .nav-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /*
     * Menu box — appears under the fixed header pill
     * (same width as header-inner, small gap)
     */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    z-index: 1001;
    width: calc(100% - (2 * var(--pad-x)));
    max-width: var(--container);
    height: auto;
    padding: 1.15rem 1.25rem 1.35rem;
    background: rgba(10, 12, 24, 0.92);
    backdrop-filter: blur(24px) saturate(1.15);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 16px 48px rgba(0, 0, 0, 0.5),
      0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition:
      opacity 0.28s var(--ease),
      transform 0.28s var(--ease),
      visibility 0.28s;
  }

  .mobile-menu[hidden]:not(.open) {
    display: none !important;
  }

  .mobile-menu.open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1.25rem;
    padding-top: 0.15rem;
  }

  .mobile-menu-links .nav-link {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 0.15rem;
    line-height: 1.35;
  }

  .mobile-menu-links .nav-link.active {
    color: #fff;
    font-weight: 600;
  }

  .mobile-menu-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.975rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7c83fd 0%, #6b73f5 100%);
    box-shadow: 0 6px 22px rgba(124, 131, 253, 0.35);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
    background-position: 70% center;
  }

  .hero-content {
    min-height: 0;
    padding-top: 1rem;
  }

  .hero-actions {
    margin-top: 2.5rem;
    padding-top: 0;
  }

  .hero-title {
    font-size: clamp(2.15rem, 9vw, 5rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .cta-box {
    padding: 3rem 1.35rem;
  }
  .service-panel {
    padding: 1.5rem;
  }
  .contact-form-wrap {
    padding: 1.35rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .why {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 1rem;
  }

  .stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .mobile-menu {
    width: calc(100% - 1.3rem);
    padding: 1rem 1.1rem 1.2rem;
    border-radius: 20px;
  }

  .site-header {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
}
