:root {
  --pink: #e94878;
  --pink-dark: #c83263;
  --pink-soft: #fff1f5;
  --pink-soft-2: #fde6ed;
  --ink: #17171c;
  --ink-2: #27272f;
  --text: #5f6470;
  --muted: #8b909a;
  --line: #ececf1;
  --bg: #ffffff;
  --soft: #f8f8fb;
  --white: #ffffff;
  --green: #23b782;
  --radius: 26px;
  --shadow: 0 28px 70px rgba(30, 24, 34, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pink-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 9px
}

/* NAV */
.nav {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(236, 236, 241, .82);
  backdrop-filter: blur(18px);
}

.nav-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

/* ==========================================================================
   BRAND / LOGO
   ========================================================================== */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  object-fit: cover;
  object-position: left center;

  border-radius: 7px;
}

.brand-name {
  display: block;

  margin: 0;
  padding: 0;

  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.02;

  letter-spacing: -.04em;

  color: var(--ink);

  white-space: nowrap;
}

.brand-name small {
  display: block;

  margin-top: 3px;

  font-family: inherit;

  font-size: .62rem;
  font-weight: 600;
  line-height: 1.15;

  letter-spacing: .11em;

  color: var(--muted);

  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #494d56;
  font-size: .92rem;
  font-weight: 600
}

.nav-links a {
  transition: .2s
}

.nav-links a:hover {
  color: var(--pink)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  font-size: .88rem;
  transition: .2s ease
}

.nav-cta:hover {
  background: var(--pink);
  transform: translateY(-1px)
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.65rem;
  color: var(--ink)
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(233, 72, 120, .11), transparent 26%),
    radial-gradient(circle at 78% 70%, rgba(233, 72, 120, .065), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #fbfbfd 100%);
}

.hero:before {
  content: "";
  position: absolute;
  left: -140px;
  top: 130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 55px solid rgba(233, 72, 120, .045)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1
}

h1 {
  margin: 20px 0 25px;
  font-size: clamp(3.5rem, 6.5vw, 6.9rem);
  line-height: .93;
  letter-spacing: -.068em;
  font-weight: 800;
  max-width: 820px
}

.pink {
  color: var(--pink)
}

.hero p {
  margin: 0;
  max-width: 690px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.82
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 34px
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: .93rem;
  border: 1px solid transparent;
  transition: .22s ease
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 16px 36px rgba(233, 72, 120, .23)
}

.btn-primary:hover {
  background: var(--pink-dark)
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(20, 20, 25, .04)
}

.btn-secondary:hover {
  border-color: #d8d8df
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 47px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
  max-width: 650px
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -.045em
}

.stat span {
  font-size: .79rem;
  color: var(--muted)
}

/* HERO VISUAL */
.visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center
}

.visual-back {
  width: 455px;
  height: 455px;
  border-radius: 48% 52% 42% 58% / 52% 38% 62% 48%;
  background: linear-gradient(145deg, var(--pink), #f27098);
  position: absolute;
  right: 5%;
  top: 9%;
  transform: rotate(-7deg);
  box-shadow: 0 40px 80px rgba(233, 72, 120, .20)
}

.screen {
  width: min(100%, 535px);
  position: relative;
  z-index: 2;
  background: #19191f;
  padding: 12px;
  border-radius: 27px;
  box-shadow: 0 36px 80px rgba(29, 22, 28, .23);
  transform: rotate(2deg)
}

.browser {
  overflow: hidden;
  border-radius: 18px;
  background: #fff
}

.browser-head {
  height: 44px;
  background: #f1f1f4;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 7px
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d0d0d6
}

.browser-content {
  padding: 29px
}

.browser-kicker {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pink);
  font-weight: 800
}

.browser-title {
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 9px 0 22px
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 13px
}

.dash-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 15px;
  background: #fff;
  min-height: 105px
}

.dash-card.pink-card {
  background: var(--pink-soft);
  border-color: #f9d9e3
}

.dash-card.dark-card {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.dash-label {
  font-size: .67rem;
  color: #8f9299
}

.dash-big {
  font-size: 1.9rem;
  font-weight: 800;
  margin-top: 7px;
  letter-spacing: -.06em
}

.progress {
  height: 7px;
  background: #ececf0;
  border-radius: 999px;
  margin-top: 10px;
  overflow: hidden
}

.progress span {
  display: block;
  height: 100%;
  background: var(--pink);
  border-radius: 999px
}

.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 15px 17px;
  box-shadow: 0 20px 50px rgba(28, 24, 30, .13)
}

.float-card i {
  color: var(--pink);
  font-size: 1.1rem
}

.float-card strong {
  display: block;
  font-size: .86rem;
  margin-top: 4px
}

.float-card small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  margin-top: 2px
}

.fc1 {
  left: -12px;
  bottom: 86px
}

