/* ==========================================================================
   M2GL SOLUTIONS — French B2B Engineering Aesthetic
   Palette: cream #faf8f5, dark #1e293b, accent #8b5e3c, stone #8b7e74, border #e8e4df
   Typography: DM Serif Display (headings), DM Sans (body)
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1e293b;
  background-color: #faf8f5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #8b5e3c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6b4530;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: #1e293b;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.text-stone {
  color: #8b7e74;
}

.text-accent {
  color: #8b5e3c;
}

/* --- Section Label (tiny uppercase) --- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b7e74;
  margin-bottom: 12px;
  display: block;
}

/* --- Section Divider --- */
.section-divider {
  width: 40px;
  height: 1px;
  background-color: #8b5e3c;
  margin: 16px 0 32px 0;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
}

.section--cream {
  background-color: #faf8f5;
}

.section--warm {
  background-color: #f5f0eb;
}

.section--white {
  background-color: #ffffff;
}

.section--dark {
  background-color: #2c2320;
  color: #faf8f5;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: #faf8f5;
}

.section--dark .section-label {
  color: #b8a99e;
}

.section--footer {
  background-color: #1e1a17;
  color: #b8a99e;
  padding: 60px 0 0;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: 0 1px 0 #e8e4df;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #1e293b;
  white-space: nowrap;
}

.navbar__logo span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #8b7e74;
  margin-left: 4px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  color: #4a4a4a;
  transition: color 0.3s ease;
  position: relative;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: #8b5e3c;
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #8b5e3c;
}

.navbar__cta {
  font-size: 0.85rem;
  color: #8b5e3c !important;
  border: 1px solid #8b5e3c;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.navbar__cta:hover {
  background-color: #8b5e3c;
  color: #ffffff !important;
}

/* Language switch */
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #8b7e74;
  margin-left: 8px;
}

.navbar__lang img {
  width: 18px;
  height: 13px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.navbar__lang:hover img {
  opacity: 1;
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1e293b;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e4df;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  font-size: 1rem;
  color: #4a4a4a;
  padding: 8px 0;
}

.navbar__mobile a:hover {
  color: #8b5e3c;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: 72px;
  background-color: #faf8f5;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero__content {
  max-width: 640px;
}

.hero__content h1 {
  margin-bottom: 24px;
}

.hero__content h1 .accent {
  color: #8b5e3c;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #8b7e74;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.hero__decoration .line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #8b5e3c, transparent);
}

.hero__decoration .stat {
  text-align: center;
}

.hero__decoration .stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: #8b5e3c;
  line-height: 1;
}

.hero__decoration .stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b7e74;
  margin-top: 4px;
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
  padding-top: 72px;
  background-color: #faf8f5;
  padding-bottom: 0;
}

.page-hero__inner {
  padding: 80px 0 60px;
  border-bottom: 1px solid #e8e4df;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: #8b7e74;
  max-width: 560px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: #8b5e3c;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #6b4530;
  color: #ffffff;
}

.btn--outline {
  background-color: transparent;
  color: #8b5e3c;
  border: 1px solid #8b5e3c;
}

.btn--outline:hover {
  background-color: #8b5e3c;
  color: #ffffff;
}

.btn--cream {
  background-color: #faf8f5;
  color: #2c2320;
}

.btn--cream:hover {
  background-color: #ffffff;
  color: #2c2320;
}

.btn--large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   À PROPOS (About) — 2-col grid
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-prose p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.domain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.domain-card {
  border: 1px solid #e8e4df;
  padding: 28px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.domain-card:hover {
  border-color: #8b5e3c;
  box-shadow: 0 4px 20px rgba(139, 94, 60, 0.08);
}

.domain-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #8b5e3c;
}

.domain-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.domain-card p {
  font-size: 0.85rem;
  color: #8b7e74;
  margin-bottom: 0;
}

/* ==========================================================================
   RÉFÉRENCES (Project Cards)
   ========================================================================== */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ref-card {
  background: #ffffff;
  padding: 36px 32px;
  border: 1px solid #e8e4df;
  transition: box-shadow 0.3s ease;
}

.ref-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ref-card__cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b5e3c;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.ref-card h3 {
  margin-bottom: 12px;
}

.ref-card p {
  font-size: 0.9rem;
  color: #8b7e74;
  margin-bottom: 0;
}

