:root {
  --blue: #0f9fd6;
  --blue-deep: #0a7fb0;
  --blue-ink: #0b5a7a;
  --navy: #08324a;
  --navy-2: #0b4966;
  --pink: #e6117f;
  --pink-deep: #c60d6c;
  --pink-soft: #fff2f8;
  --blue-soft: #eaf7fd;
  --cream: #fff8f1;
  --gold: #f4b942;
  --ink: #1c2a35;
  --muted: #5f7180;
  --line: #e7eef2;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(8, 50, 74, 0.1), 0 2px 8px rgba(8, 50, 74, 0.06);
  --shadow-lg: 0 26px 64px rgba(8, 50, 74, 0.24);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Be Vietnam Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 72px 0;
}
h1,
h2,
h3 {
  line-height: 1.18;
  font-weight: 800;
  color: var(--ink);
}
.serif {
  font-family: "Playfair Display", Georgia, serif;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}
.sec-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.sec-head .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: clamp(28px, 4.4vw, 42px);
  margin-bottom: 14px;
}
.sec-head h2 .hl {
  color: var(--pink);
}
.sec-head p {
  color: var(--muted);
  font-size: 17px;
}
.btn {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  padding: 17px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  transform-origin: 50% 50%;
  will-change: transform, box-shadow;
}
@keyframes pulse-primary {
  0% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(230, 17, 127, 0.34);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(230, 17, 127, 0.46);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(230, 17, 127, 0.34);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(230, 17, 127, 0.34);
  animation: pulse-primary 2s infinite ease-in-out;
}
.btn-primary:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(230, 17, 127, 0.46);
}
@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(244, 185, 66, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(244, 185, 66, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(244, 185, 66, 0.4);
  }
}

.btn-gold {
  background: linear-gradient(135deg, #ffcf5c, var(--gold));
  color: #4a3200;
  box-shadow: 0 14px 30px rgba(244, 185, 66, 0.4);
  animation: pulse-gold 2s infinite ease-in-out;
}
.btn-gold:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.03);
}
.btn-block {
  width: 100%;
  animation: none !important;
  transform: none !important;
}
.btn-block:hover {
  transform: translateY(-2px) !important;
}

