/* ============================================================
   NovaWeave — Dark Luxury Premium Stylesheet
   ============================================================ */

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

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  /* Dark Luxury Palette */
  --color-bg: #09090b;
  --color-bg-2: #0f0f14;
  --color-bg-3: #141420;
  --color-card: #16161e;
  --color-card-hover: #1c1c28;

  --color-text: #f0f0f5;
  --color-text-secondary: #a8a8b8;
  --color-muted: #6b6b80;

  --color-accent: #c9a84c;
  --color-accent-hover: #dab85c;
  --color-accent-glow: rgba(201, 168, 76, 0.2);

  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);
  --color-success: #34d399;
  --color-error: #f87171;
  --color-white: #ffffff;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 10rem;
  --container-width: 1200px;
  --nav-height: 8rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.1);
  --shadow-glow-strong: 0 0 60px rgba(201, 168, 76, 0.2);

  /* Border Radius */
  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;
  --radius-xl: 1.6rem;
  --radius-full: 10rem;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

::selection {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

/* ============================================================
   3. Animated Background
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(100, 80, 200, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201, 168, 76, 0.02) 0%, transparent 70%);
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 90%, rgba(100, 80, 200, 0.04) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201, 168, 76, 0.02) 0%, transparent 70%);
  }
  33% {
    background:
      radial-gradient(ellipse 70% 70% at 70% 20%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(100, 80, 200, 0.05) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 60% 40%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  }
  66% {
    background:
      radial-gradient(ellipse 60% 80% at 40% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
      radial-gradient(ellipse 70% 50% at 70% 30%, rgba(100, 80, 200, 0.06) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 30% 60%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  }
  100% {
    background:
      radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
      radial-gradient(ellipse 50% 70% at 10% 40%, rgba(100, 80, 200, 0.05) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 50% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  }
}

/* Floating particles */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(201, 168, 76, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(201, 168, 76, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 70%, rgba(201, 168, 76, 0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 80%, rgba(201, 168, 76, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 90%, rgba(201, 168, 76, 0.15) 0%, transparent 100%);
  animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

/* Ensure all content sits above the animated bg */
nav, main, header, footer, section, .landing-header, .landing-footer {
  position: relative;
  z-index: 1;
}

/* ============================================================
   4. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 700;
}

h1 {
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: 1.6rem;
  color: var(--color-text-secondary);
}

p:last-child { margin-bottom: 0; }

.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-muted); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-small { font-size: 1.4rem; }

/* ============================================================
   5. Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2.4rem;
}

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

.section-alt {
  background-color: var(--color-bg-2);
}

.section-header {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 6rem;
}

.section-tag,
.section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.6rem;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.06);
}

.section-subtitle,
.section-subheading {
  font-size: 1.9rem;
  color: var(--color-text-secondary);
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

.section-title,
.section-heading {
  margin-bottom: 2rem;
}

/* ============================================================
   6. Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background-color: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-container,
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}

.nav-links a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1.2rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(0.7rem) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-0.7rem) rotate(-45deg); }

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 6rem) 2.4rem 8rem;
  overflow: hidden;
}

/* Moving gradient orbs behind hero */
.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  animation: orbFloat1 15s ease-in-out infinite;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 80, 200, 0.06) 0%, transparent 60%);
  animation: orbFloat2 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.hero-bg-shape {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 84rem;
}

.hero h1 {
  margin-bottom: 2.4rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle,
.hero-description,
.hero p:not(.social-proof-label) {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 60rem;
  margin: 0 auto 4rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* Short hero for inner pages */
.hero-short,
.hero.hero-short,
.page-hero {
  min-height: auto;
  padding: calc(var(--nav-height) + 6rem) 2.4rem 6rem;
}

/* ============================================================
   8. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.4rem 2.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--color-bg);
  border-color: var(--color-accent);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-hover);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.8rem 3.6rem;
  font-size: 1.6rem;
}

.btn-small {
  padding: 1rem 2rem;
  font-size: 1.3rem;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-bg);
  border-color: var(--color-white);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   9. Grid Utilities
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3.2rem; }

/* ============================================================
   10. Cards — Service / Feature / Value / Pain
   ============================================================ */
.service-card,
.feature-card,
.value-card,
.card,
.pain-card,
.stat-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3.6rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.feature-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover,
.feature-card:hover,
.value-card:hover,
.card:hover,
.pain-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before,
.feature-card:hover::before,
.value-card:hover::before {
  opacity: 1;
}

.service-icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
  color: var(--color-accent);
  margin-bottom: 2.4rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.service-card h3,
.feature-card h3,
.value-card h3,
.card h3,
.pain-card h3 {
  margin-bottom: 1.2rem;
  color: var(--color-text);
}

.service-card p,
.feature-card p,
.value-card p,
.card p,
.pain-card p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.service-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 2rem;
  transition: gap var(--transition-base), color var(--transition-fast);
}

.service-link:hover,
.card-link:hover {
  gap: 1rem;
  color: var(--color-accent-hover);
}

.pain-icon {
  font-size: 3rem;
  margin-bottom: 1.6rem;
  display: block;
}

/* ============================================================
   11. Social Proof
   ============================================================ */
.social-proof {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.social-proof-inner { text-align: center; }

.social-proof-label {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: 3.2rem;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
  flex-wrap: wrap;
}

.client-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-muted);
  opacity: 0.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.client-logo:hover {
  opacity: 0.7;
  color: var(--color-accent);
}

.client-logo-img {
  height: 3.6rem;
  width: auto;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.5;
  transition: all var(--transition-base);
}

.client-logo-img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 0.9;
}

/* Hero image */
.hero-image {
  margin-top: 5rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Service page images */
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.service-img:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

/* ============================================================
   12. Problem / Solution
   ============================================================ */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.check-list,
.solution-list,
.problem-list,
.benefit-list,
.benefits-list,
.diff-list {
  list-style: none;
  padding: 0;
}

.check-list li,
.solution-list li,
.problem-list li,
.benefit-list li,
.benefits-list li,
.diff-list li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
}

.check-list li::before,
.solution-list li::before,
.benefit-list li::before,
.benefits-list li::before,
.diff-list li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  content: '✓';
  color: var(--color-success);
}

.problem-list li::before {
  content: '✕';
  color: var(--color-error);
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.6rem;
  font-weight: 700;
}

/* ============================================================
   13. Stats
   ============================================================ */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 8rem;
  flex-wrap: wrap;
}

