/* ===========================
   SHAUN GHAVAMI — style.css
   =========================== */

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #111111;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- COLOUR PALETTE --- */
:root {
  --black:    #0a0a0a;
  --black2:   #111111;
  --red:      #c0000e;
  --red2:     #8a0009;
  --red-grad: linear-gradient(135deg, #c0000e 0%, #6b0006 100%);
  --dark-grad: linear-gradient(160deg, #0a0a0a 0%, #1a0005 100%);
  --white:    #ffffff;
  --light-bg: #f4f6fb;
  --dark-text: #111111;
  --grey-text: #666;

  /* keep old names as aliases so existing selectors still work */
  --navy:   #0a0a0a;
  --navy2:  #111111;
  --coral:  #c0000e;
  --coral2: #8a0009;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--red-grad);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(192,0,14,0.35);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,0,14,0.5); }

.btn-nav {
  display: inline-block;
  background: var(--red-grad);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  text-transform: uppercase;
  transition: opacity 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(192,0,14,0.3);
}
.btn-nav:hover { opacity: 0.9; box-shadow: 0 4px 18px rgba(192,0,14,0.5); }

.btn-outline-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s;
  text-transform: uppercase;
}
.btn-outline-white:hover { opacity: 0.9; transform: translateY(-2px); }

/* --- SECTION TITLE --- */
.section-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title.dark { color: var(--dark-text); }
.section-title.light { color: var(--white); }
.accent { color: var(--coral); }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,0,14,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}
.logo-icon {
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.05rem;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  letter-spacing: -1px;
}
.logo-icon .logo-slash {
  position: absolute;
  bottom: 2px; right: 4px;
  font-size: 1.3rem;
  color: var(--coral);
  font-weight: 900;
}
.logo-text {
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--coral); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  position: fixed;
  top: 80px; left: 0; right: 0;
  z-index: 999;
  padding: 16px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link, .mobile-menu .btn-nav {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   LOGOS STRIP
   ======================== */
.logos-strip {
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 48px;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logos-strip-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.logos-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.logo-strip-item:last-child { border-right: none; }
.logo-strip-item img {
  max-height: 36px;
  filter: brightness(0) invert(1) opacity(0.6);
  object-fit: contain;
  transition: filter 0.25s;
}
.logo-strip-item:hover img {
  filter: brightness(0) invert(1) opacity(1);
}
.logo-strip-item .logo-placeholder {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ========================
   ABOUT PREVIEW (HOME)
   ======================== */
.about-preview {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}
.about-preview-img {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  background: #ddd;
  /* placeholder */
  min-height: 500px;
}
.about-preview-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  /* Placeholder: show grey bg if image missing */
}
.about-preview-text {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.about-preview-text p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: #333;
}
.signature { margin: 8px 0; }
.signature img { max-height: 70px; mix-blend-mode: multiply; }

/* ========================
   MARKET SECTION
   ======================== */
.market-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.market-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #3a3a3a;
}
.market-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,0.72);
}
.market-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}
.market-content .section-title { margin-bottom: 1.5rem; }
.market-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 0.9rem;
}
.market-content strong { color: var(--white); }
.market-content em { font-style: italic; color: rgba(255,255,255,0.7); }
.market-quote {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

/* ========================
   PROGRAM SECTION
   ======================== */
.program-section {
  background: var(--black2);
  padding: 80px 48px;
}
.program-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.program-tag {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.program-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.program-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.program-card {
  background: var(--white);
  border-radius: 6px;
  padding: 44px 32px 40px;
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.program-icon { width: 72px; height: 72px; }
.program-icon svg { width: 100%; height: 100%; }
.program-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.program-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #555;
}

/* ========================
   SUCCESS SECTION
   ======================== */
.success-section {
  background: var(--navy);
  padding: 80px 48px;
  text-align: center;
}
.success-section .section-title { margin-bottom: 48px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.video-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #1a0005;
  aspect-ratio: 16/9;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.video-thumb:hover img { opacity: 0.75; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--coral);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.video-thumb:hover .play-btn,
.social-thumb:hover .play-btn { opacity: 1; }

/* ========================
   COACHING CTA
   ======================== */
.coaching-cta {
  background: var(--coral);
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  padding: 80px 80px;
  gap: 60px;
  flex-wrap: wrap;
}
.coaching-left { flex: 1; min-width: 260px; }
.coaching-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.coaching-right { flex: 1; min-width: 280px; }
.coaching-right p {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ========================
   SOCIAL / YOUTUBE SECTION
   ======================== */
.social-section {
  padding: 80px 48px;
  background: var(--black2);
}
.social-section .section-title {
  text-align: center;
  margin-bottom: 56px;
}
.social-section .section-title span {
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  display: block;
  font-size: 0.9em;
}
.social-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.social-video-card { display: flex; flex-direction: column; gap: 10px; }
.social-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #e0e0e0;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.social-thumb img { width: 100%; height: 100%; object-fit: cover; }
.social-thumb .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--coral);
}
.video-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ========================
   COMMUNITY CTA
   ======================== */
.community-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.community-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #222;
}
.community-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
}
.community-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 900px;
  text-align: center;
}
.community-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.community-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0005 60%, #2d0008 100%);
  padding: 56px 80px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo .logo-icon {
  width: 60px; height: 60px;
  font-size: 1.3rem;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--coral); }
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icon {
  color: var(--white);
  width: 28px; height: 28px;
  transition: color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.social-icon:hover { color: var(--coral); transform: translateY(-2px); }
.social-icon svg { width: 100%; height: 100%; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

/* ========================
   PAGE HERO (inner pages)
   ======================== */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.82) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 24px;
}
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.page-hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* ========================
   ABOUT PAGE
   ======================== */
