.elementor-4258 .elementor-element.elementor-element-40cd80d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5b74518 *//* =============================================================
   XynExpress — Elementor Pro Coupon Page
   style.css  (page content only — no header/footer/sidebar)
   ============================================================= */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --ink:       #0e0e0f;
  --paper:     #f5f2eb;
  --accent:    #e8410a;
  --accent2:   #2b5fff;
  --muted:     #7a7770;
  --border:    #d8d4cb;
  --card-bg:   #ffffff;
  --yes:       #0f6e3a;
  --no:        #b91c1c;
  --tag-bg:    #fff3ee;
  --tag-text:  #e8410a;
  --upcoming:  #7c3aed;   /* purple — upcoming sale */
  --warning:   #92400e;   /* amber text for honest warning */
  --warn-bg:   #fffbeb;
  --warn-border:#f59e0b;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* No-code variant — amber instead of orange */
.hero-badge.no-code {
  background: var(--warn-bg);
  color: var(--warning);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

/* No live pulse on the no-code badge — it's static info */
.hero-badge.no-code::before {
  animation: none;
  opacity: 0.5;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.page-hero h1 em {
  font-style: normal;
  color: var(--upcoming);
}

.hero-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.hero-meta .divider { color: var(--border); }

.verified-stamp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--yes);
}

.verified-stamp svg { width: 15px; height: 15px; }

.status-none {
  font-weight: 500;
  color: var(--warning);
}

.hero-logo-box {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 24px;
  text-align: center;
  min-width: 140px;
}

.hero-logo-box .brand-initial {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.hero-logo-box .brand-initial span { color: var(--upcoming); }

.hero-logo-box p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── PAGE CONTENT WRAPPER ── */
.page-content {
  padding: 32px 0 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── INTRO — HONEST VARIANT ── */
.intro-block {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent2);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 36px;
  font-size: 0.97rem;
  color: #3a3835;
  line-height: 1.72;
}

.intro-block.honest-intro {
  background: var(--warn-bg);
  border-color: #fde68a;
  border-left-color: var(--warn-border);
}

.honest-header {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--warning);
  margin-bottom: 12px;
}

.honest-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── SALE CALENDAR ── */
.sale-calendar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.sale-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sale-card:hover {
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
}

/* left stripe */
.sale-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--border);
}

.sale-card.sale-upcoming::before  { background: var(--upcoming); }
.sale-card.sale-newsletter::before { background: var(--accent2); }
.sale-card.sale-past::before      { background: #c8c4bc; }

/* Upcoming glow */
.sale-card.sale-upcoming {
  border-color: #d8b4fe;
  background: #fdfbff;
}

.sale-card.sale-past {
  opacity: 0.65;
}

.sale-timing {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sale-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}

.tag-upcoming { background: #f3eeff; color: var(--upcoming); }
.tag-later    { background: #fff3ee; color: var(--accent); }
.tag-past     { background: #f4f3f1; color: #a09c95; }
.tag-always   { background: #eef1ff; color: var(--accent2); }

.sale-months {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.sale-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}

.sale-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.sale-body p strong { color: var(--ink); font-weight: 500; }

.sale-badge {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
  min-width: 90px;
}

.sale-badge--best {
  background: #f3eeff;
  border-color: #d8b4fe;
  color: var(--upcoming);
}

.sale-badge--inactive {
  background: #f4f3f1;
  border-color: #e0ddd8;
  color: #a09c95;
  font-weight: 600;
}

/* ── NO-CODE BADGE (used in newsletter sale card) ── */
.no-code-badge {
  background: #eef1ff;
  border: 1.5px solid #d0d9ff;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent2);
  text-align: center;
  min-width: 90px;
}

.no-code-badge span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8b9bd4;
  margin-bottom: 2px;
}

/* ── BEST APPROACH CALLOUT ── */
.best-approach {
  background: #f3eeff;
  border: 1.5px solid #d8b4fe;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.9rem;
  color: #4c1d95;
  line-height: 1.65;
  margin-bottom: 36px;
}

.best-approach strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  color: var(--upcoming);
}

/* ── VERDICT BLOCK ── */
.verdict-block { margin-bottom: 36px; }

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.verdict-card {
  border-radius: 10px;
  padding: 22px;
  border: 1.5px solid;
}

.verdict-yes {
  background: #f0faf4;
  border-color: #a3d9b8;
}

.verdict-no {
  background: #fff5f5;
  border-color: #f5bebe;
}

.verdict-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.verdict-yes .verdict-header { color: var(--yes); }
.verdict-no  .verdict-header { color: var(--no);  }

.verdict-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.verdict-yes .verdict-icon { background: var(--yes); color: #fff; }
.verdict-no  .verdict-icon { background: var(--no);  color: #fff; }

.verdict-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #3a3835;
  margin: 0;
}

.sweet-spot {
  margin-top: 16px;
  background: #fffbf0;
  border: 1.5px solid #f0d98a;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.88rem;
  color: #5a4b00;
  line-height: 1.65;
}

.sweet-spot strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  color: #8a6d00;
}

/* ── PRICING BLOCK ── */
.pricing-block { margin-bottom: 36px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Featured plan highlight */
.pricing-card--featured {
  border-color: var(--upcoming);
  background: #fdfbff;
  position: relative;
}

.pricing-card--featured::after {
  content: 'Best value';
  position: absolute;
  top: -1px;
  right: 14px;
  background: var(--upcoming);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0 0 5px 5px;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.pricing-card--featured .pricing-tier { color: var(--upcoming); }

.pricing-sites {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.pricing-price {
  margin-top: 6px;
}

.pricing-price strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 0.8rem;
  color: var(--muted);
}

.pricing-note {
  font-size: 0.75rem;
  color: #a09c95;
  margin-top: 2px;
  line-height: 1.4;
}

.pricing-footer-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--ink);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  margin-top: 8px;
}

/* Muted CTA variant — no live deal, softer tone */
.cta-block.cta-muted {
  background: #1c1a18;
  border: 1.5px solid #2a2824;
}

.cta-block h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.cta-block p {
  font-size: 0.85rem;
  color: #8a867e;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--upcoming);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #6d28d9;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary svg { width: 16px; height: 16px; }

.cta-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.78rem;
  color: #6a6660;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .page-hero     { grid-template-columns: 1fr; }
  .hero-logo-box { display: none; }
  .verdict-grid  { grid-template-columns: 1fr; }
  .sale-card     { grid-template-columns: 1fr; gap: 14px; }
  .sale-badge, .no-code-badge { min-width: unset; width: fit-content; }
}

@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* ── PAGE LOAD ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.55s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.19s; }
.fade-up:nth-child(4) { animation-delay: 0.26s; }
.fade-up:nth-child(5) { animation-delay: 0.33s; }/* End custom CSS */