/* =========================
   RESET
========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111827;
  overflow-x:hidden;
  line-height:1.6;
}

/* =========================
   GLOBAL
========================= */

.container{
  width:96%;
  max-width:1520px;
  margin:0 auto;
}

.section-head{
  margin-bottom:64px;
}

.section-head.center{
  text-align:center;
}

.section-kicker{
  display:inline-block;

  margin-bottom:18px;

  color:#d6286c;
  font-weight:800;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.section-kicker.white{
  color:#ffb8d3;
}

.section-head h2{
  max-width:880px;

  font-size:58px;
  line-height:1.08;
  letter-spacing:-2px;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:54px;

  padding:0 26px;

  border-radius:15px;

  text-decoration:none;
  font-weight:700;

  transition:.25s;
}

.btn-primary{
  background:#d6286c;
  color:#fff;

  box-shadow:
    0 14px 34px rgba(214,40,108,.28);
}

.btn-primary:hover{
  background:#bb1f5d;
  transform:translateY(-3px);
}

.btn-secondary{
  background:rgba(255,255,255,.72);
  color:#111827;

  border:1px solid rgba(255,255,255,.70);

  backdrop-filter:blur(10px);

  box-shadow:
    0 10px 26px rgba(0,0,0,.06);
}

.btn-secondary:hover{
  border-color:#d6286c;
  color:#d6286c;
}

.btn-white{
  background:#fff;
  color:#111827;
}

.btn-white:hover{
  transform:translateY(-2px);
}

/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(0,0,0,.045);

  box-shadow:
    0 10px 30px rgba(0,0,0,.025);
}

.header-inner{
  min-height:112px;

  display:grid;
  grid-template-columns:340px 1fr 340px;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:74px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:54px;
}

.nav a{
  text-decoration:none;
  color:#111827;

  font-weight:700;
  font-size:16px;
  letter-spacing:-0.2px;

  transition:.22s;
}

.nav a:hover{
  color:#d6286c;
}

.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  justify-self:end;

  min-height:58px;
  padding:0 34px;

  border-radius:18px;

  background:#d6286c;
  color:#fff;

  text-decoration:none;

  font-weight:800;
  font-size:16px;

  box-shadow:
    0 16px 34px rgba(214,40,108,.22);

  transition:.25s;
}

.header-cta:hover{
  background:#bb1f5d;
  transform:translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  overflow:hidden;

  padding:0;

  background:#fff;
}

.hero-bg{
  display:none;
}

.hero-grid{
  position:relative;

  width:calc(100% - 48px);
  max-width:none;

  min-height:720px;

  margin:0 auto;

  display:flex;
  align-items:center;

  overflow:hidden;

  border-radius:0 0 34px 34px;

  background:#fff;
}

.hero-image-wrap{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;
}

.hero-image-card{
  position:relative;

  width:100%;
  height:100%;

  overflow:hidden;
}

.hero-image-card::before{
  content:"";

  position:absolute;
  inset:0;

  z-index:2;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.66) 0%,
      rgba(255,255,255,.46) 16%,
      rgba(255,255,255,.24) 30%,
      rgba(255,255,255,.08) 44%,
      rgba(255,255,255,.02) 58%,
      rgba(255,255,255,0) 72%
    );
}

.hero-image{
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  border-radius:0;
  box-shadow:none;
}

.hero-copy{
  position:relative;

  z-index:5;

  width:100%;
  max-width:1320px;

  margin:0 auto;

  padding:0 0 34px 84px;
}

.hero-kicker{
  display:none;
}

.hero-copy h1{
  max-width:520px;

  margin-bottom:28px;

  font-size:52px;
  line-height:1.08;
  letter-spacing:-1.8px;
}

.hero-copy h1 span{
  color:#d6286c;
}

.hero-copy p{
  max-width:470px;

  margin-bottom:34px;

  color:#1f2937;
  font-size:19px;
  line-height:1.8;
}

