:root {
  --paper: #f4efe4;
  --paper-light: #fffdf7;
  --paper-deep: #e9dfcc;
  --navy: #071b34;
  --navy-2: #0d2947;
  --petrol: #0f5a57;
  --petrol-dark: #093f3e;
  --gold: #c99224;
  --gold-light: #edcf8b;
  --rust: #a3412e;
  --ink: #0b1c2c;
  --muted: #5e625f;
  --line: rgba(7, 27, 52, .16);
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(7, 27, 52, .08);
  --shadow: 0 18px 46px rgba(7, 27, 52, .13);
  --shadow-deep: 0 28px 70px rgba(4, 17, 32, .24);
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(78, 58, 27, .06) 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(78, 58, 27, .035) 32px);
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  text-wrap: pretty;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  padding: 9px 20px;
  border-bottom: 3px solid var(--gold);
  color: rgba(255, 255, 255, .76);
  background: var(--navy);
  font-size: .78rem;
}

.topbar strong {
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: .92rem;
  text-transform: uppercase;
}

.topbar span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--soft {
  border-top: 1px solid rgba(7, 27, 52, .08);
  border-bottom: 1px solid rgba(7, 27, 52, .08);
  background-color: var(--paper-light);
  background-image: repeating-linear-gradient(0deg, transparent 0 27px, rgba(91, 67, 29, .035) 28px);
}

.section--dark {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1120px);
  height: 5px;
  background: var(--gold);
  transform: translateX(-50%);
}

.section--dark .section__title,
.section--dark h3 {
  color: var(--paper-light);
}

.section--dark .section__sub {
  color: rgba(255, 255, 255, .68);
}

.section__title {
  max-width: 880px;
  margin: 0 auto 18px;
  font-size: 3rem;
  text-wrap: balance;
}

.section__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 20px auto 0;
  background: var(--gold);
}

.section__title--left {
  margin-left: 0;
  text-align: left;
}

.section__title--left::after {
  margin-left: 0;
}

