/* ============================================================
   Perennia Website v1.0 – Main Stylesheet
   Brand Colors:
     Primary Navy  : #1F3A5F
     Premium Gold  : #C9A227
     Warm White    : #FAFAF8
     Charcoal      : #2B2B2B
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:       #1F3A5F;
  --gold:       #C9A227;
  --gold-light: #e8c84a;
  --warm-white: #FAFAF8;
  --charcoal:   #2B2B2B;
  --light-bg:   #F2F0EB;
  --border:     #DDD8CE;
  --text-muted: #6B6B6B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-arabic:  'Noto Kufi Arabic', 'Arial Unicode MS', sans-serif;

  --radius:   6px;
  --shadow:   0 4px 24px rgba(31,58,95,0.10);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Arabic body */
[dir="rtl"] body,
[dir="rtl"] {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}

img { max-width: 100%; display: block; }
a  { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: var(--font-arabic);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

[dir="rtl"] .section-label { letter-spacing: 0; }

/* ── Gold divider line ────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

[dir="rtl"] .gold-line { margin-right: 0; margin-left: auto; }
.gold-line.centered { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary-perennia {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-primary-perennia:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline-perennia {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-outline-perennia:hover {
  background: var(--navy);
  color: #fff;
}

/* ── NAV ──────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}

.site-nav.scrolled { box-shadow: var(--shadow); }

.nav-logo img { height: 40px; width: auto; object-fit: contain; }

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  text-decoration: none;
}
.lang-toggle:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #162d4a 0%, #1F3A5F 45%, #243e63 100%);
  display: flex;
  align-items: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Radial glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 55vw; height: 110vh;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold bottom edge line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* ── Hero two-column grid ─────────────────────────────────── */
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: center;
}

/* ── Hero left: text ──────────────────────────────────────── */
.hero-text { color: #fff; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,162,39,0.3);
}

[dir="rtl"] .hero-eyebrow { letter-spacing: 0; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}

[dir="rtl"] .hero-title { font-family: var(--font-arabic); }

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

.btn-hero-primary {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--transition);
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-hero-primary:hover { background: #b8911f; border-color: #b8911f; color: #fff; }

.btn-hero-outline {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── Hero right: logo mark + stats ───────────────────────── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Transparent logo — no box, just the mark floating on dark */
.hero-mark {
  width: 100%;
  max-width: 300px;
  position: relative;
}

.hero-mark::before {
  /* Subtle glow halo behind the logo */
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-mark img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(201,162,39,0.18));
}

/* Stats row below the logo mark */
.hero-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  width: 100%;
  max-width: 300px;
}

.hero-stat {
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 8px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
}

.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
  display: block;
  line-height: 1.3;
}

/* ── SECTIONS generic ─────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--navy); }

.container { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .gold-line { margin-left: auto; margin-right: auto; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
}

.section-dark .section-title,
.section-dark .section-label { color: #fff; }
.section-dark .section-label { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 0.75rem;
  line-height: 1.8;
}

.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Cards grid ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f7c 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

[dir="rtl"] .card-title { font-family: var(--font-arabic); }

.card-list {
  list-style: none;
  padding: 0;
}

.card-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

[dir="rtl"] .card-list li { flex-direction: row-reverse; }

/* ── Solutions section ────────────────────────────────────── */
.solution-card {
  border-top: 3px solid var(--gold);
}

/* ── Industries grid ──────────────────────────────────────── */
.industry-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
  cursor: default;
}

.industry-pill:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.industry-pill-icon {
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
}

.industry-pill-name {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--charcoal);
}

/* ── Products ─────────────────────────────────────────────── */
.product-card {
  background: linear-gradient(135deg, var(--navy) 0%, #243e63 100%);
  border: 1px solid rgba(201,162,39,0.2);
  color: #fff;
}

.product-card .card-title { color: var(--gold); }
.product-card .card-icon { background: rgba(201,162,39,0.15); }
.product-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-top: 0.5rem; }

/* ── Why section ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  transition: all var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold);
}

.why-item i {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.why-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* ── Values strip ─────────────────────────────────────────── */
.values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.value-badge {
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
  transition: all var(--transition);
}

.value-badge:hover {
  background: var(--gold);
  color: #fff;
}

/* ── About page ───────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.vm-block {
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--light-bg);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

[dir="rtl"] .vm-block {
  border-left: none;
  border-right: 3px solid var(--gold);
  border-radius: 8px 0 0 8px;
}

.vm-block h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

[dir="rtl"] .vm-block h4 { letter-spacing: 0; }

.vm-block p { font-size: 0.95rem; color: var(--charcoal); line-height: 1.8; }

/* ── Origin page ──────────────────────────────────────────── */
.origin-feature {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.origin-word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 2rem 0;
}

.origin-word em { color: var(--gold); font-style: normal; }

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), #2a4f7c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-body h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-item-body p {
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-form-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.95rem;
  color: var(--charcoal);
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}

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

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

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f7c 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 700;
}

[dir="rtl"] .page-hero-title { font-family: var(--font-arabic); }

.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-top: 1rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.82rem; color: var(--gold); margin-top: 0.4rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; }
.footer-copy a { color: var(--gold); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Utility ──────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-center { text-align: center; }
[dir="rtl"] .text-center { text-align: center; }

/* ── Scroll progress indicator ────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 72px; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── RTL overrides ────────────────────────────────────────── */
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { direction: rtl; }
[dir="rtl"] .hero-subtitle { margin-right: 0; }
[dir="rtl"] .gold-line { margin-right: 0; }
[dir="rtl"] .about-layout { direction: rtl; }
[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-inner { direction: rtl; }
[dir="rtl"] .card-list li::before { margin-right: 0; margin-left: 0.5rem; }
[dir="rtl"] .values-strip { direction: rtl; }
[dir="rtl"] .section-header { direction: rtl; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    box-shadow: var(--shadow);
  }

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

  [dir="rtl"] .nav-links { flex-direction: column; }

  .section { padding: 4rem 1.25rem; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .cards-grid-2, .cards-grid-3, .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
}

/* ── Flash messages ───────────────────────────────────────── */
.flash-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.flash-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ── CTA strip button ──────────────────────────────────────── */
.cta-strip-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: var(--gold);
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 2px solid #fff;
}
.cta-strip-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Hero responsive fixes ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .hero-mark { max-width: 200px; }
  .hero-stats-col { max-width: 280px; }
}

@media (max-width: 600px) {
  .hero-right { display: none; }
  .hero { padding: 6rem 1.25rem 4rem; }
}