.hero-buttons{
  display:flex;
  gap:16px;

  margin-bottom:0;
}

.hero-buttons .btn{
  min-height:56px;

  padding:0 28px;

  border-radius:12px;

  font-size:15px;
  font-weight:800;
}

.hero-stats{
  display:none;
}

.hero-real-logo{
  position:absolute;

  right:80px;
  top:14%;

  transform:translateY(-50%);

  z-index:4;

  width:470px;

  pointer-events:none;
}

.hero-real-logo img{
  width:100%;
  height:auto;

  display:block;

  opacity:.88;

  filter:
    drop-shadow(0 18px 42px rgba(0,0,0,.34));
}

/* =========================
   OFFER
========================= */

.offer-section{
  padding:70px 0 120px;
}

.offer-section .section-head.center{
  max-width:980px;

  margin-left:auto;
  margin-right:auto;
  margin-bottom:74px;
}

.offer-section .section-head.center h2{
  max-width:980px;

  margin-left:auto;
  margin-right:auto;

  font-size:64px;
  line-height:1.04;
  letter-spacing:-2.4px;
}

.offer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.offer-card{
  overflow:hidden;

  border-radius:32px;

  background:#fff;

  border:1px solid #ececec;

  transition:.3s;

  box-shadow:
    0 18px 40px rgba(0,0,0,.05);
}

.offer-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 28px 70px rgba(0,0,0,.12);
}

.offer-image-wrap{
  position:relative;
}

.offer-image{
  width:100%;
  height:250px;

  object-fit:cover;
}

.offer-icon{
  position:absolute;

  left:32px;
  bottom:-38px;

  width:82px;
  height:82px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;

  background:#e61d64;

  border:6px solid #ffffff;

  box-shadow:
    0 18px 40px rgba(230,29,100,.28);

  z-index:5;
}

.offer-icon img{
  width:38px;
  height:38px;

  object-fit:contain;

  filter:brightness(0) invert(1);
}

.offer-content{
  padding:44px 28px 30px;
}

.offer-content h3{
  margin-bottom:14px;

  font-size:30px;
  line-height:1.1;
}

.offer-content p{
  margin-bottom:24px;

  color:#6b7280;
}

.offer-content a{
  text-decoration:none;

  color:#d6286c;
  font-weight:700;
}

/* =========================
   WHY
========================= */

.why-section{
  padding:42px 0;
  margin-top:-90px;

  background:
    linear-gradient(
      135deg,
      #151515 0%,
      #242424 100%
    );

  color:#fff;
}

.why-section .container{
  width:96%;
  max-width:1520px;
}

.why-grid{
  width:100%;

  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:56px;

  align-items:center;
}

.why-copy{
  width:300px;
  max-width:300px;
}

.why-copy h2{
  margin-bottom:20px;

  font-size:50px;
  line-height:.96;
  letter-spacing:-2.2px;

  font-weight:800;

  color:#fff;
}

.why-copy h2 span{
  color:#d4145a;
  -webkit-text-fill-color:#d4145a;
}

.why-copy h2::before{
  content:none;
  display:none;
}

.why-copy p{
  max-width:245px;

  color:rgba(255,255,255,.78);

  font-size:16px;
  line-height:1.62;
}

.why-cards{
  width:100%;

  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:0;

  align-items:center;
}

.why-card{
  position:relative;

  width:100%;
  min-width:0;
  min-height:185px;

  padding:0 18px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;

  gap:18px;

  text-align:center;

  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;

  transition:
    transform .25s ease,
    opacity .25s ease;
}

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

.why-card:last-child{
  padding-right:0;
}

.why-card:hover{
  transform:translateY(-4px);
}

.why-card:not(:last-child)::after{
  content:"";

  position:absolute;
  right:0;
  top:22px;

  width:2px;
  height:96px;

  background:rgba(227,28,121,.72);

  box-shadow:
    0 0 12px rgba(227,28,121,.22);
}

