.elementor-1648 .elementor-element.elementor-element-0b83944{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2ff47a3 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #0d9488;
  --teal-dark:   #0f766e;
  --teal-light:  #ccfbf1;
  --amber:       #f59e0b;
  --amber-dark:  #b45309;
  --ink:         #0f172a;
  --ink-mid:     #334155;
  --ink-soft:    #64748b;
  --surface:     #f8fafc;
  --white:       #ffffff;
  --border:      #e2e8f0;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--surface); color: var(--ink); line-height: 1.75; font-size: 17px; }

/* ===========================
   LAYOUT
=========================== */
.container      { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.container--wide{ max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 60%, #0d9488 100%);
  color: var(--white);
  padding: 84px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(13,148,136,.18) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(245,158,11,.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,158,11,.30);
  margin-bottom: 24px;
  position: relative;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 840px;
  margin: 0 auto 20px;
  position: relative;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 38px;
  position: relative;
}

/* ===========================
   BUTTON
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 22px rgba(245,158,11,.45);
  position: relative;
}
.btn:hover { background: var(--amber-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,.5); }

.btn-light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  box-shadow: none;
}
.btn-light:hover { background: rgba(255,255,255,.22); color: var(--white); transform: translateY(-2px); box-shadow: none; }

/* ===========================
   META BAR
=========================== */
.meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--ink-soft);
}
.meta-bar span { display: flex; align-items: center; gap: 5px; }
.meta-bar strong { color: var(--ink-mid); }

/* ===========================
   ARTICLE
=========================== */
.article { padding: 60px 0 80px; }
.article p { margin-bottom: 22px; color: var(--ink-mid); }

.article h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--ink);
  margin: 56px 0 16px;
  line-height: 1.3;
}
.article h3 { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin: 30px 0 10px; }

/* ===========================
   BEFORE / AFTER
=========================== */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
@media (max-width: 580px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-card { border-radius: var(--radius-md); padding: 28px 24px; }
.ba-card.before { background: #fff5f5; border: 1.5px solid #fecaca; }
.ba-card.after  { background: #f0fdf9; border: 1.5px solid #99f6e4; }

.ba-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.before .ba-label { color: #b91c1c; }
.after  .ba-label { color: var(--teal-dark); }

.ba-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ba-card li { font-size: 15px; color: var(--ink-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.ba-card li::before { flex-shrink: 0; font-size: 15px; margin-top: 2px; }
.before li::before { content: "✗"; color: #ef4444; font-weight: 700; }
.after  li::before { content: "✓"; color: var(--teal); font-weight: 700; }

/* ===========================
   TOOL CARDS
=========================== */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 36px 0; }

.tool-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
}
.tool-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.11); transform: translateY(-3px); }

.tool-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.tool-card:nth-child(1) .tool-icon { background: #dbeafe; }
.tool-card:nth-child(2) .tool-icon { background: #fef3c7; }
.tool-card:nth-child(3) .tool-icon { background: #ede9fe; }

.tool-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 6px; }

.tool-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tool-card:nth-child(1) .tool-tag { background: #dbeafe; color: #1d4ed8; }
.tool-card:nth-child(2) .tool-tag { background: #fef3c7; color: #92400e; }
.tool-card:nth-child(3) .tool-tag { background: #ede9fe; color: #6d28d9; }

.tool-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.tool-features { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.tool-features li { font-size: 14px; color: var(--ink-mid); display: flex; align-items: flex-start; gap: 8px; }
.tool-features li::before { content: "→"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===========================
   PULL QUOTE
=========================== */
.quote-block {
  background: linear-gradient(135deg, #0f172a, #134e4a);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 44px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 180px;
  color: rgba(255,255,255,.05);
  position: absolute;
  top: -30px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.quote-block p { font-size: 1.15rem; font-style: italic; line-height: 1.75; color: rgba(255,255,255,.9); position: relative; margin-bottom: 16px; }
.quote-author  { font-size: 13.5px; color: var(--amber); font-weight: 600; position: relative; }

/* ===========================
   STATS ROW
=========================== */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
@media (max-width: 500px) { .stats-row { grid-template-columns: 1fr; } }

.stat-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.stat-num   { font-family: var(--font-head); font-size: 2.3rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

/* ===========================
   STEP LIST
=========================== */
.step-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }
.step-list li { display: flex; gap: 18px; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 38px; height: 38px; background: var(--teal); color: var(--white); border-radius: 50%; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.step-content strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.step-content span   { font-size: 15px; color: var(--ink-soft); }

/* ===========================
   TIP BOX
=========================== */
.tip-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: var(--teal-dark);
}
.tip-box strong { font-weight: 700; }

/* ===========================
   DIVIDER
=========================== */
hr { border: none; border-top: 1px solid var(--border); margin: 52px 0; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  padding: 72px 24px;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.7); font-size: 17px; max-width: 520px; margin: 0 auto 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--ink); color: rgba(255,255,255,.4); text-align: center; padding: 28px 20px; font-size: 13px; }
.footer a { color: var(--teal); text-decoration: none; }
.footer a:hover { text-decoration: underline; }/* End custom CSS */