:root {
  --black: #1B1919;
  --dark: #111;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-200: #cfd3d8;
  --gray-100: #f5f5f7;
  --white: #fff;
  --font: 'Roboto', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--gray-700); background: var(--white); -webkit-font-smoothing: antialiased; }
.container {
  /*max-width: 1280px; */
  margin: 0 auto; padding: 0 20px;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.text-muted-light { color: rgba(255,255,255,.5); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 16px 36px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
  text-decoration: none; outline: none;
}

.btn.arrow::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  background-image: url('assets/arrow.png');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(-6px);

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.btn.arrow:hover:after {
  background-image: url('assets/arrow.png');
  background-position-x: 0;
  background-position-y: 0;
  background-size: cover;
  line-height: 14px;
  vertical-align: middle;
  height: 14px;
  width: 14px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

.btn:focus-visible { box-shadow: 0 0 0 3px rgba(26,26,26,.3); }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #000; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); border-radius: 100px; }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { opacity: .9; transform: translateY(-1px); }
.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: relative; z-index: 100;
  background: #ffffff;
  border-bottom: none;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; position: relative;
}
.logo {
  font-weight: 500; font-size: 18px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--black);
  display: flex; align-items: center; gap: 8px;
  transition: opacity .2s;
}
.logo:hover { opacity: .7; }
.logo-white { color: var(--white); }
.logo-icon { flex-shrink: 0; }
.nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 32px;
}
.nav a {
  font-size: 16px; font-weight: 500; color: var(--black);
  transition: color .2s; position: relative;
}
.nav a:hover { color: var(--black); }
.nav a:focus-visible { outline: 2px solid var(--black); outline-offset: 4px; border-radius: 2px; }
.header-actions {
  display: flex; align-items: center; gap: 12px;
  margin-left: auto;
}

.lang-toggle {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--gray-300); border-radius: 4px;
}
.lang-toggle a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 54px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; transition: all .25s var(--ease);
}
.lang-toggle-header {
  border-color: rgba(26,26,26,.14);
}
.lang-toggle-header a {
  color: var(--gray-500);
}
.lang-toggle-header a:hover {
  color: var(--black); background: rgba(26,26,26,.04);
}
.lang-toggle-header a.active {
  color: var(--white); background: var(--black);
}
.header-cta {
  border: none;
  min-width: 176px;
  border-radius: 0;
  padding-inline: 26px;
  box-shadow: 0 10px 20px rgba(26,26,26,.08);
}
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 1px;
  transition: all .3s var(--ease);
}

/* ===== MOBILE MENU (dark sidebar) ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  visibility: hidden; pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: auto; }
.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4); opacity: 0;
  transition: opacity .35s var(--ease);
}
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 100%;
  max-width: 100vw;
  background-image: url('assets/bg-pricing.png');
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-close {
  background: none; border: none; color: var(--white);
  cursor: pointer; padding: 4px; transition: opacity .2s;
}
.mobile-close:hover { opacity: .7; }
.mobile-nav {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; padding: 40px 24px; font-size: 16px; font-weight: 500;
  color: var(--white);
}
.mobile-nav a { transition: opacity .2s; }
.mobile-nav a:hover { opacity: .7; }
.lang-toggle-mobile {
  margin: 0 24px 20px;
  align-self: flex-start;
  border-color: rgba(255,255,255,.2);
}
.lang-toggle-mobile a {
  color: rgba(255,255,255,.5);
}
.lang-toggle-mobile a:hover {
  color: var(--white); background: rgba(255,255,255,.06);
}
.lang-toggle-mobile a.active {
  color: var(--black); background: var(--white);
}
.mobile-menu-cta {
  padding: 0 24px 24px; display: flex; flex-direction: column;
  gap: 12px; margin-top: auto;
}

main {
  background: #F3F4F8;
}

/* ===== REQUEST FORM OVERLAY ===== */
.form-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .35s var(--ease);
}
.form-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.form-overlay-inner {
  background: var(--white); border-radius: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 960px; width: 90vw; max-height: 90vh;
  overflow: auto; position: relative;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}
.form-overlay.open .form-overlay-inner { transform: translateY(0); }
.form-left { padding: 48px; position: relative; }
.form-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--gray-500); transition: color .2s;
}
.form-close:hover { color: var(--black); }
.form-title {
  font-size: 32px; font-weight: 500; color: var(--black); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--black); }
.req { color: #e53e3e; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font); font-size: 14px; padding: 12px 16px;
  border: 1px solid var(--gray-200); border-radius: 6px;
  background: var(--gray-100); outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--black);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 8px; }
.form-right {
  position: relative;
  background-image: url('assets/bg-pricing.png');
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;   border-radius: 0 12px 12px 0;
  padding: 48px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.form-phone-wrap { position: relative; width: 200px; }
.form-phone-frame { width: 100%; position: relative; z-index: 2; }
.form-phone-screen {
  position: absolute; top: 3.5%; left: 5.5%; width: 89%; height: 93%;
  object-fit: cover; border-radius: 20px; z-index: 1;
}
.form-testimonial-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-radius: 0; padding: 20px;
  max-width: 100%;
  position: absolute;
  bottom: 16px;
  z-index: 2;
  margin: 0 16px;
}
.form-stars { color: #f5a623; font-size: 16px; margin-bottom: 8px; }
.form-testimonial-card p { font-size: 13px; line-height: 1.5; color: #F3F4F8; margin-bottom: 12px; }
.form-testimonial-author { display: flex; align-items: center; gap: 10px; }
.form-author-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.form-testimonial-author strong { font-size: 13px; color: #F3F4F8; display: block; }
.form-testimonial-author span { font-size: 12px; color: #F3F4F8; }

/* ===== HERO ===== */
.hero { overflow: hidden; }
.hero-top {
  position: relative;
  padding: 12px 0 0;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  margin: 0 180px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 28px; align-items: start; min-height: 520px;
  padding-right: 0;
}
.hero-left { padding-top: 58px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px; font-size: 13px; color: var(--gray-700);
}
.badge-avatars { display: flex; }
.badge-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--white); margin-left: -8px;
  object-fit: cover;
}
.badge-avatar:first-child { margin-left: 0; }
.star { color: #f5a623; }
.hero-title {
  font-size: clamp(42px, 5vw, 72px); font-weight: 500;
  max-width: 75%;
  line-height: 1.02; letter-spacing: -.03em; color: var(--black);
}
.hero-phone { position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  align-self: start;
  margin-top: 20px;
  top: -120px;
}
.phone-device.hero-device { width: 320px; }
.phone-device {
  position: relative; width: 320px;
}
.phone-device-sm { width: 280px; }
.phone-frame-img {
  width: 100%; position: relative; z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.25));
}
.phone-screen-img {
  position: absolute; top: 2.2%; left: 5%; width: 90%; height: 95.5%;
  object-fit: cover; object-position: top;
  border-radius: 32px; z-index: 1;
}
.hero-phone { margin-top: 8px; }
.hero-phone-screen {
  position: absolute;
  inset: 2.4% 5.1% 2.8% 5.1%;
  background: #ece9ee;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}
.hero-screen-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  background: #0f0f11;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.hero-screen-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-signal,
.hero-wifi,
.hero-battery {
  display: inline-flex;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
}
.hero-signal { width: 11px; clip-path: polygon(0 100%, 16% 100%, 16% 82%, 32% 82%, 32% 64%, 48% 64%, 48% 46%, 64% 46%, 64% 28%, 80% 28%, 80% 10%, 100% 10%, 100% 100%); }
.hero-wifi { width: 12px; clip-path: polygon(0 65%, 10% 55%, 20% 47%, 30% 40%, 40% 35%, 50% 33%, 60% 35%, 70% 40%, 80% 47%, 90% 55%, 100% 65%, 85% 65%, 74% 58%, 62% 54%, 50% 52%, 38% 54%, 26% 58%, 15% 65%); }
.hero-battery {
  width: 18px;
  position: relative;
  border: 1.4px solid rgba(255,255,255,.92);
  background: transparent;
}
.hero-battery::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
}
.hero-screen-actions {
  position: absolute;
  inset: 86px 18px auto 18px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.hero-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5c5b62;
  background: rgba(255,255,255,.82);
  box-shadow: 0 4px 14px rgba(31,31,31,.08);
}
.hero-styled-items {
  width: 100%;
  display: block;
}
.hero-clear {
  display: block;
  margin: 18px 0 0 24px;
  font-size: 11px;
  color: #55535b;
  letter-spacing: .02em;
}
.hero-cart-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  background: rgba(255,255,255,.94);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -12px 30px rgba(44,44,44,.06);
  padding: 14px 14px 16px;
}
.hero-cart-select {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #2d2a33;
  margin-bottom: 10px;
}
.hero-cart-progress {
  height: 4px;
  background: #ece7e9;
  border-radius: 999px;
  margin-bottom: 8px;
  overflow: hidden;
}
.hero-cart-progress span {
  display: block;
  width: 46%;
  height: 100%;
  background: #111;
}
.hero-cart-discount {
  font-size: 10px;
  color: #5d5b63;
  margin-bottom: 10px;
}
.hero-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-cart-total,
.hero-cart-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}
.hero-cart-total {
  background: #f1edef;
  color: #3b3841;
  line-height: 1.25;
}
.hero-cart-total strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}
.hero-cart-button {
  background: #111;
  color: var(--white);
  font-size: 14px;
  letter-spacing: .02em;
}
.hero-browser-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #3e3b43;
  box-shadow: 0 8px 14px rgba(35,35,35,.05);
}
.hero-right { padding-top: 112px; }

