/* ============================================================
   M & L Consulting — Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #122B52;
  --navy-light:  #1a3a68;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --white:       #FFFFFF;
  --off-white:   #F7F8FC;
  --surface:     #FFFFFF;
  --border:      #E4E7EF;
  --text-primary: #0D1B2A;
  --text-secondary: #566580;
  --text-muted:  #8A96A8;
  --success:     #22C55E;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 4px rgba(11,31,58,.08);
  --shadow-md:   0 4px 24px rgba(11,31,58,.10);
  --shadow-lg:   0 12px 48px rgba(11,31,58,.16);
  --shadow-xl:   0 24px 64px rgba(11,31,58,.22);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --max-width:   1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.section-eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 56ch;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section-header .section-subtitle { margin-inline: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.875rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-block: 1.125rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav-wrapper.scrolled {
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding-block: .75rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  transition: height var(--transition);
}
.nav-wrapper.scrolled .nav-logo-img { height: 44px; }

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

.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  padding: .55rem 1.375rem;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0f3460 100%);
  overflow: hidden;
  padding-top: 100px;
}

/* Geometric background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  background: var(--gold);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 350px; height: 350px; bottom: -100px; left: -80px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 55%; opacity: .04; }

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero-badge {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,.72);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.11); }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat-label {
  display: block;
  margin-top: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .02em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.6); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  transition: height .4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .625rem;
}
.service-card p {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; }
.service-link span { font-size: 1.1em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-shadow: var(--shadow-xl);
}
.about-logo {
  max-width: 220px;
  filter: brightness(0) invert(1);
}

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-accent-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-accent-label {
  font-size: .8125rem;
  font-weight: 600;
  margin-top: .25rem;
  display: block;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.about-pillars li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  margin-top: 2px;
}
.about-pillars strong {
  display: block;
  font-size: .9375rem;
  color: var(--navy);
  margin-bottom: .15rem;
}
.about-pillars span { font-size: .875rem; color: var(--text-secondary); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
}

.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,.65); }

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

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,168,76,.4);
}
.why-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
}
.why-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: .05em; }
.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9375rem; color: var(--navy); }
.testimonial-author span { font-size: .8125rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  padding: 10px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-details strong { display: block; font-size: .875rem; color: var(--text-muted); margin-bottom: .2rem; }
.contact-details a, .contact-details span { font-size: .9375rem; color: var(--text-primary); line-height: 1.55; }
.contact-details a:hover { color: var(--gold); }

/* ---------- Form ---------- */
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  font-size: .9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23566580' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-success {
  text-align: center;
  color: var(--success);
  font-weight: 600;
  font-size: .9375rem;
  padding: .75rem;
  background: rgba(34,197,94,.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34,197,94,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: clamp(3rem, 6vw, 5rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 28ch; }

.footer-socials { display: flex; gap: .75rem; margin-top: 1.35rem; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-links h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a, .footer-links span {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-block: 1.5rem;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .875rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,.35);
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    padding-block: .875rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 1rem;
  }
  .nav-link--cta {
    margin-top: 1rem;
    text-align: center;
    border: none;
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .testimonial-card:last-child { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-accent-card { position: static; margin-top: 1rem; display: inline-flex; gap: .75rem; align-items: center; width: fit-content; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}