.section__sub {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.section__sub--left {
  margin-left: 0;
  text-align: left;
}

.badge,
.pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-left: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section--dark .badge {
  color: var(--navy);
  background: var(--gold);
  border-left-color: var(--paper-light);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  color: var(--navy);
  background: var(--paper-light);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

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

.btn--primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 6px 0 #765417, 0 16px 28px rgba(5, 18, 34, .16);
}

.btn--primary:hover {
  background: #d8a535;
  box-shadow: 0 4px 0 #765417, 0 12px 24px rgba(5, 18, 34, .14);
}

.btn--outline {
  border-color: var(--petrol);
  color: var(--petrol);
  background: transparent;
}

.btn--outline:hover {
  color: var(--white);
  background: var(--petrol);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--3d {
  position: relative;
  overflow: hidden;
}

.btn--3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 44%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 3.2s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 52% { left: -120%; }
  82%, 100% { left: 150%; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 54px;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(0deg, transparent 0 31px, rgba(96, 70, 29, .045) 32px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 44px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(15, 90, 87, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(201, 146, 36, .045), 0 0 0 84px rgba(7, 27, 52, .035);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero .badge {
  color: var(--navy);
  background: var(--gold-light);
  border-left-color: var(--petrol);
}

.hero__title {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 3.42rem;
  text-wrap: balance;
}

.hero .accent {
  position: relative;
  display: inline;
  color: var(--petrol);
}

.hero .accent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .02em;
  left: 0;
  z-index: -1;
  height: .16em;
  background: var(--gold-light);
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 24px;
  color: #505b5d;
  font-size: 1.02rem;
}

.hero__cta {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 26px;
}

.hero__cta .btn {
  min-width: 320px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
  margin-bottom: 17px;
  border-top: 1px solid rgba(7, 27, 52, .22);
  border-bottom: 1px solid rgba(7, 27, 52, .22);
}

.hero__proof-item {
  display: flex;
  min-width: 0;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 10px;
  text-align: center;
}

.hero__proof-item + .hero__proof-item {
  border-left: 1px solid rgba(7, 27, 52, .18);
}

.hero__proof-item strong {
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.hero__proof-item:nth-child(2) strong {
  color: var(--gold);
}

.hero__proof-item:nth-child(3) strong {
  color: var(--petrol);
}

.hero__proof-item span {
  margin-top: 7px;
  color: #5d615f;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero__stars {
  color: var(--petrol);
  font-size: .7rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__visual::before {
  content: "KIT VISUAL PMES 2026";
  position: absolute;
  top: -22px;
  left: 22px;
  z-index: 2;
  padding: 8px 14px;
  color: var(--paper-light);
  background: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.hero__mockup {
  padding: 9px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 13px 13px 0 var(--petrol), var(--shadow-deep);
}

.hero__mockup img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

/* Infinite galleries */
.gallery {
  margin: 46px 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0 24px;
  animation: slideLeft 36s linear infinite;
}

.gallery__track--rev {
  animation-direction: reverse;
}

.gallery--stack {
  margin-top: -10px;
}

.gallery__item {
  width: 224px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-bottom-width: 6px;
  border-radius: 3px;
  background: var(--paper-light);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item--square {
  width: 224px;
  height: 224px;
}

.gallery__track--reviews {
  align-items: stretch;
}

.gallery__track--reviews .review {
  width: 340px;
  flex-shrink: 0;
}

.gallery:hover .gallery__track {
  animation-play-state: paused;
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Content cards */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 218px;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--petrol);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.feature-card:nth-child(3n+2) {
  border-top-color: var(--gold);
}

.feature-card:nth-child(3n) {
  border-top-color: var(--navy);
}

.feature-card--highlight {
  background: #f2e4c1;
}

.feature-card__icon {
  display: inline-flex;
  min-width: 54px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 10px;
  border-left: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.02rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.feature-card p {
  color: var(--muted);
  font-size: .92rem;
}

/* Audience */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 44px;
}

.audience__item {
  position: relative;
  min-height: 64px;
  padding: 18px 20px 18px 58px;
  border-bottom: 1px solid rgba(7, 27, 52, .14);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
}

.audience__item::before {
  content: "✓";
  position: absolute;
  top: 16px;
  left: 12px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .82rem;
  font-weight: 900;
}

/* Pain block */
.section--pain {
  padding: 80px 0;
}

.pain-box {
  padding: 58px 42px;
  border: 1px solid rgba(201, 146, 36, .7);
  border-radius: 4px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 14px 14px 0 rgba(15, 90, 87, .18), var(--shadow-deep);
}

.pain-box .section__title {
  color: var(--paper-light);
}

.pain-box .section__sub {
  color: rgba(255, 255, 255, .68);
}

.pain-box__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 38px 0 34px;
}

.pain-item {
  position: relative;
  min-height: 58px;
  padding: 17px 18px 17px 52px;
  border-left: 4px solid var(--gold);
  color: #e8eeee;
  background: rgba(255, 255, 255, .07);
  font-size: .83rem;
  font-weight: 750;
}

.pain-item::before {
  content: "×";
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

/* Bundle */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 58px;
  align-items: center;
}

.two-col__media {
  position: relative;
}

.two-col__media::after {
  content: "6 PRODUTOS PRINCIPAIS";
  position: absolute;
  right: -14px;
  bottom: -17px;
  padding: 9px 14px;
  color: var(--paper-light);
  background: var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: .72rem;
}

.two-col__media img {
  width: 100%;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 12px 12px 0 var(--gold-light), var(--shadow);
}

.check-list {
  margin-top: 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--line);
  color: #384449;
  font-size: .91rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .7rem;
  font-weight: 900;
}

/* Product showcase */
.product-showcase-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.product-showcase-grid .bonus-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.bonus-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0 22px 24px;
  border: 1px solid rgba(237, 207, 139, .48);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 rgba(201, 146, 36, .16), 0 18px 34px rgba(0, 0, 0, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 12px 0 rgba(15, 90, 87, .24), 0 22px 42px rgba(0, 0, 0, .22);
}

.bonus-card__thumb {
  margin: 0 -22px 22px;
  overflow: hidden;
  border-bottom: 2px solid var(--navy);
  background: var(--paper-deep);
}

.bonus-card__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .24s ease;
}

.bonus-card:hover .bonus-card__thumb img {
  transform: scale(1.018);
}

.bonus-card h3 {
  min-height: 2.3em;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.bonus-card__metric {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-left: 4px solid var(--gold);
  color: var(--petrol-dark);
  background: #efe5cf;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-card p {
  color: #5b605d;
  font-size: .86rem;
}

/* Delivery steps */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--gold);
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 15px 20px;
  text-align: center;
}

.step__num {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  place-items: center;
  border: 4px solid var(--paper);
  color: var(--paper-light);
  background: var(--petrol);
  box-shadow: 0 0 0 2px var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.25rem;
}

.step h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: .8rem;
}

/* Differentials carousel */
.section--differentials .gallery {
  margin-bottom: 0;
}

.review {
  min-height: 230px;
  padding: 28px;
  border-top: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--petrol-dark);
  box-shadow: var(--shadow);
}

.review__stars {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.review__text {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .84);
  font-size: .93rem;
}

.review__name {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Pricing */
.pricing-section--clean {
  overflow: hidden;
  border-top: 7px solid var(--gold);
  border-bottom: 7px solid var(--gold);
  background: var(--petrol-dark);
}

.pricing-section--clean::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, .05) 29px 30px);
}