body {
  --line-color: #C9CFDA;
  --dot-color: #A5A5B3;
  --dot-size: 10px;
  position: relative;
}


.hero-desc-card {
  position: relative;
  background-image: repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 100% 1px, 100% 1px;
  background-repeat: no-repeat;
  background-position: top, bottom;
  margin-left: auto;
  padding: 21px 25px;
  border: 0;
  border-radius: 0;
  max-width: 75%;
  align-items: start;
}

.hero-desc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
          linear-gradient(var(--dot-color), var(--dot-color)),
          linear-gradient(var(--dot-color), var(--dot-color)),
          linear-gradient(var(--dot-color), var(--dot-color)),
          linear-gradient(var(--dot-color), var(--dot-color));

  background-size:
          var(--dot-size) var(--dot-size),
          var(--dot-size) var(--dot-size),
          var(--dot-size) var(--dot-size),
          var(--dot-size) var(--dot-size);

  background-repeat: no-repeat;

  background-position:
          left top,
          right top,
          left bottom,
          right bottom;

  transform: translate(calc(var(--dot-size) / -2), calc(var(--dot-size) / -2));
  width: calc(100% + var(--dot-size));
  height: calc(100% + var(--dot-size));
}
.hanger-icon { color: var(--black); margin: 2px 0 0; display: block; }
.hero-desc-card p { font-size: 15px; line-height: 1.5; color: var(--gray-700); }
.hero-desc-card strong { display: block; margin-bottom: 2px; line-height: 1.35; }
.hero-desc-card strong { color: var(--black); }
.hero-bottom {
  display: flex;
  position: relative;
  min-height: 650px;
  margin-top: -150px !important;
  margin: 0 180px;
  padding: 116px 0 40px;
  /*overflow: hidden;*/
  background-image: url('assets/bg.png');
  background-size: 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
}
.hero-cta-wrap {
  position: relative;
  z-index: 5;
  margin-top: auto
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center;
  padding-top: 86px;
}
.hero-watermark {
  position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(100px, 14vw, 200px); font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.055); white-space: nowrap;
  pointer-events: none; user-select: none;
}

/* ===== BRANDS ===== */
.brands {
  padding: 34px 0 38px;
  border: 1px dashed var(--gray-200);
  margin: 0 180px;
}
.brands-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.brand-logo { height: 32px; width: auto; opacity: .92; transition: opacity .3s; }
.brand-logo:hover { opacity: 1; }
.brand-logo-sm { height: 40px; }

/* ===== PROBLEM TEXT ===== */
.problem-text {
  padding: 88px 0 28px;
}
.problem-heading {
  font-size: clamp(28px, 3.2vw, 48px); font-weight: 500;
  line-height: 1.25; color: var(--black);
}

.problem-text, .outfit-showcase, .elephant-section, .problem-status {
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  margin: 0 180px;
}

/* ===== OUTFIT SHOWCASE ===== */
.outfit-showcase { padding: 98px 0 92px; }
.outfit-stage {
  position: relative;
  min-height: 590px;
}
.outfit-item {
  background-repeat: no-repeat;

  background-position:
          top,
          bottom;
  margin-left: auto;
  border-top: 1px dashed #cfd3d8;
  border-bottom: 1px dashed #cfd3d8;
  position: absolute;
  background-image: url('assets/desktop-03.png');
  background-size: 920px 690px;
}
.outfit-item:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
          linear-gradient(var(--dot-color), var(--dot-color)),
          linear-gradient(var(--dot-color), var(--dot-color)),
          linear-gradient(var(--dot-color), var(--dot-color)),
          linear-gradient(var(--dot-color), var(--dot-color));

  background-size:
          var(--dot-size) var(--dot-size),
          var(--dot-size) var(--dot-size),
          var(--dot-size) var(--dot-size),
          var(--dot-size) var(--dot-size);

  background-repeat: no-repeat;

  background-position:
          left top,
          right top,
          left bottom,
          right bottom;

  transform: translate(calc(var(--dot-size) / -2), calc(var(--dot-size) / -2));
  width: calc(100% + var(--dot-size));
  height: calc(100% + var(--dot-size));
}

.outfit-item-shoes {
  width: 25.37%;
  height: 182px;
  top: 0;
  left: 0;
  background-position: -29px -72px;
}

.outfit-item-skirt {
  height: 196px;
  top: 0;
  left: 45.18%;
  width: 18.52%;
  background-position: -506px -81px;
}
.outfit-item-suit {
  height: 264px;
  bottom: 0;
  left: 25.37%;
  width: 19.81%;
  background-position: -31px -362px;
}
.outfit-item-bag {
  width: 36.3%;
  height: 250px;
  right: 0;
  bottom: 0;
  background-position: -385px -324px;
}

/* ===== ELEPHANT ===== */
.elephant-section { padding: 80px 0; }

.elephant-section .container {
  padding: 0;
}

.elephant-content {
  padding: 40px 48px;
  background-color: var(--white);
}

