@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --mango: #fcd165;
  --mango-strong: #f6bd32;
  --ink: #171717;
  --muted: #6c6c68;
  --paper: #f8f6ef;
  --white: #fff;
  --line: rgba(23,23,23,.12);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(26,22,12,.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Manrope Placeholder", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input, textarea, select { font: inherit; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 120px 0; }

.eyebrow {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow--light { color: rgba(255,255,255,.78); }

h1,h2,h3,p { margin-top: 0; }

h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #15120c;
  color: #fff;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.56), rgba(0,0,0,.18) 55%, rgba(0,0,0,.30)),
    linear-gradient(0deg, rgba(0,0,0,.45), transparent 55%);
}

/* NAV + LOGO */
.nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 150px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav__links a {
  opacity: .86;
  transition: opacity .2s ease;
}

.nav__links a:hover { opacity: 1; }

/* HAMBURGER TOGGLE (mobile) */
.nav__toggle {
  display: none;
  position: relative;
  z-index: 41;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 29px; }

.nav.is-open .nav__toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }


/* Hide the header logo while the mobile menu is open.
   The nav is intentionally above the drawer so the close X remains clickable. */
@media (max-width: 900px) {
  .nav.is-open .brand {
    visibility: hidden;
  }

  .nav.is-open .nav__toggle {
    visibility: visible;
  }
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 39;
  visibility: hidden;
  opacity: 0;
  background: rgba(10,9,6,.55);
  backdrop-filter: blur(3px);
  transition: opacity .25s ease, visibility .25s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 82vw);
  padding: 104px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #171410;
  box-shadow: -30px 0 60px rgba(0,0,0,.32);
  transform: translateX(100%);
  transition: transform .3s ease;
}

.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__link {
  padding: 16px 2px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu__store { margin-top: 28px; }

body.menu-open { overflow: hidden; }

.hero__content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(60px, 8vw, 126px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 800;
}

.hero h1 span { color: var(--mango); }

.hero__copy {
  max-width: 650px;
  margin: 32px auto 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.store-badge { display: inline-flex; }
.store-badge img { display: block; width: 200px; height: 64px; }

.scroll-hint {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-hint span { font-size: 18px; }

.intro { background: var(--paper); }

.intro__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 100px;
  align-items: end;
}

.intro__lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.orbit {
  position: relative;
  min-height: 540px;
  margin-top: 90px;
}



.orbit__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .34;
  background: var(--mango);
}

.orbit__glow--one { left: 18%; top: 18%; }
.orbit__glow--two { right: 15%; bottom: 10%; }

/* =========================================
   LOCAL DELIVERY PILL CARDS
   ========================================= */

/* =========================================
   STRAIGHT PILL CARD LAYOUT
   ========================================= */

.orbit {
  position: relative;
  min-height: auto;
  margin-top: 90px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}




.orbit__glow--one {
  left: 18%;
  top: 18%;
}

.orbit__glow--two {
  right: 15%;
  bottom: 10%;
}


/* ALL 3 CARDS */

.pill-card {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 320px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
  isolation: isolate;

  border-radius: 30px;
  background: #222;

  /* no rotation */
  transform: none !important;

  /* no animation */
  transition: none;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}


/* Remove individual positioning */

.pill-card--left,
.pill-card--center,
.pill-card--right {
  position: relative;

  left: auto;
  right: auto;
  top: auto;

  width: 100%;

  transform: none !important;
}


/* BACKGROUND IMAGE */

.pill-card__bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: none;
  object-position: center;

  z-index: -3;

  /* no hover zoom */
  transform: none !important;
  transition: none !important;
}


/* DARK GRADIENT */

.pill-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, .08) 48%,
      rgba(0, 0, 0, .48) 72%,
      rgba(0, 0, 0, .90) 100%
    );
}


/* CONTENT */

.pill-card__content {
  position: relative;
  z-index: 2;

  width: 100%;
  padding: 30px 28px 32px;

  color: #fff;
}