.why-card img{
  width:124px;
  height:124px;

  min-width:124px;
  min-height:124px;

  margin:0 auto -2px auto;

  object-fit:contain;

  transition:
    filter .25s ease,
    transform .25s ease;
}

.why-card:hover img{
  transform:scale(1.04);

  filter:
    drop-shadow(0 0 18px rgba(214,40,108,.32));
}

.why-card span{
  width:100%;
  max-width:150px;

  margin:0 auto;

  display:flex;
  align-items:center;
  justify-content:center;

  color:rgba(255,255,255,.96);

  font-size:14px;
  line-height:1.42;
  font-weight:500;

  text-align:center;
}

/* =========================
   AUDIENCE
========================= */

.audience-section{
  padding:34px 0 26px;

  background:#fff;
}

.audience-section .container{
  width:96%;
  max-width:1520px;
}

.audience-inner{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:54px;
  align-items:start;
}

.audience-copy{
  max-width:260px;
}

.audience-copy h2{
  margin-bottom:18px;

  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;

  color:#111827;
}

.audience-copy h2 span{
  color:#d4145a;
}

.audience-copy p{
  max-width:245px;

  color:#4b5563;

  font-size:14px;
  line-height:1.55;
}

.audience-cards{
  width:100%;

  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;

  align-items:start;
}

.audience-card{
  min-height:96px;

  padding:0 18px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;

  gap:4px;

  text-align:center;

  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;

  font-size:0;

  transition:.22s ease;
}

.audience-card:hover{
  transform:translateY(-4px);
}

.audience-card:hover img{
  filter:
    drop-shadow(0 0 16px rgba(214,40,108,.24));
}

.audience-card img{
  width:104px;
  height:104px;

  min-width:104px;
  min-height:104px;

  margin:0 auto -10px auto;

  object-fit:contain;
  display:block;

  filter:
    saturate(1.08)
    contrast(1.04);
}

.audience-card span{
  width:100%;
  max-width:150px;

  margin:0 auto;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#111827;

  font-size:14px;
  line-height:1.28;
  font-weight:500;

  text-align:center;
}

/* =========================
   CTA
========================= */

.cta-section{
  position:relative;
  overflow:hidden;

  padding:0;

  background:#fff;
}

.cta-section .container{
  width:96%;
  max-width:1520px;
}

.cta-bg{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(212,20,90,.76) 0%,
      rgba(212,20,90,.66) 38%,
      rgba(212,20,90,.42) 62%,
      rgba(0,0,0,.42) 100%
    ),
    url('/assets/img/sections/contact-bg-clean.jpg');

  background-size:cover;
  background-position:center;
}

.cta-grid{
  position:relative;
  z-index:2;

  min-height:320px;

  display:grid;
  grid-template-columns:minmax(0,1fr) 470px;
  gap:72px;

  align-items:center;

  padding:42px 0;
}

.cta-copy{
  max-width:680px;

  color:#fff;
}

.cta-copy .section-kicker{
  margin-bottom:18px;

  color:rgba(255,255,255,.72);

  font-size:13px;
  letter-spacing:.9px;
}

.cta-copy h2{
  max-width:680px;

  margin-bottom:18px;

  font-size:64px;
  line-height:.96;
  letter-spacing:-2.4px;

  color:#fff;
}

.cta-copy p{
  max-width:590px;

  margin-bottom:26px;

  color:rgba(255,255,255,.92);

  font-size:16px;
  line-height:1.52;
  font-weight:500;
}

.cta-copy .btn{
  border-radius:18px;

  box-shadow:
    0 10px 28px rgba(0,0,0,.16);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.cta-copy .btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 16px 34px rgba(0,0,0,.22);
}

.cta-copy .btn-white{
  min-height:58px;
  padding:0 38px;

  background:#fff;
  color:#111827;

  font-size:15px;
  font-weight:800;

  box-shadow:
    0 16px 34px rgba(0,0,0,.16),
    0 0 24px rgba(212,20,90,.14);
}

