/* ============================================
   STYLE.CSS — Section & Layout Styles
   Ascend Tax Savings
   ============================================ */

/* ---- Urgency Banner ---- */
.urgency-banner {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 8px var(--container-padding);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.urgency-banner strong {
  color: var(--color-gold);
}

[data-theme="dark"] .urgency-banner {
  background: #0A1A10;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              background-color var(--duration-normal) var(--ease-out);
}

[data-theme="dark"] .header {
  background: rgba(15, 31, 22, 0.92);
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-dark);
  flex-shrink: 0;
}

.logo__icon {
  width: 36px;
  height: 32px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.7;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after {
  width: 100%;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--duration-fast);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-light-tint);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  padding: 100px var(--container-padding) var(--space-8);
  flex-direction: column;
  gap: var(--space-6);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__cta {
  margin-top: auto;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--color-light-tint) 0%, transparent 70%);
  opacity: 0.6;
}

/* Topographic pattern */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 200 Q100 150 200 180 Q300 210 350 160' fill='none' stroke='%232D7A4F' stroke-width='0.5' opacity='0.06'/%3E%3Cpath d='M30 250 Q120 200 220 230 Q320 260 370 210' fill='none' stroke='%232D7A4F' stroke-width='0.5' opacity='0.05'/%3E%3Cpath d='M40 300 Q140 250 240 280 Q340 310 390 260' fill='none' stroke='%232D7A4F' stroke-width='0.5' opacity='0.04'/%3E%3Cpath d='M20 150 Q80 100 180 130 Q280 160 340 110' fill='none' stroke='%232D7A4F' stroke-width='0.5' opacity='0.05'/%3E%3Cpath d='M60 100 Q130 60 200 80 Q300 110 360 70' fill='none' stroke='%232D7A4F' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  opacity: 0.8;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: var(--color-gold-soft);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-8);
}

[data-theme="dark"] .hero__badge {
  color: var(--color-gold);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: var(--text-hero);
  line-height: 1.08;
  margin-bottom: var(--space-6);
  color: var(--color-dark);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration-normal) var(--ease-out);
}

.hero__link:hover {
  gap: var(--space-3);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.hero__proof span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__proof span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.hero__proof span:first-child::before {
  display: none;
}

/* ---- Education Section ---- */
.education {
  background: var(--color-surface);
}

.education__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.education__card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.education__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.education__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
}

.education__card:nth-child(1) .education__card-icon {
  background: rgba(220, 53, 53, 0.1);
  color: #DC3535;
}

.education__card:nth-child(2) .education__card-icon {
  background: var(--color-light-tint);
  color: var(--color-primary);
}

.education__card:nth-child(3) .education__card-icon {
  background: var(--color-gold-soft);
  color: var(--color-gold);
}

.education__card h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.education__card p {
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Depreciation Bar Visual */
.depreciation-visual {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.depreciation-visual__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.depreciation-bar {
  margin-bottom: var(--space-5);
}

.depreciation-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.depreciation-bar__label strong {
  color: var(--color-text);
}

.depreciation-bar__track {
  height: 32px;
  background: var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.depreciation-bar__fill {
  height: 100%;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding-left: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #fff;
  transition: width 1.5s var(--ease-out);
  width: 0;
}

.depreciation-bar__fill--slow {
  background: var(--color-text-muted);
}

.depreciation-bar__fill--fast {
  background: linear-gradient(90deg, var(--color-primary), #3DA366);
}

.depreciation-bar.visible .depreciation-bar__fill--slow {
  width: 100%;
}

.depreciation-bar.visible .depreciation-bar__fill--fast {
  width: 30%;
}

/* ---- Calculator Section ---- */
.calculator {
  background: var(--color-bg);
}

/* ---- Process Section ---- */
.process {
  background: var(--color-surface);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process__step {
  text-align: center;
  position: relative;
  padding: var(--space-8) var(--space-4);
}

.process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-light-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}

.process__step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-primary);
}

.process__step h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.process__step p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Connecting line */
.process__connector {
  display: none;
}

@media (min-width: 768px) {
  .process__connector {
    display: block;
    position: absolute;
    top: 28px;
    left: calc(33.33% + 28px);
    right: calc(33.33% + 28px);
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--color-border-strong) 0,
      var(--color-border-strong) 8px,
      transparent 8px,
      transparent 16px
    );
    z-index: 0;
  }
}

/* ---- Property Types ---- */
.property-types {
  background: var(--color-bg);
}

.property-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.property-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.property-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  color: var(--color-primary);
}

.property-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.property-card__savings {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.property-types__note {
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Why Now / OBBBA ---- */
.why-now {
  background: var(--color-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-now::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(45, 122, 79, 0.15), transparent 70%);
}

.why-now .eyebrow {
  color: var(--color-gold);
}

.why-now .section-title {
  color: #fff;
}

.why-now__content {
  position: relative;
  z-index: 1;
}

.why-now__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.comparison-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 700px;
}

.comparison-card__side {
  padding: var(--space-8);
  text-align: center;
}

.comparison-card__side--before {
  background: rgba(255,255,255,0.06);
}

.comparison-card__side--after {
  background: rgba(45, 122, 79, 0.2);
}

.comparison-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-3);
}

.comparison-card__amount {
  font-family: var(--font-body);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.comparison-card__side--before .comparison-card__amount {
  color: rgba(255,255,255,0.6);
}

.comparison-card__side--after .comparison-card__amount {
  color: var(--color-gold);
}

.comparison-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.why-now__note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ---- Results / Social Proof ---- */
.results {
  background: var(--color-surface);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.result-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out);
}

.result-card:hover {
  box-shadow: var(--shadow-md);
}

.result-card__type {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.result-card__location {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.result-card__savings {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.result-card__savings-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.result-card__stats {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.result-card__stat {
  font-size: var(--text-sm);
}

.result-card__stat strong {
  display: block;
  font-weight: 700;
  color: var(--color-text);
}

.result-card__stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stats-bar__item strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-1);
}

.stats-bar__item span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ---- Guarantees ---- */
.guarantees {
  background: var(--color-bg);
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.guarantee-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.guarantee-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-gold);
}

.guarantee-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.guarantee-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq {
  background: var(--color-surface);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

/* ---- Estimate Form ---- */
.estimate {
  background: var(--color-bg);
  position: relative;
}

.estimate__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.estimate__info {
  position: sticky;
  top: 120px;
}

.estimate__info .section-title {
  margin-bottom: var(--space-4);
}

.estimate__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.estimate__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.estimate__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.estimate__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-12) 0 var(--space-8);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: var(--space-8);
}

.footer__logo {
  color: #fff;
}

.footer__cpa-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer__cpa-link a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 168, 83, 0.3);
  text-underline-offset: 3px;
}

.footer__cpa-link a:hover {
  text-decoration-color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__info {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__info a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__info a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__attribution {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer__attribution a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__attribution a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .education__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .process__step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-4);
    padding: var(--space-4);
    align-items: start;
  }

  .process__step-number {
    margin: 0;
    grid-row: 1 / 3;
  }

  .process__step-icon {
    display: none;
  }

  .process__connector {
    display: none;
  }

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

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

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

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

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

  .estimate__info {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav .nav__cta {
    display: none;
  }

  .nav .theme-toggle {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero__proof {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }

  .property-types__grid {
    grid-template-columns: 1fr;
  }

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    padding: var(--space-6);
  }

  .footer__top {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-bar__item strong {
    font-size: var(--text-xl);
  }
}