.stat-block,
.stat {
  text-align: center;
}

.stat-number,
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label,
.stat-desc {
  display: block;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.stats-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

/* ============================================================
   14. Process / Steps
   ============================================================ */
.process-grid,
.process {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 3.2rem;
  position: relative;
  padding-bottom: 4.8rem;
}

.process-step:last-child { padding-bottom: 0; }

.step-number,
.process-step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* Connecting line */
.process-step:not(:last-child) .step-number::after,
.process-step:not(:last-child) .process-step-number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 4.8rem);
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  z-index: -1;
}

.process-step-content,
.process-step > div:last-child {
  flex: 1;
  padding-top: 1rem;
}

.process-step h3 { margin-bottom: 0.8rem; }
.process-step p { font-size: 1.5rem; }

/* ============================================================
   15. Testimonials
   ============================================================ */
.testimonial-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3.6rem;
  position: relative;
}

.testimonial-block::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-accent);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-block blockquote,
.testimonial-large {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.testimonial-block cite {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-accent);
}

/* Landing testimonial */
.landing-testimonial {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

.landing-testimonial blockquote {
  font-size: 2rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.landing-testimonial cite {
  font-size: 1.4rem;
  font-style: normal;
  color: var(--color-text-secondary);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.proof-stat {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* ============================================================
   16. CTA Section
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-bg-3) 0%, var(--color-bg-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: orbFloat1 12s ease-in-out infinite;
}

.cta-section h2 {
  color: var(--color-text);
  margin-bottom: 1.6rem;
}

.cta-section p {
  color: var(--color-text-secondary);
  font-size: 1.8rem;
  max-width: 56rem;
  margin: 0 auto 3.2rem;
}

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

.cta-note {
  display: block;
  margin-top: 2rem;
  font-size: 1.3rem;
  color: var(--color-muted);
}

.cta-banner {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 6.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 { color: var(--color-text); margin-bottom: 1.6rem; }
.cta-banner p { color: var(--color-text-secondary); font-size: 1.8rem; max-width: 50rem; margin: 0 auto 3.2rem; }

/* ============================================================
   17. Footer
   ============================================================ */
.footer {
  background-color: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 8rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4.8rem;
  margin-bottom: 6rem;
}

.footer-brand { max-width: 32rem; }

.footer .logo,
.footer-logo {
  color: var(--color-text);
  display: inline-block;
  margin-bottom: 1.6rem;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
}

.footer .logo span,
.footer-logo span {
  color: var(--color-accent);
}

.footer-brand p,
.footer-col p,
.footer p {
  font-size: 1.5rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.footer-col,
.footer-column,
.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-col h4,
.footer-column h4,
.footer-nav h4 {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.footer-col a,
.footer-column a,
.footer-nav a,
.footer-column ul li a {
  font-size: 1.4rem;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover,
.footer-column a:hover,
.footer-nav a:hover,
.footer-column ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3.2rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 1.3rem;
  color: var(--color-muted);
}

.footer-links,
.footer-legal {
  display: flex;
  gap: 2.4rem;
}

.footer-links a,
.footer-legal a {
  font-size: 1.3rem;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--color-accent);
}

/* ============================================================
   18. Forms
   ============================================================ */
.contact-form,
.landing-form,
.form {
  max-width: 64rem;
}

.form-group {
  margin-bottom: 2.4rem;
}

.contact-form label,
.landing-form label,
.form-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.landing-form input,
.landing-form textarea,
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.6rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.landing-form input:focus,
.landing-form textarea:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.landing-form input::placeholder,
.landing-form textarea::placeholder {
  color: var(--color-muted);
}

.contact-form textarea,
.landing-form textarea,
.form-textarea {
  min-height: 14rem;
  resize: vertical;
}

.contact-form select,
.form-select {
  cursor: pointer;
  appearance: auto;
}

.form-note,
.form-trust {
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-top: 1.6rem;
  text-align: center;
}

.input-error {
  border-color: var(--color-error) !important;
}

.landing-form input,
.landing-form textarea {
  margin-bottom: 1.6rem;
}

/* ============================================================
   19. Contact Page Layout
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-col h3,
.contact-info-block h3 {
  margin-bottom: 2rem;
}

.contact-details-list,
.contact-details-block {
  list-style: none;
  padding: 0;
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid var(--color-border);
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
}

.contact-details-list svg,
.contact-details-block svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.trust-badges {
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
}

.trust-line {
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-top: 2rem;
}

/* ============================================================
   20. FAQ
   ============================================================ */
.faq-list {
  max-width: 80rem;
  margin: 0 auto;
}

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

details.faq-item summary,
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

details.faq-item[open] summary::after { content: '−'; }

details.faq-item summary:hover,
.faq-question:hover {
  color: var(--color-accent);
}

.faq-answer {
  padding-bottom: 2.4rem;
}

.faq-answer p {
  font-size: 1.5rem;
  line-height: 1.7;
}

/* ============================================================
   21. Services Page
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-grid--reverse { direction: rtl; }
.service-grid--reverse > * { direction: ltr; }

.service-content { /* content column — no special styles needed */ }

.service-image,
.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-bg-3) 0%, var(--color-card) 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.service-benefits,
.check-icon {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0;
}

.service-benefits li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text);
}

.service-benefits li svg {
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--color-success);
}