.contact-card{
  max-width:470px;

  align-self:center;

  padding:38px 46px 40px;

  border-radius:30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.94) 100%
    );

  border:1px solid rgba(255,255,255,.74);

  backdrop-filter:blur(18px);

  box-shadow:
    0 34px 80px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.78);
}

.contact-card > img{
  height:164px;
  width:auto;

  margin-left:auto;
  margin-right:auto;
  margin-bottom:2px;

  display:block;
}

.contact-card p{
  max-width:390px;

  margin-top:0;
  margin-bottom:24px;

  color:#374151;

  font-size:16px;
  line-height:1.38;
  font-weight:500;
}

.contact-items{
  display:flex;
  flex-direction:column;
  gap:18px;

  font-weight:600;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:18px;

  color:#111827;
}

.contact-item img{
  width:22px;
  height:22px;

  object-fit:contain;

  opacity:.92;

  margin:0;
}

.contact-item strong{
  color:#111827;

  font-size:16px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:-.2px;
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:38px 0;

  background:#fff;

  border-top:1px solid rgba(17,24,39,.06);
}

.footer-inner{
  min-height:74px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer img{
  height:56px;
  width:auto;

  display:block;
}

.footer p{
  color:#6b7280;

  font-size:16px;
  font-weight:500;
  letter-spacing:-.2px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1280px){

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

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

  .why-copy{
    width:100%;
    max-width:none;
  }

  .why-copy p{
    max-width:640px;
  }

  .why-cards{
    grid-template-columns:repeat(3,1fr);
    gap:18px;
  }

  .why-card::after{
    display:none;
  }

  .why-card{
    border-radius:24px;

    background:rgba(255,255,255,.045);
  }

  .audience-inner{
    grid-template-columns:1fr;
  }

  .audience-cards{
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }

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

  .contact-card{
    max-width:520px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:760px){

  .container{
    width:90%;
    max-width:none;
  }

  .header-inner{
    min-height:82px;

    display:flex;
    align-items:center;
    justify-content:center;
  }

  .logo img{
    height:58px;
  }

  .nav,
  .header-cta{
    display:none;
  }

  .hero{
    padding:36px 0 0;

    background:#fff;
  }

  .hero-grid{
    width:90%;
    min-height:auto;

    display:grid;
    grid-template-columns:1fr;
    gap:28px;

    overflow:visible;

    border-radius:0;
  }

  .hero-copy{
    max-width:none;

    padding:0;
  }

  .hero-kicker{
    display:inline-flex;

    margin-bottom:18px;

    font-size:12px;
  }

  .hero-copy h1{
    margin-bottom:20px;

    font-size:42px;
    line-height:1.03;
    letter-spacing:-1.6px;
  }

  .hero-copy p{
    margin-bottom:24px;

    font-size:17px;
    line-height:1.6;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }

  .btn{
    width:100%;
    min-height:56px;
  }

  .hero-image-wrap{
    position:relative;
  }

  .hero-image{
    height:360px;

    border-radius:28px;

    object-position:center;
  }

  .hero-real-logo,
  .hero-stats{
    display:none;
  }

  .offer-section{
    padding:64px 0 70px;
  }

  .offer-section .section-head.center{
    margin-bottom:44px;
  }

  .offer-section .section-head.center h2,
  .section-head h2{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.4px;
  }

  .offer-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .offer-image{
    height:220px;
  }

  .offer-content h3{
    font-size:26px;
  }

  .why-section{
    margin-top:0;

    padding:42px 0;
  }

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

  .why-copy{
    width:100%;
    max-width:none;
  }

  .why-copy h2{
    margin-bottom:18px;

    font-size:38px;
    line-height:.98;
  }

  .why-copy p{
    max-width:none;

    font-size:16px;
    line-height:1.55;
  }

  .why-cards{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .why-card{
    min-height:122px;

    padding:14px 8px;

    justify-content:center;

    gap:10px;

    border-radius:20px;

    background:rgba(255,255,255,.055);
  }

  .why-card img{
    width:86px;
    height:86px;

    min-width:86px;
    min-height:86px;

    margin:0 auto 2px auto;
  }

  .why-card span{
    max-width:110px;

    font-size:12px;
    line-height:1.25;
    font-weight:600;
  }

  .audience-section{
    padding:48px 0 42px;
  }

  .audience-inner{
    grid-template-columns:1fr;
    gap:34px;
  }

  .audience-copy,
  .audience-copy p{
    max-width:none;
  }

  .audience-copy h2{
    font-size:38px;
  }

  .audience-cards{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .audience-card img{
    width:72px;
    height:72px;

    min-width:72px;
    min-height:72px;
  }

  .cta-grid{
    grid-template-columns:1fr;
    gap:34px;

    padding:50px 0;
  }

  .cta-copy h2{
    font-size:42px;
    line-height:1.02;
  }

  .cta-copy p{
    font-size:16px;
    line-height:1.55;
  }

  .contact-card{
    max-width:none;

    padding:32px 28px;

    border-radius:28px;
  }

  .contact-card > img{
    height:126px;
  }

  .contact-card p{
    font-size:16px;
  }

  .contact-item strong{
    font-size:15px;
  }

  .footer{
    padding:32px 0;
  }

  .footer-inner{
    flex-direction:column;
    gap:16px;

    text-align:center;
  }

  .footer img{
    height:54px;
  }

  .footer p{
    font-size:14px;
  }
}

@media(max-width:420px){

  .hero-copy h1{
    font-size:36px;
  }

  .offer-section .section-head.center h2,
  .section-head h2,
  .why-copy h2,
  .audience-copy h2,
  .cta-copy h2{
    font-size:34px;
  }

  .why-cards,
  .audience-cards{
    grid-template-columns:repeat(2,1fr);
  }
}


/* =========================================
   AUDIENCE SVG ICONS
========================================= */

.audience-icon{
  width:104px !important;
  height:104px !important;

  min-width:104px !important;
  min-height:104px !important;

  display:block !important;

  margin:0 auto -10px auto !important;

  color:#d4145a !important;

  stroke:#d4145a !important;
  fill:none !important;

  stroke-width:1.8 !important;

  stroke-linecap:round !important;
  stroke-linejoin:round !important;

  transition:
    transform .22s ease,
    filter .22s ease !important;
}

.audience-card:hover .audience-icon{
  transform:translateY(-2px);

  filter:
    drop-shadow(0 0 16px rgba(212,20,90,.22));
}

@media(max-width:760px){

  .audience-icon{
    width:72px !important;
    height:72px !important;

    min-width:72px !important;
    min-height:72px !important;

    margin:0 auto -4px auto !important;
  }
}











/* =========================================
   AUDIENCE ICONS FINAL CLEAN
========================================= */

.audience-icon{
  width:50px !important;
  height:50px !important;

  min-width:50px !important;
  min-height:50px !important;

  margin:4px auto 12px auto !important;

  color:#d4145a !important;
  stroke:#d4145a !important;

  stroke-width:1.2 !important;
}

.audience-icon-handshake{
  width:64px !important;
  height:64px !important;

  min-width:64px !important;
  min-height:64px !important;

  margin:-2px auto 4px auto !important;

  color:#d4145a !important;
  stroke:none !important;

  transform:none !important;
}

.audience-icon-handshake path{
  stroke:#d4145a !important;
  stroke-width:1.6px !important;
  stroke-linejoin:round !important;
  paint-order:stroke fill !important;
}

@media(max-width:760px){

  .audience-icon{
    width:58px !important;
    height:58px !important;

    min-width:58px !important;
    min-height:58px !important;
  }

  .audience-icon-handshake{
    width:64px !important;
    height:64px !important;

    min-width:64px !important;
    min-height:64px !important;
  }
}
