/* ============================================
   SOAR Consulting Group — Shared Stylesheet
   SOARCg.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* === CSS Variables === */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162234;
  --navy-light: #1e3048;
  --orange:     #e8640c;
  --orange-dark:#c4520a;
  --slate:      #4a6278;
  --silver:     #8fa3b1;
  --light:      #f4f1ec;
  --white:      #ffffff;
  --border:     rgba(255,255,255,0.08);
  --shadow:     0 4px 24px rgba(0,0,0,0.25);
  --radius:     4px;
  --max-width:  1160px;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --font-serif: 'Libre Baskerville', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
}

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

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif { font-family: var(--font-serif); }

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-mid {
  background: var(--navy-mid);
  color: var(--white);
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-brand-tag {
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-links a {
  display: block;
  padding: 0.45rem 0.9rem;
  color: var(--silver);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-links .nav-cta a {
  background: var(--orange);
  color: var(--white);
  padding: 0.45rem 1.1rem;
}

.nav-links .nav-cta a:hover {
  background: var(--orange-dark);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.1rem;
  color: var(--silver);
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a2d42 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(232, 100, 12, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(232, 100, 12, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}

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

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,100,12,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

/* === Product Cards (Hero) === */
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.product-card:hover {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}

.product-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(232,100,12,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-body h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.product-card-body p {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.product-card-body a {
  color: var(--orange);
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === Section Headers === */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.label-light {
  color: var(--orange);
}

.section-dark .section-header h2,
.section-mid .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p,
.section-mid .section-header p {
  color: var(--silver);
}

/* === Service Cards === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

.card {
  background: var(--white);
  border: 1px solid #e0ddd6;
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.12);
  transform: translateY(-2px);
}

.card-dark {
  background: var(--navy-light);
  border-color: var(--border);
  color: var(--white);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  background: rgba(232,100,12,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-dark .card-icon {
  background: rgba(232,100,12,0.15);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.card-dark h3 { color: var(--white); }

.card p {
  color: #5a6d7c;
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-dark p { color: var(--silver); }

/* === Stats Bar === */
.stats-bar {
  background: var(--orange);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* === Two-Column Content === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-block h2 {
  margin-bottom: 1.25rem;
}

.content-block p {
  color: #4a5568;
  font-size: 1rem;
}

.section-dark .content-block p,
.section-mid .content-block p {
  color: var(--silver);
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #4a5568;
  border-bottom: 1px solid #e8e4de;
}

.section-dark .feature-list li,
.section-mid .feature-list li {
  color: var(--silver);
  border-bottom-color: var(--border);
}

.feature-list li::before {
  content: '▸';
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* === Info Box === */
.info-box {
  background: rgba(232,100,12,0.08);
  border-left: 4px solid var(--orange);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.info-box p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy);
  font-size: 1.05rem;
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid #e0ddd6;
  border-radius: 8px;
  padding: 2.25rem 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(232,100,12,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.pricing-desc {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0ddd6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #4a5568;
}

.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--slate);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* === Testimonial / Quote === */
.quote-block {
  background: var(--navy-light);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
}

.quote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.quote-source {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.7);
}

/* === Page Hero (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  border-bottom: 3px solid var(--orange);
}

.page-hero .hero-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
}

/* === Visual Panel === */
.visual-panel {
  background: var(--navy-light);
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.visual-panel h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.panel-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.panel-item:last-child { border-bottom: none; }

.panel-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.6;
  width: 32px;
  flex-shrink: 0;
  line-height: 1.3;
}

.panel-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.panel-text span {
  font-size: 0.88rem;
  color: var(--silver);
}

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
}

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #ccc8c0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

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

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

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

.contact-sidebar {
  padding-top: 0.5rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.contact-info-block p,
.contact-info-block a {
  color: #4a5568;
  font-size: 0.95rem;
}

/* === Footer === */
.footer {
  background: #080f18;
  color: var(--silver);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: #5a7080;
  line-height: 1.65;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #5a7080;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #3a4f5e;
}

.footer-bottom a {
  color: #3a4f5e;
}

.footer-bottom a:hover { color: var(--orange); }

/* === Breadcrumb === */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 1rem;
}

.breadcrumb a {
  color: var(--silver);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* === Utility === */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 1.25rem 0;
}

.divider.centered {
  margin: 1.25rem auto;
}

.badge {
  display: inline-block;
  background: rgba(232,100,12,0.12);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(232,100,12,0.3);
  margin-bottom: 0.75rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; border: none; background: rgba(255,255,255,0.04); box-shadow: none; }
  .section { padding: 3.5rem 0; }
}