.fc2 {
  right: -10px;
  top: 90px
}

/* TRUST STRIP */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.trust-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: space-between;
  flex-wrap: wrap
}

.trust-inner>span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 800
}

.trust-type {
  font-size: .82rem;
  font-weight: 800;
  color: #8a8d95;
  letter-spacing: .055em
}

/* HEADINGS */
.section-head {
  max-width: 760px;
  margin-bottom: 53px
}

h2 {
  font-size: clamp(2.4rem, 4.1vw, 4.35rem);
  line-height: 1.01;
  letter-spacing: -.06em;
  margin: 17px 0 18px
}

.section-head p {
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.8;
  margin: 0
}

/* SERVICES */
.services {
  background: var(--soft)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 310px;
  position: relative;
  overflow: hidden;
  transition: .25s ease
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #f5c8d6
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 58px
}

.service-card h3 {
  font-size: 1.42rem;
  letter-spacing: -.035em;
  margin: 0 0 12px
}

.service-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  font-size: .95rem
}

.service-no {
  position: absolute;
  right: 24px;
  top: 13px;
  font-size: 4rem;
  font-weight: 800;
  color: #f3f3f6;
  letter-spacing: -.1em
}

/* FEATURE PROJECT */
/* FEATURE PROJECT */

.project-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.project-image {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: auto;

  border-radius: 0;

  overflow: visible;

  background: transparent;
}

.project-app-image {
  position: relative;

  width: 100%;
  max-width: 620px;

  height: auto;

  object-fit: contain;

  background: transparent;

  filter: none;

  transition: transform .4s ease;
}

.project-image:hover .project-app-image {
  transform: translateY(-5px);
}

.project-copy p {
  color: var(--text);
  line-height: 1.82;
  font-size: 1rem;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.tag {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: .75rem;
  font-weight: 700;
}

.features {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
}

.feature {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .93rem;
}

.feature i {
  color: var(--pink);
  margin-top: 2px;
}

/* PROCESS */
.process {
  background: var(--ink);
  color: #fff
}

.process .eyebrow {
  color: #ff94b3
}

.process .eyebrow:before {
  background: #ff6f9b
}

.process .section-head p {
  color: #b5b7bf
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.step {
  padding: 30px 26px 15px 0;
  border-right: 1px solid rgba(255, 255, 255, .10);
  min-height: 245px
}

.step:not(:first-child) {
  padding-left: 25px
}

.step:last-child {
  border-right: 0
}

.step-no {
  font-size: .74rem;
  color: #ff86aa;
  font-weight: 800;
  letter-spacing: .09em
}

.step h3 {
  font-size: 1.18rem;
  margin: 28px 0 11px
}

.step p {
  font-size: .89rem;
  color: #aaaeb8;
  line-height: 1.72;
  margin: 0
}

/* GOOGLE REVIEWS */
.reviews-section {
  background: #fff
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 42px
}

.reviews-head .section-head {
  margin-bottom: 0
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(30, 25, 35, .05);
  white-space: nowrap
}

.google-g {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7f7fa;
  font-size: .86rem;
  font-weight: 800;
  color: #4285f4
}

.google-rating strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.1
}

.google-rating small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  margin-top: 3px
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.review-card {
  position: relative;
  min-height: 300px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(30, 25, 35, .045);
  display: flex;
  flex-direction: column
}

.review-card:before {
  content: "“";
  position: absolute;
  right: 20px;
  top: 2px;
  font-family: serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--pink-soft-2);
  pointer-events: none
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f5b301;
  font-size: .88rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.review-text {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.75;
  margin: 0 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  position: relative;
  z-index: 1
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f1f4
}

.review-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink);
  font-weight: 800
}

.review-author strong {
  display: block;
  font-size: .88rem
}

.review-author small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  margin-top: 3px
}

.review-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--pink-dark);
  font-weight: 800;
  font-size: .85rem
}

.review-google-link:hover {
  color: var(--pink)
}

.reviews-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 45px;
  color: var(--muted)
}

/* CTA */
.cta {
  padding: 100px 0;
  background: var(--pink);
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta:before,
.cta:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%
}

.cta:before {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -180px
}

.cta:after {
  width: 240px;
  height: 240px;
  right: 80px;
  bottom: -160px
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px
}

.cta .eyebrow {
  color: #fff
}

.cta .eyebrow:before {
  background: #fff
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 12px
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, .80)
}

.btn-white {
  background: #fff;
  color: var(--pink-dark);
  white-space: nowrap
}

.btn-white:hover {
  background: #17171c;
  color: #fff
}

/* FOOTER */
.site-footer {
  background: #111116;
  color: #9fa1aa;
  padding: 37px 0
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem
}

.footer-links {
  display: flex;
  gap: 20px
}

