:root {
  color-scheme: light;
  --brand: #0D9488;
  --brand-light: #14B8A6;
  --brand-deep: #0a6e66;
  --brand-darker: #064E45;
  --accent: #F97316;
  --accent-deep: #EA580C;
  --gold: #C9A84C;
  --bg: #F0F9F8;
  --bg-soft: #E6F4F2;
  --surface: #FFFFFF;
  --border: #D1E9E6;
  --border-soft: #E4F2F0;
  --t1: #0F172A;
  --t2: #334155;
  --t3: #64748B;
  --t4: #94A3B8;
  --shadow-sm: 0 1px 2px rgba(13,148,136,.06), 0 1px 3px rgba(13,148,136,.08);
  --shadow-md: 0 4px 12px rgba(13,148,136,.08), 0 12px 28px rgba(13,148,136,.10);
  --shadow-lg: 0 10px 30px rgba(13,148,136,.12), 0 30px 60px rgba(13,148,136,.14);
  --shadow-xl: 0 20px 60px rgba(13,148,136,.18), 0 40px 100px rgba(13,148,136,.20);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============ AMBIENT BACKGROUND ============ */
body::before {
  content: '';
  position: fixed;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.10) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 56px;
  background:
    linear-gradient(90deg, #0B3C36 0%, #0F4E48 35%, #0F4E48 65%, #0B3C36 100%);
  border-bottom: 1px solid rgba(20,184,166,.18);
  box-shadow: 0 6px 24px rgba(0,0,0,.18), inset 0 -1px 0 rgba(20,184,166,.08);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 700; font-size: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(20,184,166,.50), inset 0 1px 0 rgba(255,255,255,.25);
}
.brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1.8px;
  background: linear-gradient(135deg, #ffffff 0%, #B6E8E2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,.78);
  position: relative;
  transition: color .15s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-light), var(--accent));
  border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav .btn-primary {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  box-shadow: 0 6px 18px rgba(20,184,166,.45), inset 0 1px 0 rgba(255,255,255,.20);
}
.nav .btn-primary:hover {
  box-shadow: 0 10px 24px rgba(20,184,166,.55), inset 0 1px 0 rgba(255,255,255,.20);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(13,148,136,.32), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13,148,136,.45), inset 0 1px 0 rgba(255,255,255,.15); }
.btn-ghost {
  background: white; color: var(--brand-deep);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ============ KICKER ============ */
.kicker {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: rgba(13,148,136,.10);
  color: var(--brand-deep);
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 90px 56px 110px;
  max-width: 1320px; margin: 0 auto;
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--t1);
  margin-top: 22px;
}
.grad {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.lede {
  font-size: 19px;
  color: var(--t2);
  margin-top: 24px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-cta {
  display: flex; gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex; gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--t3);
  font-size: 14px;
  font-weight: 500;
}
.meta-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16,185,129,.18);
}

.hero-art {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform .4s ease;
}
.hero-art:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-glow {
  position: absolute; inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(20,184,166,.20), transparent 50%);
  pointer-events: none;
}

/* ============ STRIP ============ */
.strip {
  display: flex; align-items: center; justify-content: center;
  gap: 50px;
  padding: 32px 56px;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: baseline; gap: 10px;
}
.strip-item strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1px;
}
.strip-item span {
  font-size: 14px;
  color: var(--t3);
  font-weight: 500;
}
.strip-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* ============ SHOWCASE ============ */
.showcase {
  padding: 110px 56px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .kicker {
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--t1);
}
.section-head .muted {
  color: var(--t3);
  font-size: 17px;
  margin-top: 14px;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  cursor: pointer;
}
.shot:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-deep);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.shot:hover figcaption { opacity: 1; transform: translateY(0); }
.shot-feature { grid-column: span 2; }