.pricing-intro,
.plans,
.pricing-trust {
  position: relative;
  z-index: 1;
}

.pricing-intro .section__title {
  color: var(--paper-light);
}

.pricing-intro__sub {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .72);
}

.pricing-kicker {
  border-left-color: var(--paper-light);
  color: var(--navy);
  background: var(--gold);
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin-top: 52px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(7, 27, 52, .22);
  border-top: 7px solid var(--petrol);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.plan--featured {
  border-color: var(--gold);
  border-top-color: var(--gold);
  box-shadow: 12px 12px 0 rgba(201, 146, 36, .22), 0 24px 58px rgba(0, 0, 0, .3);
}

.plan__ribbon {
  position: absolute;
  top: -20px;
  right: 24px;
  padding: 9px 14px;
  color: var(--navy);
  background: var(--gold);
  font-size: .68rem;
  font-weight: 900;
}

.plan__eyebrow {
  margin-bottom: 9px;
  color: var(--petrol);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan--featured .plan__eyebrow {
  color: var(--rust);
}

.plan__name {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.plan__summary {
  min-height: 76px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .88rem;
}

.plan__media {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
}

.plan__media--single {
  place-items: center;
}

.plan__media--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan__media--bundle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.plan__media--bundle img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.plan__media--stage {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(7, 27, 52, .13);
  background: #eee2cc;
  box-shadow: inset 0 -34px 0 rgba(7, 27, 52, .055);
}

.plan__media--stage::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -15%;
  left: -8%;
  z-index: 0;
  height: 45%;
  background: rgba(15, 90, 87, .1);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
}

.plan__media--stage::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 8;
  padding: 7px 11px;
  color: var(--paper-light);
  background: var(--navy);
  border-left: 4px solid var(--gold);
  box-shadow: 0 7px 16px rgba(7, 27, 52, .2);
  font-family: Oswald, Inter, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.plan__media--basic-stage::after {
  content: "APOSTILA + 100 MAPAS";
}

.plan__media--complete-stage::after {
  content: "KIT COMPLETO + 4 BÔNUS";
}

.plan__asset {
  position: absolute;
  object-fit: cover;
  filter: saturate(.97) contrast(1.02);
  box-shadow: 0 18px 32px rgba(7, 27, 52, .27), 0 3px 7px rgba(7, 27, 52, .16);
}

.plan__asset--maps,
.plan__asset--apostila {
  top: 10%;
  width: 61%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 251, 242, .9);
}

.plan__asset--maps {
  left: -1%;
  z-index: 2;
  transform: rotate(-4deg) translateY(4%);
}

.plan__asset--apostila {
  right: -1%;
  z-index: 3;
  transform: rotate(4deg);
}

.plan__asset--main-kit {
  top: 4%;
  left: 4%;
  z-index: 2;
  width: 92%;
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(255, 251, 242, .92);
  object-fit: cover;
  transform: rotate(-.7deg);
}

.plan__asset--bonus {
  top: 52%;
  z-index: 4;
  width: 26.5%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 251, 242, .95);
}