.footer-links a:hover {
  color: #fff
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .72s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start
  }

  .nav-links.open {
    display: flex
  }

  .menu-btn {
    display: block
  }

  .hero-grid,
  .project-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    gap: 35px
  }

  .visual {
    min-height: 480px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .step:nth-child(2) {
    border-right: 0
  }

  .step:nth-child(3),
  .step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .section {
    padding: 78px 0
  }

  .nav-inner {
    height: 74px
  }

  .nav-links {
    top: 74px
  }

  .nav-cta {
    display: none
  }

  .brand-name {
    font-size: .92rem
  }

  .hero {
    padding: 120px 0 70px;
    min-height: auto
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.55rem)
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-stats {
    gap: 20px
  }

  .visual {
    min-height: 390px
  }

  .visual-back {
    width: 330px;
    height: 330px;
    right: 1%
  }

  .screen {
    transform: none
  }

  .browser-content {
    padding: 20px
  }

  .float-card {
    display: none
  }

  .trust-inner {
    justify-content: flex-start;
    padding: 22px 0;
    gap: 18px 28px
  }

  .project-image {
    min-height: auto;
    border-radius: 22px
  }



  .project-app-image {
    width: 108%;
    max-width: none
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .step,
  .step:not(:first-child) {
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .step:first-child {
    border-top: 0
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

  .review-card {
    min-height: auto
  }

  .cta {
    padding: 78px 0
  }

  .btn-white {
    width: 100%
  }
}


/* V2 — refinement */
body {
  font-size: 16px
}

.container {
  width: min(1220px, calc(100% - 48px))
}

.section {
  padding: 68px 0
}

.nav-inner {
  height: 78px
}

.nav {
  box-shadow: 0 1px 0 rgba(20, 20, 25, .02)
}

.nav-links {
  font-size: .86rem;
  gap: 30px
}

.nav-cta {
  padding: 12px 18px;
  font-size: .82rem
}

.hero {
  min-height: auto;
  padding: 155px 0 105px;
  background:
    radial-gradient(circle at 83% 24%, rgba(233, 72, 120, .10), transparent 30%),
    radial-gradient(circle at 95% 75%, rgba(233, 72, 120, .045), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fff 76%, #fcfafb 100%)
}

.hero-grid {
  grid-template-columns: 1.03fr .97fr;
  gap: 80px
}

h1 {
  font-size: clamp(2.7rem, 5.15vw, 5.65rem);
  line-height: .94;
  margin-top: 24px
}

.hero p {
  font-size: 1.08rem;
  max-width: 625px;
  line-height: 1.78
}

.hero-actions {
  margin-top: 30px
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
  color: #656975;
  font-size: .82rem;
  font-weight: 600
}

.hero-proof i {
  color: var(--pink);
  font-size: 1rem
}

.hero-stats {
  margin-top: 34px;
  padding-top: 27px;
  gap: 44px;
  max-width: 610px
}

.stat strong {
  font-size: 1.38rem
}

.visual {
  min-height: 500px
}

.visual-back {
  width: 420px;
  height: 420px;
  opacity: .92
}

.screen {
  width: min(100%, 520px);
  box-shadow: 0 36px 85px rgba(37, 25, 31, .19)
}

.trust-strip {
  background: #fff
}

.trust-inner {
  min-height: 80px
}

.trust-type {
  color: #70747e;
  font-size: .76rem
}

.section-head {
  max-width: 805px;
  margin-bottom: 38px
}

h2 {
  font-size: clamp(2.65rem, 4vw, 4.45rem);
  line-height: 1.02
}

.section-head p {
  max-width: 700px
}

.expertise-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #7b7f89;
  font-size: .84rem
}

.expertise-note span {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e8e8ed;
  color: var(--pink);
  font-size: .68rem;
  font-weight: 800
}

.services {
  background: #f7f7fa;
  position: relative
}

.services:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 48px solid rgba(233, 72, 120, .025);
  border-radius: 50%;
  right: -150px;
  top: 100px
}

.service-grid {
  gap: 20px
}

.service-card {
  min-height: 286px;
  padding: 34px 36px;
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(20, 20, 25, .02)
}

.service-icon {
  margin-bottom: 44px;
  width: 46px;
  height: 46px;
  border-radius: 13px
}

.service-card h3 {
  font-size: 1.26rem
}

.service-card p {
  font-size: .9rem;
  max-width: 92%
}

.service-no {
  font-size: 3.55rem;
  top: 20px;
  right: 27px
}

.service-card:after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--pink);
  transition: .3s ease;
  border-radius: 999px
}

.service-card:hover:after {
  width: 72px
}

.project-grid {
  gap: 78px
}

.project-copy {
  padding-right: 35px
}

.project-copy h2 {
  margin-bottom: 20px
}

.project-image {
  min-height: 570px;
  border-radius: 28px
}

.tags {
  margin: 22px 0 26px
}