/* ============ FEATURES ============ */
.features {
  padding: 110px 56px;
  max-width: 1320px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: white;
  border-radius: 22px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 2;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-light);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  padding: 18px 22px 8px;
  letter-spacing: -.4px;
  line-height: 1.25;
}
.feature-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
  padding: 0 22px 22px;
  flex: 1;
}

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 56px;
  max-width: 1320px; margin: 0 auto;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-art {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform .4s ease;
}
.split-art:hover { transform: scale(1.02); }
.split-text .kicker { margin-bottom: 18px; }
.split-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.split-text p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--t2);
  max-width: 480px;
}
.checks {
  margin-top: 26px;
  list-style: none;
}
.checks li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--t2);
  font-size: 15px;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  background-image:
    linear-gradient(135deg, var(--brand), var(--brand-light)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: cover, 14px 14px;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* ============ PRICING ============ */
.pricing {
  padding: 110px 56px;
  max-width: 1320px; margin: 0 auto;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.old-price {
  font-size: 17px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  margin-right: 6px;
}
.amount-promo {
  color: #dc2626 !important;
  text-shadow: 0 1px 0 rgba(239,68,68,.08);
}
.promo-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220,38,38,.35);
  z-index: 1;
}
.promo-flag-strong {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  box-shadow: 0 6px 16px rgba(185,28,28,.45);
  font-size: 13px;
  padding: 6px 12px;
}
.price-card {
  position: relative;
  background: white;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  padding: 64px 32px 36px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.is-selected {
  background: linear-gradient(180deg, #fff 0%, #f0fbf9 100%);
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-lg);
}
.ribbon {
  position: absolute;
  top: -14px; right: 28px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  font-size: 12px; font-weight: 700;
  letter-spacing: .5px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(249,115,22,.4);
  text-transform: uppercase;
}
.price-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--t1);
}
.price-head .muted {
  color: var(--t3);
  font-size: 14px;
  margin-top: 4px;
}
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 22px 0 24px;
}
.price-amount .amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -1.5px;
}
.price-amount .period {
  font-size: 14px;
  color: var(--t3);
  font-weight: 500;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  position: relative;
  padding: 9px 0 9px 28px;
  color: var(--t2);
  font-size: 15px;
  border-bottom: 1px dashed var(--border-soft);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: rgba(13,148,136,.12);
  color: var(--brand);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.price-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--t3);
}

/* ============ CHECKOUT ============ */
.checkout {
  margin-top: 64px;
}
.checkout-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: white;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 1080px;
  margin: 0 auto;
}
.checkout-left h3 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 14px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.checkout-left p {
  margin-top: 12px;
  color: var(--t2);
  font-size: 16px;
}
.methods {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 28px;
}
.method {
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: .5px;
}
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.checkout-form label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
}
.checkout-form input {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--t1);
  background: white;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.checkout-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(13,148,136,.12);
}
.checkout-total {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.checkout-total span { font-size: 15px; color: var(--t2); }
.checkout-total strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1px;
}