.elephant-text {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.elephant-header {
  padding: 0 20px;
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
}
.elephant-title {
  font-size: clamp(36px, 4vw, 56px); font-weight: 500;
  line-height: 1.1; color: var(--black);
}
.elephant-tabs { display: flex; gap: 0; }
.elephant-tab {
  background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 24px; font-size: 15px; font-weight: 500;
  color: var(--gray-500); cursor: pointer;
  font-family: var(--font); transition: all .25s var(--ease);
}
.elephant-tab:hover { color: var(--black); }
.elephant-tab.active { color: var(--black); border-bottom-color: var(--black); }
.elephant-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.elephant-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--gray-500); text-transform: uppercase;
  display: block; margin-bottom: 20px;
}
.elephant-desc {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 600;
  line-height: 1.4; color: var(--black);
  margin-top: auto;
}

.elephant-content .phone-device {
  margin-left: auto;
}

/* ===== PROBLEM STATUS ===== */
.problem-status { padding-top: 80px; }

.problem-status .container {
  padding: 0;
}

.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ps-header-card {
  background-image: url('assets/bg-pricing.png');
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;  padding: 48px 40px; display: flex; flex-direction: column;
  justify-content: flex-end; min-height: 400px;
  width: 91%;
  background-size: cover;
}
.ps-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--gray-500); text-transform: uppercase; margin-bottom: auto;
}
.ps-title { font-size: 48px; font-weight: 500; color: var(--white); line-height: 1.1; }
.ps-stats { display: flex; flex-direction: column; gap: 2px; width: 73%;
  margin-left: auto;}
.ps-stat {
  border-top: 1px dashed #cfd3d8;
  padding: 28px 32px;
  min-height: 160px;
}
.ps-stat:hover {
  background-color: var(--white);
}

.ps-stat:hover .ps-number{
  display: none;
}

.ps-stat:hover .ps-stat-label{
  display: none;
}

.ps-stat:hover .ps-stat-desc{
  display: block;
}

.ps-stat-desc {
  display: none;
}

.ps-number {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 600;
  color: var(--black); display: block;
}
.ps-stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--gray-500); text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.ps-stat-desc { font-size: 14px; color: var(--gray-700); line-height: 1.5; }

/* ===== TESTIMONIAL ===== */
.testimonial { padding: 80px 0; margin: 0 180px;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px),  /* top */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);  /* bottom */

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px,   /* top */
          100% 1px;   /* bottom */

  background-position:
          0 0,        /* left */
          100% 0,     /* right */
          0 0,        /* top */
          0 100%;     /* bottom */

  background-repeat: no-repeat;
}
.quote-mark {
  font-size: 72px; font-weight: 500; color: var(--gray-200);
  line-height: .8; margin-bottom: 16px; font-style: normal;
}
.testimonial blockquote {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 600;
  line-height: 1.45; color: var(--black); max-width: 780px;
  margin: 0 auto 28px; font-style: normal;
}
.testimonial-author {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; font-size: 14px; color: var(--gray-500);
}
.testimonial-author strong {
  color: var(--black); letter-spacing: .06em; font-size: 13px;
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; margin-bottom: 4px;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  color: var(--gray-500); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.section-label-light {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 500;
  line-height: 1.15; color: var(--black); margin-bottom: 48px;
  padding-top: 164px;
}
.section-heading-light {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 500;
  line-height: 1.15; color: var(--white); margin-bottom: 32px;
}

/* ===== STYLEBOARD ===== */
.styleboard-section, .canva-section, .differentiators, .marquee, .how-it-works { padding: 120px 0 80px;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);  /* bottom */

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px;   /* bottom */

  background-position:
          0 0,        /* left */
          100% 0,     /* right */
          0 100%;     /* bottom */

  background-repeat: no-repeat;
  margin: 0 180px;
}

.styleboard-section .section-heading {
  padding-top: 12px;
}

.styleboard-section .container {
  padding: 0;
}

.video-wrap {
  background-image: url('assets/bg.png');
  background-size: 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
}

.video-poster {
  height: 75%;
  width: auto;
  margin: 7% auto;
  vertical-align: middle;
}

.laptop-mockup { max-width: 100%; margin: 0 auto;
  background-image: url('assets/bg.png');
  background-size: 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
}
.laptop-screen {
  max-width: 75%;
  margin: 0 auto;
  overflow: hidden; aspect-ratio: 16/10;
}
.laptop-screen-img { width: 100%; height: 100%; object-fit: contain; }
.laptop-base {
  height: 16px;
  border-radius: 0 0 8px 8px; margin: 0 40px;
}
.laptop-mockup-dark .laptop-screen {  }
.laptop-base-dark {  }

/* ===== CANVA SECTION ===== */
.canva-section { padding: 80px 0; }
.canva-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.canva-heading {
  font-size: clamp(28px, 3vw, 28px); font-weight: 500;
  line-height: 1.15; color: var(--black);
}
.canva-desc { font-size: 16px; line-height: 1.7; color: var(--gray-700); margin-bottom: 32px;font-weight: 500; }
.canva-cta { display: flex; gap: 12px; }

/* ===== DIFFERENTIATORS ===== */
.differentiators { padding: 100px 0; }
.diff-row {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.diff-heading {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 500;
  line-height: 1.1; color: var(--black);
}
.diff-list { display: flex; flex-direction: column;
  gap: 16px;
}

.container.diff-row {
  padding-right: 0;
}

.diff-item {
  background-color: var(--white);
  padding: 20px 28px;
}
.diff-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; font-size: 18px; font-weight: 600;
  color: var(--black); cursor: pointer; list-style: none;
  transition: opacity .2s;
}
.diff-item summary:hover { opacity: .7; }
.diff-item summary::-webkit-details-marker { display: none; }
.diff-item summary::after {
  content: '+'; margin-left: auto; font-size: 22px;
  font-weight: 300; color: var(--gray-500);
  transition: transform .3s var(--ease);
}
.diff-item[open] summary::after { content: '–'; }
.diff-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background-image: url('assets/bg-pricing.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white); border-radius: 8px; font-size: 14px; flex-shrink: 0;
}
.diff-item p {
  font-size: 15px; line-height: 1.6; color: var(--gray-700);
  padding: 0 0 20px 52px;
  animation: fadeIn .3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden; padding: 40px 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: clamp(40px, 5vw, 72px); font-weight: 500;
  color: var(--gray-300); flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding-top: 80px; }

.how-it-works .container {
  position: relative;
  padding: 0;
}

.step-wrapper {
  background-color: #F3F4F8;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px),  /* top */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);  /* bottom */

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px,   /* top */
          100% 1px;   /* bottom */

  background-position:
          0 0,        /* left */
          100% 0,     /* right */
          0 0,        /* top */
          0 100%;     /* bottom */

  background-repeat: no-repeat;
  position: sticky;
  top: 20px;
  margin-bottom: 20px;
}

.step-wrapper:nth-child(1) {
  z-index: 20;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);  /* bottom */

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px;   /* bottom */

  background-position:
          0 0,        /* left */
          100% 0,     /* right */
          0 100%;     /* bottom */
}

.step-wrapper:nth-child(2) {
  top: 40px;
  z-index: 30;
}

.step-wrapper:nth-child(3) {
  top: 60px;
  z-index: 40;
}

.step-wrapper:nth-child(4) {
  top: 80px;
  z-index: 50;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px); /* top */

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px;   /* top */

  background-position:
          0 0,        /* left */
          100% 0,     /* right */
          0 0;      /* top */
}

.step-wrapper:nth-child(4) .step {
  overflow: unset;
  max-height: unset;
}