.use-cases,
.use-cases-box {
  background: var(--color-bg-3);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2.4rem;
  margin: 2.4rem 0;
}

.use-cases h4,
.use-cases-box h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--color-text);
}

.use-cases ul,
.use-cases-box ul {
  list-style: disc;
  padding-left: 2rem;
}

.use-cases li,
.use-cases-box li {
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.target-clients {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin: 1.6rem 0;
  padding-left: 1.6rem;
  border-left: 2px solid var(--color-accent);
}

/* ============================================================
   22. About Page
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.two-col,
.two-col-diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.col { /* generic column — no special styles needed */ }

.differentiator-list {
  list-style: none;
  padding: 0;
}

.differentiator-list li {
  margin-bottom: 2.4rem;
  padding-left: 3.2rem;
  position: relative;
}

.differentiator-list li svg {
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--color-accent);
}

.differentiator-list li strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.differentiator-list li span {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  padding: 0.8rem 1.8rem;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201, 168, 76, 0.06);
}

.badges,
.expertise-badges,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.tag {
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-3);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================================
   23. Landing Page
   ============================================================ */
.landing-header {
  padding: 2rem 0;
  text-align: center;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2.4rem;
  overflow: hidden;
}

.landing-hero .container { max-width: 80rem; }
.landing-hero h1 { margin-bottom: 2rem; }

