/* ─── Variables ───────────────────────────────────────────────────────────── */
:root {
  --green:       #2A5C27;
  --green-dark:  #1a3d18;
  --green-deep:  #0f2410;
  --green-light: #3a7a35;
  --gold:        #C8860A;
  --gold-light:  #e09c10;
  --gold-pale:   #fdf5e0;
  --brown:       #7B5020;
  --brown-light: #a06828;

  --bg:          #ffffff;
  --bg-alt:      #f7f8f5;
  --bg-card:     #ffffff;
  --border:      #e0e5db;
  --text:        #141e12;
  --text-2:      #3d5238;
  --text-3:      #7a9472;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);

  --radius:      8px;
  --radius-lg:   14px;
  --max-w:       1140px;
  --nav-h:       70px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0c1409;
    --bg-alt:      #121a0e;
    --bg-card:     #182014;
    --border:      #263320;
    --text:        #e4eedc;
    --text-2:      #9cba8c;
    --text-3:      #5e7a52;
    --shadow-sm:   0 1px 4px rgba(0,0,0,0.3);
    --shadow-md:   0 4px 24px rgba(0,0,0,0.45);
    --shadow-lg:   0 12px 48px rgba(0,0,0,0.55);
    --gold-pale:   #1e1608;
  }
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Container ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Gold Rule ───────────────────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(200,134,10,0.38);
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(42,92,39,0.3);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  margin-top: 8px;
}
.btn-whatsapp:hover {
  background: #1fbd5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.3);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (prefers-color-scheme: dark) {
  .nav { background: rgba(12,20,9,0.94); }
}
.nav-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-text {
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-links .nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--green-light); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; padding: 0 28px 16px; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-size: 0.95rem; font-weight: 600; color: var(--text-2); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
@media (max-width: 800px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: var(--green-deep);
  padding-top: var(--nav-h);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 35%, rgba(42,92,39,0.7) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(200,134,10,0.12) 0%, transparent 55%),
    linear-gradient(150deg, #0c1a09 0%, #1a3d18 55%, #0c1a09 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 28px 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,134,10,0.15);
  border: 1px solid rgba(200,134,10,0.35);
  color: #e0a830;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-bar {
  position: relative;
  z-index: 1;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

/* ─── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: flex;
  align-items: center;
}
.stat-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.15s;
}
.stat-item:hover { background: var(--bg-alt); }
.stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
@media (prefers-color-scheme: dark) { .stat-val { color: #7ac870; } }
.stat-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 1 0 50%; }
  .stat-divider { display: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { border-bottom: 1px solid var(--border); }
}

/* ─── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--green-deep);
}
@media (prefers-color-scheme: dark) {
  .section-dark { background: #060c04; }
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: #e0a830; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: #ffffff; }
.section-sub {
  font-size: 0.975rem;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── Two-column ──────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

.col-text p {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.8;
}
.col-text p:last-of-type { margin-bottom: 0; }
.light-text {
  color: rgba(255,255,255,0.65) !important;
  margin-bottom: 28px !important;
}

/* ─── About / Ship Card ───────────────────────────────────────────────────── */
.about-ship {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ship-label {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
}
.ship-body { padding: 24px; }
.ship-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.ship-row:last-of-type { margin-bottom: 20px; }
.ship-cell {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.15s;
}
.ship-cell:hover { border-color: var(--gold); }
.ship-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
@media (prefers-color-scheme: dark) { .ship-num { color: #7ac870; } }
.ship-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ship-note {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ─── Products ────────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Tier color theming */
.tier-core { border-top: 3px solid var(--brown); }
.tier-core:hover { border-color: var(--brown-light); }
.tier-plus { border-top: 4px solid var(--gold); }
.tier-premium { border-top: 3px solid var(--green); }
.tier-premium:hover { border-color: var(--green-light); }

.featured-card {
  background: var(--gold-pale);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
@media (prefers-color-scheme: dark) {
  .featured-card { background: #1e1608; border-color: var(--gold); }
}

.tier-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier-core .tier-label { color: var(--brown); }
.tier-plus .tier-label { color: var(--gold); }
.tier-premium .tier-label { color: var(--green-light); }
@media (prefers-color-scheme: dark) { .tier-premium .tier-label { color: #7ac870; } }

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.product-card > p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.product-specs {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-specs li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.tier-core .product-specs li::before { background: var(--brown); }
.tier-premium .product-specs li::before { background: var(--green-light); }

.products-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-3);
}
.products-note a {
  color: var(--green-light);
  font-weight: 700;
  margin-left: 4px;
  transition: color 0.15s;
}
.products-note a:hover { color: var(--gold); }
@media (prefers-color-scheme: dark) { .products-note a { color: #7ac870; } }

/* ─── Pillars ─────────────────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar-featured {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}
.pillar-featured .pillar-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
@media (prefers-color-scheme: dark) { .pillar-icon { color: #7ac870; } }

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.pillar-featured h3 { color: #fff; }

.pillar-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.pillar-featured .pillar-rule { background: rgba(255,255,255,0.5); }

.pillar-card > p:first-of-type {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pillar-featured > p:first-of-type { color: rgba(255,255,255,0.7); }

.pillar-body {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
}
.pillar-featured .pillar-body { color: rgba(255,255,255,0.75); }

/* ─── Contact ─────────────────────────────────────────────────────────────── */
.contact-layout { align-items: start; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: border-color 0.15s;
}
.contact-link:hover { border-color: rgba(200,134,10,0.5); }
.contact-link-icon { font-size: 1.2rem; width: 32px; text-align: center; flex-shrink: 0; }
.contact-link-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.contact-link-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ─── Contact Form ────────────────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); opacity: 0.7; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(42,92,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%237a9472' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-note { text-align: center; font-size: 0.77rem; color: var(--text-3); margin-top: 12px; }
@media (max-width: 540px) { .contact-form { padding: 28px 20px; } }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.6);
}
@media (prefers-color-scheme: dark) { .footer { background: #050c03; } }

.footer-gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-left { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo { height: 36px; width: auto; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-brand { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; color: #fff; margin-bottom: 2px; }
.footer-brand-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 14px; }
.footer-left p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-col-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; }
.footer-bottom .container { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ─── Scroll animations ───────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.product-card:nth-child(1) { transition-delay: 0.05s; }
.product-card:nth-child(2) { transition-delay: 0.12s; }
.product-card:nth-child(3) { transition-delay: 0.20s; }
.pillar-card:nth-child(1) { transition-delay: 0.05s; }
.pillar-card:nth-child(2) { transition-delay: 0.12s; }
.pillar-card:nth-child(3) { transition-delay: 0.20s; }

/* ─── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .section { padding: 72px 0; }
  .hero-content { padding: 56px 28px 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