.step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-height: 450px;
  overflow: hidden;
  padding: 60px 20px; border-bottom: 1px solid var(--gray-200);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 14px; font-weight: 600; color: var(--black);
  display: inline-block; padding: 6px 12px;
  background-color: var(--white);
  margin-bottom: 20px;
}
.step-title {
  font-size: clamp(24px, 2.5vw, 36px); font-weight: 500;
  color: var(--black); margin-bottom: 16px;
}
.step-desc {
  font-size: 15px; line-height: 1.7; color: var(--gray-700); max-width: 420px;
}
.step-visual { display: flex; justify-content: center;
  background-image: url('assets/bg-pricing.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}
.step-visual .phone-device { width: 300px; }

/* ===== SEE YOURSELF ===== */
.see-yourself { }
.see-yourself-row {
  display: grid;
  grid-template-columns: 45.18% 54.82%;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* center */
          1px 100%,   /* right */
          100% 1px,   /* top */
          100% 1px;   /* bottom */

  background-position:
          0 0,
          45.18% 0,
          100% 0,
          0 0,
          0 100%;

  background-repeat: no-repeat;
  margin: 0 180px;
  padding: 164px 0;
}
.see-yourself-heading {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 500;
  line-height: 1.1; color: var(--black);
}
.see-yourself-desc { font-size: 16px; line-height: 1.7; color: var(--gray-700); }

/* ===== PLACEMENT ===== */
.placement-section { padding: 0;
margin: 0 180px;}

.placement-section .container {
  padding: 0;
}

.placement-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 700px;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, /* left */ 1px 100%, /* center */ 1px 100%, /* right */ 100% 1px, /* top */ 100% 1px;
  background-position: 0 0, 45.18% 0, 100% 0, 0 0, 0 100%;
  background-repeat: no-repeat;
}

.placement-list {
  display: flex;
  flex-direction: column;
}

.placement-row {
  padding: 30px 20px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s ease, background 0.3s ease;
  min-height: 350px;
}

.placement-row:first-child {
  background-image: repeating-linear-gradient(
          to right,
          #cfd3d8 0 4px,
          transparent 4px 8px
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}

.placement-row.active {
  opacity: 1;
  background: rgba(205, 206, 211, 0.2);
}

.placement-row .placement-text p {
  display: none;
  margin-top: 12px;
}

.placement-row.active .placement-text p {
  display: block;
}

.placement-icon {
  display: inline-flex;
  align-items: center;
  background-image: url('assets/bg-pricing.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid #d9d9d9;
}

.placement-text h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.placement-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #8d8d98;
  max-width: 320px;
}

.placement-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  padding: 40px;
  background-image: url('assets/bg-pricing.png');
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  background-size: cover;
}

.phone-device {
  position: relative;
  width: 320px;
}

.phone-frame-img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-screen-img {
  position: absolute;
  top: 0.5%;
  left: 5.5%;
  width: 90%;
  height: 98%;
  object-fit: cover;
  border-radius: 32px;
}

.placement-text p,
.placement-row .placement-visual {
  display: none;
}

.placement-row.active .placement-text p,
.placement-row.active .placement-visual {
  display: block;
}

.placement-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--white); border-radius: 10px; font-size: 16px; margin-bottom: 16px;
}

.placement-text h3 { font-size: 28px; font-weight: 500; color: var(--black); margin-bottom: 16px; }
.placement-text p { font-size: 18px;  font-weight: 500; line-height: 1.7; color: var(--gray-700); }
.placement-visual { display: flex; justify-content: center; }
.placement-visual .phone-device { width: 280px; }
.placement-accordion {
  border-bottom: 1px solid var(--gray-200);
}
.placement-accordion summary {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 0; cursor: pointer; list-style: none;
}
.placement-accordion summary::-webkit-details-marker { display: none; }
.placement-accordion summary::after {
  content: '+'; margin-left: auto; font-size: 20px;
  font-weight: 300; color: var(--gray-500);
}
.placement-accordion[open] summary::after { content: '–'; }
.placement-accordion strong { font-size: 22px; font-weight: 600; color: var(--gray-500); }
.placement-accordion p {
  font-size: 15px; line-height: 1.7; color: var(--gray-700);
  padding: 0 0 24px 56px; animation: fadeIn .3s var(--ease);
}

/* ===== WHY CHANGES ===== */
.why-changes {
  margin: 0 180px;
}


.why-layout {
  padding-top: 164px;
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 700px;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, /* left */ 1px 100%, /* center */ 1px 100%, /* right */ 100% 1px, /* top */ 100% 1px;
  background-position: 0 0, 30% 0, 100% 0, 0 0, 0 100%;
  background-repeat: no-repeat
}


.why-list { margin: 0 auto; }
.why-item {
  cursor: pointer;
  display: flex; gap: 24px; padding: 35px 20px;
  position: relative;
  background-image: repeating-linear-gradient(
          to right,
          #cfd3d8 0 4px,
          transparent 4px 8px
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left top;
  min-height: 180px;
}
.why-num {
  background: var(--white);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  padding: 6px 12px;
  flex-shrink: 0; height: fit-content;
}

.why-item.active .why-item-image-wrapper {
  opacity: 1;
}

.why-item .why-item-image-wrapper {
  opacity: 0;
  position: absolute;
  left: -50%;
  max-height: 180px;
  transform: translateX(44%);
  top: 0;
  transition: opacity 0.25s ease;
}

img.why-item-image {
  object-fit: cover;
  max-width: 240px;
}

.why-item h4 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.why-item p { font-size: 15px; line-height: 1.65; color: var(--gray-700); }

/* ===== NUMBERS ===== */
.numbers-section { padding-top: 100px; margin: 0 180px;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px),  /* top */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);  /* bottom */

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px,   /* top */
          100% 1px;   /* bottom */

  background-position:
          0 0,        /* left */
          100% 0,     /* right */
          0 0,        /* top */
          0 100%;     /* bottom */

  background-repeat: no-repeat;

}

.numbers-section .container {
  padding: 0;
}

.numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 8px;
  background-image:
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* 33% */
          repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* 66% */
          repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);  /* top */

  background-size:
          1px 100%,
          1px 100%,
          100% 1px;

  background-position:
          33.33% 0,
          66.66% 0,
          0 0;

  background-repeat: no-repeat;
}
.number-card { text-align: center;
  padding: 40px 20px;
}
.number-value {
  display: block; font-size: clamp(36px, 4vw, 56px);
  font-weight: 500; color: var(--black); margin-bottom: 8px;
}
.number-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--gray-500); text-transform: uppercase; line-height: 1.5;
}

.complete-look.placement-section .placement-visual .laptop-mockup{
  background-image: unset;
}

.complete-look .placement-row {
  min-height: 270px;
  background-image: repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}

/* ===== COMPLETE THE LOOK ===== */
.complete-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.complete-heading {
  font-size: clamp(28px, 3vw, 44px); font-weight: 500;
  line-height: 1.15; margin-bottom: 20px;
}
.complete-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.6); margin-bottom: 32px;
}
.complete-accordion { display: flex; flex-direction: column; }
.complete-item { border-bottom: 1px solid rgba(255,255,255,.15); }
.complete-item summary {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; font-size: 16px; font-weight: 600;
  cursor: pointer; list-style: none; color: var(--white);
  transition: opacity .2s;
}
.complete-item summary:hover { opacity: .8; }
.complete-item summary::-webkit-details-marker { display: none; }
.complete-item summary::after {
  content: '+'; margin-left: auto; font-size: 18px;
  color: rgba(255,255,255,.4);
}
.complete-item[open] summary::after { content: '–'; }
.ci-icon { display: flex; align-items: center; opacity: .6; }
.complete-item p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.5); padding: 0 0 16px 0;
  animation: fadeIn .3s var(--ease);
}

