.elementor-2434 .elementor-element.elementor-element-2b555af{--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-73ce571 */:root {
  --white: #ffffff;
  --off-white: #f7f7f5;
  --black: #0a0a0a;
  --orange: #e85c0d;
  --orange-light: #ff7a2f;
  --orange-pale: #fff3ec;
  --gray-100: #f2f2f2;
  --gray-200: #e0e0e0;
  --gray-400: #9a9a9a;
  --gray-600: #555;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--black);
  text-decoration: none;
}
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  border-bottom: 1px solid var(--gray-200);
}
.hero-left {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--gray-200);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
}
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 24px;
}
h1 em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 0px;
}
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 420px;
  margin-bottom: 36px;
}

/* inline keyword link */
.hero-desc a.keyword-link {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color .2s;
}
.hero-desc a.keyword-link:hover { color: var(--orange-light); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--gray-200);
  color: var(--black);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* Hero right — ball + stats visual */
.hero-right {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ball-wrap {
  position: relative;
  z-index: 2;
}
.ball {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--orange-light), var(--orange) 60%, #b84500);
  box-shadow: 20px 30px 60px rgba(232,92,13,0.3), inset -10px -10px 30px rgba(0,0,0,0.15);
  position: relative;
  animation: float 4s ease-in-out infinite;
}
.ball::before, .ball::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.18);
}
.ball::before { width: 100%; height: 100%; top: 0; left: 0; clip-path: inset(0 50% 0 0); }
.ball::after  { width: 140%; height: 140%; top: -20%; left: -20%; clip-path: inset(0 0 50% 0); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* floating stat chips */
.stat-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  animation: chipFloat 5s ease-in-out infinite;
}
.stat-chip .label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); }
.stat-chip .value { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--black); line-height: 1; }
.stat-chip .value span { color: var(--orange); }
.chip-1 { top: 18%; left: 8%; animation-delay: 0s; }
.chip-2 { top: 14%; right: 6%; animation-delay: 1.2s; }
.chip-3 { bottom: 20%; left: 5%; animation-delay: 2.4s; }
.chip-4 { bottom: 14%; right: 8%; animation-delay: 0.6s; }

@keyframes chipFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* ── LINK ROW ── */
.link-row {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
}
.link-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  text-decoration: none;
  border-right: 1px solid var(--gray-200);
  transition: background .2s;
}
.link-pill:last-child { border-right: none; }
.link-pill:hover { background: var(--orange-pale); }
.link-pill .icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.link-pill .icon svg { width: 18px; height: 18px; fill: #fff; }
.link-pill .pill-text .title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}
.link-pill .pill-text .sub {
  font-size: 0.73rem;
  color: var(--gray-400);
}
.link-pill .arrow { margin-left: auto; color: var(--gray-400); font-size: 1rem; }
.link-pill:hover .arrow { color: var(--orange); }

/* ── TIPS SECTION ── */
.tips-section {
  padding: 80px 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
}
.section-header h2 span { color: var(--orange); }
.section-header p { font-size: 0.9rem; color: var(--gray-400); max-width: 320px; text-align: right; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.tip-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s;
  position: relative;
}
.tip-card:hover { background: var(--orange-pale); }
.tip-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gray-100);
  margin-bottom: 8px;
  transition: color .2s;
}
.tip-card:hover .tip-number { color: rgba(232,92,13,0.12); }
.tip-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tip-title::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.tip-body {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ── CLOSING BAND ── */
.closing-band {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 52px 64px;
  gap: 40px;
}
.closing-band h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.closing-band h3 span { color: var(--orange); }
.closing-band p { font-size: 0.9rem; font-weight: 300; color: #aaa; margin-top: 8px; max-width: 520px; line-height: 1.7; }
.closing-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
}
.closing-cta:hover { background: var(--orange-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 28px; border-right: none; border-bottom: 1px solid var(--gray-200); }
  .hero-right { min-height: 340px; }
  .link-row { flex-direction: column; }
  .link-pill { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .link-pill:last-child { border-bottom: none; }
  .tips-section { padding: 48px 24px; }
  .tips-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header p { text-align: left; }
  .closing-band { grid-template-columns: 1fr; padding: 40px 24px; }
}

/* ── FADE-IN ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }/* End custom CSS */