/* ============================================
   RE-ECHO — Commercial AV & Event Production
   Toronto, Canada
   ============================================ */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --text-primary: #f0ece4;
  --text-secondary: #9a958c;
  --text-muted: #5a5650;
  --accent: #c8a46e;
  --accent-dim: #a6874f;
  --accent-glow: rgba(200, 164, 110, 0.12);
  --border: #2a2724;
  --border-light: #3a3530;
  --white: #ffffff;
  --nav-height: 80px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent);
}

p {
  color: var(--text-secondary);
  max-width: 680px;
}

.accent {
  color: var(--accent);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .logo-mark {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

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

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg-primary) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ---- Hero Sections ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  opacity: 0.08;
}

.hero-bg .orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: 10%;
  opacity: 0.05;
}

.hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  min-height: 50vh;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

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

/* ---- Service Pillars (Home) ---- */
.pillars {
  background: var(--bg-secondary);
}

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

.pillar-card {
  position: relative;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.pillar-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

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

.pillar-number {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pillar-card h2 {
  margin-bottom: 1rem;
}

.pillar-card p {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pillar-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pillar-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* ---- Project Highlights ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.project-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.project-card h3 {
  margin-bottom: 0.75rem;
}

.project-card p {
  font-size: 0.9rem;
}

/* ---- Brands Carousel ---- */
.brands-section {
  background: #ffffff;
  border-top: 1px solid #e0ddd8;
  border-bottom: 1px solid #e0ddd8;
  padding: 4rem 0;
  overflow: hidden;
}

.brands-header {
  text-align: center;
  margin-bottom: 3rem;
}

.brands-header h4 {
  color: var(--accent-dim);
}

.brands-header h2 {
  margin-top: 0.75rem;
  color: #1a1a1a;
}

.brands-carousel-wrapper {
  overflow: hidden;
  position: relative;
  cursor: default;
}

.brands-carousel-wrapper::before,
.brands-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.brands-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: max-content;
  animation: brandScroll 40s linear infinite;
}


.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.brand-item:hover .brand-name {
  color: var(--accent-dim);
}

.brand-logo {
  width: 195px;
  height: 105px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all var(--transition);
}

.brand-logo span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  text-align: center;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888079;
  transition: color var(--transition);
  white-space: nowrap;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-lg,
.brand-logo-xl,
.brand-logo-xxl {
  overflow: hidden;
}

.brand-logo-lg img {
  transform: scale(1.5);
}

.brand-logo-xl img {
  transform: scale(1.7);
}

.brand-logo-xxl img {
  transform: scale(2);
}

/* ---- Vertical Cards (Installations) ---- */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all var(--transition);
}

.vertical-card:hover {
  border-color: var(--accent);
}

.vertical-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.vertical-card h3 {
  margin-bottom: 0.75rem;
}

.vertical-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.vertical-card ul {
  list-style: none;
}

.vertical-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}

.vertical-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ---- Process Section ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--bg-card);
}

.step-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.process-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.85rem;
}

/* ---- Service Blocks (Event Production) ---- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reversed {
  direction: rtl;
}

.service-block.reversed > * {
  direction: ltr;
}

.service-block-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-block-visual .placeholder-icon {
  font-size: 3rem;
  color: var(--text-muted);
  opacity: 0.3;
}

.service-block-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-block-content p {
  margin-bottom: 1.5rem;
}

.service-includes {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-includes li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-includes li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---- Differentiator Banner ---- */
.differentiator {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.differentiator h2 {
  margin-bottom: 1.5rem;
}

.differentiator p {
  margin: 0 auto 2rem;
  max-width: 700px;
}

.diff-points {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.diff-point {
  text-align: center;
  max-width: 220px;
}

.diff-point h4 {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.diff-point p {
  font-size: 0.85rem;
  margin: 0 auto;
}

/* ---- About Page ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story p {
  margin-bottom: 1.5rem;
}

.about-values {
  list-style: none;
  margin-top: 2rem;
}

.about-values li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.about-values li h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-values li p {
  font-size: 0.9rem;
}

/* Expertise tags */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.expertise-tag {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.expertise-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 0.75rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-detail {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-detail-value {
  color: var(--text-primary);
  font-size: 1.05rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a958c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-primary);
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.cta-section p {
  position: relative;
  margin: 0 auto 2.5rem;
}

.cta-section .btn {
  position: relative;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .social-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .social-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom .social-links a:hover {
  color: var(--accent);
}

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: 3rem;
}

.section-header h4 {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ---- Responsive ---- */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid var(--border);
  }

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

  .nav-toggle {
    display: flex;
  }

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

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

  .brands-track {
    gap: 1rem;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-block.reversed {
    direction: ltr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

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

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

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    border-bottom: 1px solid var(--border);
  }

  .process-step:nth-child(even) {
    border-right: none;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .brand-logo {
    width: 110px;
    height: 60px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
  }

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

  .diff-points {
    flex-direction: column;
    align-items: center;
  }

  .pillar-card {
    min-height: auto;
    padding: 2rem;
  }
}