.tag {
  background: #fff5f8;
  border: 1px solid #f9d8e2
}

.process {
  background: #17171c;
  position: relative
}

.process:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .035);
  right: -180px;
  top: -110px
}

.process .section-head {
  margin-bottom: 55px
}

.process-grid {
  position: relative;
  z-index: 1
}

.step {
  min-height: 225px;
  padding-top: 34px
}

.step h3 {
  font-size: 1.12rem
}

.reviews-grid {
  gap: 20px
}

.cta {
  padding: 112px 0;
  background: linear-gradient(135deg, #e94878 0%, #e64273 60%, #db3868 100%)
}

.cta h2 {
  font-size: clamp(2.7rem, 4vw, 4.3rem);
  max-width: 720px
}

.cta p {
  max-width: 680px;
  line-height: 1.7
}

.btn-white {
  min-width: 205px
}

@media(max-width:960px) {
  .container {
    width: min(100% - 36px, 1220px)
  }

  .section {
    padding: 96px 0
  }

  .hero-grid {
    gap: 45px
  }

  .project-copy {
    padding-right: 0
  }
}

@media(max-width:620px) {
  .container {
    width: min(100% - 28px, 1220px)
  }

  .section {
    padding: 76px 0
  }

  .hero {
    padding-top: 115px
  }

  h1 {
    font-size: clamp(3.05rem, 14.5vw, 4.45rem)
  }

  .hero-proof {
    align-items: flex-start
  }

  .hero-stats {
    gap: 22px
  }

  .service-card {
    min-height: auto;
    padding: 28px
  }

  .service-icon {
    margin-bottom: 32px
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

  .cta {
    padding: 78px 0
  }
}

/*
|--------------------------------------------------------------------------
| FAQ
|--------------------------------------------------------------------------
*/

.faq-section {
  background: #f7f7fa;
  position: relative;
  overflow: hidden;
}

.faq-section:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 55px solid rgba(233, 72, 120, .025);
  border-radius: 50%;
  left: -230px;
  bottom: -170px;
  pointer-events: none;
}

.faq-layout {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
  align-items: start;
}


/*
|--------------------------------------------------------------------------
| Introduction
|--------------------------------------------------------------------------
*/

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-intro p {
  max-width: 470px;

  margin: 0;

  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-contact {
  display: flex;
  flex-direction: column;

  margin-top: 38px;

  color: var(--muted);

  font-size: .78rem;
  font-weight: 600;
}

.faq-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 5px;

  color: var(--ink);

  font-size: .95rem;
  font-weight: 800;

  transition: color .2s ease;
}

.faq-contact i {
  color: var(--pink);
  transition: transform .2s ease;
}

.faq-contact:hover span {
  color: var(--pink);
}

.faq-contact:hover i {
  transform: translate(3px, -3px);
}


/*
|--------------------------------------------------------------------------
| Questions
|--------------------------------------------------------------------------
*/

.faq-list {
  border-top: 1px solid #dedee5;
}

.faq-item {
  border-bottom: 1px solid #dedee5;
}

.faq-item summary {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  min-height: 92px;
  padding: 24px 5px;

  cursor: pointer;

  list-style: none;

  color: var(--ink);

  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;

  transition: color .2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--pink);
}


/*
|--------------------------------------------------------------------------
| Icône + / -
|--------------------------------------------------------------------------
*/