/* ===== GAME CHANGER ===== */
.gc-list { max-width: 700px; margin: 0 auto; }
.gc-item {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.gc-num {
  font-size: 14px; font-weight: 600; color: var(--gray-500);
  padding: 6px 12px; border: 1px solid var(--gray-200);
  border-radius: 6px; flex-shrink: 0; height: fit-content;
}
.gc-item h4 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.gc-item p { font-size: 15px; line-height: 1.65; color: var(--gray-700); }

/* ===== BUILT FOR ===== */
.built-for {
  margin: 0 180px;
  background-image:
    /* LEFT */
          repeating-linear-gradient(
                  to bottom,
                  #cfd3d8 0 4px,
                  transparent 4px 8px
          ),

            /* RIGHT */
          repeating-linear-gradient(
                  to bottom,
                  #cfd3d8 0 4px,
                  transparent 4px 8px
          ),

            /* BOTTOM */
          repeating-linear-gradient(
                  to right,
                  #cfd3d8 0 4px,
                  transparent 4px 8px
          );

  background-repeat: no-repeat;

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px;   /* bottom */

  background-position:
          left top,   /* left */
          right top,  /* right */
          left bottom;/* bottom */
}

.built-for .container {
  padding: 0;
}

.audience-item {
  background-image: repeating-linear-gradient(
          to right,
          #cfd3d8 0 4px,
          transparent 4px 8px
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}
.audience-item summary {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 20px; font-size: 16px; cursor: pointer;
  list-style: none; color: var(--black); flex-wrap: wrap;
  transition: opacity .2s;
}
.audience-item summary:hover { opacity: .7; }
.audience-item summary::-webkit-details-marker { display: none; }
.audience-item summary::after {
  content: '+'; font-size: 20px;
  color: var(--gray-500);
}
.audience-item[open] summary::after { content: '–'; }
.aud-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background-image: url('assets/bg-pricing.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white); border-radius: 10px; flex-shrink: 0;
}
.aud-desc-inline {
  font-size: 14px; color: var(--gray-500); font-weight: 400;
  flex-basis: 55%; margin-left: auto;
}
.aud-tags {
  max-width: 55%;
  margin-left: auto;
  display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 24px;
  animation: fadeIn .3s var(--ease);
}
.aud-tags span {
  background: var(--white);
  padding: 8px 16px;
  font-size: 13px; color: var(--black);
}
/* ===== RESULTS ===== */
.results-section {
  padding-top: 164px;
  background: var(--gray-100);
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  margin: 0 180px;
}

.results-grid > div {
  padding: 36px 16px;
  position: relative;
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: 30% 26% 21% 23%;
  min-height: 560px;
  justify-content: center;
  position: relative;
  grid-template-rows: 30.82% 20.33% 21.17% 27.67%;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  background-color: var(--white);
}

.results-heading-cell {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.results-heading-cell h2 {
  font-size: clamp(28px, 3vw, 44px); font-weight: 500;
  line-height: 1.15; color: var(--black);
}

.results-stat-cell.top-right {
  grid-column: 4;
  grid-row: 1 / 2;
}

.results-stat-cell.center {
  grid-column: 3;
  grid-row: 2 / 3;
}

.results-stat-cell.bottom-left {
  grid-column: 2;
  grid-row: 3 / 4;
}

.results-quote-cell {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
  display: flex;
  align-items: flex-end;
}

.results-ceo-cell {
  grid-column: 4;
  grid-row: 3 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 20px;
}

.results-stat-cell {
  padding: 32px; border-radius: 4px;
}
.rs-number {
  display: block; font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500; color: var(--black);
}
.rs-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--gray-500); text-transform: uppercase;
}
.results-why-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--gray-500); text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.results-why p { font-size: 15px; line-height: 1.6; color: var(--gray-700); }