/* ============ DOWNLOAD ============ */
.download {
  padding: 110px 56px 120px;
  max-width: 1320px; margin: 0 auto;
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dl-card {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 28px 24px;
  background: white;
  border-radius: 22px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.dl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.dl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dl-card:hover::before { transform: scaleX(1); }

.dl-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 16px;
  flex-shrink: 0;
}
.dl-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.dl-os { font-size: 17px; font-weight: 700; color: var(--t1); }
.dl-sub { font-size: 13px; color: var(--t3); font-weight: 500; }
.dl-arrow {
  font-size: 22px;
  color: var(--t4);
  transition: transform .25s ease, color .25s ease;
}
.dl-card:hover .dl-arrow { color: var(--brand); transform: translateY(4px); }

.dl-win .dl-icon    { background: linear-gradient(135deg,#0078D4,#00BCF2); color: white; }
.dl-mac .dl-icon    { background: linear-gradient(135deg,#1F2937,#4B5563); color: white; }
.dl-android .dl-icon{ background: linear-gradient(135deg,#3DDC84,#0F9D58); color: white; }
.dl-ios .dl-icon    { background: linear-gradient(135deg,#0D9488,#14B8A6); color: white; }

.dl-win::before     { background: #0078D4; }
.dl-mac::before     { background: #1F2937; }
.dl-android::before { background: #3DDC84; }
.dl-ios::before     { background: var(--brand); }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F9F8 100%);
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr;
  gap: 60px;
  padding: 56px 56px 40px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(13, 148, 136, 0.20));
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 1.8px;
  color: var(--brand-deep);
  line-height: 1;
}
.footer-brand-name sup {
  font-size: 11px;
  color: var(--accent-deep);
  font-weight: 700;
  margin-left: 2px;
}
.footer-brand-tagline {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--t2);
  font-weight: 500;
  padding: 5px 0;
  transition: color .15s, transform .15s;
}
.footer-col a:hover {
  color: var(--brand);
  transform: translateX(2px);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 56px;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer-links-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.lnk {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--t2);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lnk svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}
.lnk:hover {
  transform: translateY(-3px) scale(1.06);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.lnk-wa:hover  { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); box-shadow: 0 10px 24px rgba(18, 140, 126, 0.45); }
.lnk-ig:hover { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); box-shadow: 0 10px 24px rgba(221, 42, 123, 0.45); }
.lnk-fb:hover  { background: linear-gradient(135deg, #1877F2 0%, #0866FF 100%); box-shadow: 0 10px 24px rgba(24, 119, 242, 0.45); }
.lnk-tt:hover    { background: linear-gradient(135deg, #000000 0%, #25F4EE 100%); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45); }
.lnk-x:hover         { background: #000000; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45); }
.lnk-th:hover   { background: #000000; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45); }
.lnk-yt:hover   { background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%); box-shadow: 0 10px 24px rgba(255, 0, 0, 0.45); }
.lnk-tg:hover  { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); box-shadow: 0 10px 24px rgba(42, 171, 238, 0.45); }

.footer-legal {
  border-top: 1px solid var(--border);
  background: rgba(13, 148, 136, 0.04);
}
.legal-warning {
  display: flex;
  gap: 16px;
  padding: 22px 56px;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.legal-warning > svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: #B45309;
  margin-top: 2px;
}
.legal-warning-body strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #92400E;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.legal-warning-body p {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--t2);
  margin: 0;
}
.legal-warning-body p strong {
  display: inline;
  text-transform: none;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: 0;
  margin: 0;
}
.legal-warning-body em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 56px;
  max-width: 1320px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12.5px;
  color: var(--t3);
  font-weight: 600;
}
.footer-copy sup {
  font-size: 8px;
  color: var(--accent-deep);
  font-weight: 700;
}
.footer-meta {
  font-size: 11px;
  color: var(--t4);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 72px; }
  .hero-art { transform: none; }
  .split { grid-template-columns: 1fr; gap: 36px; padding: 64px 24px; }
  .split-reverse { direction: ltr; }
  .shots-grid { grid-template-columns: repeat(2, 1fr); }
  .shot-feature { grid-column: span 2; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .checkout-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .nav { padding: 12px 16px; gap: 10px; }
  .nav-links { display: none; }
  .nav .btn-primary { padding: 10px 14px; font-size: 13px; white-space: nowrap; }
  .showcase, .pricing, .download, .features { padding: 72px 24px; }
  .strip { gap: 22px; padding: 24px; }
  .strip-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 44px 22px 28px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .legal-warning { padding: 20px 22px; }
  .footer-bottom { padding: 14px 22px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-links { padding: 18px 22px; }
}
@media (max-width: 520px) {
  .shots-grid { grid-template-columns: 1fr; }
  .shot-feature { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; letter-spacing: -1.2px; }
  .price-amount { flex-wrap: wrap; white-space: normal; }
  .price-amount .amount { font-size: 32px; }
  .price-card { padding: 56px 22px 28px; }
  .footer-cols { grid-template-columns: 1fr; }
  .checkout-card, .checkout-left, .virement-panel,
  .vir-row, .vir-value, .pay-method-tab, .price-card { min-width: 0; max-width: 100%; }
}

/* ============ BRAND LOGO (NAV + FOOTER) ============ */
.brand-logo {
  display: block;
  width: auto;
  transition: transform .2s ease;
}
.brand-logo:hover { transform: scale(1.04); }
.brand-logo-nav {
  height: 46px;
  filter: drop-shadow(0 4px 14px rgba(94, 234, 212, 0.35));
}
.brand-text-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  margin-left: 2px;
}
.brand-text-block .brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1.8px;
  background: linear-gradient(135deg, #ffffff 0%, #B6E8E2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.05;
}
.brand-tagline {
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(182, 232, 226, 0.78);
}
.brand-logo-footer {
  height: 30px;
}
.brand-name-footer {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--brand-deep);
  margin-left: 8px;
}
.brand-footer { display: flex; align-items: center; }

/* ============ PROMISE BANNER ============ */
.promise {
  position: relative;
  padding: 90px 56px 100px;
  background: linear-gradient(180deg, #F8FDFC 0%, #E6F4F2 50%, #DFF1EE 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* ===== Diagonal trial ribbon (corner sash) ===== */
.trial-ribbon {
  position: absolute;
  top: 38px;
  right: -78px;
  z-index: 5;
  transform: rotate(38deg);
  background: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #C2410C 100%);
  color: #ffffff;
  padding: 14px 90px;
  box-shadow:
    0 14px 36px rgba(234, 88, 12, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
  letter-spacing: 0.4px;
  animation: trialPulse 2.4s ease-in-out infinite;
  border-top: 1px solid rgba(255, 255, 255, 0.40);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.trial-ribbon-spark {
  position: absolute;
  top: 4px;
  left: 14px;
  font-size: 12px;
  color: #FEF3C7;
  opacity: 0.85;
  animation: sparkBlink 1.8s ease-in-out infinite;
}
.trial-ribbon-main {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}
.trial-ribbon-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.96;
}
@keyframes trialPulse {
  0%, 100% {
    box-shadow:
      0 14px 36px rgba(234, 88, 12, 0.45),
      0 4px 10px rgba(0, 0, 0, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.30),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow:
      0 18px 46px rgba(234, 88, 12, 0.62),
      0 6px 14px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  }
}
@keyframes sparkBlink {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.35); }
}
.promise::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(20,184,166,.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.promise::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.promise-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.promise-logo {
  display: inline-block;
  margin-bottom: 26px;
}
.promise-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 14px 38px rgba(13,148,136,.28));
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.promise-title {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--t1);
}
.promise-lede {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--t2);
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.promise-lede strong {
  color: var(--brand-deep);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(20,184,166,.18) 60%);
  padding: 0 2px;
}
.promise-lede-italic {
  margin-top: 16px;
  font-style: italic;
  color: var(--t3);
  font-size: 16px;
}
.promise-lede-italic strong { background: none; padding: 0; }

.promise-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px auto 30px;
  max-width: 760px;
}
.promise-num {
  background: white;
  border-radius: 20px;
  padding: 22px 12px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.promise-num:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.promise-num strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1.2px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.promise-num span {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--t3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.promise-tag {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -.2px;
}
.promise-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ============ CAROUSEL (ALBUM) ============ */
.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.carousel-track {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}
.carousel-slide {
  display: none;
  flex-direction: column;
}
.carousel-slide.active {
  display: flex;
  animation: slideFade .55s cubic-bezier(.2,.8,.2,1);
}
@keyframes slideFade {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.carousel-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.carousel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-caption {
  padding: 30px 44px 36px;
  text-align: center;
}
.carousel-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(13,148,136,.10);
  color: var(--brand-deep);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  margin-bottom: 10px;
}
.carousel-caption h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -.6px;
}
.carousel-caption p {
  margin: 14px auto 0;
  font-size: 16px;
  color: var(--t2);
  line-height: 1.65;
  max-width: 760px;
}
.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(13,148,136,.12) 0%, rgba(249,115,22,.10) 100%);
  color: var(--brand-deep);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.dl-badge::before {
  content: '↓';
  font-weight: 900;
  font-size: 15px;
}

.carousel-arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--brand-deep);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.carousel-prev { left: -26px; }
.carousel-next { right: -26px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
  padding: 0;
}
.carousel-dot.active {
  width: 30px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

/* ============ MASSAR SECTION EMPHASIS ============ */
.kicker-accent {
  background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(220,38,38,.12));
  color: #c2410c;
  border: 1px solid rgba(249,115,22,.28);
}
.lede-strong {
  font-size: 19px !important;
  color: var(--t1) !important;
  line-height: 1.65 !important;
  font-weight: 500;
  max-width: 540px !important;
}
.lede-strong strong { color: var(--brand-deep); font-weight: 800; }
.checks-strong li {
  font-size: 15.5px;
  padding-left: 36px;
}
.checks-strong li strong { color: var(--brand-deep); }
.massar-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  color: #047857;
  border: 1.5px solid #10B981;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(16,185,129,.18);
}
.massar-stamp {
  position: absolute;
  bottom: 18px; right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border: 2px solid #10B981;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(16,185,129,.30);
  transform: rotate(-3deg);
}
.massar-stamp-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
}
.massar-stamp-text {
  font-size: 13px;
  font-weight: 800;
  color: #047857;
  letter-spacing: -.2px;
}
.split-massar .split-art { position: relative; }

/* Highlight when user lands on checkout after picking a pack */
@keyframes checkoutFlash {
  0%   { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.55); }
  50%  { box-shadow: 0 0 0 18px rgba(13, 148, 136, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}
.checkout-flash .checkout-card {
  animation: checkoutFlash 1.4s ease-out;
}

/* ============ CHECKOUT — VIREMENT PANEL ============ */
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.pay-method-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all .15s ease;
  color: var(--t2);
}
.pay-method-tab svg {
  width: 32px; height: 32px;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--brand-deep);
}
.pay-method-active {
  border-color: #10B981;
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  box-shadow: 0 4px 14px rgba(16,185,129,.18);
}
.pay-method-active svg {
  background: #D1FAE5;
  color: #059669;
}
.pay-method-soon {
  opacity: .65;
  cursor: not-allowed;
  background: #F8FAFC;
}
.pm-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.pm-name { font-size: 13px; font-weight: 700; color: var(--t1); }
.pm-sub { font-size: 11px; color: var(--t3); }
.pm-pill {
  font-size: 9px; font-weight: 800; letter-spacing: .5px;
  background: #FEF3C7; color: #92400E;
  padding: 3px 7px; border-radius: 999px;
}

.trust-line {
  margin-top: 22px;
  padding: 11px 14px;
  background: rgba(13,148,136,.06);
  border: 1px solid rgba(13,148,136,.18);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--brand-deep);
  display: flex; align-items: center; gap: 8px;
  line-height: 1.45;
}

.virement-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, #F8FDFB 0%, #F0FDF4 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}
.vir-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}
.vir-row > * { min-width: 0; }
.vir-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .45px;
}
.vir-amount-row { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); border-color: #10B981; }
.vir-amount {
  font-size: 22px;
  font-weight: 900;
  color: #047857;
  letter-spacing: -.6px;
}
.vir-pack em { font-style: normal; font-weight: 700; color: var(--t1); font-size: 14px; }
.vir-value {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
}
.vir-value code {
  font-family: 'Outfit', monospace;
  font-size: 13px;
  color: var(--t1);
  letter-spacing: .3px;
  font-weight: 600;
  word-break: break-all;
  overflow-wrap: anywhere;
  min-width: 0;
}
.vir-copy {
  padding: 5px 11px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-deep);
  cursor: pointer;
  transition: all .15s;
}
.vir-copy:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.vir-copy.copied {
  background: #D1FAE5;
  color: #059669;
  border-color: #10B981;
}
.vir-hint {
  font-size: 12px;
  color: var(--t3);
  padding: 4px 4px 0;
  line-height: 1.55;
  margin: 0;
}

