/* ============================================================
   GenoCraft Consulting — Global Stylesheet
   ============================================================ */

/* ── Google Fonts imported in each HTML <head> ── */

/* ── CSS Variables ── */
:root {
  --color-primary:    #0F6E56;
  --color-accent:     #1D9E75;
  --color-light-teal: #E1F5EE;
  --color-white:      #FFFFFF;
  --color-dark:       #1A1A1A;
  --color-muted:      #5F6B7A;
  --color-border:     #E0EAE6;
  --color-footer:     #0A3D2E;

  --font-heading: 'DM Serif Display', serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::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(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; transition: color var(--transition); }
ul  { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--color-muted); line-height: 1.75; }

.section-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,110,86,0.30);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}
.btn--white-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.75);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn--white-solid {
  background: white;
  color: var(--color-primary);
  border-color: white;
}
.btn--white-solid:hover {
  background: var(--color-light-teal);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.nav-logo svg {
  height: 1.5em;
  width: auto;
  flex-shrink: 0;
}
.nav-logo span { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 8px 13px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  background: var(--color-light-teal);
}
.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 16px 28px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
  color: var(--color-dark);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--color-primary); }
.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
}

/* ── Hero (Home) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 28, 20, 0.58);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 80px 24px;
}
.hero-content h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 660px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--color-primary);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.breadcrumb {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.60);
}
.breadcrumb a {
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { margin: 0 8px; color: rgba(255,255,255,0.35); }

/* ── Stats Bar ── */
.stats-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--color-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* ── Sections ── */
.section          { padding: 96px 0; }
.section--light   { background: var(--color-light-teal); }
.section--dark    { background: var(--color-primary); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 14px; }

/* ── Service Cards (Home overview) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.service-card:hover {
  border-left-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--color-light-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3  { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p   { font-size: 0.9rem; margin-bottom: 18px; }
.learn-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition), color var(--transition);
}
.learn-more:hover { gap: 10px; color: var(--color-accent); }

/* ── Why GenoCraft (2-col) ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-content h2 { margin-bottom: 14px; }
.why-content > p { margin-bottom: 28px; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--color-light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check-item p {
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-light-teal);
  line-height: 0.85;
  display: block;
  margin-bottom: 14px;
}
.testimonial-text {
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-dark);
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.83rem;
  color: var(--color-muted);
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 88px 0;
  background: var(--color-primary);
  text-align: center;
}
.cta-banner h2 {
  color: white;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  background: var(--color-footer);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.82);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo {
  color: white;
  display: block;
  margin-bottom: 14px;
}
.footer-brand .nav-logo span { color: rgba(255,255,255,0.55); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.65;
}
.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: rgba(255,255,255,0.40);
  font-size: 0.82rem;
  margin: 0;
}

/* ── Service Detail (services.html) ── */
.service-detail         { padding: 88px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-grid.reverse .service-detail-img     { order: 2; }
.service-detail-grid.reverse .service-detail-content { order: 1; }

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-img:hover img { transform: scale(1.03); }

.service-detail-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.service-detail-content > p { margin-bottom: 24px; }

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--color-dark);
  line-height: 1.55;
}
.bullet-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 7px;
}

/* ── About — Mission ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.mission-img img { width: 100%; height: 100%; object-fit: cover; }
.mission-content h2 { margin-bottom: 14px; }
.mission-content p  { margin-bottom: 16px; }

/* ── About — Founder ── */
.founder-card {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { font-size: 1.6rem; margin-bottom: 4px; }
.founder-title {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 18px;
  display: block;
}
.founder-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.credential-tag {
  background: var(--color-light-teal);
  color: var(--color-primary);
  font-size: 0.79rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
}

/* ── About — Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--color-light-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 { margin-bottom: 10px; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--color-light-teal);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: 3px;
}
.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--color-primary); }

/* Form */
.contact-form-wrapper {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 {
  margin-bottom: 28px;
  font-size: 1.3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 7px;
}
.form-group label .req { color: var(--color-accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-dark);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235F6B7A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.98rem;
  padding: 15px 28px;
}

/* ── Entrance Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.10s; }
.fade-up-delay-2 { transition-delay: 0.20s; }
.fade-up-delay-3 { transition-delay: 0.30s; }
.fade-up-delay-4 { transition-delay: 0.40s; }
.fade-up-delay-5 { transition-delay: 0.50s; }

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid,
  .mission-grid { gap: 48px; }
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav-links,
  .nav-cta  { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)   { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2)   { border-bottom: 1px solid var(--color-border); }

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

  .why-grid,
  .mission-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-grid.reverse .service-detail-img     { order: unset; }
  .service-detail-grid.reverse .service-detail-content { order: unset; }

  .why-image,
  .mission-img { height: 280px; }
  .service-detail-img { height: 260px; }

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

  .founder-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
  .founder-photo {
    height: 260px;
    max-width: 220px;
    margin: 0 auto;
  }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }

  .hero-content h1 { font-size: 2rem; }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
}