.plan__asset--bonus-1 {
  left: 1%;
  transform: rotate(-5deg) translateY(5%);
}

.plan__asset--bonus-2 {
  left: 25%;
  transform: rotate(-2deg);
}

.plan__asset--bonus-3 {
  left: 49%;
  transform: rotate(2deg);
}

.plan__asset--bonus-4 {
  right: 1%;
  transform: rotate(5deg) translateY(5%);
}

.plan__price-box {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 15px 18px;
  border-left: 5px solid var(--gold);
  background: #efe5cf;
}

.plan__old-price {
  color: #777873;
  font-size: .77rem;
  text-decoration: line-through;
}

.plan__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.plan__price-main strong {
  color: var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: 3.1rem;
  line-height: 1;
}

.plan--featured .plan__price-main strong {
  color: var(--rust);
}

.plan__price-main strong span {
  font-size: .55em;
}

.plan__price-main small {
  margin-top: 5px;
  color: #676963;
  font-size: .66rem;
  font-weight: 800;
}

.plan__compact-title {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan__compact-list {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
  list-style: none;
}

.plan__compact-list li {
  position: relative;
  min-height: 44px;
  padding: 12px 12px 12px 40px;
  color: #394649;
  background: #eef0e9;
  font-size: .82rem;
  font-weight: 700;
}

.plan__compact-list li::before {
  content: "✓";
  position: absolute;
  top: 11px;
  left: 12px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: .63rem;
}

.plan .btn {
  margin-top: auto;
}

.plan__microcopy {
  margin-top: 14px;
  color: #70736f;
  font-size: .66rem;
  font-weight: 700;
  text-align: center;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 16px 34px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: .74rem;
  font-weight: 800;
  text-align: center;
}

.pricing-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-light);
}

/* Guarantee */
.guarantee {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 56px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.guarantee__seal {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--paper-light);
  background: var(--petrol);
  box-shadow: 5px 5px 0 var(--gold-light);
  font-size: 1.6rem;
  font-weight: 900;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin-top: 44px;
}

.faq__item {
  border-bottom: 1px solid rgba(7, 27, 52, .22);
}

.faq__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 2px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: .98rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq__ic {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--paper-light);
  background: var(--petrol);
  font-size: 1.15rem;
  transition: transform .2s ease, background .2s ease;
}