.landing-check-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 50rem;
  margin: 0 auto 3.2rem;
}

.landing-check-list li {
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  color: var(--color-text);
}

.landing-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.landing-footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.landing-footer p {
  font-size: 1.3rem;
  color: var(--color-muted);
}

.landing-form-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.form-intro { margin-bottom: 3.2rem; }

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.solution-description {
  font-size: 1.7rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.4rem;
}

/* ============================================================
   24. Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ============================================================
   25. Utility Classes
   ============================================================ */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 1.6rem; }
.mt-3 { margin-top: 2.4rem; }
.mt-4 { margin-top: 3.2rem; }
.mb-2 { margin-bottom: 1.6rem; }
.mb-3 { margin-bottom: 2.4rem; }
.mb-4 { margin-bottom: 3.2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.w-full { width: 100%; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   26. Responsive — Tablet (below 1200px)
   ============================================================ */
@media (max-width: 1199px) {
  :root { --section-padding: 8rem; }
  h1 { font-size: 4.2rem; }
  h2 { font-size: 2.8rem; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 4rem; }
  .stat-number, .stat-value { font-size: 4.4rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3.6rem; }
  .footer-brand { grid-column: span 2; max-width: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .service-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .service-grid--reverse { direction: ltr; }
  .two-col, .two-col-diff { grid-template-columns: 1fr; gap: 4rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   27. Responsive — Mobile (below 768px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-padding: 6rem;
    --nav-height: 6.4rem;
  }

  body { font-size: 1.6rem; }
  h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.8rem; }

  .container { padding: 0 1.6rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 1000;
  }

  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 2rem; }
  .nav-cta { margin-left: 0; margin-top: 1.6rem; }

  /* Hero */
  .hero, .page-hero { min-height: auto; padding: calc(var(--nav-height) + 4rem) 1.6rem 6rem; }
  .hero-subtitle, .hero-description, .hero p { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  /* Grids */
  .grid-2, .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr; }

  /* Problem / Solution */
  .problem-solution-grid { grid-template-columns: 1fr; gap: 3.2rem; }

  /* Stats */
  .stats-grid { flex-direction: column; gap: 3.2rem; align-items: center; }
  .stat-number, .stat-value { font-size: 4rem; }
  .stats-block { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-step { gap: 2rem; }
  .step-number, .process-step-number { width: 4.4rem; height: 4.4rem; font-size: 1.6rem; }

  /* Cards */
  .service-card, .feature-card, .value-card, .card, .pain-card { padding: 2.8rem; }

  /* Footer */
  .footer { padding: 6rem 0 3.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 2rem; text-align: center; }

  /* CTA */
  .cta-section h2, .cta-banner h2 { font-size: 2.4rem; }
  .cta-section p, .cta-banner p { font-size: 1.6rem; }
  .cta-banner { padding: 4rem 2.4rem; }

  /* Contact */
  .contact-grid { gap: 3.2rem; }

  /* Logo strip */
  .logo-strip { gap: 3.2rem; }

  /* Section header */
  .section-header { margin-bottom: 4rem; }

  /* Landing */
  .landing-hero { padding: 4rem 1.6rem; }

  /* Proof stats */
  .proof-stats { gap: 2rem; flex-direction: column; align-items: center; }
}

/* ============================================================
   28. Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}