#proofBtn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.40), inset 0 1px 0 rgba(255,255,255,0.20) !important;
}
.btn-whatsapp:hover {
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.55), inset 0 1px 0 rgba(255,255,255,0.25) !important;
}
.btn-whatsapp.is-disabled,
.btn-whatsapp[aria-disabled="true"] {
  background: #cbd5e1 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: .75;
  pointer-events: none;
}

.vir-warn {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 10px;
  margin-top: 6px;
}
.vir-warn-icon { font-size: 16px; line-height: 1; color: #EA580C; }
.vir-warn-text { font-size: 11.5px; color: #9a3412; line-height: 1.45; font-weight: 600; }

.vir-fields { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.vir-field { display: flex; flex-direction: column; gap: 5px; }
.vir-field-label {
  font-size: 11px; font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.vir-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  color: var(--t1);
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.vir-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.vir-field input.is-invalid { border-color: #ef4444; }
.vir-field-error {
  display: none;
  font-size: 10.5px;
  color: #dc2626;
  margin-top: 2px;
  font-weight: 600;
}
.vir-field-error.is-visible { display: block; }

/* ============ PROMISE / CAROUSEL / MASSAR — RESPONSIVE ============ */
@media (max-width: 980px) {
  .promise { padding: 60px 22px 70px; }
  .promise-logo img { height: 86px; }
  .promise-numbers { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trial-ribbon { top: 28px; right: -90px; padding: 11px 88px; }
  .trial-ribbon-main { font-size: 18px; }
  .trial-ribbon-sub { font-size: 10px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 26px; }
  .carousel-caption { padding: 22px 22px 28px; }
  .carousel-caption p { font-size: 15px; }
  .massar-stamp { bottom: 10px; right: 10px; padding: 8px 12px; }
  .pay-methods { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .promise-title { font-size: 32px; letter-spacing: -1px; }
  .promise-lede { font-size: 16px; }
  .promise-numbers { grid-template-columns: 1fr 1fr; }
  .promise-num strong { font-size: 28px; }
}
