/* ==========================================================================
   SmartERP – styles.css
   Design system: navy corporate + accent cyan, mobile-first
   ========================================================================== */

:root {
  --navy: #0B1F3A;
  --navy-light: #12294B;
  --charcoal: #1E293B;
  --text: #334155;
  --text-muted: #64748B;
  --accent: #06B6D4;
  --accent-hover: #0891B2;
  --accent-soft: #E0F7FB;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.14);
  --radius: 12px;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-hover); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.25rem; }

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

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.15rem); }
h3 { font-size: 1.2rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section { padding: 4.5rem 0; }

.section-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-head p { margin-top: 0.75rem; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); }

.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}
.logo:hover { text-decoration: none; }
.logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.logo .logo-accent { color: var(--accent); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
}

.main-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:not(.btn):hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

.nav-cta { padding: 0.55rem 1.25rem; font-size: 0.9rem; }

/* ---- Dropdown "Soluții" ---- */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown.is-active > .nav-dropdown-toggle {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-caret { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.2s; }
.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }

@media (min-width: 861px) {
  .nav-dropdown:hover .nav-caret { transform: rotate(180deg); }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    list-style: none;
    padding: 0.6rem;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }
  /* Punte invizibilă între buton și meniu, ca hover-ul să nu se piardă */
  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.9rem;
    left: 0;
    right: 0;
    height: 0.9rem;
  }
  .nav-dropdown:hover > .nav-dropdown-menu,
  .nav-dropdown:focus-within > .nav-dropdown-menu,
  .nav-dropdown.is-open > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .main-nav .nav-dropdown-menu a:not(.btn) {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    border-bottom: 0;
  }
  .main-nav .nav-dropdown-menu a:not(.btn):hover,
  .main-nav .nav-dropdown-menu a[aria-current="page"] {
    background: rgba(6, 182, 212, 0.14);
    border-bottom: 0;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 55%, #0E3A5C 100%);
  color: var(--white);
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero .container { position: relative; }

.hero h1 { color: var(--white); max-width: 760px; }
.hero h1 .accent { color: var(--accent); }

.hero-lead {
  max-width: 620px;
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}
.hero-badges svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }

/* Hero compact – pagini interioare */
.hero-page { padding: 4rem 0; }
.hero-page .hero-lead { font-size: 1.05rem; }

/* ---- Cards ---- */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--accent-soft);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--accent-hover); }

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}
.card-link::after { content: "→"; transition: transform 0.2s; }
.card-link:hover::after { transform: translateX(4px); }

/* Card-serviciu ca link întreg */
a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; }

/* ---- Alternating sections ---- */
.section-alt { background: var(--bg); }

/* ---- Stats band ---- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label { margin-top: 0.4rem; font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* ---- Checklist / benefit list ---- */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.checklist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent-hover);
}
.checklist strong { color: var(--navy); }

/* ---- Split layout (text + panel) ---- */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.split-reverse > :first-child { order: 2; }
}
.split h2 { margin-bottom: 1rem; }
.split p + p { margin-top: 0.9rem; }
.split .checklist { margin-top: 1.5rem; }

.panel {
  background: linear-gradient(150deg, var(--navy) 0%, #0E3A5C 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.panel h3 { color: var(--white); margin-bottom: 1.25rem; }
.panel .checklist svg { stroke: var(--accent); }
.panel .checklist strong { color: var(--white); }
.panel .checklist li { color: rgba(255,255,255,0.85); }

/* ---- Process steps ---- */
.steps { list-style: none; padding: 0; display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); } }
.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.steps p { font-size: 0.92rem; color: var(--text-muted); }

/* ---- Testimonial ---- */
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}
.testimonial figcaption { margin-top: 1.25rem; color: var(--text-muted); font-size: 0.95rem; }
.testimonial figcaption strong { color: var(--navy); display: block; font-style: normal; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0E3A5C 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band h2 { color: var(--white); max-width: 640px; margin-inline: auto; }
.cta-band p { max-width: 560px; margin: 1rem auto 0; color: rgba(255,255,255,0.85); }
.cta-band .hero-actions { justify-content: center; }

/* ---- Contact ---- */
.contact-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-layout { grid-template-columns: 1.2fr 1fr; } }

