/*
Theme Name: Loopi Theme
Theme URI: https://loopi.morko.posso.fi
Description: Custom theme for Loopi Oy — Mainostoimisto, markkinointi ja ohjelmointi
Version: 1.0.4
Author: AutoWP
Text Domain: loopi
*/

/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #1A1A2E;
  --color-secondary: #16213E;
  --color-accent: #E94560;
  --color-accent-2: #0F3460;
  --color-light: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #2D2D2D;
  --color-text-light: #6B7280;
  --color-border: rgba(0,0,0,0.08);

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

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --transition: 0.28s ease;

  --container: 1200px;
  --gap: 2rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style-position: outside; }
ul.menu, .header-nav ul, .main-nav ul, .footer-links, .contact-details, .features-grid, .testimonials-grid, .team-grid { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--dark { background: var(--color-primary); color: var(--color-white); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--light { background: var(--color-light); }
.section--accent { background: var(--color-accent); color: var(--color-white); }
.section--accent h2 { color: var(--color-white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--color-text-light); max-width: 600px; margin: 0 auto; }
.section--dark .section-header p { color: rgba(255,255,255,0.7); }

.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: #c93a53;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-white:hover {
  background: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== HEADER & NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { height: 36px; width: auto; }
.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}
.brand-name span { color: var(--color-accent); }

.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav ul { display: flex; align-items: center; gap: 0.25rem; margin: 0; padding: 0; list-style: none; }
.header-nav li { list-style: none; margin: 0; }
.header-nav a {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.header-nav a:hover, .header-nav a.current { color: white; background: rgba(255,255,255,0.1); }
.header-nav .btn-nav {
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 0.5rem;
}
.header-nav .btn-nav:hover { background: #c93a53; }

/* ===== MOBILE NAV ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  z-index: 1001;
  position: relative;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  width: 100%;
}
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26,26,46,0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.nav-open { overflow: hidden; }
body.nav-open .main-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.main-nav ul li { width: 100%; list-style: none; }

.main-nav ul li a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  width: 100%;
}
.main-nav ul li a:hover { background: var(--color-accent); }

.menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.menu-close:hover { background: rgba(255,255,255,0.1); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #0F3460 60%, #16213E 100%);
  overflow: hidden;
  padding: 5rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(233,69,96,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(15,52,96,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233,69,96,0.15);
  border: 1px solid rgba(233,69,96,0.3);
  color: #E94560;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(44vw, 560px);
  opacity: 0.98;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 60px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(233,69,96,0.2) 0%, rgba(15,52,96,0.4) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero stats — always horizontal row */
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  max-width: 620px;
}

.hero-stats > div {
  flex: 0 0 auto;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(233,69,96,0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(233,69,96,0.12) 0%, rgba(15,52,96,0.12) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(233,69,96,0.22) 0%, rgba(15,52,96,0.22) 100%);
}

.feature-icon svg { width: 30px !important; height: 30px !important; }

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
  flex: 1;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 0;
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-2) 100%);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(233,69,96,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner-inner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--color-primary); }
.testimonial-role { font-size: 0.8125rem; color: var(--color-text-light); }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { font-size: 2.25rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--color-text-light); font-size: 1.0625rem; margin-bottom: 2rem; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(233,69,96,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px !important; height: 20px !important; color: var(--color-accent); }
.contact-item-label { font-size: 0.8125rem; color: var(--color-text-light); margin-bottom: 0.125rem; }
.contact-item-value { font-weight: 600; color: var(--color-primary); }

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

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

.footer-brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--color-accent); }
.footer-tagline { font-size: 0.9375rem; line-height: 1.6; color: rgba(255,255,255,0.6); }

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-2) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(233,69,96,0.15) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.page-content { padding: 5rem 0; }

/* Services page */
.services-list { display: flex; flex-direction: column; gap: 3rem; }
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(233,69,96,0.2);
}
.service-item-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(233,69,96,0.1) 0%, rgba(15,52,96,0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-item-icon svg { width: 40px !important; height: 40px !important; color: var(--color-accent); }
.service-item h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-item p { color: var(--color-text-light); line-height: 1.7; }

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
.about-text p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 1.25rem; }
.about-text p:last-child { margin-bottom: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.875rem; color: var(--color-accent); font-weight: 500; }

/* ===== WP CONTENT STYLES ===== */
.page-content-body {
  max-width: 800px;
  margin: 0 auto;
}
.page-content-body h2 { font-size: 1.75rem; margin: 2rem 0 1rem; }
.page-content-body h3 { font-size: 1.35rem; margin: 1.5rem 0 0.75rem; }
.page-content-body p { margin-bottom: 1rem; color: var(--color-text-light); line-height: 1.8; }
.page-content-body ul, .page-content-body ol { margin: 1rem 0 1rem 1.5rem; }
.page-content-body li { margin-bottom: 0.5rem; color: var(--color-text-light); }
.page-content-body a { color: var(--color-accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0.7; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.section { animation: fadeInUp 0.6s ease forwards; }
.hero-content { animation: fadeInUp 0.8s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 600px; height: auto; padding: 4rem 0 3rem; }
  .hero h1 { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
  .cta-banner-inner { padding: 2.5rem 1.5rem; }
  .service-item { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .hero-stats {
    gap: 1rem;
  }
  .hero-stats > div {
    flex: 1 1 calc(33.33% - 0.75rem);
    min-width: 80px;
  }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
}
