/* Castify.fr — cloned from atlas-vr.fr design DNA (dark blue-black + cyan glow) */

:root {
  --bg: #0a0f1c;
  --bg-soft: #0d1424;
  --card: rgba(255,255,255,0.05);
  --card-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.2);
  --text: #ffffff;
  --muted: #d1d5db;
  --muted-2: #9ca3af;
  --primary: #00e5ff;
  --primary-soft: rgba(0,229,255,0.12);
  --primary-glow: rgba(0,229,255,0.5);
  --secondary: #25d366;
  --footer-bg: #000000;
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(10,15,28,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #001017;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(0,229,255,0.35);
  font-size: 1rem;
}
.logo span.accent { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #001017 !important;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}
.nav-cta:hover { background: rgba(0,229,255,0.85); color: #001017 !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Dropdown for extra pages */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav-dropdown > a::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 4px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #0d1424;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-size: 0.88rem;
}
.nav-dropdown-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  line-height: 1.2;
  min-height: 44px;
}
.btn-primary {
  background: var(--primary);
  color: #001017;
  box-shadow: 0 0 25px rgba(0,229,255,0.5);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); background: rgba(0,229,255,0.92); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: var(--border-strong); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-soft); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  padding: 3.5rem 0 3rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0,229,255,0.18), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(37,211,102,0.08), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  color: var(--text);
}
.hero h1 .accent { color: var(--primary); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.hero-features span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-features .check { color: var(--primary); font-weight: 700; }
.hero-image {
  margin: 3rem auto 0;
  max-width: 700px;
  position: relative;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(0,229,255,0.4), rgba(37,211,102,0.3));
  filter: blur(28px);
  opacity: 0.6;
  border-radius: 28px;
  z-index: -1;
}
.hero-image img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
  background: var(--bg);
}
.section-alt {
  padding: 5rem 0;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-head h2 .accent { color: var(--primary); }
.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.price-card.featured {
  background: rgba(0,229,255,0.04);
  border: 2px solid var(--primary);
  box-shadow: 0 0 50px -10px rgba(0,229,255,0.5);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.06) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #001017;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0,229,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.price-head { text-align: center; margin-bottom: 2rem; }
.price-head h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}
.price-amount .num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-amount .per { color: var(--muted); font-size: 0.95rem; }
.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.45rem 0;
}
.price-features .check-pill {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--text);
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
}
.price-card.featured .price-features .check-pill {
  background: rgba(0,229,255,0.2);
  color: var(--primary);
}
.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  background: rgba(255,255,255,0.1);
  color: var(--text);
}
.price-cta:hover { background: rgba(255,255,255,0.2); }
.price-card.featured .price-cta {
  background: var(--primary);
  color: #001017;
}
.price-card.featured .price-cta:hover { background: rgba(0,229,255,0.85); }

/* ===== Trust bar ===== */
.trust-bar {
  background: rgba(10,15,28,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.trust-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.trust-item p { font-size: 0.78rem; color: var(--muted); }

/* ===== Feature cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: rgba(0,229,255,0.3);
  transform: translateY(-3px);
}
.feature-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.feature-card img {
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* ===== Compatibility grid ===== */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.compat-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.7rem;
  text-align: center;
  transition: all 0.25s;
}
.compat-item:hover { background: var(--card-strong); border-color: rgba(0,229,255,0.3); }
.compat-item h3 { color: var(--primary); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.7rem; }
.compat-item p { color: var(--muted); font-size: 0.88rem; }

/* ===== Install steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
  position: relative;
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #001017;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0,229,255,0.4);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.7rem;
}
.testimonial .stars {
  color: #ffc107;
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
}
.testimonial p.quote { color: var(--muted); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.testimonial .author { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.testimonial .author small { display: block; color: var(--muted); font-weight: 400; font-size: 0.82rem; margin-top: 0.2rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active { border-color: rgba(0,229,255,0.4); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  padding: 1.2rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.2s;
  font-weight: 300;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  padding: 0 1.4rem;
}
.faq-item.active .faq-answer { padding-bottom: 1.3rem; }
.faq-answer p { line-height: 1.65; }

/* ===== Forms ===== */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.4rem;
  max-width: 580px;
  margin: 0 auto;
}
.form-wrap h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.4rem; }
.form-wrap p.muted { color: var(--muted); margin-bottom: 1.6rem; font-size: 0.95rem; }
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  min-height: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0,0,0,0.45);
}
.field textarea { min-height: 110px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1rem;
  justify-content: center;
}
.form-trust::before { content: '🔒'; }
.form-message {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
}
.form-message--success { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.form-message--error { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

/* ===== Channels page ===== */
.channels-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s;
}
.cat-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-3px); background: var(--card-strong); }
.cat-card .ico { font-size: 2.2rem; margin-bottom: 0.7rem; }
.cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.cat-card .count { color: var(--primary); font-weight: 800; font-size: 0.95rem; }

/* ===== Legal ===== */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 0;
}
.legal-wrap h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.legal-wrap > p.muted { color: var(--muted); margin-bottom: 2.5rem; font-size: 0.92rem; }
.legal-wrap h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.2rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.legal-wrap h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-wrap p, .legal-wrap li { color: var(--muted); line-height: 1.7; margin-bottom: 0.85rem; font-size: 0.97rem; }
.legal-wrap ul, .legal-wrap ol { padding-left: 1.4rem; }

/* ===== Breadcrumb ===== */
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--primary); }
.footer-about p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-address { font-size: 0.82rem; color: var(--muted-2); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted-2);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom .pay-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}

/* ===== SEO text blocks ===== */
.seo-block {
  max-width: 880px;
  margin: 0 auto;
}
.seo-block h2 { font-size: 1.7rem; margin-top: 2rem; margin-bottom: 0.9rem; color: var(--text); }
.seo-block h2 .accent { color: var(--primary); }
.seo-block h3 { font-size: 1.2rem; margin: 1.4rem 0 0.6rem; color: var(--text); }
.seo-block p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.seo-block strong { color: var(--text); }

/* ===== Download codes ===== */
.codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.code-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem;
  text-align: center;
}
.code-item .name { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.code-item .code {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.code-item .label { font-size: 0.8rem; color: var(--muted); }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #0d1424;
    border-top: 1px solid var(--border);
    padding: 1rem;
    gap: 0.6rem;
  }
  .nav-links.open { display: flex; }
  .nav-dropdown-menu { position: static; box-shadow: none; padding: 0.3rem 0 0.3rem 1rem; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 2.5rem 0; min-height: auto; }
  .section { padding: 3.5rem 0; }
}