/* ==========================================================================
   POURQUOI NOUS — 3-column numbered
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why-col {
  padding: 0 40px;
  border-right: 1px solid #e8e4df;
}

.why-col:first-child {
  padding-left: 0;
}

.why-col:last-child {
  padding-right: 0;
  border-right: none;
}

.why-col__number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: #e8e4df;
  line-height: 1;
  margin-bottom: 20px;
}

.why-col h3 {
  margin-bottom: 12px;
}

.why-col p {
  font-size: 0.92rem;
  color: #8b7e74;
  margin-bottom: 0;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  color: #faf8f5;
  margin-bottom: 12px;
}

.cta-band p {
  color: #b8a99e;
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e8e4df;
  padding: 40px 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: #8b5e3c;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faf8f5;
  border-radius: 2px;
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: #8b5e3c;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: #8b7e74;
  margin-bottom: 0;
}

/* ==========================================================================
   METHODOLOGY (RAD)
   ========================================================================== */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.method-step {
  position: relative;
}

.method-step__progress {
  width: 100%;
  height: 3px;
  background-color: #e8e4df;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.method-step__progress-fill {
  height: 100%;
  background-color: #8b5e3c;
  transition: width 1s ease;
}

.method-step__number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #e8e4df;
  margin-bottom: 12px;
}

.method-step h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.method-step p {
  font-size: 0.88rem;
  color: #8b7e74;
  margin-bottom: 0;
}

.method-step__pct {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #8b5e3c;
  margin-top: 16px;
}

/* ==========================================================================
   PROJECTS / PORTFOLIO
   ========================================================================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: #ffffff;
  border: 1px solid #e8e4df;
  padding: 40px 36px;
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.project-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.project-card__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.project-card__cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b5e3c;
  font-weight: 500;
}

.project-card h3 {
  margin-bottom: 12px;
}

.project-card ul {
  list-style: none;
  padding: 0;
}

.project-card ul li {
  font-size: 0.9rem;
  color: #8b7e74;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.project-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8b5e3c;
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #e8e4df;
  padding: 48px 36px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.partner-card__logo {
  height: 48px;
  object-fit: contain;
  margin: 0 auto 28px;
}

.partner-card h3 {
  margin-bottom: 12px;
}

.partner-card p {
  font-size: 0.9rem;
  color: #8b7e74;
  margin-bottom: 0;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  margin-bottom: 28px;
}

.contact-info__item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-info__item p {
  color: #8b7e74;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.contact-info__item a {
  color: #8b5e3c;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: #8b7e74;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e4df;
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #1e293b;
  transition: border-color 0.3s ease;
  border-radius: 2px;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8b5e3c;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-message {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #8b5e3c;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #faf8f5;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #8b7e74;
  max-width: 320px;
}

.section--footer h4 {
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #faf8f5;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: #8b7e74;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #faf8f5;
}

.footer__contact-item {
  font-size: 0.88rem;
  color: #8b7e74;
  margin-bottom: 8px;
}

.footer__contact-item a {
  color: #8b7e74;
}

.footer__contact-item a:hover {
  color: #faf8f5;
}

.footer__legal {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b5e54;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
}

.footer__legal-links a {
  color: #6b5e54;
  transition: color 0.3s ease;
}

.footer__legal-links a:hover {
  color: #b8a99e;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content code {
  font-size: 0.85rem;
  background: #ffffff;
  border: 1px solid #e8e4df;
  padding: 2px 6px;
  border-radius: 2px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e8e4df;
}

.legal-table th {
  background: #ffffff;
  font-weight: 500;
  color: #1e293b;
}

.legal-table td {
  color: #4a4a4a;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e1a17;
  color: #b8a99e;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner__text a {
  color: #faf8f5;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  padding: 10px 20px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

.cookie-banner__btn--accept {
  background: #8b5e3c;
  color: #ffffff;
}

.cookie-banner__btn--refuse {
  background: transparent;
  color: #b8a99e;
  border: 1px solid #4a4040;
}

/* ==========================================================================
   CONSENT CHECKBOX
   ========================================================================== */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.consent-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: #8b5e3c;
}

.consent-group label {
  font-size: 0.82rem;
  color: #8b7e74;
  line-height: 1.5;
  margin-bottom: 0;
  cursor: pointer;
}

.consent-group label a {
  color: #8b5e3c;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FADE-IN ANIMATION
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ref-grid,
  .services-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-col {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #e8e4df;
    padding-bottom: 40px;
  }

  .why-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .hero__decoration {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__cta.desktop-only {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero__inner {
    padding: 60px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

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

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

  .method-steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .domain-cards {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero__inner {
    padding: 60px 0 40px;
  }

  .cta-band {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}
