/* ============================================
   MapleSites Landing Page - Styles
   Visual Identity: "Digital Craftsmanship"
   ============================================ */

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

/* CSS Variables */
:root {
  /* Brand Colors */
  --maple-red: #E63946;
  --maple-red-hover: #d32f3c;
  --charcoal: #1D3557;
  --charcoal-light: #264573;
  --ice-white: #F1FAEE;
  --pure-white: #ffffff;

  /* Semantic Colors */
  --text-primary: var(--charcoal);
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border-color: #e2e8f0;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Typography */
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(29, 53, 87, 0.08);
  --shadow-md: 0 4px 12px rgba(29, 53, 87, 0.1);
  --shadow-lg: 0 10px 40px rgba(29, 53, 87, 0.12);
  --shadow-xl: 0 20px 60px rgba(29, 53, 87, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--ice-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--maple-red);
  color: var(--pure-white);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  background: var(--maple-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.45);
}

.btn-secondary {
  background: var(--pure-white);
  color: var(--charcoal);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--pure-white);
}

.btn-nav {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, var(--pure-white) 0%, var(--ice-white) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(230, 57, 70, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--maple-red);
  margin-bottom: 32px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.2);
  }

  50% {
    box-shadow: 0 0 20px 5px rgba(230, 57, 70, 0.1);
  }
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--maple-red);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--charcoal);
}

.stat-number span {
  color: var(--maple-red);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--pure-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.why-card {
  background: var(--ice-white);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 20px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 57, 70, 0.1);
}

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--maple-red) 0%, #ff6b6b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-content h3 {
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.95rem;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
  padding: var(--section-padding);
  background: var(--ice-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portfolio-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(29, 53, 87, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  color: var(--pure-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.portfolio-info {
  padding: 28px;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: var(--maple-red);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-info h3 {
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.9rem;
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-section {
  padding: var(--section-padding);
  background: var(--charcoal);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(230, 57, 70, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.offer-section .section-header h2 {
  color: var(--pure-white);
}

.offer-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.offer-column h3 {
  color: var(--pure-white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-column h3 svg {
  width: 24px;
  height: 24px;
  color: var(--maple-red);
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.offer-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.offer-item.included svg {
  color: #4ade80;
}

.offer-item.not-included svg {
  color: rgba(255, 255, 255, 0.4);
}

.offer-item.not-included {
  color: rgba(255, 255, 255, 0.5);
}

.offer-value {
  text-align: center;
  margin-top: 64px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-value p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 8px;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--maple-red);
}

.offer-price span {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-left: 16px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: var(--section-padding);
  background: var(--pure-white);
}

.process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--maple-red) 0%, var(--border-color) 100%);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--maple-red) 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pure-white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--ice-white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--pure-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--maple-red);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--maple-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--pure-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

.cta-section .btn-primary {
  font-size: 1.125rem;
  padding: 20px 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-white);
}

.footer-logo span {
  color: var(--maple-red);
}

.footer-tagline {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline svg {
  width: 16px;
  height: 16px;
  color: var(--maple-red);
}

.footer-copyright {
  font-size: 0.8rem;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.lang-toggle:hover {
  background: var(--ice-white);
}

.lang-option {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.lang-option.active {
  color: var(--maple-red);
  font-weight: 600;
}

.lang-separator {
  color: var(--border-color);
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */
.casestudies-section {
  padding: var(--section-padding);
  background: var(--pure-white);
}

.casestudies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.casestudy-card {
  background: var(--ice-white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px dashed var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}

.casestudy-card.coming-soon {
  opacity: 0.8;
}

.casestudy-card:hover {
  border-color: var(--maple-red);
  transform: translateY(-4px);
}

.casestudy-status {
  margin-bottom: 16px;
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.status-coming {
  background: rgba(230, 57, 70, 0.1);
  color: var(--maple-red);
}

.status-badge.status-progress {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.status-badge.status-done {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.casestudy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.casestudy-icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
}

.casestudy-icon svg {
  width: 100%;
  height: 100%;
}

.casestudy-content h3 {
  font-size: 1.125rem;
}

.casestudy-content p {
  font-size: 0.875rem;
}

/* ============================================
   OFFER FEATURES (Updated)
   ============================================ */
.offer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.offer-feature {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--maple-red);
}

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

.offer-feature h3 {
  color: var(--pure-white);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.offer-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.offer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.offer-note svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--maple-red);
}

.offer-note p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   FORM INFO SECTION
   ============================================ */
.forminfo-section {
  padding: var(--section-padding);
  background: var(--ice-white);
}

.forminfo-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.forminfo-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--pure-white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.forminfo-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.forminfo-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--maple-red) 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pure-white);
}

.forminfo-content h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.forminfo-content p {
  font-size: 0.9rem;
}

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

  .portfolio-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .casestudy-card:last-child {
    grid-column: span 2;
    max-width: 300px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-right {
    gap: 12px;
  }

  .btn-nav {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .btn-nav span {
    display: none;
  }

  .btn-nav::after {
    content: '→';
    font-size: 1.2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat {
    flex: 1 1 120px;
  }

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

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

  .portfolio-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

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

  .casestudy-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .offer-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 48px;
  }

  .process-step::after {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 48px;
    bottom: -48px;
    background: linear-gradient(180deg, var(--maple-red) 0%, var(--border-color) 100%);
  }

  .process-step p {
    max-width: 100%;
  }

  .forminfo-item:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 64px 0;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .lang-toggle {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  .btn {
    width: 100%;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .forminfo-item {
    flex-direction: column;
    text-align: center;
  }

  .forminfo-number {
    margin: 0 auto;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}