.contact-info { display: grid; gap: 1.25rem; align-content: start; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.contact-item svg { width: 24px; height: 24px; stroke: var(--accent-hover); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { color: var(--navy); display: block; margin-bottom: 0.15rem; }
.contact-item a { font-weight: 500; }

.quick-contact { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 0.5rem; }
.btn-whatsapp { background: #25D366; color: #08351A; }
.btn-whatsapp:hover { background: #1EBE5B; color: #08351A; }
.btn-whatsapp svg, .btn-phone svg { width: 19px; height: 19px; }

/* ---- Form ---- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group .error-message {
  display: none;
  font-size: 0.8rem;
  color: #DC2626;
  margin-top: 0.3rem;
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: #DC2626; }
.form-group.has-error .error-message { display: block; }

.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.9rem; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
}
.form-status.success { display: block; background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-status.error { display: block; background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 0;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  /* brandul (logo + descriere) pe rând propriu, linkurile 2×2 dedesubt */
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.3fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}
.footer-grid .logo { margin-bottom: 1rem; }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-grid a { color: rgba(255, 255, 255, 0.78); }
.footer-grid a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ---- Content images ---- */
.img-rounded {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.card-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1.1rem;
}

/* ---- Hero în două coloane (pagini soluții) ---- */
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-visual svg { width: 100%; height: auto; max-width: 460px; margin-inline: auto; }
@media (max-width: 879px) {
  .hero-visual { display: none; }
}

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger – întârzieri pentru carduri/pași */
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---- Animații SVG (pornesc doar sub .is-visible, via IntersectionObserver) ---- */
@keyframes anim-scan   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(26px); } }
@keyframes anim-float  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes anim-dash   { to { stroke-dashoffset: 0; } }
@keyframes anim-pulse  { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes anim-pop    { from { transform: translateY(-10px) scale(0); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes anim-grow   { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes anim-orbit  { to { transform: rotate(360deg); } }
@keyframes anim-blink  { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.anim-scan, .anim-float, .anim-pulse, .anim-pop, .anim-grow, .anim-orbit { transform-box: fill-box; }
.anim-pop { opacity: 0; }
.anim-grow { transform: scaleY(0); transform-origin: bottom; }
.anim-draw { stroke-dasharray: 300; stroke-dashoffset: 300; }

.is-visible .anim-scan   { animation: anim-scan 2.4s ease-in-out infinite; }
.is-visible .anim-float  { animation: anim-float 4s ease-in-out infinite; }
.is-visible .anim-draw   { animation: anim-dash 1.6s ease forwards; }
.is-visible .anim-pulse  { transform-origin: center; animation: anim-pulse 2.2s ease-out infinite; }
.is-visible .anim-pop    { animation: anim-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.is-visible .anim-grow   { animation: anim-grow 0.9s ease both; }
.is-visible .anim-orbit  { transform-origin: center; animation: anim-orbit 14s linear infinite; }
.is-visible .anim-blink  { animation: anim-blink 1.8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .whatsapp-float:hover { transform: none; }
  [class*="anim-"] {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .nav-dropdown-menu, .nav-caret { transition: none; }
}

/* ---- Responsive nav ---- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .main-nav.is-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.5rem;
  }
  .main-nav ul li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .main-nav ul li:last-child { border-bottom: 0; padding-top: 1rem; }
  .main-nav a:not(.btn) { display: block; padding: 0.9rem 0; border-bottom: 0; }
  .nav-cta { width: 100%; justify-content: center; }

  /* Dropdown "Soluții" – acordeon pe mobil */
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 0.9rem 0; }
  .nav-dropdown-menu { display: none; list-style: none; padding: 0 0 0.5rem 0.9rem; }
  .nav-dropdown.is-open > .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li { border-bottom: 0 !important; }

  section { padding: 3.25rem 0; }
  .hero { padding: 3.75rem 0 4.25rem; }
}