.pill-card__content span {
  display: block;
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;

  color: var(--mango);
}

.pill-card__content strong {
  display: block;
  margin-bottom: 10px;

  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;

  color: #fff;
}

.pill-card__content p {
  max-width: 260px;
  margin: 0;

  font-size: 14px;
  line-height: 1.65;

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


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

@media (max-width: 900px) {

  .orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 60px;
  }

  .orbit::before,
  .orbit__glow {
    display: none;
  }

  .pill-card {
    min-height: 380px;
  }

  .pill-card__content {
    padding: 24px 20px;
  }

  .pill-card__content strong {
    font-size: 23px;
  }
}


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

@media (max-width: 700px) {

  .orbit {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pill-card {
    min-height: 460px;
    border-radius: 26px;
  }

  .pill-card__content {
    padding: 28px 25px;
  }

  .pill-card__content strong {
    font-size: 28px;
  }

  .pill-card__content p {
    max-width: 300px;
  }
}


/* =========================================
   SMALL PHONE
   ========================================= */

@media (max-width: 400px) {

  .pill-card,
  .pill-card--left,
  .pill-card--center,
  .pill-card--right {
    min-height: 420px;
  }

  .pill-card__content {
    padding: 24px 22px;
  }

  .pill-card__content strong {
    font-size: 25px;
  }
  
  .pill-card__bg {
  object-fit: none;
  height: auto;
}

}

/* Optional subtle image movement */
@media (hover: hover) {
  .pill-card:hover .pill-card__bg {
    transform: scale(1.04);
  }
}

.app-section { background: #fff; }

.center-copy {
  max-width: 850px;
  text-align: center;
}

.center-copy > p:last-child {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-stage {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px) 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 100px);
  margin-top: 60px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  height: 100%;
}

.feature-col--left { align-items: flex-end; text-align: right; }
.feature-col--right { align-items: flex-start; text-align: left; }

.phone-card {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.18));
}

.phone-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 240px;
  padding: 14px 18px;
  /*border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.07);
  backdrop-filter: blur(12px);
  color:#111;!--*/
}

.feature b { font-size: 21px; }
.feature span { font-size: 15px; line-height: 1.5; }

.yellow-band {
  background: var(--mango);
  overflow: hidden;
}

.yellow-band__grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 120px;
  align-items: end;
}

