/* ==========================================================
   Flirtist landing — 1:1 clone styles (vanilla CSS)
   ========================================================== */

:root {
  --brand-primary: #8244A2;
  --brand-text: #3B2B5B;
  --brand-surface: #F4EFF9;
  --brand-bg: #F9F9F9;
  --brand-dark: #0B0B0B;
  --coral: #FF7C7C;
  --pink: #F41C5D;
  --cta-grad: linear-gradient(135deg, #FF7C7C 0%, #F41C5D 100%);
  --navy: #261941;
  --navy-overlay: rgba(38,25,65,0.6);
  --near-black-2: #080403;
  --check-green: #B5FFA6;
  --cross-red: #F23746;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #212121;
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
h1, h2, h3, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.br-mobile { display: none; }
@media (max-width: 767px) { .br-mobile { display: inline; } }

/* ========== Page wrapper ========== */
.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 17px 20px;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 767px) { .page { padding: 8px; } }

/* ========== Buttons / CTAs ========== */
.cta-gradient {
  display: inline-block;
  border-radius: 32px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding: 13px 26px;
  background: var(--cta-grad);
  transition: transform 0.15s ease;
}
.cta-gradient:hover { transform: translateY(-1px); }
@media (max-width: 767px) {
  .cta-gradient { font-size: 16px; padding: 10px 24px; }
}
.btn-white {
  display: inline-block; background: #fff; color: #000;
  border-radius: 24px; padding: 10px 20px;
  font-weight: 500; text-align: center;
}
.btn-black {
  display: inline-block; background: #000; color: #fff;
  border-radius: 24px; padding: 10px 20px;
  font-weight: 500; text-align: center;
}

/* ============================================================
   POPUP MODAL
   ============================================================ */
.popup-overlay {
  position: fixed; inset: 0;
  background: var(--navy-overlay);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 20px 17px;
  z-index: 100;
}
.popup-overlay[aria-hidden="true"] { display: none; }
.popup-card {
  position: relative;
  color: #fff;
  padding: 80px 111px 62px;
  border-radius: 24px;
  width: 100%; max-width: 1090px; min-height: 540px;
  background: #3B2B5B url('/assets/img/homepage-popup-bg.webp') center/cover no-repeat;
  display: flex; justify-content: flex-end;
}
@media (max-width: 767px) {
  .popup-card {
    padding: 16px; min-height: 600px;
    flex-direction: column;
    background-image: url('/assets/img/homepage-popup-bg-mob.webp');
  }
}
.popup-close { position: absolute; top: 32px; right: 32px; }
@media (max-width: 767px) { .popup-close { top: 24px; right: 24px; } }
.popup-inner { max-width: 500px; }
@media (max-width: 767px) { .popup-inner { max-width: 100%; } }
.popup-headings p {
  font-size: 48px; line-height: 48px; font-weight: 700;
  margin-bottom: 24px;
}
.popup-headings .popup-sub {
  font-size: 24px; line-height: 40px; font-weight: 400;
  max-width: 410px;
}
@media (max-width: 767px) {
  .popup-headings p { font-size: 28px; line-height: 32px; margin-bottom: 16px; }
  .popup-headings .popup-sub { font-size: 18px; line-height: 28px; max-width: 100%; }
}
.popup-cta {
  display: inline-block;
  background: #000; color: #fff;
  font-size: 20px; font-weight: 700;
  width: 100%; max-width: 270px;
  height: 54px; line-height: 54px;
  text-align: center; border-radius: 32px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .popup-cta { max-width: 100%; margin-top: 24px; font-size: 18px; }
}

/* ============================================================
   HERO CARD
   ============================================================ */
.hero-card {
  border-radius: 24px;
  background: #3B2B5B url('/assets/img/homepage-bg-image.webp') center/cover no-repeat;
}
@media (max-width: 500px) {
  .hero-card { background-image: url('/assets/img/homepage-bg-image-mobile.webp'); }
}
.hero-gradient {
  padding-bottom: 98px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(38,25,65,0.15) 0%, rgba(38,25,65,0.55) 100%);
}
@media (max-width: 767px) { .hero-gradient { padding-bottom: 104px; } }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; }
.nav-desktop { display: flex; }
.nav-mobile { display: none; padding: 20px 21px; }
@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: flex; }
}
.nav-logo img { height: 36px; width: auto; }
@media (max-width: 767px) { .nav-logo img { height: 32px; } }
.nav-links {
  display: flex; gap: 36px;
  font-weight: 500; font-size: 16px; color: #fff;
  padding: 0 40px;
}
@media (max-width: 1005px) { .nav-links { font-size: 13px; gap: 20px; padding: 0 20px; } }
.nav-cta {
  background: #fff; color: #000;
  border-radius: 32px; padding: 10px 20px;
  font-weight: 500;
}
.nav-burger {
  background: #fff;
  padding: 14px 16px; border-radius: 10px;
  display: flex; flex-direction: column; gap: 3px;
}
.nav-burger span { display: block; width: 18px; height: 2px; background: #000; }

.hero-content { padding: 67px 80px 0; }
@media (max-width: 767px) {
  .hero-content {
    padding: 11px 16px 0;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 24px;
  }
}
.hero-content h1 {
  font-weight: 600;
  font-size: 64px; line-height: 74px;
  color: #fff; max-width: 612px;
}
.hero-content p {
  font-weight: 400; font-size: 18px; color: #fff;
  margin-top: 32px; max-width: 460px;
}
.hero-content .cta-gradient { margin-top: 61px; }
@media (max-width: 767px) {
  .hero-content h1 { font-size: 40px; line-height: 50px; }
  .hero-content p { font-size: 16px; margin-top: 0; }
  .hero-content .cta-gradient { margin-top: 0; }
}

/* ============================================================
   OFF-CANVAS MENU
   ============================================================ */
.offcanvas {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.offcanvas[aria-hidden="false"] {
  transform: translateY(0);
  pointer-events: auto;
}
.offcanvas-card {
  margin: 7px;
  background: var(--navy);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  max-height: calc(100vh - 14px);
  overflow-y: auto;
}
.offcanvas-head {
  display: flex; justify-content: space-between; align-items: center;
}
.offcanvas-close {
  background: #fff;
  padding: 14px 16px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.offcanvas-links {
  padding-top: 40px;
  display: flex; flex-direction: column; gap: 40px;
}
.offcanvas-links a { font-weight: 500; font-size: 24px; }
.offcanvas-legal {
  padding-top: 60px;
  display: flex; flex-direction: column; gap: 24px;
}
.offcanvas-legal a { font-size: 14px; }
.offcanvas-follow { padding-top: 60px; }
.offcanvas-follow p { font-size: 16px; font-weight: 500; padding-bottom: 16px; }
.offcanvas-social { display: flex; gap: 24px; }
.offcanvas-ctas {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 60px 0 40px;
}
@media (max-width: 350px) { .offcanvas-ctas { grid-template-columns: 1fr; } }

/* ============================================================
   CUT THE CRINGE
   ============================================================ */
.cringe-section {
  text-align: center;
  padding: 80px 0;
  max-width: 870px;
  margin: 0 auto;
}
.cringe-section h2 { font-size: 40px; font-weight: 600; }
.cringe-section p { font-size: 18px; padding-top: 16px; }
@media (max-width: 767px) {
  .cringe-section { padding: 40px 18px; }
  .cringe-section h2 { font-size: 24px; }
  .cringe-section p { font-size: 14px; }
}

/* ============================================================
   ULTIMATE CHEAT CODE (dark card)
   ============================================================ */
.cheat-code {
  background: var(--brand-dark);
  border-radius: 24px;
  padding: 81px 40px 97px;
}
.cheat-code h2 {
  font-weight: 600; font-size: 40px;
  max-width: 870px;
  padding-bottom: 77px;
  color: #fff; text-align: center;
  margin: 0 auto;
}
.cheat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cheat-card {
  border-radius: 20px;
  overflow: hidden;
  background: #111 no-repeat center/cover;
  height: 455px;
  padding: 0 27px 65px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cheat-title {
  color: #fff;
  font-size: 32px; line-height: 42px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 16px;
  max-width: 250px;
  margin: 0 auto;
}
.cheat-body { color: #fff; text-align: center; }
@media (max-width: 767px) {
  .cheat-code { padding: 40px 16px 45px; }
  .cheat-code h2 { font-size: 24px; padding-bottom: 43px; }
  .cheat-grid { grid-template-columns: 1fr; gap: 15px; }
  .cheat-card { height: 400px; padding: 0 24px 55px; }
  .cheat-title { font-size: 24px; line-height: 34px; }
  .cheat-body { font-size: 14px; }
}

/* ============================================================
   HOW IT WORKS (sticky cards)
   ============================================================ */
.how-it-works { padding-top: 74px; }
.how-it-works > h2 {
  font-size: 40px; font-weight: 600;
  text-align: center; padding-bottom: 76px;
}
.how-stack {
  display: flex; flex-direction: column; gap: 20px;
}
.how-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex; justify-content: space-between;
  position: sticky; top: 100px;
}
.how-left { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.how-head { display: flex; gap: 16px; align-items: center; }
.how-badge {
  background: var(--brand-surface);
  border-radius: 50%;
  font-size: 24px; line-height: 24px;
  color: var(--brand-text);
  width: 47px; height: 47px;
  display: flex; align-items: center; justify-content: center;
}
.how-title { font-weight: 500; font-size: 32px; line-height: 42px; }
.how-body { max-width: 533px; }
.how-lead { font-weight: 500; font-size: 24px; line-height: 34px; }
.how-bullets {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 16px;
}
.how-bullets li { display: flex; gap: 8px; align-items: center; }
.how-bullets img { width: 16px; height: 16px; }
.how-body .cta-gradient { margin-top: 40px; }
.how-right {
  margin-left: 30px;
  height: 530px; width: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: #EEE no-repeat center/cover;
  padding: 0 30px 40px;
  display: flex; align-items: flex-end;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .how-it-works { padding-top: 40px; }
  .how-it-works > h2 { font-size: 24px; padding-bottom: 20px; }
  .how-card { flex-direction: column; padding: 16px; position: static; }
  .how-left { gap: 15px; }
  .how-title { font-size: 20px; }
  .how-lead { font-size: 16px; line-height: 24px; }
  .how-bullets li { font-size: 14px; }
  .how-body .cta-gradient { margin-top: 20px; }
  .how-right { margin-left: 0; margin-top: 20px; width: 100%; height: 270px; padding: 18px; }
}

/* AI inset (card 2) */
.ai-badge {
  display: inline-block;
  border-radius: 32px;
  font-weight: 500; font-size: 12px;
  color: #fff;
  padding: 4px 12px;
  background: var(--cta-grad);
}
.ai-grid {
  background: #F2F1FF;
  padding: 25px;
  border-radius: 20px;
  margin-top: 15px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 25px 10px;
  width: fit-content;
}
.ai-item { display: flex; gap: 12px; align-items: flex-start; }
.ai-item img { width: 14px; padding-top: 2px; }
.ai-label { font-size: 10px; }
.ai-value { font-size: 10px; font-weight: 500; margin-top: 4px; }
@media (max-width: 767px) {
  .ai-grid { padding: 18px; gap: 15px 10px; }
  .ai-badge { font-size: 8px; }
  .ai-label, .ai-value { font-size: 8px; }
}

/* Chat float (card 3) */
.chat-float { position: relative; height: 350px; width: 300px; }
.chat-float .chat { position: absolute; }
.chat-float .c1 { top: 0; width: 200px; }
.chat-float .c2 { top: 110px; right: 0; width: 108px; }
.chat-float .c3 { top: 170px; width: 195px; }
.chat-float .c4 { top: 250px; right: 0; width: 176px; }
@media (max-width: 767px) {
  .chat-float { width: 180px; height: 210px; }
  .chat-float .c1 { width: 100px; }
  .chat-float .c2 { top: 60px; width: 80px; }
  .chat-float .c3 { top: 110px; width: 100px; }
  .chat-float .c4 { top: 150px; width: 100px; }
}

/* ============================================================
   DATING APPS
   ============================================================ */
.dating-apps {
  padding: 80px 0;
  text-align: center;
}
.dating-apps h2 {
  font-size: 40px; font-weight: 600;
  max-width: 600px; margin: 0 auto;
}
.dating-apps img { margin: 36px auto 0; }
@media (max-width: 767px) {
  .dating-apps { padding: 40px 17px; }
  .dating-apps h2 { font-size: 24px; line-height: 34px; }
  .dating-apps img { margin-top: 16px; }
}

/* ============================================================
   DATING HAS NEVER BEEN THIS EASY
   ============================================================ */
.never-easy {
  background: var(--near-black-2) url('/assets/img/dating-has-never-background.webp') right bottom no-repeat;
  background-size: auto 100%;
  border-radius: 24px;
  padding: 106px 40px 76px;
  position: relative; overflow: hidden;
}
.never-content { max-width: 648px; position: relative; z-index: 1; }
.never-content h2 {
  color: #fff; font-weight: 600;
  font-size: 64px; line-height: 74px;
}
.never-content p {
  color: #fff; font-size: 18px; font-weight: 500;
  margin-top: 24px;
}
.never-content .cta-gradient { margin-top: 40px; }
@media (max-width: 500px) {
  .never-easy {
    background-image: url('/assets/img/dating-has-never-background-mobile.webp');
    background-position: right top;
    background-size: cover;
    padding: 83px 30px 147px;
    text-align: center;
  }
  .never-content { margin: 0 auto; }
  .never-content h2 { font-size: 36px; line-height: 46px; }
  .never-content p { font-size: 16px; }
}

/* ============================================================
   EASIEST WAY TO GET A DATE
   ============================================================ */
.easiest-way {
  border-radius: 24px;
  background: #9e9ff4 url('/assets/img/the-easiest-bg.webp') center/cover no-repeat;
  padding: 81px 84px 205px;
  margin-top: 20px;
  position: relative;
}
.easiest-head { text-align: center; position: relative; z-index: 2; }
.easiest-head h2 {
  color: #fff; font-weight: 600; font-size: 40px;
  margin-bottom: 16px;
}
.easiest-head p { color: #fff; font-size: 18px; }
.easiest-head .cta-gradient { margin-top: 41px; }
@media (max-width: 820px) {
  .easiest-way {
    background-image: url('/assets/img/the-easiest-bg-mobile.png');
    margin-top: 6px;
    padding: 40px 23px 520px;
  }
  .easiest-head h2 { font-size: 24px; }
  .easiest-head p { font-size: 14px; }
}

/* Phone + chips */
.phone-mockup {
  background: url('/assets/img/easiest-way-image.webp') center/cover no-repeat;
  height: 800px; width: 450px;
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1150px) {
  .phone-mockup { height: 600px; width: 300px; bottom: -100px; }
}
.chip {
  background: #fff;
  border-radius: 100px;
  padding: 15px 19px 15px 15px;
  display: flex; gap: 9px; align-items: center;
  width: fit-content;
  position: absolute;
  box-shadow: 0 4px 40px rgba(0,0,0,0.1);
  z-index: 3;
}
.chip-a { bottom: 280px; left: -60px; }
.chip-b { bottom: 100px; right: -30px; }
.chip-loader {
  position: relative;
  width: 55px; height: 55px;
  border-radius: 50%;
  background: conic-gradient(var(--brand-primary) 0 85%, #E8E3F2 85% 100%);
  display: flex; align-items: center; justify-content: center;
}
.chip-loader::before {
  content: ''; position: absolute; inset: 4px; border-radius: 50%; background: #fff;
}
.chip-loader span { position: relative; font-size: 13px; font-weight: 500; z-index: 1; }
.chip-label { color: var(--brand-text); font-weight: 500; font-size: 13px; }
.chip-value { color: var(--brand-primary); font-weight: 600; font-size: 14px; }
@media (max-width: 1150px) {
  .chip { padding: 10px 12px 10px 10px; }
  .chip-loader { width: 40px; height: 40px; }
  .chip-loader span { font-size: 10px; }
  .chip-label { font-size: 10px; }
  .chip-value { font-size: 11px; }
  .chip-a { bottom: 240px; left: -20px; }
  .chip-b { bottom: 70px; right: -20px; }
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 200px;
  max-width: 700px;
  color: #fff;
  padding-top: 127px;
  position: relative;
  z-index: 2;
}
.feature-icon { font-size: 24px; }
.feature-title {
  font-size: 24px; font-weight: 500;
  margin: 6px 0 16px;
}
.feature p:last-child { font-size: 16px; }
@media (max-width: 1150px) { .feature-grid { padding-top: 46px; } }
@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; gap: 40px; max-width: 500px; margin: 0 auto; }
  .feature-title { font-size: 18px; }
  .feature p:last-child { font-size: 14px; }
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.before-after {
  background: var(--navy);
  border-radius: 24px;
  padding: 151px 66px 105px;
  margin-top: 20px;
}
.ba-head { text-align: center; color: #fff; }
.ba-head h2 {
  font-size: 40px; font-weight: 600; margin-bottom: 16px;
}
.ba-head p { font-size: 18px; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  margin: 122px 0 110px;
  align-items: start;
}
.ba-label { height: 46px; width: auto; }
.ba-list {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 32px;
  color: #fff;
}
.ba-list li {
  display: flex; gap: 19px; align-items: center;
  max-width: 288px;
  line-height: 24px;
}
.ba-icon {
  flex: 0 0 25px;
  width: 25px; height: 25px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.ba-cross { background: var(--cross-red); color: var(--brand-bg); }
.ba-check { background: var(--check-green); color: #212121; }
.ba-visual { position: relative; width: 500px; }
.ba-before-img { width: 383px; height: auto; }
.ba-after-img {
  position: absolute; top: -50px; left: 110px;
  width: 383px; height: auto;
}
.ba-foot { text-align: center; color: #fff; padding: 0 66px; }
.ba-foot p { font-size: 18px; }
.ba-foot .cta-gradient { margin-top: 41px; font-weight: 600; }
@media (max-width: 767px) {
  .before-after { padding: 107px 40px 50px; margin-top: 7px; }
  .ba-head h2 { font-size: 24px; }
  .ba-head p { font-size: 14px; }
  .ba-grid { grid-template-columns: 1fr; gap: 20px; margin: 33px 0 20px; }
  .ba-visual { display: none; }
  .ba-list li { font-size: 14px; line-height: 22px; }
  .ba-foot { padding: 0; }
}

/* ============================================================
   REVOLUTIONIZED STATS
   ============================================================ */
.revolutionized {
  padding: 82px 0 152px;
  display: flex; justify-content: space-between;
  gap: 40px;
}
.rev-left { display: flex; flex-direction: column; justify-content: space-between; }
.rev-copy { max-width: 532px; }
.rev-copy h2 { font-weight: 600; font-size: 40px; line-height: 52px; }
.rev-copy p { padding-top: 16px; }
.stats {
  display: flex; flex-direction: column;
  max-width: 362px; gap: 24px;
}
.stat { padding: 21px 28px; border-radius: 24px; }
.stat-num { font-size: 32px; font-weight: 600; }
.rev-right img { width: 100%; }
@media (max-width: 767px) {
  .revolutionized { flex-direction: column; padding: 40px 0; }
  .rev-left { padding: 0 15px; }
  .rev-copy h2 { font-size: 24px; line-height: 34px; }
  .rev-copy p { font-size: 14px; }
  .stats { padding-top: 40px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-head {
  display: flex; align-items: center; justify-content: space-between;
}
.test-head h2 { font-weight: 600; font-size: 40px; line-height: 52px; }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 0;
}
.test-card {
  background: #fff;
  padding: 32px; border-radius: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.test-quote { font-size: 18px; padding-top: 32px; line-height: 1.5; }
.test-name { font-weight: 500; font-size: 18px; padding-top: 28px; }
@media (max-width: 820px) {
  .test-head { flex-direction: column; gap: 24px; }
  .test-head h2 { font-size: 24px; line-height: 34px; text-align: center; }
  .test-grid { grid-template-columns: 1fr; padding: 40px 0; }
  .test-quote { font-size: 14px; }
  .test-name { font-size: 16px; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  background: #fff;
  border-radius: 24px;
  padding: 60px 0;
  display: flex; flex-direction: column; align-items: center;
}
.blog-head { max-width: 670px; margin: 0 auto; text-align: center; }
.blog-head h2 { font-weight: 600; font-size: 40px; line-height: 52px; }
.blog-head p { font-size: 18px; line-height: 26px; padding-top: 16px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 35px 34px;
  width: 100%;
}
.blog-card {
  background: var(--brand-bg);
  border-radius: 20px;
  padding: 16px 16px 24px;
}
.blog-card img { width: 100%; border-radius: 12px; }
.blog-title {
  padding-top: 24px;
  font-size: 24px; font-weight: 500; line-height: 34px;
}
.blog-body { line-height: 24px; padding: 16px 0 24px; }
.blog-link { font-weight: 500; display: inline-flex; gap: 8px; align-items: center; }
.blog-viewall { margin-top: 20px; }
@media (max-width: 820px) {
  .blog { padding: 54px 0; }
  .blog-head { padding: 0 30px; }
  .blog-head h2 { font-size: 24px; line-height: 34px; }
  .blog-head p { font-size: 14px; line-height: 22px; }
  .blog-grid { grid-template-columns: 1fr; padding: 60px 16px 34px; }
  .blog-title { font-size: 18px; line-height: 26px; }
  .blog-body { font-size: 14px; line-height: 22px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-radius: 24px;
  padding: 35px 40px 75px;
  color: #fff;
  margin-top: 20px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 40px; align-items: center;
}
.footer-pitch { max-width: 520px; padding-right: 50px; }
.footer-pitch h2 { font-size: 40px; line-height: 52px; }
.footer-pitch p { padding: 30px 0; line-height: 24px; }
.footer-hero { width: 100%; }
.footer-bottom {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 40px; padding-top: 80px;
}
.footer-brand img { width: 113px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; }
.footer-cols { display: flex; gap: 30px; }
.footer-col { width: 195px; }
.footer-col-title { font-weight: 500; font-size: 18px; margin-bottom: 16px; }
.footer-col a {
  display: flex; align-items: center;
  font-size: 16px; line-height: 22px;
  margin-top: 16px;
}
.footer-col a img { margin-right: 8px; }

@media (max-width: 820px) {
  .footer { padding: 35px 16px 100px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-pitch { padding-right: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 52px; }
  .footer-pitch h2 { font-size: 24px; line-height: 34px; }
  .footer-pitch p { font-size: 14px; line-height: 22px; }
  .footer-bottom { grid-template-columns: 1fr; padding-top: 71px; }
  .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; padding-top: 62px; }
  .footer-col { width: auto; }
}
