/* ========================================
   Philosophia School — Master Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --olive: #3C4A2E;
  --olive-dark: #2A3520;
  --olive-light: #4E5F3C;
  --parchment: #F0E8D8;
  --parchment-dark: #E0D4BE;
  --parchment-light: #F7F2E8;
  --copper: #B87333;
  --copper-dark: #965C28;
  --copper-light: #D4944E;
  --text-dark: #2A2A22;
  --text-body: #3D3D32;
  --text-light: #6B6B5A;
  --white: #FEFDFB;
  --shadow: rgba(44, 52, 34, 0.12);
  --shadow-lg: rgba(44, 52, 34, 0.18);
  --font-heading: "Georgia", "Times New Roman", "Palatino Linotype", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--parchment);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--copper-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--olive);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: 5rem 0;
}

.section--olive {
  background: var(--olive);
  color: var(--parchment);
}

.section--olive h2,
.section--olive h3,
.section--olive h4 {
  color: var(--parchment);
}

.section--olive a {
  color: var(--copper-light);
}

.section--white {
  background: var(--white);
}

.section--parchment-dark {
  background: var(--parchment-dark);
}

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

.section-subtitle {
  font-family: var(--font-heading);
  color: var(--copper);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn--primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--copper);
  border-color: var(--copper);
}

.btn--secondary:hover {
  background: var(--copper);
  color: var(--white);
}

.btn--olive {
  background: var(--olive);
  color: var(--parchment);
  border-color: var(--olive);
}

.btn--olive:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  color: var(--parchment);
}

.btn--light {
  background: var(--parchment);
  color: var(--olive);
  border-color: var(--parchment);
}

.btn--light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--olive-dark);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--copper);
  margin: 1.25rem auto 2rem;
  border: none;
}

.divider--left {
  margin-left: 0;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--olive);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 16px var(--shadow-lg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header__logo svg {
  width: 36px;
  height: 36px;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--parchment);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__nav a {
  color: var(--parchment-dark);
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  border-radius: 4px;
  transition: all var(--transition);
  font-weight: 500;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--copper-light);
  background: rgba(255,255,255,0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-dark);
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg svg {
  width: 60%;
  max-width: 600px;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 760px;
}

.hero__content h1 {
  color: var(--parchment);
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero__content p {
  color: var(--parchment-dark);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Page Header --- */
.page-header {
  background: var(--olive-dark);
  padding: 5rem 0 3.5rem;
  margin-top: var(--header-h);
  text-align: center;
}

.page-header h1 {
  color: var(--parchment);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--parchment-dark);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-header .divider {
  background: var(--copper);
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px var(--shadow-lg);
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.card__title {
  margin-bottom: 0.75rem;
}

.card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card__meta {
  font-family: var(--font-heading);
  color: var(--copper);
  font-weight: 600;
  font-size: 1.05rem;
}

/* --- Course Card --- */
.course-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px var(--shadow-lg);
}

.course-card__banner {
  height: 6px;
  background: linear-gradient(90deg, var(--copper), var(--olive));
}

.course-card__body {
  padding: 1.75rem;
}

.course-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--copper);
  background: rgba(184, 115, 51, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.course-card__title {
  margin-bottom: 0.75rem;
}

.course-card__desc {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}

.course-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--parchment-dark);
}

.course-card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--olive);
  font-weight: 700;
}

.course-card__duration {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--parchment-dark);
}

/* --- Testimonials --- */
.testimonial {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--copper);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial__text {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
  line-height: 1.75;
  padding-top: 1rem;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--olive);
  font-size: 0.95rem;
}

.testimonial__role {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* --- Pricing --- */
.pricing-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--copper);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.93rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Blog --- */
.blog-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px var(--shadow-lg);
}

.blog-card__banner {
  height: 5px;
  background: linear-gradient(90deg, var(--olive), var(--copper));
}

.blog-card__body {
  padding: 1.75rem;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.blog-card__excerpt {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}

.blog-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.blog-card__link:hover svg {
  transform: translateX(4px);
}

/* --- Faculty --- */
.faculty-card {
  text-align: center;
  background: var(--white);
  border-radius: 6px;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 2px 12px var(--shadow);
}

.faculty-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--olive);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faculty-card__avatar svg {
  width: 44px;
  height: 44px;
  color: var(--parchment);
}

.faculty-card__name {
  margin-bottom: 0.25rem;
}

.faculty-card__title {
  font-size: 0.85rem;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faculty-card__bio {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Timeline / History --- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--copper);
}

.timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.65rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 50%;
  border: 2px solid var(--parchment);
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--copper);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.timeline__text {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--olive);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--parchment);
}

.contact-info__label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--olive);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-info__text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Form --- */
.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--parchment-dark);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--copper);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- FAQ --- */
.faq-item {
  background: var(--white);
  border-radius: 6px;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 6px var(--shadow);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--copper);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--copper);
}

.faq-item.open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- CTA Section --- */
.cta {
  text-align: center;
  padding: 4.5rem 0;
}

.cta h2 {
  color: var(--parchment);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--parchment-dark);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
  background: var(--olive-dark);
  color: var(--parchment-dark);
  padding: 4rem 0 0;
}

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

.footer__brand-text {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
  color: rgba(240, 232, 216, 0.65);
}

.footer__heading {
  font-family: var(--font-heading);
  color: var(--parchment);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(240, 232, 216, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--copper-light);
}

.footer__bottom {
  border-top: 1px solid rgba(240, 232, 216, 0.12);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(240, 232, 216, 0.5);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.82rem;
  color: rgba(240, 232, 216, 0.5);
}

.footer__legal a:hover {
  color: var(--copper-light);
}

/* --- Thank You --- */
.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-h);
  padding: 4rem 1.5rem;
}

.thankyou__icon {
  width: 80px;
  height: 80px;
  color: var(--copper);
  margin: 0 auto 1.5rem;
}

.thankyou h1 {
  margin-bottom: 1rem;
}

.thankyou p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* --- Prose (legal pages) --- */
.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.prose ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.prose ul li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

/* --- About Two Col --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  background: var(--olive);
  border-radius: 6px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual svg {
  width: 50%;
  max-width: 200px;
  color: var(--parchment);
  opacity: 0.3;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .section { padding: 3.5rem 0; }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--olive);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 4px 16px var(--shadow-lg);
  }

  .header__nav.open {
    transform: translateY(0);
  }

  .header__nav a {
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 4px;
  }

  .hamburger {
    display: flex;
  }

  .hero { min-height: 75vh; }

  .hero__content h1 { font-size: 2.25rem; }

  .grid-2,
  .grid-3,
  .contact-grid,
  .about-split {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer__legal {
    justify-content: center;
  }

  .pricing-card { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 1.85rem; }
  .hero__btns { flex-direction: column; align-items: center; }
  .stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