.yellow-band__copy p {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.journey { background: #161616; color: #fff; }

.journey__top {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 90px;
  align-items: end;
}

.journey__top > p {
  margin: 0;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}

.journey__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 70px;
}

.journey__cards article {
  overflow: hidden;
  min-height: 470px;
  padding: 0;
  border-radius: 30px;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}

.journey__image {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.journey__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 28px;
}

.journey__content em {
  color: var(--mango);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.journey__content h3 {
  margin: 8px 0 16px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.journey__content p {
  margin: 0px 0px 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.7;
}

.download {
  position: relative;
  overflow: hidden;
  background: #161616;
  color: #fff;
}

.download__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.download h2 {
  font-size: clamp(52px, 7vw, 100px);
}

.download__inner > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px auto 0;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

.store-row--large { justify-content: center; margin-top: 34px; }
.store-row--large .store-badge img { height: 60px; }

.download__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .3;
  background: var(--mango);
}

.download__orb--a { left: -170px; top: -150px; }
.download__orb--b { right: -190px; bottom: -180px; }

.footer { padding: 76px 0 26px; background: #fff; }

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.footer > .footer__top > .brand {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.brand-dot { color: var(--mango-strong); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__links .contact-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.footer__links .contact-link:hover {
  color: var(--ink);
}

.footer__links h4 {
  margin: 0 0 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer__links a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 22px;
  color: #8a8a84;
  font-size: 11px;
}

.footer__bottom p { margin: 0; }

@media (max-width: 1366px) {
  :root { --max: 1080px; }
  .section { padding: 100px 0; }
  .brand img { height: 32px; max-width: 140px; }
  .hero h1 { font-size: clamp(58px, 7.3vw, 98px); }
  .journey__image { height: 245px; }
}

@media (max-width: 1024px) {
  :root { --max: 920px; }
  .section { padding: 88px 0; }
  .intro__grid, .yellow-band__grid { gap: 60px; }
  .orbit { min-height: 500px; }
  .feature-stage { grid-template-columns: 1fr minmax(220px, 280px) 1fr; }
  .journey__cards { grid-template-columns: repeat(2, 1fr); }
  .journey__image { height: 300px; }
}

@media (max-width: 900px) {
  .brand img { height: 30px; max-width: 132px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .intro__grid, .yellow-band__grid, .journey__top, .footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .intro__lead { max-width: 620px; }
  .orbit { min-height: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 60px; }
  .orbit::before, .orbit__glow { display: none; }
  .pill-card { width: auto; min-height: 230px; }
  .feature-stage { grid-template-columns: 1fr minmax(200px, 260px) 1fr; gap: 16px; }
  .feature { max-width: 200px; padding: 14px 16px; }
  .footer__links { max-width: 620px; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 32px, var(--max)); }
  .section { padding: 76px 0; }

  .nav { padding-top: 20px; }

  .hero__content { padding-top: 90px; }
  .hero h1 { font-size: clamp(52px, 16vw, 82px); }
  .hero__copy { font-size: 15px; line-height: 1.65; }
  .scroll-hint { display: none; }

  h2 { font-size: clamp(40px, 12vw, 62px); }

  .orbit { grid-template-columns: 1fr; }
  .pill-card { min-height: 190px; }
  .pill-card span { margin-bottom: 34px; }

  .feature-stage {
    grid-template-columns: 1fr;
    margin-top: 42px;
    gap: 22px;
  }

  .phone-card {
    order: -1;
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .feature-col {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    text-align: left;
  }

  .feature {
    flex: 1 1 150px;
    max-width: none;
    min-width: 0;
    padding: 15px;
  }

  .journey__cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .journey__cards article { min-height: 410px; border-radius: 24px; }
  .journey__image { height: 235px; }
  .journey__content { padding: 20px; }
  .journey__content h3 { font-size: 25px; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  .brand img { height: 27px; max-width: 120px; }
  .store-row { gap: 8px; }
  .store-badge img { height: 46px; }
  .store-row--large .store-badge img { height: 60px; }
}

@media (max-width: 520px) {
  .journey__cards { grid-template-columns: 1fr; }
  .journey__cards article { min-height: 450px; }
  .journey__image { height: 285px; }
  .footer__links { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 400px) {
  .brand img { height: 54px; max-width: 110px; }
  .shell { width: min(100% - 24px, var(--max)); }
  .hero h1 { font-size: 48px; }
  .store-badge img { height: 60px; }
  .store-badge-2 img {height: 36px; width: 120px;}
}


/* =========================================================
   CONTACT MODAL
   ========================================================= */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

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

  padding: 24px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

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

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 12, .68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-modal__card {
  position: relative;
  z-index: 2;

  width: min(470px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;

  padding: 34px 31px 30px;

  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);

  transform: translateY(16px) scale(.98);
  transition: transform .28s ease;
}

.contact-modal.is-open .contact-modal__card {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 17px;
  right: 17px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  padding: 0;
  border: 1px solid rgba(23,23,23,.15);
  border-radius: 50%;

  background: #fffaf0;
  color: #171717;

  font-size: 19px;
  line-height: 1;
  cursor: pointer;

  transition: transform .2s ease, background .2s ease;
}

.contact-modal__close:hover {
  transform: rotate(90deg);
  background: var(--mango);
}

.contact-modal__eyebrow {
  margin-bottom: 11px;
  padding-right: 48px;

  color: #d99a00;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
}

.contact-modal__title {
  margin: 0;
  padding-right: 48px;

  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 800;
}

.contact-modal__intro {
  margin: 10px 0 0;
  color: #73736e;
  font-size: 12px;
  line-height: 1.6;
}

.contact-modal__line {
  height: 1px;
  margin: 21px 0 20px;
  background: rgba(23,23,23,.14);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  display: block;
  color: #171717;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-field label span {
  color: #777;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  margin: 0;

  border: 1px solid rgba(23,23,23,.18);
  border-radius: 10px;

  background: #f7f4ee;
  color: #171717;

  outline: none;
  box-shadow: none;

  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-field input {
  height: 44px;
  padding: 0 13px;
  font-size: 12px;
}

.contact-field textarea {
  min-height: 96px;
  padding: 12px 13px;
  resize: vertical;
  font-size: 12px;
  line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #85827a;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--mango-strong);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(246,189,50,.14);
}

.contact-phone {
  display: flex;
  width: 100%;
  overflow: hidden;

  border: 1px solid rgba(23,23,23,.18);
  border-radius: 10px;

  background: #f7f4ee;
}

.contact-phone:focus-within {
  border-color: var(--mango-strong);
  box-shadow: 0 0 0 3px rgba(246,189,50,.14);
}

.contact-phone__code {
  width: 46px;
  min-width: 46px;

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

  border-right: 1px solid rgba(23,23,23,.14);

  color: #555;
  font-size: 11px;
  font-weight: 700;
}

.contact-phone input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-submit {
  width: 100%;
  min-height: 50px;

  margin-top: 8px;
  padding: 8px 10px 8px 19px;

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

  border: 0;
  border-radius: 999px;

  background: #171714;
  color: #fff;

  cursor: pointer;

  font-size: 12px;
  font-weight: 700;

  transition: transform .2s ease, background .2s ease;
}

.contact-submit:hover {
  background: #25251f;
  transform: translateY(-1px);
}

.contact-submit__icon {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;
  border-radius: 50%;

  background: var(--mango);
  color: #171717;

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

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .contact-modal {
    padding: 14px;
  }

  .contact-modal__card {
    width: 100%;
    max-height: calc(100dvh - 28px);
    padding: 31px 20px 24px;
    border-radius: 19px;
  }

  .contact-modal__close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }

  .contact-modal__title {
    font-size: 29px;
  }

  .contact-modal__intro {
    padding-right: 25px;
  }

  .contact-field input {
    height: 46px;
  }

  .contact-field textarea {
    min-height: 110px;
  }

  .contact-submit {
    min-height: 52px;
  }
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .85;
}

.contact-submit.is-success {
  background: #171714;
}

.contact-submit.is-success
.contact-submit__icon {
  background: var(--mango);
}

.contact-form__status {
  min-height: 18px;
  margin-top: 2px;

  font-size: 11px;
  line-height: 1.5;

  text-align: center;
}

.contact-form__status.is-success {
  color: #4d672b;
}

.contact-form__status.is-error {
  color: #b13a32;
}


.dti-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dti-badge:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.dti-badge img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer .dti-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  width: fit-content;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer .dti-badge:hover {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.03);
}
.footer .dti-badge img {
  width: 48px !important;
  height: 40px !important;
  object-fit: contain;
  flex-shrink: 0;
}
.footer .dti-badge span {
  white-space: nowrap;
}



.about .about__inner {
  display: flex !important;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about__copy h2 { margin-top: 8px; }
.about__copy p { margin-top: 16px; color: #555; text-align: left; }

.dti-badge--card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dti-badge--card:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.dti-badge--card img { flex-shrink: 0; margin-top: 2px; object-fit: contain; }
.dti-badge--card strong { display: block; font-size: 0.95rem; margin-bottom: 6px; }
.dti-badge--card span { display: block; font-size: 0.85rem; color: #666; line-height: 1.5; }

@media (max-width: 768px) {
  .about .about__inner { grid-template-columns: 1fr; gap: 24px; }
}