/* ===========================================
   Purple Tech IT Developers - Stylesheet
   =========================================== */

:root {
  /* Color palette — light theme (white background, purple accents) */
  --bg-primary: #ffffff;            /* page background — white */
  --bg-secondary: #f6f1fc;          /* alternating sections — very light purple */
  --bg-tertiary: #ece3f9;           /* deeper light-purple tint for gradient bases */
  --surface: #faf7fe;               /* cards/surfaces — near-white purple tint */
  --surface-hover: #f1eafb;         /* hover state for surfaces */
  --border: rgba(126, 34, 206, 0.18);     /* subtle purple-tinted border on white */
  --border-strong: rgba(126, 34, 206, 0.38);

  /* Purple palette — unchanged */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-900: #581c87;

  /* Accents are now deep purples so they stay readable on white */
  --accent: #7e22ce;                /* purple-700 */
  --accent-bright: #9333ea;         /* purple-600 */

  /* Text — deep purple-black on white */
  --text-primary: #1a0b2e;          /* near-black deep purple */
  --text-secondary: #4a3a5e;        /* muted deep purple */
  --text-muted: #6b5b7e;            /* lighter muted purple-grey */

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows — soft purple-tinted shadows for a light surface */
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.15);
  --shadow-card: 0 18px 50px -20px rgba(88, 28, 135, 0.20);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Background atmosphere — subtle light-purple wash on white */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 110%, rgba(147, 51, 234, 0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Noise texture overlay — kept very faint so it never darkens the white */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 1;
}

main, header, footer {
  position: relative;
  z-index: 2;
}

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

/* ===========================================
   Typography
   =========================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-700) 55%, var(--purple-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================================
   Navigation
   =========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(79, 15, 105, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(40, 8, 55, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--purple-300);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple-300);
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

/* ===========================================
   Buttons
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: white;
  box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(168, 85, 247, 0.8);
}

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

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
}

.btn .arrow {
  transition: transform 0.25s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ===========================================
   Hero
   =========================================== */

.hero {
  padding: 100px 0 120px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-tagline .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.hero h1 .accent-line {
  display: block;
  font-style: italic;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--accent-bright);
  line-height: 1;
}

.stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
}

.orb {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--purple-600), var(--purple-400), var(--purple-700), var(--purple-500), var(--purple-600));
  filter: blur(40px);
  opacity: 0.45;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.hero-card-1 {
  top: 10%;
  left: 0;
  width: 220px;
}

.hero-card-2 {
  bottom: 15%;
  right: 0;
  width: 240px;
}

.hero-card-3 {
  top: 45%;
  left: 30%;
  width: 200px;
}

.hero-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--accent);
}

/* ===========================================
   Section base
   =========================================== */

section {
  padding: 100px 0;
}

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

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.1rem;
}

/* ===========================================
   Solutions / Services
   =========================================== */

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

.solution-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

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

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.05));
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--accent-bright);
  margin-bottom: 24px;
}

.solution-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.solution-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================================
   About / Why us
   =========================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-50) 100%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  padding: 32px;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.12), transparent 50%);
}

.code-window {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px -16px rgba(88, 28, 135, 0.25);
}

.code-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #febc2e; }
.code-dots span:nth-child(3) { background: #28c840; }

.code-line { color: #4a3a5e; margin-bottom: 6px; }
.code-line .kw { color: #7c3aed; }   /* keywords — deep violet */
.code-line .str { color: #15803d; }  /* strings — dark green */
.code-line .fn { color: #2563eb; }   /* functions — dark blue */
.code-line .com { color: #9b8bae; font-style: italic; }  /* comments — muted */
.indent-1 { padding-left: 16px; }
.indent-2 { padding-left: 32px; }

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.checklist {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.checklist li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* ===========================================
   Stats banner
   =========================================== */

.stats-banner {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 60%);
}

.stats-banner > div {
  position: relative;
  border-right: 1px solid var(--border);
}

.stats-banner > div:last-child { border-right: none; }

.stats-banner .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--accent-bright);
  line-height: 1;
}

.stats-banner .label {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===========================================
   FAQ
   =========================================== */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}

.faq-item[open] {
  border-color: var(--border-strong);
  background: var(--bg-tertiary);
}

.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  color: var(--text-primary);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s;
}

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

.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================================
   CTA section
   =========================================== */

.cta-section {
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(192, 132, 252, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.14), transparent 40%);
}

.cta-box > * { position: relative; }

.cta-box h2 {
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ===========================================
   Footer
   =========================================== */

footer {
  background: #4F0F69;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  margin-top: 20px;
  max-width: 320px;
  font-size: 0.95rem;
  color: var(--purple-300);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-400);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--purple-300);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(30, 6, 45, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--purple-300);
  font-size: 0.875rem;
}

/* ===========================================
   Page header (inner pages)
   =========================================== */

.page-header {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a { color: var(--accent); text-decoration: none; }

/* ===========================================
   Contact form
   =========================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.contact-info h3 {
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--border-strong);
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card a, .contact-card span {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Red asterisk marking a required field (decorative — hidden from screen readers) */
.required-mark {
  color: #dc2626;
  margin-left: 2px;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.18);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===========================================
   Responsive
   =========================================== */

@media (max-width: 968px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .stats-banner > div:nth-child(2) { border-right: none; }

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

  .hero-visual {
    max-width: 100%;
    aspect-ratio: 1.6;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(79, 15, 105, 0.97);
    border-bottom: 1px solid rgba(40, 8, 55, 0.6);
    padding: 20px;
    gap: 16px;
  }

  .nav-links.open { display: flex; }

  .menu-toggle { display: block; }

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

  .stats-banner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .stats-banner > div { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stats-banner > div:last-child { border-bottom: none; padding-bottom: 0; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-box, .contact-form {
    padding: 32px 20px;
  }

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

  section { padding: 60px 0; }
  .hero { padding: 60px 0 80px; }
}

/* ===========================================
   Animations
   =========================================== */

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

.fade-up {
  animation: fadeUp 0.8s ease-out backwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
