.elementor-4269 .elementor-element.elementor-element-64f5778{--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-adf7172 *//* =============================================================
   XynExpress — Canva 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;
  --trial:     #0891b2;   /* teal — free trial highlight */
  --seasonal:  #7c3aed;   /* purple — seasonal cards */
  --saving:    #065f46;   /* dark green — savings callout */
}

/* ── 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: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

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

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

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

/* ── COUPON CARDS ── */
.coupon-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

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

.coupon-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 65, 10, 0.08);
}

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

.coupon-card.deal-card::before     { background: var(--accent2); }
.coupon-card.seasonal-card::before { background: var(--seasonal); }

/* Trial card — teal stripe + subtle tint */
.coupon-card.trial-card {
  border-color: #a5d8e6;
  background: #f8fdff;
}

.coupon-card.trial-card::before    { background: var(--trial); }
.coupon-card.trial-card:hover {
  border-color: var(--trial);
  box-shadow: 0 4px 20px rgba(8, 145, 178, 0.1);
}

.coupon-card.seasonal-card { opacity: 0.8; }

.coupon-type {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 8px;
  display: inline-block;
}

.type-trial    { background: #e0f7fc; color: var(--trial); }
.type-deal     { background: #eef1ff; color: var(--accent2); }
.type-seasonal { background: #f3eeff; color: var(--seasonal); }

.coupon-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
  margin-top: 0;
}

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

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

/* ── NO-CODE BADGE ── */
.no-code-badge {
  background: #f0f4ff;
  border: 1.5px solid #d0d9ff;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent2);
  text-align: center;
  min-width: 140px;
}

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

/* Free trial badge — teal */
.no-code-badge.trial-badge {
  background: #e0f7fc;
  border-color: #a5d8e6;
  color: var(--trial);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.no-code-badge.trial-badge span { color: #5ab8cc; }

/* Savings badge — green */
.no-code-badge.saving-badge {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: var(--saving);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.no-code-badge.saving-badge span { color: #6ee7b7; }

/* Inactive / no current sale */
.no-code-badge.inactive {
  background: #f4f4f4;
  border-color: #e0ddd8;
  color: var(--muted);
}

.no-code-badge.inactive span { color: #b0aaa4; }

/* ── 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(3, 1fr);
  gap: 14px;
}

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

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

.pricing-card--featured::after {
  content: 'Recommended';
  position: absolute;
  top: -1px;
  right: 14px;
  background: var(--trial);
  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(--trial); }

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

.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.free-price strong {
  color: var(--yes);
}

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

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--trial);
  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: #0e7490;
  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: 760px) {
  .page-hero     { grid-template-columns: 1fr; }
  .hero-logo-box { display: none; }
  .verdict-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .coupon-card { grid-template-columns: 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 */