.elementor-4287 .elementor-element.elementor-element-c5aa9d1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-331d554 *//* =============================================================
   XynExpress — ThemeForest / Envato Market 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;
  --warning:   #92400e;
  --warn-bg:   #fffbeb;
  --elements:  #2b5fff;  /* Envato Elements blue */
  --tf:        #1a1a2e;  /* ThemeForest dark */
}

/* ── 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;
}

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

.hero-badge.no-code {
  background: var(--warn-bg);
  color: var(--warning);
}

.hero-badge.no-code::before { animation: none; opacity: 0.4; }

@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(--accent);
}

.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(--accent); }

.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 ── */
.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;
}

/* ── 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);
}

/* ── STRATEGY CARDS ── */
.strategy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.strategy-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.strategy-card:hover {
  border-color: var(--border);
  box-shadow: 0 3px 16px rgba(0,0,0,0.05);
}

/* Featured / Elements recommendation */
.strategy-card--highlight {
  border-color: #d0d9ff;
  background: #f8f9ff;
}

.strategy-card--highlight:hover {
  border-color: var(--accent2);
  box-shadow: 0 4px 20px rgba(43, 95, 255, 0.08);
}

.strategy-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 4px;
}

.strategy-card--highlight .strategy-number { color: #c7d2fe; }

.strategy-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.strategy-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

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

.strategy-tag { display: flex; gap: 8px; flex-wrap: wrap; }

.stag {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.stag-later { background: #fff3ee; color: var(--accent); }
.stag-tip   { background: #f0f4ff; color: var(--accent2); }
.stag-best  { background: #eef1ff; color: var(--accent2); }

/* ── VERDICT BLOCK ── */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

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

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

.verdict-no {
  background: var(--warn-bg);
  border-color: #fde68a;
}

.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(--warning); }

.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(--warning); color: #fff; }

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

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

/* ── COMPARISON BLOCK ── */
.compare-block { margin-bottom: 36px; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-card--featured {
  border-color: var(--elements);
  background: #f8f9ff;
  position: relative;
}

.compare-featured-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--elements);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 7px 7px;
  white-space: nowrap;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-logo--elements {
  background: var(--elements);
}

.compare-header h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 2px;
}

.compare-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.compare-list li {
  font-size: 0.86rem;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  color: #3a3835;
}

.compare-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.85rem;
}

.compare-list li.pro::before  { content: '✓'; color: var(--yes); }
.compare-list li.con::before  { content: '–'; color: var(--muted); }

.compare-btn {
  display: block;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
}

.compare-btn--secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.compare-btn--secondary:hover {
  border-color: var(--ink);
  background: #edeae3;
  text-decoration: none;
  color: var(--ink);
}

.compare-btn--primary {
  background: var(--elements);
  color: #ffffff;
}

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

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

.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;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #b8b4ad;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 7px;
  border: 1.5px solid #3a3835;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #8a867e;
  color: #ffffff;
  text-decoration: none;
}

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

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

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

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

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .page-hero     { grid-template-columns: 1fr; }
  .hero-logo-box { display: none; }
  .verdict-grid  { grid-template-columns: 1fr; }
  .compare-grid  { grid-template-columns: 1fr; }
  .compare-card--featured { margin-top: 12px; }
}

@media (max-width: 540px) {
  .strategy-card { grid-template-columns: 1fr; }
  .strategy-number { font-size: 1.2rem; padding-top: 0; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-secondary, .btn-primary { justify-content: center; }
}

/* ── 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 */