.timeline {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 80px; bottom: 80px;
  left: 50%;
  width: 2px;
  background: rgba(192,0,14,0.2);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item.left { flex-direction: row-reverse; }

.timeline-date {
  flex: 0 0 50%;
  text-align: right;
  padding-right: 60px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.timeline-item.left .timeline-date {
  text-align: left;
  padding-right: 0;
  padding-left: 60px;
  justify-content: flex-start;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  z-index: 1;
}

.timeline-content {
  flex: 0 0 50%;
  padding-left: 60px;
}
.timeline-item.left .timeline-content {
  padding-left: 0;
  padding-right: 60px;
  text-align: right;
}
.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}
.timeline-img {
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  width: 100%;
  max-width: 480px;
}
.timeline-img img {
  width: 100%; height: auto;
  object-fit: cover;
  display: block;
}
/* Image placeholder */
.img-placeholder {
  background: #e8eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 220px;
  border-radius: 6px;
}

/* ========================
   TESTIMONIALS PAGE
   ======================== */
.testimonials-grid-section {
  padding: 80px 48px;
  background: #fff;
}
.testimonials-grid-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #1a0005;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.testimonial-card-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red-grad);
  aspect-ratio: 16/10;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  transition: opacity 0.25s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(192,0,14,0.35);
}
.testimonial-card-more:hover { opacity: 0.9; transform: scale(1.02); }

.testimonial-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--red);
  pointer-events: none;
}
.testimonial-card:hover .play-btn { opacity: 1; }
.testimonial-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.testimonial-card:hover .testimonial-card-img { opacity: 0.75; }
.testimonial-card-title {
  padding: 14px 16px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: var(--navy2);
}

/* LEARN AIRBNB (redirect page placeholder) */
.learn-airbnb-section {
  padding: 120px 48px;
  text-align: center;
  background: var(--light-bg);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.learn-airbnb-section h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.learn-airbnb-section p {
  max-width: 560px;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .navbar { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-preview { flex-direction: column; }
  .about-preview-img,
  .about-preview-text { flex: 0 0 100%; max-width: 100%; }
  .about-preview-text { padding: 48px 32px; }

  .coaching-cta { padding: 60px 32px; gap: 32px; }
  .community-content { padding: 48px 32px; }
  .footer { padding: 48px 32px 20px; }

  .timeline::before { left: 24px; }
  .timeline-item,
  .timeline-item.left { flex-direction: column; padding-left: 56px; }
  .timeline-date,
  .timeline-item.left .timeline-date { flex: none; text-align: left; padding: 0 0 6px 0; justify-content: flex-start; font-size: 0.95rem; }
  .timeline-content,
  .timeline-item.left .timeline-content { flex: none; padding: 0; text-align: left; }
  .timeline-dot { left: 24px; }
  .timeline { padding: 48px 20px; }

  .video-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .program-cards { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .social-videos { grid-template-columns: 1fr; }
  .program-section { padding: 60px 24px; }
  .success-section { padding: 60px 24px; }
  .testimonials-grid-section { padding: 60px 20px; }
  .social-section { padding: 60px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .logos-strip-row { flex-direction: column; }
  .logo-strip-item { border-right: none; border-bottom: 1px solid #e0e3ea; }
}