.faq-icon {
  position: relative;

  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  border: 1px solid #dedee5;
  border-radius: 50%;

  background: #fff;

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.faq-icon:before,
.faq-icon:after {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 12px;
  height: 1.5px;

  background: var(--ink);

  border-radius: 10px;

  transform: translate(-50%, -50%);

  transition:
    transform .25s ease,
    background .25s ease;
}

.faq-icon:after {
  transform:
    translate(-50%, -50%) rotate(90deg);
}


/*
|--------------------------------------------------------------------------
| Question ouverte
|--------------------------------------------------------------------------
*/

.faq-item[open] summary {
  color: var(--pink);
}

.faq-item[open] .faq-icon {
  background: var(--pink);
  border-color: var(--pink);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon:before {
  background: #fff;
}

.faq-item[open] .faq-icon:after {
  background: #fff;

  transform:
    translate(-50%, -50%) rotate(0deg);
}


/*
|--------------------------------------------------------------------------
| Réponse
|--------------------------------------------------------------------------
*/

.faq-answer {
  padding: 0 75px 30px 5px;
}

.faq-answer p {
  margin: 0;

  color: var(--text);

  font-size: .93rem;
  line-height: 1.85;
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:960px) {

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: relative;
    top: auto;
  }

  .faq-intro p {
    max-width: 680px;
  }

}


@media(max-width:620px) {

  .faq-layout {
    gap: 42px;
  }

  .faq-item summary {
    min-height: 78px;

    padding: 20px 0;

    gap: 20px;

    font-size: .94rem;
  }

  .faq-icon {
    flex-basis: 34px;

    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding: 0 48px 24px 0;
  }

  .faq-answer p {
    font-size: .88rem;
  }

  .faq-contact {
    margin-top: 28px;
  }

}

/*
|--------------------------------------------------------------------------
| SEO LOCAL
|--------------------------------------------------------------------------
*/

.local-seo-section {
  background: #fff;
}

.local-seo-content {
  max-width: 1050px;
  margin: 0 auto;
}

.local-seo-content h2 {
  max-width: 800px;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.local-seo-grid p {
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.85;
  font-size: .96rem;
}

.local-seo-grid strong {
  color: var(--ink);
  font-weight: 700;
}

@media(max-width:760px) {

  .local-seo-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

}

/*
|--------------------------------------------------------------------------
| PORTFOLIO
|--------------------------------------------------------------------------
*/

.nav-links a.active {
  color: var(--pink);
}

.portfolio-hero {
  position: relative;
  padding: 190px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(233, 72, 120, .10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  border-bottom: 1px solid var(--line);
}

.portfolio-hero:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(233, 72, 120, .035);
  border-radius: 50%;
  right: -150px;
  top: 65px;
}

.portfolio-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
}

.portfolio-hero h1 {
  margin: 20px 0 26px;
  max-width: 900px;
  font-size: clamp(2.7rem, 5.15vw, 5.65rem);
  line-height: .94;
  letter-spacing: -.067em;
}

.portfolio-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.82;
}

.portfolio-hero-note {
  padding: 29px 0 5px 30px;
  border-left: 1px solid var(--line);
}

.portfolio-hero-no {
  display: block;
  color: var(--pink);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.07em;
}

.portfolio-hero-note p {
  max-width: 300px;
  margin: 18px 0 0;
  font-size: .9rem;
  line-height: 1.7;
}

