/* ============================================
   ABOUT PAGE - MODERN MARKETING STYLESHEET
   ============================================ */

/* ============================================
   ROOT VARIABLES & RESETS
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: #1b2e4b;
  --color-primary-strong: #13223a;
  --color-accent: #028152;
  --color-accent-strong: #007248;
  --color-text: #1f2433;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  
  /* Gradient Colors */
  --gradient-hero: linear-gradient(135deg, #1b2e4b 0%, #13223a 50%, #0d1829 100%);
  --gradient-accent: linear-gradient(135deg, #028152 0%, #007248 100%);
  --gradient-text: linear-gradient(135deg, #028152 0%, #00a86b 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Animation */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: white;
  overflow: hidden;
}

/* PCB Traces Canvas */
.pcb-traces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
  filter: drop-shadow(0 0 8px rgba(2, 129, 82, 0.3));
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(2, 129, 82, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(2, 129, 82, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(27, 46, 75, 0) 0%, rgba(19, 34, 58, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-lg);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.gradient-text {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gradient-text);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(2, 129, 82, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(2, 129, 82, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-2xl);
  font-size: 1.125rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(-45deg);
}

/* ============================================
   CONTAINER & SECTION UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */
.value-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.value-card {
  padding: var(--spacing-2xl);
  background: white;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.value-card[data-animate].animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-icon-fast {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.value-icon-connected {
  background: linear-gradient(135deg, #028152 0%, #007248 100%);
  color: white;
}

.value-icon-insightful {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.value-description {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.value-features {
  list-style: none;
  padding: 0;
}

.value-features li {
  padding: var(--spacing-xs) 0;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.value-features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  margin-right: var(--spacing-sm);
  font-size: 1.125rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card[data-animate].animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.feature-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.feature-category-production {
  background: rgba(43, 99, 240, 0.1);
  color: #2b63f0;
}

.feature-category-inspection {
  background: rgba(2, 129, 82, 0.1);
  color: #028152;
}

.feature-category-rework {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}

.feature-category-logistics {
  background: rgba(240, 145, 53, 0.1);
  color: #f09135;
}

.feature-category-security {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.feature-category-analytics {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   USE CASES SECTION
   ============================================ */
.use-cases-section {
  padding: var(--spacing-3xl) 0;
  background: white;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.use-case-card {
  padding: var(--spacing-xl);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.use-case-card[data-animate].animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.use-case-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-bg-alt);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.use-case-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.use-case-description {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.use-case-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.benefit-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-alt);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.tech-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-alt);
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.tech-text {
  opacity: 0;
  transform: translateX(-30px);
}

.tech-text[data-animate].animate {
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tech-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: var(--color-accent);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
}

.tech-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.tech-description {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.tech-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
}

.tech-list li {
  padding: var(--spacing-sm) 0;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
}

.tech-list li::before {
  content: '▸';
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-right: var(--spacing-sm);
  flex-shrink: 0;
}

.tech-list strong {
  color: var(--color-primary);
}

.version-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.tech-visual {
  opacity: 0;
  transform: translateX(30px);
}

.tech-visual[data-animate].animate {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tech-stack-diagram {
  background: white;
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
}

.stack-layer {
  padding: var(--spacing-lg);
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
  text-align: center;
  transition: all var(--transition-base);
}

.stack-layer:last-child {
  margin-bottom: 0;
}

.stack-layer:hover {
  transform: translateX(8px);
}

.stack-layer-ui {
  background: linear-gradient(135deg, rgba(43, 99, 240, 0.1), rgba(37, 99, 235, 0.1));
  border-left: 4px solid #3b82f6;
}

.stack-layer-api {
  background: linear-gradient(135deg, rgba(2, 129, 82, 0.1), rgba(0, 114, 72, 0.1));
  border-left: 4px solid #028152;
}

.stack-layer-db {
  background: linear-gradient(135deg, rgba(240, 145, 53, 0.1), rgba(217, 119, 6, 0.1));
  border-left: 4px solid #f09135;
}

.stack-layer-infra {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
  border-left: 4px solid #8b5cf6;
}

.layer-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.layer-tech {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--spacing-3xl) 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
}

.cta-content {
  opacity: 0;
  transform: translateY(30px);
}

.cta-content[data-animate].animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-primary-strong);
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-list li {
  margin-bottom: var(--spacing-xs);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-list a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 960px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-stats {
    gap: var(--spacing-lg);
  }
  
  .stat-divider {
    display: none;
  }
  
  .value-grid,
  .features-grid,
  .use-cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .tech-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --spacing-3xl: 4rem;
    --spacing-2xl: 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .value-grid,
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .scroll-top {
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-content {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .value-card,
  .feature-card,
  .use-case-card {
    padding: var(--spacing-lg);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .hero,
  .scroll-indicator,
  .scroll-top,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  .section-title {
    page-break-after: avoid;
  }
  
  .value-card,
  .feature-card,
  .use-case-card {
    page-break-inside: avoid;
  }
}