/* Announce */
.announce {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.announce b {
  color: var(--gold);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav .logo img {
  height: 44px;
  width: auto;
}
.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav ul a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.nav ul a:hover {
  color: var(--pink);
}
.nav .cta-hd {
  padding: 11px 22px;
  font-size: 15px;
  border-radius: 10px;
}

/* HERO — dark, form-first */
.hero {
  position: relative;
  background: radial-gradient(
    1200px 600px at 78% -10%,
    var(--navy-2),
    var(--navy) 60%
  );
  color: #fff;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      520px 320px at 92% 20%,
      rgba(230, 17, 127, 0.28),
      transparent 70%
    ),
    radial-gradient(
      460px 300px at 8% 90%,
      rgba(15, 159, 214, 0.22),
      transparent 70%
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-badge b {
  color: var(--gold);
}
.hero h1 {
  font-size: clamp(30px, 4.8vw, 50px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}
.hero h1 .hl {
  color: #7fd6f4;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  max-width: 520px;
}
.price-band {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.price-band .price {
  font-size: clamp(44px, 7vw, 64px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.price-band .price sup {
  font-size: 0.4em;
  top: -0.8em;
  font-weight: 700;
}
.price-band .old {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-weight: 600;
}
.price-band .save {
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.hero-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 6px;
}
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-list .ck {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(127, 214, 244, 0.18);
  color: #7fd6f4;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 2px;
}

/* Hero form card */
.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 30px 28px;
  color: var(--ink);
  position: relative;
}
.form-card .fc-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.form-card h3 {
  font-size: 22px;
  margin: 6px 0 4px;
}
.form-card .fc-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.field {
  margin-bottom: 13px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field select {
  cursor: pointer;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(230, 17, 127, 0.12);
}
.field.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-card .btn {
  margin-top: 6px;
}
.form-card .trust-line {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-msg {
  display: none;
  background: var(--blue-soft);
  border: 1px solid #bfe6f6;
  color: var(--blue-ink);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}
.form-msg.show {
  display: block;
}

/* Trust strip */
.trust {
  background: var(--cream);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  text-align: center;
}
.trust-item .n {
  font-size: 30px;
  font-weight: 800;
  color: var(--pink);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.trust-item b {
  display: block;
  font-size: 15px;
  margin: 6px 0 2px;
}
.trust-item span {
  font-size: 13px;
  color: var(--muted);
}

/* Why / alert — dark editorial band */
.why {
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.why-img {
  position: relative;
}
.why-img img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.why-img .float {
  position: absolute;
  right: -16px;
  bottom: -20px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 210px;
}
.why-img .float .n {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.why-img .float p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
}
.why-copy .eyebrow {
  margin-bottom: 16px;
}
.why-copy h2 {
  font-size: clamp(26px, 3.8vw, 36px);
  margin-bottom: 22px;
}
.why-copy h2 .hl {
  color: var(--pink);
}
.why-stats {
  display: grid;
  gap: 14px;
}
.why-stat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-left: 3px solid var(--pink);
  background: var(--pink-soft);
  border-radius: 0 14px 14px 0;
}
.why-stat .n {
  font-size: 26px;
  font-weight: 800;
  color: var(--pink);
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  flex: none;
  min-width: 64px;
}
.why-stat p {
  font-size: 15px;
  color: var(--muted);
}
.why-stat b {
  color: var(--ink);
}

/* Pain — checklist editorial */
.pain {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 400px at 85% 10%,
    rgba(230, 17, 127, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.pain .sec-head h2 {
  color: #fff;
}
.pain .sec-head p {
  color: rgba(255, 255, 255, 0.75);
}
.pain .eyebrow {
  color: var(--gold);
}
.pain .eyebrow::before {
  background: var(--gold);
}
.pain-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pain-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 20px;
  transition: background 0.15s;
}
.pain-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pain-item .ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(230, 17, 127, 0.2);
  display: grid;
  place-items: center;
  font-size: 23px;
}
.pain-item h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}
.pain-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
}
.pain-cta {
  position: relative;
  text-align: center;
  margin-top: 44px;
}
.pain-cta p {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* Combo detail */
.combo-sec {
  background: linear-gradient(180deg, var(--cream), #fff);
}
.combo-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.combo-list {
  display: grid;
  gap: 18px;
}
.combo-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.combo-item .num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 19px;
  font-family: "Playfair Display", serif;
}
.combo-item h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.combo-item p {
  color: var(--muted);
  font-size: 15px;
}
.combo-price {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.combo-price .lbl {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.combo-price .big {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin: 8px 0;
}
.combo-price .old {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}
.combo-price .save {
  display: inline-block;
  margin: 12px 0 20px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.combo-price .btn {
  width: 100%;
}

/* Why Dr.Marie */
.brand {
  background: #fff;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.brand-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #fff;
}
.brand-card .n {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
}
.brand-card b {
  display: block;
  font-size: 15px;
  margin: 8px 0 3px;
}
.brand-card span {
  font-size: 13px;
  color: var(--muted);
}
.standards {
  background: var(--blue-soft);
  border-radius: 18px;
  padding: 30px 34px;
}
.standards h3 {
  text-align: center;
  font-size: 19px;
  margin-bottom: 22px;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.standard {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.standard .ic {
  font-size: 26px;
  flex: none;
}
.standard b {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.standard p {
  font-size: 13.5px;
  color: var(--muted);
}

/* Process */
.process {
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto 14px;
  font-size: 18px;
}
.step h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
}

/* Gallery */
.gallery {
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-grid figure:hover img {
  transform: scale(1.05);
}
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(8, 50, 74, 0.85));
  color: #fff;
  padding: 20px 18px 14px;
  font-size: 14px;
  font-weight: 600;
}

/* Testimonials */
.testi {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 360px at 15% 90%,
    rgba(15, 159, 214, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.testi .sec-head h2 {
  color: #fff;
}
.testi .eyebrow {
  color: var(--gold);
}
.testi .eyebrow::before {
  background: var(--gold);
}
.testi-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 24px;
}
.test-card .stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.test-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 16px;
}
.test-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-card .who .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  flex: none;
}
.test-card .who b {
  display: block;
  font-size: 15px;
  color: #fff;
}
.test-card .who span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* Final CTA + form */
.final {
  background: linear-gradient(160deg, var(--pink-soft), var(--cream));
}
.final-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.final-copy .eyebrow {
  margin-bottom: 16px;
}
.final-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.final-copy h2 .hl {
  color: var(--pink);
}
.final-copy p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
}
.final-copy .assure {
  list-style: none;
  display: grid;
  gap: 12px;
}
.final-copy .assure li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  font-weight: 500;
}
.final-copy .assure .ck {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}
.final .form-card {
  box-shadow: var(--shadow-lg);
}

/* FAQ */
.faq {
  background: #fff;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--pink);
  font-weight: 700;
  flex: none;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item .a {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}
.footer .f-logo {
  height: 50px;
  width: auto;
  margin-bottom: 24px;
}
.footer .f-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.f-socials {
  display: flex;
  gap: 12px;
}
.f-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    color 0.2s;
}
.f-socials a:hover {
  transform: translateY(-3px);
  color: var(--pink);
}
.f-socials svg {
  width: 18px;
  height: 18px;
}
.footer h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 700;
}
.f-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.f-item svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  color: #fff;
}
.f-item span {
  display: block;
  font-size: 14.5px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}
.f-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #fff;
}
.footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  box-shadow: 0 -6px 20px rgba(8, 50, 74, 0.12);
  align-items: center;
  gap: 12px;
}
.sticky-cta .p {
  flex: 1;
}
.sticky-cta .p b {
  display: block;
  font-size: 19px;
  color: var(--pink);
  line-height: 1;
  font-family: "Playfair Display", serif;
}
.sticky-cta .p span {
  font-size: 12px;
  color: var(--muted);
}
.sticky-cta .btn {
  padding: 13px 22px;
  font-size: 15px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    justify-content: center;
  }
  .nav ul,
  .nav .cta-hd {
    display: none;
  }
  .hero-grid,
  .why-grid,
  .combo-wrap,
  .final-wrap {
    grid-template-columns: 1fr;
  }
  .why-img {
    order: -1;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  section {
    padding: 52px 0;
  }
  .pain-grid,
  .combo-grid {
    grid-template-columns: 1fr;
  }
  .field.row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .why-img .float {
    right: 10px;
  }
  .sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 76px;
  }
  .gallery-grid img {
    height: 230px;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 50, 74, 0.7);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10000;
}
.modal.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  color: var(--muted);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--pink);
  color: #fff;
}
/* Ensure form in modal doesn't have extra padding */
.modal-content .form-card {
  padding: 32px 24px 24px;
}

.secure-badge {
  text-align: center;
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
}
