/* ============================================
   pFlow Marketing Website - Style Sheet
   ============================================ */

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

:root {
  --brand: #4a8a96;
  --brand-dark: #2d5f6b;
  --brand-light: #6aacb8;
  --brand-glow: rgba(74, 138, 150, 0.3);
  --brand-subtle: rgba(74, 138, 150, 0.1);
  --brand-border: rgba(74, 138, 150, 0.2);

  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;

  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px rgba(74, 138, 150, 0.15);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --section-padding: clamp(4rem, 8vw, 8rem);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.text-brand { color: var(--brand); }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2rem);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 0 30px rgba(74, 138, 150, 0.4);
  transform: translateY(-2px);
}

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

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

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* --- Section Titles --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  height: 36px;
  width: auto;
}

.navbar-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 138, 150, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

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

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-light);
}

/* Grid animation behind hero */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  padding: var(--section-padding) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top left, var(--brand-subtle), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: var(--brand-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--brand);
}

.feature-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ============================================
   CUTTING HIGHLIGHT
   ============================================ */
.cutting-highlight {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

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

.cutting-text h2 {
  margin-bottom: 1.5rem;
}

.cutting-text p {
  margin-bottom: 1.25rem;
}

.cutting-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.cutting-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.cutting-feature-item i {
  color: var(--brand);
  flex-shrink: 0;
}

/* CSS Cutting Plan Visualization */
.cutting-visual {
  position: relative;
}

.cutting-board {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1e1e1e;
  border: 2px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 4px;
  box-shadow: var(--shadow-glow);
}

.cut-piece {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.cut-piece.visible {
  opacity: 1;
  transform: scale(1);
}

.cut-piece:nth-child(1)  { grid-column: 1/7;  grid-row: 1/5;  background: #4a8a96; }
.cut-piece:nth-child(2)  { grid-column: 7/13; grid-row: 1/4;  background: #3d7a86; }
.cut-piece:nth-child(3)  { grid-column: 1/5;  grid-row: 5/8;  background: #5a9eaa; }
.cut-piece:nth-child(4)  { grid-column: 5/9;  grid-row: 4/7;  background: #6aacb8; }
.cut-piece:nth-child(5)  { grid-column: 9/13; grid-row: 4/7;  background: #3a7480; }
.cut-piece:nth-child(6)  { grid-column: 1/4;  grid-row: 8/10; background: #5090a0; }
.cut-piece:nth-child(7)  { grid-column: 4/8;  grid-row: 7/10; background: #458490; }
.cut-piece:nth-child(8)  { grid-column: 8/13; grid-row: 7/10; background: #2d5f6b; }

.cutting-board-label {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cutting-board-label span {
  color: var(--brand);
  font-weight: 600;
}

/* ============================================
   IMAGE SHOWCASE
   ============================================ */
.image-showcase {
  padding: 3rem 0 var(--section-padding);
  background: var(--bg-secondary);
}

.showcase-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.showcase-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.showcase-image-card:hover {
  border-color: var(--brand-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.showcase-image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-image-card:hover img {
  transform: scale(1.03);
}

.showcase-image-label {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
  padding: var(--section-padding) 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--brand-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.industry-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.05);
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.industry-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.industry-card-content p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Industry card CSS backgrounds with patterns */
.industry-card--carpentry .industry-card-bg {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(139, 105, 64, 0.15) 8px, rgba(139, 105, 64, 0.15) 10px),
    linear-gradient(135deg, #3d2b1f, #5a3e28, #7a5633, #4a3322);
}

.industry-card--metalwork .industry-card-bg {
  background:
    radial-gradient(circle at 30% 40%, rgba(255,160,0,0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,100,0,0.15) 0%, transparent 30%),
    linear-gradient(135deg, #1a2a35, #2c3e50, #34495e, #1a2a35);
}

.industry-card--decoration .industry-card-bg {
  background:
    linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.03) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(135deg, #2d3436, #4a5568, #636e72, #2d3436);
  background-size: 40px 40px, 100% 100%;
}

.industry-card--warehouse .industry-card-bg {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(74, 138, 150, 0.08) 30px, rgba(74, 138, 150, 0.08) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(74, 138, 150, 0.08) 30px, rgba(74, 138, 150, 0.08) 31px),
    linear-gradient(135deg, #1a1a2e, #16213e, #0f3460, #1a1a2e);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-step:hover .timeline-number {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 0 20px var(--brand-glow);
}

.timeline-step h4 {
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}

.timeline-step p {
  font-size: 0.8125rem;
  max-width: 160px;
  color: var(--text-muted);
}

/* ============================================
   DARK/LIGHT SHOWCASE
   ============================================ */
.showcase {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.showcase-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #ffbd2e; }
.mockup-dot--green { background: #28c840; }

.mockup-content {
  padding: 1.5rem;
  min-height: 280px;
}

/* Dark mockup */
.showcase-mockup--dark {
  background: #0d0d0d;
}

.showcase-mockup--dark .mockup-toolbar {
  background: #161616;
  border-color: #222;
}

.showcase-mockup--dark .mockup-content {
  background: #0d0d0d;
}

/* Light mockup */
.showcase-mockup--light {
  background: #ffffff;
}

.showcase-mockup--light .mockup-toolbar {
  background: #f5f5f5;
  border-color: #e0e0e0;
}

.showcase-mockup--light .mockup-content {
  background: #ffffff;
}

/* Mockup inner elements */
.mockup-header {
  height: 12px;
  width: 60%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.mockup-bar {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.mockup-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mockup-mini-card {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
}

.showcase-mockup--dark .mockup-header { background: #2a2a2a; }
.showcase-mockup--dark .mockup-bar { background: #1e1e1e; }
.showcase-mockup--dark .mockup-bar:nth-child(2) { width: 80%; }
.showcase-mockup--dark .mockup-bar:nth-child(3) { width: 45%; }
.showcase-mockup--dark .mockup-mini-card { background: #1e1e1e; border: 1px solid #2a2a2a; }

.showcase-mockup--light .mockup-header { background: #e0e0e0; }
.showcase-mockup--light .mockup-bar { background: #f0f0f0; }
.showcase-mockup--light .mockup-bar:nth-child(2) { width: 80%; }
.showcase-mockup--light .mockup-bar:nth-child(3) { width: 45%; }
.showcase-mockup--light .mockup-mini-card { background: #f5f5f5; border: 1px solid #e0e0e0; }

.showcase-label {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card--featured {
  border-color: var(--brand);
  position: relative;
  background: linear-gradient(180deg, rgba(74, 138, 150, 0.08) 0%, var(--bg-card) 30%);
}

.pricing-card--featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-card--featured .pricing-tier {
  color: var(--brand);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-feature i {
  color: var(--brand);
  flex-shrink: 0;
  width: 18px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 138, 150, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 28px;
}

.footer-brand span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

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

.footer-links a:hover {
  color: var(--brand);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"].is-visible {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="fade-right"].is-visible {
  transform: translateX(0);
}

[data-animate="scale"] {
  transform: scale(0.95);
}

[data-animate="scale"].is-visible {
  transform: scale(1);
}

/* Staggered delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cutting-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .showcase-images-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile menu */
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

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

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

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

  .industry-card {
    aspect-ratio: 16/9;
  }

  .timeline {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    padding-left: 3rem;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
  }

  .timeline-number {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .timeline-step p {
    max-width: none;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