.portfolio-filter-section {
  position: sticky;
  z-index: 50;
  top: 82px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.portfolio-filters {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.portfolio-filters::-webkit-scrollbar {
  display: none;
}

.portfolio-filter {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.portfolio-filter:hover {
  color: var(--pink);
  border-color: #f4c7d5;
}

.portfolio-filter.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.portfolio-projects {
  background: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-card {
  min-width: 0;
}

.portfolio-card[hidden] {
  display: none !important;
}

.portfolio-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.portfolio-card-link:hover {
  transform: translateY(-6px);
  border-color: #f0c8d4;
  box-shadow: 0 30px 70px rgba(24, 20, 27, .09);
}

.portfolio-media {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .45s ease;
}

.portfolio-card-link:hover .portfolio-media img {
  transform: scale(1.025);
}

.portfolio-media-pink {
  background: linear-gradient(145deg, #fff5f8, #fde8ef);
}

.portfolio-media-dark {
  background: linear-gradient(145deg, #1b1b21, #2b2930);
}

.portfolio-media-light {
  background: #f5f4f2;
}

.portfolio-media-soft {
  background: linear-gradient(145deg, #f7f7fa, #efeff4);
}

.portfolio-media-blue {
  background: linear-gradient(145deg, #eff5fa, #e9f0f5);
}

.portfolio-media-pink-soft {
  background: linear-gradient(145deg, #fff, #fff1f5);
}

.portfolio-card-featured .portfolio-media img {
  object-fit: contain;
  padding: 20px;
}

.portfolio-type {
  position: absolute;

  /* Position en bas à gauche */
  top: auto;
  right: auto;
  bottom: 18px;
  left: 18px;

  z-index: 3;

  display: inline-flex;
  align-items: center;

  padding: 7px 13px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #18181b;

  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;

  border-radius: 999px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
}

.portfolio-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: rgba(23, 23, 28, .25);
  pointer-events: none;
}

.portfolio-placeholder i {
  font-size: 3rem;
}

.portfolio-placeholder span {
  font-weight: 800;
  letter-spacing: -.03em;
}

.portfolio-media-dark .portfolio-placeholder {
  color: rgba(255, 255, 255, .30);
}

/* Si l'image existe, le placeholder est naturellement recouvert. */
.portfolio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 32px 32px;
}

.portfolio-meta {
  margin-bottom: 10px;
  color: var(--pink-dark);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.portfolio-content h2 {
  margin: 0 0 14px;
  font-size: 1.72rem;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.portfolio-content p {
  margin: 0;
  color: var(--text);
  font-size: .91rem;
  line-height: 1.78;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.portfolio-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: .67rem;
  font-weight: 700;
}

.portfolio-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 27px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
}

.portfolio-more i {
  color: var(--pink);
  transition: transform .2s ease;
}

.portfolio-card-link:hover .portfolio-more i {
  transform: translate(3px, -3px);
}

.portfolio-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
}

.portfolio-approach {
  background: #f7f7fa;
}

.portfolio-approach-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
}

.portfolio-approach h2 {
  max-width: 780px;
}

.portfolio-approach-copy {
  padding-bottom: 10px;
}

.portfolio-approach-copy p {
  margin: 0 0 28px;
  color: var(--text);
  line-height: 1.82;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 800;
}

.text-link i {
  color: var(--pink);
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

@media(max-width:960px) {

  .portfolio-hero-grid,
  .portfolio-approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio-hero-note {
    max-width: 470px;
  }

  .portfolio-grid {
    gap: 20px;
  }

  .portfolio-media,
  .portfolio-media img {
    min-height: 330px;
  }
}

@media(max-width:760px) {
  .portfolio-hero {
    padding: 145px 0 78px;
  }

  .portfolio-hero h1 {
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

  .portfolio-hero-note {
    padding-left: 22px;
  }

  .portfolio-filter-section {
    top: 72px;
  }

  .portfolio-filters {
    min-height: 70px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-media,
  .portfolio-media img {
    min-height: 360px;
  }
}

@media(max-width:520px) {

  .portfolio-media,
  .portfolio-media img {
    min-height: 285px;
  }

  .portfolio-content {
    padding: 25px 24px 27px;
  }

  .portfolio-content h2 {
    font-size: 1.48rem;
  }
}

/* ==========================================================================\n   CONTACT\n   ========================================================================== */

.contact-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(233, 72, 120, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8fa 100%);
  overflow: hidden;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .75fr);
  gap: 90px;
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(2.7rem, 5.15vw, 5.65rem);
  line-height: .95;
  letter-spacing: -.065em;
}

.contact-hero-copy>p {
  max-width: 700px;
  margin: 0;
  color: var(--text, #667085);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 34px;
}

.contact-hero-points div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink, #18181b);
  font-size: .9rem;
  font-weight: 700;
}

.contact-hero-points i {
  color: var(--pink, #e94878);
  font-size: 1.15rem;
}

.contact-hero-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(24, 24, 27, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 24, 27, .09);
}

.contact-hero-card:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 90px;
  height: 5px;
  border-radius: 28px 0 8px 0;
  background: var(--pink, #e94878);
}

.contact-card-kicker {
  color: var(--pink, #e94878);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-hero-card h2 {
  margin: 10px 0 10px;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.contact-hero-card>p {
  margin: 0 0 28px;
  color: var(--text, #667085);
  line-height: 1.7;
}

.contact-card-list {
  display: grid;
  gap: 18px;
}

.contact-card-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-card-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff1f5;
  color: var(--pink, #e94878);
  font-size: 1.2rem;
}

.contact-card-row strong {
  display: block;
  color: var(--ink, #18181b);
  font-size: .92rem;
}

.contact-card-row span:not(.contact-card-icon) {
  display: block;
  margin-top: 2px;
  color: var(--text, #667085);
  font-size: .82rem;
  line-height: 1.5;
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .65fr);
  gap: 70px;
  align-items: start;
}

.contact-form-wrap h2 {
  max-width: 760px;
  margin: 15px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.contact-intro {
  max-width: 760px;
  margin: 0 0 38px;
  color: var(--text, #667085);
  line-height: 1.8;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(24, 24, 27, .08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(24, 24, 27, .06);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--ink, #18181b);
  font-size: .86rem;
  font-weight: 700;
}

.form-group label span,
.form-consent span span {
  color: var(--pink, #e94878);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  color: var(--ink, #18181b);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group input,
.form-group select {
  height: 52px;
  padding: 0 15px;
}

.form-group textarea {
  padding: 15px;
  resize: vertical;
  min-height: 180px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: rgba(233, 72, 120, .7);
  box-shadow: 0 0 0 4px rgba(233, 72, 120, .09);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 28px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 580px;
  color: var(--text, #667085);
  font-size: .78rem;
  line-height: 1.6;
}

.form-consent input {
  margin-top: 4px;
  accent-color: var(--pink, #e94878);
}

.contact-submit {
  border: 0;
  white-space: nowrap;
}

.contact-sidebar {
  display: grid;
  gap: 22px;
}

.contact-sidebar-card {
  padding: 30px;
  border: 1px solid rgba(24, 24, 27, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(24, 24, 27, .05);
}

.contact-sidebar-card-dark {
  background: var(--ink, #18181b);
  color: #fff;
  border-color: transparent;
}

.eyebrow-light {
  color: #ff9fbc !important;
}

.contact-sidebar-card h3 {
  margin: 12px 0 12px;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.contact-sidebar-card p {
  margin: 0;
  color: var(--text, #667085);
  line-height: 1.75;
  font-size: .9rem;
}

.contact-sidebar-card-dark p {
  color: rgba(255, 255, 255, .7);
}

.contact-sidebar-small {
  margin-top: 8px !important;
  font-size: .78rem !important;
}

.contact-sidebar-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #fff1f5;
  color: var(--pink, #e94878);
  font-size: 1.3rem;
}

.contact-steps {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.contact-steps>div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-steps>div>span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink, #e94878);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.contact-steps p {
  margin: 2px 0 0 !important;
  font-size: .82rem !important;
}

.contact-steps strong {
  color: #fff;
}

.contact-reassurance {
  padding-top: 0;
  background: #fff;
}

.contact-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, .08);
  border-radius: 24px;
  background: #fafafa;
}

.contact-reassurance-grid>div {
  padding: 28px;
  border-right: 1px solid rgba(24, 24, 27, .08);
}

.contact-reassurance-grid>div:last-child {
  border-right: 0;
}

.contact-reassurance-grid i {
  display: block;
  margin-bottom: 17px;
  color: var(--pink, #e94878);
  font-size: 1.45rem;
}

.contact-reassurance-grid h3 {
  margin: 0 0 7px;
  font-size: .98rem;
}

.contact-reassurance-grid p {
  margin: 0;
  color: var(--text, #667085);
  font-size: .8rem;
  line-height: 1.6;
}

@media(max-width:1050px) {

  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-hero-card {
    max-width: 680px;
  }

  .contact-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .contact-reassurance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-reassurance-grid>div:nth-child(2) {
    border-right: 0;
  }

  .contact-reassurance-grid>div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(24, 24, 27, .08);
  }
}

@media(max-width:760px) {
  .contact-hero {
    padding: 120px 0 70px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-reassurance-grid {
    grid-template-columns: 1fr;
  }

  .contact-reassurance-grid>div {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 24, 27, .08) !important;
  }

  .contact-reassurance-grid>div:last-child {
    border-bottom: 0 !important;
  }
}

@media(max-width:520px) {
  .contact-hero-card {
    padding: 28px 24px;
  }

  .contact-hero-points {
    display: grid;
    gap: 12px;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   MENTIONS LÉGALES
   ========================================================================== */


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.legal-hero {
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%,
      rgba(233, 72, 120, .12),
      transparent 30%),
    linear-gradient(180deg,
      #ffffff 0%,
      #fff8fa 100%);
}

.legal-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -180px;
  top: -140px;
  background: rgba(233, 72, 120, .05);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 24px;

  font-size: .78rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .12em;

  color: #e94878;
}

.legal-kicker-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #e94878;

  box-shadow:
    0 0 0 5px rgba(233, 72, 120, .12);
}

.legal-hero h1 {
  margin: 0;

  max-width: 850px;

  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.055em;

  color: #18181b;
}

.legal-hero h1 span {
  display: block;
  color: #e94878;
}

.legal-hero p {
  max-width: 680px;

  margin: 30px 0 0;

  font-size: 1.08rem;
  line-height: 1.75;

  color: #667085;
}

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 28px;

  padding: 9px 14px;

  border: 1px solid #f2dce4;
  border-radius: 999px;

  background: rgba(255, 255, 255, .8);

  color: #667085;

  font-size: .78rem;
  font-weight: 600;
}

.legal-update i {
  color: #e94878;
}


/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
*/

.legal-section {
  padding: 90px 0 110px;
  background: #ffffff;
}

.legal-layout {
  display: grid;

  grid-template-columns:
    minmax(220px, 280px) minmax(0, 1fr);

  gap: 70px;

  align-items: start;
}


/*
|--------------------------------------------------------------------------
| Sidebar
|--------------------------------------------------------------------------
*/

.legal-sidebar {
  position: relative;
}

.legal-sidebar-inner {
  position: sticky;
  top: 120px;

  padding: 25px;

  border: 1px solid #eeeeef;
  border-radius: 20px;

  background: #fafafa;
}

.legal-sidebar-title {
  margin-bottom: 18px;

  font-size: .75rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .1em;

  color: #18181b;
}

.legal-sidebar nav {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.legal-sidebar a {
  display: block;

  padding: 8px 10px;

  border-radius: 8px;

  color: #667085;

  font-size: .82rem;
  line-height: 1.35;

  text-decoration: none;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.legal-sidebar a:hover {
  color: #e94878;
  background: #fff1f5;

  transform: translateX(3px);
}


/*
|--------------------------------------------------------------------------
| Contenu
|--------------------------------------------------------------------------
*/

.legal-content {
  min-width: 0;
}

.legal-card {
  position: relative;

  padding: 42px 46px;

  margin-bottom: 24px;

  border: 1px solid #ececef;
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 12px 40px rgba(24, 24, 27, .035);

  scroll-margin-top: 120px;
}

.legal-number {
  display: inline-flex;

  margin-bottom: 15px;

  font-size: .72rem;
  font-weight: 900;

  letter-spacing: .1em;

  color: #e94878;
}

.legal-card h2 {
  margin: 0 0 24px;

  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;

  letter-spacing: -.03em;

  color: #18181b;
}

.legal-card h3 {
  margin: 32px 0 10px;

  font-size: 1rem;
  line-height: 1.4;

  color: #18181b;
}

.legal-card p {
  margin: 0 0 16px;

  color: #667085;

  font-size: .96rem;
  line-height: 1.8;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card strong {
  color: #18181b;
}

.legal-card a {
  color: #e94878;

  font-weight: 600;

  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}


/*
|--------------------------------------------------------------------------
| Société / hébergeur
|--------------------------------------------------------------------------
*/

.legal-company-card {
  display: flex;
  flex-direction: column;

  gap: 5px;

  margin: 25px 0;

  padding: 22px 24px;

  border-left: 4px solid #e94878;
  border-radius: 0 15px 15px 0;

  background: #fff7f9;

  color: #667085;

  font-size: .93rem;
  line-height: 1.55;
}

.legal-company-card strong {
  margin-bottom: 3px;

  font-size: 1rem;

  color: #18181b;
}


/*
|--------------------------------------------------------------------------
| Données formulaire
|--------------------------------------------------------------------------
*/

.legal-data-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px;

  margin: 25px 0 30px;
}

.legal-data-item {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 14px 16px;

  border: 1px solid #ededf0;
  border-radius: 13px;

  background: #fafafa;

  color: #4b5563;

  font-size: .87rem;
  font-weight: 600;
}

.legal-data-item i {
  display: grid;

  width: 34px;
  height: 34px;

  place-items: center;

  flex: 0 0 34px;

  border-radius: 10px;

  background: #fff1f5;

  color: #e94878;

  font-size: .95rem;
}


/*
|--------------------------------------------------------------------------
| Contact données personnelles
|--------------------------------------------------------------------------
*/

.legal-contact-box {
  display: flex;
  align-items: center;

  gap: 16px;

  margin: 23px 0;

  padding: 20px;

  border-radius: 16px;

  background: #18181b;

  color: #ffffff;
}

.legal-contact-icon {
  display: grid;

  width: 45px;
  height: 45px;

  place-items: center;

  flex: 0 0 45px;

  border-radius: 12px;

  background: #e94878;

  font-size: 1.1rem;
}

.legal-contact-box>div:last-child {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.legal-contact-box strong {
  color: #ffffff;
}

.legal-contact-box a {
  color: #ffffff;
}

.legal-contact-box span {
  color: rgba(255, 255, 255, .65);

  font-size: .8rem;
}


/*
|--------------------------------------------------------------------------
| Note bas
|--------------------------------------------------------------------------
*/

.legal-bottom-note {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  margin-top: 35px;

  padding: 24px;

  border-radius: 18px;

  background: #fff1f5;
}

.legal-bottom-note>i {
  flex: 0 0 auto;

  margin-top: 2px;

  font-size: 1.25rem;

  color: #e94878;
}

.legal-bottom-note strong {
  display: block;

  margin-bottom: 6px;

  color: #18181b;
}

.legal-bottom-note p {
  margin: 0;

  font-size: .88rem;
  line-height: 1.65;

  color: #667085;
}


/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.legal-cta {
  padding: 0 0 100px;

  background: #ffffff;
}

.legal-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 48px 52px;

  border-radius: 28px;

  background:
    radial-gradient(circle at 90% 20%,
      rgba(233, 72, 120, .3),
      transparent 35%),
    #18181b;
}

.legal-cta-kicker {
  display: inline-block;

  margin-bottom: 10px;

  color: #e94878;

  font-size: .75rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .1em;
}

.legal-cta h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.12;

  letter-spacing: -.04em;
}

.legal-cta p {
  margin: 13px 0 0;

  color: rgba(255, 255, 255, .6);

  font-size: .92rem;
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {

  .legal-layout {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .legal-sidebar-inner {
    position: relative;
    top: auto;
  }

  .legal-sidebar nav {
    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 760px) {

  .legal-hero {
    padding:
      120px 0 55px;
  }

  .legal-section {
    padding:
      55px 0 70px;
  }

  .legal-sidebar {
    display: none;
  }

  .legal-card {
    padding: 28px 24px;

    border-radius: 19px;
  }

  .legal-data-grid {
    grid-template-columns: 1fr;
  }

  .legal-cta {
    padding-bottom: 65px;
  }

  .legal-cta-inner {
    align-items: flex-start;
    flex-direction: column;

    padding: 35px 28px;

    border-radius: 22px;
  }

}


@media (max-width: 480px) {

  .legal-hero h1 {
    font-size: 2.7rem;
  }

  .legal-card {
    padding: 25px 20px;
  }

  .legal-contact-box {
    align-items: flex-start;
  }

}