.faq__item.open .faq__ic {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq__a p {
  padding: 0 50px 24px 2px;
  color: var(--muted);
  font-size: .91rem;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 6px solid var(--gold);
  color: rgba(255, 255, 255, .68);
  background: var(--navy);
}

.footer__brand {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.footer__disclaimer {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: .73rem;
}

.footer__copy {
  font-size: .7rem;
}

/* Upsell modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 24, .82);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  border: 2px solid var(--gold);
  border-top: 8px solid var(--gold);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: var(--shadow-deep);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  color: var(--navy);
  background: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.modal__title {
  padding-right: 30px;
  font-size: 2rem;
}

.modal__title span {
  color: var(--rust);
}

.modal__text {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: .9rem;
}

.modal__price {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px;
  border-left: 5px solid var(--gold);
  background: #efe5cf;
  font-size: .76rem;
}

.modal__price-to strong {
  color: var(--petrol);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.4rem;
}

.modal__price-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
}

.modal__price-tag {
  padding: 6px 9px;
  color: var(--paper-light);
  background: var(--petrol);
  font-weight: 900;
}

.modal__list-title {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}

.modal__list {
  display: grid;
  gap: 7px;
  margin: 0 0 24px 20px;
  color: var(--muted);
  font-size: .82rem;
}

.modal__decline {
  display: block;
  margin-top: 17px;
  color: #6b6d69;
  font-size: .74rem;
  font-weight: 750;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery__track,
  .btn--3d::after {
    animation: none;
  }

  .btn,
  .bonus-card,
  .faq__a,
  .faq__ic {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    gap: 36px;
  }

  .hero__title {
    font-size: 3.05rem;
  }

  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase-grid .bonus-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .hero__inner,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 760px);
  }

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

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .steps::before {
    display: none;
  }

  .step:last-child {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .two-col {
    gap: 48px;
  }

  .two-col__media {
    width: min(100%, 760px);
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .topbar {
    display: block;
    min-height: 0;
    padding: 9px 14px;
    text-align: center;
  }

  .topbar span {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section__title {
    font-size: 2.05rem;
  }

  .section__sub {
    font-size: .93rem;
  }

  .hero {
    padding: 48px 0 62px;
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    gap: 0;
  }

  .hero__content {
    display: contents;
  }

  .hero .badge {
    order: 1;
    justify-self: start;
    margin-bottom: 16px;
  }

  .hero__title {
    order: 2;
    max-width: none;
    margin-bottom: 16px;
    font-size: 2.42rem;
  }

  .hero__lead {
    order: 3;
    max-width: none;
    margin-bottom: 24px;
    font-size: .94rem;
  }

  .hero__visual {
    order: 4;
    width: 100%;
    margin: 0 0 30px;
  }

  .hero__cta {
    order: 5;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero__cta .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__proof {
    order: 6;
    width: 100%;
    max-width: none;
    margin-bottom: 15px;
  }

  .hero__stars {
    order: 7;
  }

  .hero__proof-item {
    min-height: 76px;
    padding: 10px 5px;
  }

  .hero__proof-item strong {
    font-size: 1.35rem;
  }

  .hero__proof-item span {
    font-size: .61rem;
  }

  .hero__visual::before {
    top: -16px;
    left: 12px;
    padding: 6px 9px;
    font-size: .62rem;
  }

  .hero__mockup {
    padding: 5px;
    box-shadow: 8px 8px 0 var(--petrol), var(--shadow);
  }

  .gallery {
    margin: 36px 0;
  }

  .gallery__track {
    gap: 14px;
    padding: 0 18px;
  }

  .gallery__item {
    width: 184px;
    height: 246px;
  }

  .gallery__item--square {
    width: 184px;
    height: 184px;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .audience,
  .pain-grid,
  .product-showcase-grid,
  .plans,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    min-height: 0;
  }

  .audience {
    gap: 4px;
  }

  .pain-box {
    padding: 38px 20px;
    box-shadow: 8px 8px 0 rgba(15, 90, 87, .18), var(--shadow);
  }

  .two-col__media::after {
    right: 8px;
    bottom: -14px;
  }

  .product-showcase-grid .bonus-card,
  .product-showcase-grid .bonus-card:last-child {
    grid-column: 1 !important;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }

  .product-showcase-grid {
    grid-auto-flow: row;
    gap: 20px;
    margin-top: 34px;
    overflow: visible;
  }

  .bonus-card {
    padding: 0 18px 22px;
  }

  .bonus-card__thumb {
    margin: 0 -18px 18px;
  }

  .bonus-card:hover {
    transform: none;
  }

  .bonus-card h3 {
    min-height: 0;
  }

  .step,
  .step:last-child {
    grid-column: auto;
    width: 100%;
    padding: 0 10px 24px;
  }

  .plans {
    gap: 34px;
  }

  .plan {
    padding: 26px 20px;
  }

  .plan__summary {
    min-height: 0;
  }

  .plan__price-main strong {
    font-size: 2.65rem;
  }

  .pricing-trust {
    display: grid;
    gap: 10px;
  }

  .guarantee {
    padding: 38px 20px;
  }

  .modal {
    padding: 12px;
  }

  .modal__card {
    max-height: calc(100vh - 24px);
    padding: 34px 20px 26px;
  }

  .modal__title {
    font-size: 1.62rem;
  }

  .modal__price {
    grid-template-columns: 1fr auto 1fr;
  }

  .modal__price-tag {
    grid-column: 1 / -1;
    text-align: center;
  }
}