.quote-mark-sm {
  font-size: 40px; font-weight: 500; color: var(--gray-300);
  line-height: .8; margin-bottom: 8px;
}
.results-ceo-cell p { font-size: 15px; line-height: 1.6; color: var(--gray-700); margin-bottom: 16px; }
.ceo-info { display: flex; align-items: center; gap: 12px; }
.ceo-photo { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.ceo-info strong { font-size: 13px; letter-spacing: .04em; }
.ceo-info span { font-size: 13px; color: var(--gray-500); }

/* ===== LIVE SECTION ===== */
.live-section { margin: 0 180px;}

.live-section .container {
  padding: 164px 0 100px 0;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position:
          0% 0,
          45.18% 0,
          63.70% 0,
          100% 0;

  grid-template-columns: 45.18% 18.52% 36.30%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.live-section .section-heading {
  grid-column: 1;
  grid-row: 1;
  padding: 0 20px;
}

.live-subtitle {
  grid-column: 1;
  font-size: 16px; color: var(--gray-500);
  margin-top: -32px; margin-bottom: 48px;
  padding: 0 20px;
}
.live-steps { max-width: 700px; margin: 0 auto;
  grid-column: 2 / 4;

}
.live-step {
  display: grid;
  grid-template-columns: 36% 64%; padding: 28px 0;
  background-image: repeating-linear-gradient(
          to right,
          #cfd3d8 0 4px,
          transparent 4px 8px
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}
.live-num {
  font-size: 42px; font-weight: 500; color: var(--black);
  flex-shrink: 0; min-width: 56px;
}
.live-step h4 { font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.live-step p { font-size: 18px; line-height: 1.6; color: var(--gray-700);
  max-width: 85%;
}
.live-cta {
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 75%;
  grid-column: 2 / 4;
  display: block;
  margin-top: 48px;
}

/* ===== PRICING ===== */
.pricing-section { padding: 0;

  background-image: url('assets/bg-pricing.png');
  background-size: cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  color: var(--white); }

.pricing-section .container {

  background-image:
    /* LEFT */
          repeating-linear-gradient(
                  to bottom,
                  #C9CFDA33 0 4px,
                  transparent 4px 8px
          ),

            /* RIGHT */
          repeating-linear-gradient(
                  to bottom,
                  #C9CFDA33 0 4px,
                  transparent 4px 8px
          ),

            /* BOTTOM */
          repeating-linear-gradient(
                  to right,
                  #C9CFDA33 0 4px,
                  transparent 4px 8px
          );

  background-repeat: no-repeat;

  background-size:
          1px 100%,   /* left */
          1px 100%,   /* right */
          100% 1px;   /* bottom */

  background-position:
          left top,   /* left */
          right top,  /* right */
          left bottom;/* bottom */

  padding: 100px 0;
  margin: 0 180px;

}

.pricing-sub { font-size: 16px; color: rgba(255,255,255,.5); padding-bottom: 64px;

  background-image: repeating-linear-gradient(to right, #C9CFDA33 0 4px, transparent 4px 8px);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}


.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
  background-image: repeating-linear-gradient(to right, #C9CFDA33 0 4px, transparent 4px 8px);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}

.pricing-card {
  padding: 40px 32px; text-align: left;
  border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s;
  background-image: repeating-linear-gradient(
          to bottom,
          #C9CFDA33 0 4px,
          transparent 4px 8px
  );
  background-repeat: no-repeat;
  background-size: 1px 100%;
  background-position: right top;

}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.pricing-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
}
.price { font-size: 48px; font-weight: 500; margin-bottom: 4px; }
.price span { font-size: 16px; font-weight: 500; opacity: .6; }
.price-note { font-size: 14px; color:var(--white); margin-bottom: 24px; }
.pricing-card .btn { margin-bottom: 24px; }
.pricing-card ul { list-style: none; }
.pricing-card li {
  font-size: 14px; color: var(--white);
  padding: 6px 0; display: flex; align-items: center; gap: 8px;
}
.pricing-card li::before { content: '✓'; color: rgba(255,255,255,.4); font-size: 12px; }
.pricing-more { margin-top: 16px; }

/* ===== PRICING QUOTE ===== */
.pricing-quote {
  padding: 60px 0; color: var(--white);
  background-image: url('assets/bg-pricing.png');
  background-size: 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  border-top: 1px solid rgba(255,255,255,.1);
}
.pq-inner {
  margin-top: 49px;
  padding: 64px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-image:
    /* vertical lines */
          repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),

            /* top + bottom */
          repeating-linear-gradient(to right, #C9CFDA33 0 4px, transparent 4px 8px),
          repeating-linear-gradient(to right, #C9CFDA33 0 4px, transparent 4px 8px);

  background-repeat: no-repeat;

  background-size:
          1px 100%,  /* vertical 1 */
          1px 100%,  /* vertical 2 */
          1px 100%,  /* vertical 3 */
          100% 1px,  /* top */
          100% 1px;  /* bottom */

  background-position:
          33% 0,     /* first vertical */
          67% 0,     /* second vertical */
          100% 0,     /* third vertical */
          0 0,       /* top */
          0 100%;
}
.quote-mark-light {
  font-size: 48px; font-weight: 500;
  color: rgba(255,255,255,.15); line-height: .8;
  text-align: left;
}
.pq-inner p { font-size: 28px; font-weight: 600; line-height: 1.5; margin-bottom: 20px;
  grid-column: 2/4;
  text-align: left;
  padding-right: 20px;
}
.pq-author {
  display: flex; align-items: center; gap: 12px; font-size: 13px; grid-column: 2/3;
}

.pq-author div {
  text-align: left;
}

.pq-author strong { letter-spacing: .04em; }
.pq-author span { color: rgba(255,255,255,.5); }

/* ===== FAQ ===== */
.faq-section { padding: 100px 0;
  margin: 0 180px;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
}

.faq-section .container {
  padding: 0;
}

.faq-item {
  background-image: repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
  padding: 16px 20px;
}
.faq-item summary {
  display: grid;
  grid-template-columns: 25.37% 19.81% 18.52% 36.30%;
  align-items: start;
  padding: 24px 0; font-size: 18px; font-weight: 600;
  color: var(--black); cursor: pointer; list-style: none;
  transition: opacity .2s;
}

.faq-item .faq-question {
  grid-column: 2 / 4;
}

.faq-item summary:hover { opacity: .7; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; margin-left: auto; font-size: 22px;
  font-weight: 300; color: var(--gray-500);
  grid-column: 4;
}
.faq-item[open] summary::after { content: '–'; }
.faq-num { font-size: 14px; font-weight: 500; color: var(--gray-500); flex-shrink: 0; }
.faq-item p {
  font-size: 15px; line-height: 1.65; color: var(--gray-700);
  padding: 0 0 24px 48px;
  animation: fadeIn .3s var(--ease);
  padding-left: 25.37%;
}

/* ===== FINAL CTA ===== */
.final-cta { padding: 100px 0;
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  margin: 0 180px;
}

.final-cta .container {
  padding: 0;
  display: grid;
  grid-template-columns: 25.37% 19.81% 18.52% 36.30%;
}

.fcta-top {
  padding: 56px 20px 48px;
  grid-column: 1 / 5;
  display: grid;
  grid-template-columns: 25.37% 19.81% 18.52% 36.30%;
}

.fcta-top .section-label {
  grid-column: 1;
}

.fcta-heading {
  grid-column: 2 / 5;
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 500;
  line-height: 1.15; color: var(--black); margin-bottom: 16px;
}
.fcta-sub { font-size: 16px; color: var(--gray-500);
  grid-column: 2 / 5;
}
.fcta-row {
  display: grid;
  grid-column: 1 / 5;
  grid-template-columns: inherit;
  align-items: start; padding-bottom: 60px;
}

.fcta-video {
  grid-column: 1 / 3;
  max-width: 90%;
}

.fcta-video.mobile {
  display: none;
}

.fcta-top, .fcta-row {
  background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  background-color: var(--white);
}

.fcta-checklist {
  grid-column: 3 / 5;
  background-image:
          repeating-linear-gradient(
                  to right,
                  #cfd3d8 0 4px,
                  transparent 4px 8px
          );

  background-repeat: no-repeat;

  background-size:
          100% 1px;   /* top */


  background-position:
          left top;
  padding-top: 32px;
}

.fcta-buttons {
  background-image:
          repeating-linear-gradient(
                  to right,
                  #cfd3d8 0 4px,
                  transparent 4px 8px
          );

  background-repeat: no-repeat;

  background-size:
          100% 1px;   /* top */


  background-position:
          left top;
  padding-top: 34px;
}

.video-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden; cursor: pointer;
}
.video-poster {
   object-fit: cover;
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer;
  transition: transform .3s var(--ease);
}
.video-wrap:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.check-item {
  font-size: 16px; color: var(--gray-700); padding: 8px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.check-icon { color: var(--black); font-weight: 700; flex-shrink: 0; }
.fcta-buttons { display: flex; gap: 12px; margin-top: 24px; }
.trust-badges {
  display: grid;
  grid-template-columns: 25.37% 19.81% 18.52% 36.30%;
  grid-column: 1/5;
}

.trust-badge {
  min-height: 420px;
  padding: 56px 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.trust-badge:nth-child(2),
.trust-badge:nth-child(4) {
  padding-top: 190px;
}

.trust-badge span {
  display: block;
  margin-bottom: 78px;
}

.trust-badge strong {
  display: block;
}

.trust-badge strong::after {
  content: "";
  display: block;
  margin-top: 18px;
  height: 1px;
  background-image: repeating-linear-gradient(
          to right,
          #1d1d1f 0 4px,
          transparent 4px 8px
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}

.trust-badge span { font-size: 18px; color: #A5A5B3; display: block; margin-bottom: 8px; }
.trust-badge strong { font-size: 20px; color: var(--black); }

/* ===== FOOTER ===== */
.footer { padding: 0 180px;
  background-image: url('assets/bg-pricing.png');
  background-size: cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  color: var(--white); }

.footer .container {
  background-image: repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
  repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-position: 0% 0, 25.37% 0, 45.18% 0, 63.70% 0, 100% 0;
  padding: 68px 20px;
}

.footer-top { margin-bottom: 60px; position: relative; }
.footer-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--gray-500); text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.footer-heading {
  font-size: clamp(28px, 3vw, 44px); font-weight: 500;
  line-height: 1.2; max-width: 700px; margin-bottom: 20px;
}
.footer-link {
  font-size: 24px; font-weight: 600; color: var(--gray-500);
  font-style: italic; transition: color .25s;
}
.footer-link:hover { color: var(--white); }
.footer-top .lang-toggle {
  position: absolute; top: 0; right: 0;
  border-color: rgba(255,255,255,.2);
}
.footer-top .lang-toggle a {
  color: rgba(255,255,255,.5);
}
.footer-top .lang-toggle a:hover {
  color: var(--white); background: rgba(255,255,255,.06);
}
.footer-top .lang-toggle a.active {
  background: var(--white); color: var(--black);
}
.footer-bottom {
  display: flex; align-items: flex-start; gap: 60px;
  flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.footer-copy { font-size: 13px; color: var(--gray-500); min-width: 140px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible { outline: 1px solid var(--white); outline-offset: 2px; }
.footer-social { display: flex; gap: 16px; margin-left: auto; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  color: var(--white); border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-left { text-align: center; }
  .hero-phone { justify-self: center; margin-top: 0; }
  .hero-right { display: flex; justify-content: center; }
  .hero-desc-card { max-width: 100%; }
  .canva-row, .diff-row, .complete-row, .fcta-row,
  .see-yourself-row, .placement-row, .elephant-content {
    grid-template-columns: 1fr;
  }
  .step { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .results-stat-cell, .results-ceo-cell, .results-quote-cell { grid-column: auto; grid-row: auto; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-header-card { min-height: 200px; }
  .form-overlay-inner { grid-template-columns: 1fr; }
  .form-right { border-radius: 0 0 12px 12px; }

}

@media (max-width: 768px) {
  main > section {
    margin: 0 20px !important;
  }

  body {
    --dot-size: 5px;
  }

  .btn {
    padding: 14px 9px;
  }

  .container { padding: 0 20px; }
  .nav { display: none; }
  .header-cta { display: none; }
  .lang-toggle-header { display: none; }
  .burger { display: flex; }

  .hero-top {
    padding: 24px 0 0; margin: 0;
    background-image:
            repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
            repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
            repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);

    background-repeat: no-repeat;

    background-size:
            1px 100%,
            1px 100%,
            1px 100%;

    background-position:
            0% 0,
            50% 0,
            100% 0;
  }

  .quote-mark svg {
    width: 55px;
  }

  .hero-inner {
    gap: 0;
    min-height: 350px;
    padding-right: 3px;
  }

  .hero-left {
    text-align: left;
    padding-top: 0;
  }
  .badge { margin-bottom: 16px; }

  .hero-title { font-size: clamp(32px, 8vw, 48px); }

  .hero-right { justify-content: flex-start;
    padding-top: 0 !important;
  }

  .hero-desc-card { padding: 20px; border: none;
    max-width: 65%;
    margin-left: auto;
  }
  .hero-desc-card p { font-size: 14px; }

  .hero-bottom {
    margin: 0 !important;
    padding: 20px 0;
    min-height: 350px;
    background-size: cover;
  }

   .hero-bottom .phone-device.hero-device {
    width: 160px;
  }

   .hero-bottom .hero-phone {
     top: -60px !important;
   }

  .hero-cta {
    flex-direction: row; gap: 8px; padding-top: 40px;
    justify-content: flex-start;
  }
  .hero-cta .btn { padding: 12px 20px; font-size: 13px; }
  .hero-watermark { font-size: 80px; }

  .brands { padding: 24px 0;
    margin: 0;
  }
  .brands-row { justify-content: center; gap: 16px 24px; }
  .brand-logo { height: 20px; }

  .problem-text, .outfit-showcase, .elephant-section, .problem-status,
  .how-it-works, .results-section, .results-grid, .live-section,
  .faq-section, .final-cta {
    padding: 24px 0 0; margin: 0;
    background-image:
            repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
            repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px),
            repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px);

    background-repeat: no-repeat;

    background-size:
            1px 100%,
            1px 100%,
            1px 100%;

    background-position:
            0% 0,
            50% 0,
            100% 0;
  }

  .outfit-stage .outfit-item {
    width: 100%;
    background-size: 200% 200%;
    height: auto;
    background-repeat: no-repeat;
    background-size: 200% 200%;
    position: relative;
    aspect-ratio: 1 / 1;
    left: unset !important;
    top: unset !important;
  }


  .outfit-item.outfit-item-shoes {
    background-position: 0% 0%;
  }

  .outfit-item.outfit-item-skirt {
    background-position: 100% 0%;
  }

  .outfit-item.outfit-item-suit {
    background-position: 0% 100%;
  }

  .outfit-item.outfit-item-bag {
    background-position: 100% 100%;
  }

  .container.outfit-stage {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }


  .problem-status .ps-header-card {
    background: transparent;
    text-align: center;
    min-height: unset;
  }

  .ps-header-card .ps-label {
    color: #A5A5B3;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .ps-header-card .ps-title {
    color: var(--black);
    font-size: 28px;
  }

  .ps-stats {
    max-width: 100%;
    width: 100%;
    gap: 18px;
  }

  .ps-stat {
    background-color: var(--white);
    min-height: 192px;
    padding: 20px 14px;
    border: 1px dashed #cfd3d8;
  }

  .ps-stat .ps-stat-desc {
    border-top: 1px dashed #C9CFDA;
    display: block;
    padding: 8px 0;
    color: #1B1919;
    font-weight: 500;
  }


  .problem-text { padding: 40px 0; }
  .problem-heading { font-size: clamp(20px, 5vw, 32px); }

  .outfit-showcase { padding: 0 0 40px; }

  .elephant-section { padding: 40px 0; }
  .elephant-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .elephant-title { font-size: clamp(28px, 7vw, 40px); }

  .problem-status { padding: 40px 0; }
  .ps-header-card { padding: 32px 24px; }

  .testimonial { padding: 40px 0; }
  .testimonial blockquote { font-size: clamp(18px, 4vw, 24px); }

  .styleboard-section { padding: 56px 0 0; }

  .section-heading { font-size: clamp(28px, 6vw, 40px); margin-bottom: 32px;
    padding-top: 0;
  }

  .canva-row {
    gap: 0;
  }

  .canva-section { padding: 24px 0 50px; }

  .canva-section .container.canva-row {
    padding: 0 6px;
  }

  .canva-heading { font-size: clamp(20px, 5vw, 32px); margin-bottom: 16px; }
  .canva-cta .btn { width: 100%; }

  .differentiators { padding: 60px 0; }
  .container.diff-row { gap: 24px; padding-left: 0 }
  .diff-heading { font-size: clamp(28px, 6vw, 40px); margin-bottom: 0; padding-left: 6px; }
  .diff-item summary { font-size: 16px; padding: 16px 0; }

  .diff-item {
    padding: 14px;
  }

  .diff-item p { padding-left: 0; font-size: 14px; }

  .diff-item summary::after {
    content: unset;
  }

  .marquee { padding: 24px 0; margin: 0 20px; }
  .marquee-track span { font-size: clamp(28px, 7vw, 48px); }

  .how-it-works { padding:40px 0 0; }
  .step { padding: 40px 0; gap: 32px; max-height: 600px; }
  .step-visual .phone-device { width: 240px; order: 1; height: 270px; overflow: hidden;}

  .step-text {
    order: 2;
    padding: 0 6px;
  }

  .step-visual .phone-frame-img {
    margin-top: 20px;
  }
  .step-visual .phone-screen-img {
    margin-top: 26px;
  }

  .see-yourself { padding: 0; }

  .container.see-yourself-row, .placement-layout, .why-layout, .numbers-section {
    margin: 0;
    background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */ repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */ repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
    background-size: 1px 100%, /* left */ 1px 100%, /* right */ 100% 1px;
    background-position: 0 0, /* left */ 100% 0, /* right */ 0 0;
  }

  .container.see-yourself-row {
    padding-top: 112px;
    padding-bottom: 32px;
    padding-left: 6px;
  }

  .complete .container.see-yourself-row {
    padding-top: 160px;
    padding-bottom: 32px;
  }

  .see-yourself-heading { font-size: clamp(28px, 6vw, 40px); margin-bottom: 32px; }

  .placement-layout {
    grid-template-columns: 1fr;
  }

  .placement-visual {
    order: 1;
  }

  .placement-list {
    order: 2;
  }

  .placement-row .placement-text p {
    font-size: 16px;
  }

  .placement-row .placement-text h3 {
    font-size: 18px;
  }

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

  .placement-row { padding: 14px; gap: 32px; min-height: auto }

  .placement-visual .phone-device { width: 220px; }

  .numbers-section { padding: 60px 0 0 0; }
  .numbers-grid { grid-template-columns: 1fr; gap: 0;
    background-image: unset;
  }

  .number-card {
    background-image: repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* left */ repeating-linear-gradient(to bottom, #cfd3d8 0 4px, transparent 4px 8px), /* right */ repeating-linear-gradient(to right, #cfd3d8 0 4px, transparent 4px 8px);
    background-size: 1px 100%, /* left */ 1px 100%, /* right */ 100% 1px;
    background-position: 0 0, /* left */ 100% 0, /* right */ 0 0;
    background-repeat: no-repeat;
    padding: 32px 20px;
  }

  .number-value { font-size: clamp(28px, 8vw, 28px); }

  .number-label {
    font-size: 14px;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto 1fr;
    background-image: unset;
  }

  .results-heading-cell {
    grid-column: 1;
    grid-row: 1;
  }

  .results-stat-cell.top-right {
    grid-column: 1;
    grid-row: 2;
  }

  .results-stat-cell.center {
    grid-column: 2;
    grid-row: 2;
  }

  .results-stat-cell.bottom-left {
    grid-column: 1;
    grid-row: 3;
  }

  .results-quote-cell {
    grid-column: 1 / -1;   /* full width */
    grid-row: 5;
  }

  .results-ceo-cell {
    grid-column: 2;
    grid-row: 4 / 5;
  }

  .results-stat-cell.top-right,
  .results-stat-cell.center,
  .results-stat-cell.bottom-left {
    background-image: repeating-linear-gradient(
            to right,
            #cfd3d8 0 4px,
            transparent 4px 8px
    );
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left bottom;
  }

  .complete-look { padding: 60px 0 0 0; }
  .complete-heading { font-size: clamp(24px, 5vw, 32px); }

  .game-changer { padding: 0; }
  .built-for { padding: 60px 0; }
  .aud-desc-inline { display: none; }

  .results-section { padding: 60px 0; }


  .live-section { padding: 60px 0; }

  .live-section .container {
    background-image: unset;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 0;
  }

  .live-steps {
    grid-column: 1;
  }

  .live-step {
    padding: 24px 6px;
  }

  .live-cta {
    grid-column: 1;
    max-width: max-content;
  }

  .live-num {
    font-size: 32px;
  }

  .live-step h4 {
    font-size: 20px;
  }

  .live-step p {
    font-size: 16px;
  }

  .audience-list .aud-tags {
    max-width: 100%;
    padding-left: 6px;
  }

  .audience-list .aud-tags span {
    word-break: break-word;
  }

  .audience-item summary::after {
    margin-left: auto;
  }

  .audience-item summary {
    padding: 24px 6px;
  }

  .live-subtitle { margin-top: -16px; }
  .live-cta { flex-direction: column; }
  .live-cta .btn { width: 100%; }

  .pq-inner p {
    font-size: 18px;
  }

  .pq-inner {
    display: block;
    background-image:
            repeating-linear-gradient(
                    to right,
                    #C9CFDA33 0 4px,
                    transparent 4px 8px
            ),
            repeating-linear-gradient(
                    to right,
                    #C9CFDA33 0 4px,
                    transparent 4px 8px
            );

    background-repeat: no-repeat;

    background-size:
            100% 1px,  /* top */
            100% 1px;  /* bottom */

    background-position:
            left top,
            left bottom;

    margin-top: 32px;
    padding: 32px 6px;
  }

   .pq-inner svg {
    width: 54px;
  }



  .pq-inner .quote-mark-light {
    text-align: left;
  }

  .pricing-grid {
    margin-bottom: 8px;
  }

  .pricing-section {background-repeat: repeat; margin: 0 !important; }

  .pricing-section .container {
    margin: 0 20px;
    padding: 56px 0;
  }

  .pricing-section .container .section-heading-light {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .pricing-sub { margin-bottom: 0; padding-bottom: 32px;}
  .pricing-card { padding: 32px 24px;  background-image: repeating-linear-gradient(to right, #C9CFDA33 0 4px, transparent 4px 8px);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left bottom;}

  .price {
    font-size: 42px;
  }

  .pricing-more {
    width: 100%;
  }

  .faq-section { padding: 60px 0; }

  .faq-item summary {
    font-size: 16px;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 4fr;
  }

  .faq-item .faq-question {
    grid-column: 1;
  }

  .faq-item p {
    padding-left: 0;
  }

  .fcta-top, .fcta-row {
    background-image: unset;
  }

  .fcta-video.mobile {
    display: block;
  }

  .fcta-video {
    display: none;
  }

  .final-cta {
    padding: 32px 0;
  }

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

  .fcta-top {
    grid-template-columns: 1fr;
    padding: 32px 16px 0 16px;
  }

  .fcta-top .section-label {
    margin-top: 32px;
  }

  .fcta-checklist {
    background-image: unset;
    grid-column: 1;
    padding: 32px 16px 0 16px;
  }

  .fcta-heading, .fcta-sub {
    grid-column: 1;
  }

  .fcta-heading { font-size: clamp(28px, 6vw, 40px); }
  .fcta-row { gap: 32px; }
  .fcta-buttons { flex-direction: column; background-image: unset;}
  .fcta-buttons .btn { width: 100%; }
  .trust-badges { grid-template-columns: 1fr 1fr;
    padding-top: 64px;
  }

  .trust-badge {
    padding: 6px;
    min-height: 130px;
  }

  .footer { padding: 0; }

  .footer .lang-toggle {
    position: relative;
    right: unset;
    display: block;
    max-width: fit-content;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer .container {
    background-image: repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
    repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px),
    repeating-linear-gradient(to bottom, #C9CFDA33 0 4px, transparent 4px 8px);
    background-repeat: no-repeat;
    background-size: 1px 100%, 1px 100%, 1px 100%;
    background-position: 0% 0, 50% 0, 100% 0;
    margin: 0 20px;
  }
  .footer-heading { font-size: clamp(24px, 5vw, 32px); }
  .footer-bottom { gap: 24px; }
  .footer-social { margin-left: 0; }
  .lang-toggle { position: static; margin-top: 16px; }

  .footer-copy {
    grid-row: 2;
  }

  .form-overlay-inner { max-height: 100vh; border-radius: 0; width: 100vw; }
  .form-left { padding: 32px 20px; }
  .form-title { font-size: 24px; margin-bottom: 24px; }
  .form-right { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .phone-device { width: 220px; }
  .phone-device-sm { width: 200px; }
  .step-visual .phone-device { width: 200px; }
  .placement-visual .phone-device { width: 180px; }
  .brand-logo { height: 16px; }
  .brand-logo-sm { height: 24px; }
  .hero-cta .btn { width: 100%; }
}
