/* Custom scrollbar for leadform-popup-box */
.leadform-popup-box {
  scrollbar-width: thin;
  scrollbar-color: #d32f2f #f5f5f5;
}
.leadform-popup-box::-webkit-scrollbar {
  width: 8px;
  background: #f5f5f5;
}
.leadform-popup-box::-webkit-scrollbar-thumb {
  background: #d32f2f;
  border-radius: 6px;
}
.leadform-popup-box::-webkit-scrollbar-thumb:hover {
  background: #b71c1c;
}
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
select,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: inherit;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: "Heebo", sans-serif;
  font-size: 1em;
  color: #000;
  background: #f6f7f8;
}

/* Font Family Utility Classes */
.font-narrow {
  font-family: "Arial Narrow", Arial, sans-serif;
}

.font-black {
  font-family: "Arial Black", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}
:focus {
  outline: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Sticky Header Styles */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.main-header {
  background: hsl(0, 75%, 45%);
  padding: 12px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.9;
}

.logo-text-small {
  font-size: 0.625em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-text-large {
  font-size: 2.25em;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-top: -2px;
}

.logo-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #fff;
}

.logo-number {
  font-size: 2.25em;
  font-weight: 900;
  font-family: "Heebo", sans-serif;
}

.logo-word {
  font-size: 2.25em;
  font-weight: 300;
  font-family: "Heebo", sans-serif;
}

.logo-tagline {
  display: none;
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.header-search {
  display: none;
}

.search-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.875em;
  transition: all 0.2s;
}

.search-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInSlideUp 0.4s ease-out;
}

.search-input {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 0.875em;
  width: 256px;
  outline: none;
}

.search-close-btn {
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
  display: block;
  padding: 8px;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-nav {
  background: #fff;
  border-bottom: 1px solid hsl(220, 13%, 91%);
  display: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1em;
  font-weight: 600;
  color: hsl(220, 15%, 15%);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: hsl(0, 75%, 45%);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(0, 75%, 45%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-datetime {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875em;
}

.datetime-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsl(220, 15%, 15%);
}

.datetime-item svg {
  color: hsl(0, 75%, 45%);
}

.datetime-item.time .time-value {
  color: hsl(0, 75%, 45%);
  font-weight: 600;
}

.mobile-menu {
  background: #fff;
  border-bottom: 1px solid hsl(220, 13%, 91%);
  animation: fadeIn 0.2s;
}

.mobile-menu-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.mobile-search-box {
  position: relative;
  margin-bottom: 16px;
}

.mobile-search-box .search-input {
  width: 100%;
  padding-right: 40px;
  background: hsl(220, 14%, 96%);
  color: hsl(220, 15%, 15%);
}

.mobile-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(220, 10%, 50%);
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: 4px;
}

.mobile-nav-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: hsl(220, 15%, 15%);
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-nav-menu a:hover {
  background: hsl(220, 14%, 96%);
}

/* Stock Ticker Styles */
.ticker-wrapper {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.ticker-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-animate 30s linear infinite;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  border-left: 1px solid #878787;
  flex-shrink: 0;
}

.ticker-symbol {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-price {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.7);
}

.ticker-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875em;
  font-weight: 500;
}

.ticker-change svg {
  flex-shrink: 0;
}

.ticker-change.positive {
  color: #4ade80;
}

.ticker-change.negative {
  color: #f87171;
}

.main-topic {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 30px 0;
}

.main-topic-link {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.main-topic-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.main-topic-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-in-out;
}

.main-topic:hover .main-topic-image {
  transform: scale(1.05);
}

.main-topic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.main-topic-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 24px;
  overflow: hidden;
}

.main-topic-title {
  font-size: 1.5em;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.main-topic-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875em;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 768px;
}

.main-topic-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875em;
}

.category-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75em;
  font-weight: 500;
  border-radius: 4px;
  background-color: hsl(0, 75%, 45%);
  color: white;
  margin-bottom: 12px;
  transition: all 200ms ease;
}

.category-tag:hover {
  background-color: hsl(0, 80%, 38%);
}

.main-topic-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}

.main-topic-progress-bar {
  height: 100%;
  width: 100%;
  background-color: hsl(0, 75%, 45%);
}

/* Articles Grid Section */
.articles-grid-section {
  padding: 0 16px 24px 16px;
}

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

/* Article Card */
.article-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.article-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.article-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card-compact .article-image-wrapper {
  aspect-ratio: 16 / 9;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.article-card:hover .article-image {
  transform: scale(1.05);
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card-compact .article-content {
  padding: 8px;
}

.article-content .category-tag {
  margin-bottom: 12px;
  align-self: flex-start;
}

.article-card-compact .article-content .category-tag {
  margin-bottom: 4px;
  font-size: 0.625em;
  padding: 2px 6px;
}

.article-title {
  font-size: 1.125em;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 200ms ease;
}

.article-card:hover .article-title {
  color: hsl(0, 75%, 45%);
}

.article-card-compact .article-title {
  font-size: 0.75em;
  margin-bottom: 4px;
}

.article-date {
  color: rgba(26, 26, 26, 0.5);
  font-size: 0.875em;
  margin-top: auto;
}

.article-card-compact .article-date {
  font-size: 0.625em;
}

/* Breaking News Section */
.breaking-news-section {
  padding: 0 16px 32px 16px;
}

.breaking-news-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.breaking-news-articles-side {
  order: 2;
}

.breaking-news-side {
  order: 1;
}

.breaking-news-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

/* Breaking News Container */
.breaking-news-container {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.breaking-news-header {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breaking-news-pulse {
  width: 10px;
  height: 10px;
  background-color: hsl(0, 75%, 45%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.breaking-news-title {
  font-weight: 700;
  font-size: 1.125em;
  color: #1a1a1a;
}

.breaking-news-list {
  flex: 1;
  overflow-y: auto;
}

.breaking-news-item {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: background-color 200ms ease;
  cursor: auto;
}

.breaking-news-item:hover {
  background-color: rgba(243, 244, 246, 0.5);
}

.breaking-news-item:last-child {
  border-bottom: none;
}

.breaking-news-item-content {
  display: flex;
  align-items: start;
  gap: 12px;
}

.breaking-news-item-time-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.breaking-news-badge {
  background-color: hsl(0, 75%, 45%);
  color: white;
  font-size: 0.625em;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.breaking-news-time {
  color: hsl(0, 75%, 45%);
  font-weight: 600;
  font-size: 0.875em;
}

.breaking-news-text {
  color: #1a1a1a;
  font-size: 0.875em;
  line-height: 1.4;
  transition: color 200ms ease;
}

.breaking-news-item:hover .breaking-news-text {
  color: hsl(0, 75%, 45%);
}

/* Hot Now Ticker Section */
.hot-now-ticker-section {
  background: linear-gradient(to left, #fff7ed, #ffffff, #fff7ed);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.hot-now-ticker-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hot-now-ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hot-now-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background-color: #dc2626;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875em;
}

.hot-now-label svg {
  flex-shrink: 0;
}

.hot-ticker-overflow {
  overflow: hidden;
  flex: 1;
}

.hot-ticker-content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: ticker-hot 10s linear infinite;
}

.hot-ticker-content:hover {
  animation-play-state: paused;
}

.hot-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: auto;
  white-space: nowrap;
  transition: opacity 200ms ease;
}

.hot-ticker-item:hover {
  opacity: 0.8;
}

.hot-ticker-bullet {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.125em;
}

.hot-ticker-title {
  color: #1a1a1a;
  font-weight: 500;
  transition: color 200ms ease;
}

.hot-ticker-item:hover .hot-ticker-title {
  color: hsl(0, 75%, 45%);
}

.hot-ticker-category {
  color: #6b7280;
  font-size: 0.875em;
}

/* Money Arena Section */
.money-arena-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 48px 0;
  overflow: hidden;
}

.money-arena-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.money-arena-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.money-arena-icon {
  position: absolute;
  animation: pulse 3s ease-in-out infinite;
}

.money-arena-icon-1 {
  top: 40px;
  left: 40px;
  color: rgba(33, 105, 186, 0.2);
}

.money-arena-icon-2 {
  bottom: 40px;
  right: 40px;
  color: rgba(33, 105, 186, 0.2);
  animation-delay: 0.3s;
}

.money-arena-icon-3 {
  top: 50%;
  left: 25%;
  color: rgba(34, 197, 94, 0.1);
}

.money-arena-icon-4 {
  bottom: 33%;
  right: 25%;
  color: rgba(239, 68, 68, 0.1);
}

.money-arena-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.money-arena-orb-1 {
  top: 80px;
  right: 80px;
  width: 256px;
  height: 256px;
  background-color: rgba(33, 105, 186, 0.1);
}

.money-arena-orb-2 {
  bottom: 80px;
  left: 80px;
  width: 192px;
  height: 192px;
  background-color: rgba(33, 105, 186, 0.1);
  animation-delay: 1s;
}

.money-arena-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.money-arena-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.money-arena-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.money-arena-header-left svg {
  color: white;
}

.money-arena-section-title {
  font-size: 1.5em;
  font-weight: 700;
  color: white;
}

.money-arena-divider {
  height: 1px;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.2);
}

.money-arena-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875em;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease;
}

.money-arena-link:hover {
  color: white;
}

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

.money-arena-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.money-arena-card:hover {
  border-color: hsla(0, 75%, 45%, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.money-arena-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.money-arena-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.money-arena-card:hover .money-arena-image img {
  transform: scale(1.1);
}

.money-arena-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.money-arena-category {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: hsl(0, 75%, 45%);
  color: white;
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.money-arena-content {
  padding: 16px;
}

.money-arena-title {
  color: white;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 300ms ease;
}

.money-arena-card:hover .money-arena-title {
  color: #fbbf24;
}

.money-arena-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, hsla(0, 75%, 45%, 0.1) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 300ms ease;
}

.money-arena-card:hover .money-arena-glow {
  opacity: 1;
}

/* Savings Zone Section */
.savings-zone-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(215, 80%, 25%) 0%, hsl(215, 80%, 35%) 50%, hsl(215, 75%, 40%) 100%);
  padding: 48px 0;
}

.savings-zone-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.savings-zone-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
  transform: translateX(-100%);
}

.savings-zone-coin {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
  font-weight: 700;
  animation: float 3s ease-in-out infinite;
}

.savings-zone-coin-1 {
  top: 40px;
  right: 80px;
  width: 64px;
  height: 64px;
}

.savings-zone-coin-symbol {
  color: #78350f;
  font-size: 1.875em;
}

.savings-zone-coin-2 {
  top: 80px;
  left: 25%;
  width: 40px;
  height: 40px;
  animation-delay: 0.5s;
}

.savings-zone-coin-2 .savings-zone-coin-symbol {
  font-size: 1.125em;
}

.savings-zone-coin-3 {
  bottom: 80px;
  right: 33%;
  width: 32px;
  height: 32px;
  animation-delay: 1s;
}

.savings-zone-coin-3 .savings-zone-coin-symbol {
  font-size: 0.875em;
}

.savings-zone-icon {
  position: absolute;
  color: rgba(251, 191, 36, 0.4);
  animation: float 4s ease-in-out infinite;
}

.savings-zone-icon-1 {
  top: 50%;
  left: 15%;
  animation-delay: 1.5s;
}

.savings-zone-icon-2 {
  bottom: 25%;
  right: 10%;
  animation-delay: 2s;
}

.savings-zone-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 3s ease-in-out infinite;
}

.savings-zone-orb-1 {
  top: -80px;
  right: -80px;
  width: 256px;
  height: 256px;
  background-color: rgba(96, 165, 250, 0.2);
}

.savings-zone-orb-2 {
  bottom: -80px;
  left: -80px;
  width: 192px;
  height: 192px;
  background-color: rgba(147, 197, 253, 0.2);
  animation-delay: 1s;
}

.savings-zone-orb-3 {
  top: 33%;
  right: 25%;
  width: 128px;
  height: 128px;
  background-color: rgba(251, 191, 36, 0.1);
  animation-delay: 0.5s;
}

.savings-zone-sparkle {
  position: absolute;
  animation: sparkle 2s ease-in-out infinite;
}

.savings-zone-sparkle-1 {
  top: 64px;
  left: 50%;
  color: rgba(253, 224, 71, 0.6);
}

.savings-zone-sparkle-2 {
  bottom: 96px;
  right: 25%;
  color: rgba(255, 255, 255, 0.4);
  animation-delay: 0.5s;
}

.savings-zone-sparkle-3 {
  top: 33%;
  left: 20%;
  color: rgba(147, 197, 253, 0.5);
  animation-delay: 1s;
}

.savings-zone-particle {
  position: absolute;
  top: 0;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: rise 4s linear infinite;
}

.savings-zone-particle-1 {
  left: 25%;
}

.savings-zone-particle-2 {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 5s;
  width: 8px;
  height: 8px;
  background-color: rgba(253, 224, 71, 0.3);
}

.savings-zone-particle-3 {
  left: 75%;
  animation-delay: 2s;
  animation-duration: 4.5s;
}

.savings-zone-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.savings-zone-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.savings-zone-title-section {
  text-align: center;
}

.savings-zone-title-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.savings-zone-icon-wrapper {
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  animation: pulse 3s ease-in-out infinite;
}

.savings-zone-icon-wrapper svg {
  color: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.savings-zone-title {
  font-size: 1.875em;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.savings-zone-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125em;
  margin-top: 4px;
}

.savings-zone-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.savings-zone-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
}

.savings-zone-feature-icon {
  padding: 8px;
  background-color: rgba(251, 191, 36, 0.2);
  border-radius: 8px;
}

.savings-zone-feature-icon svg {
  color: #fde047;
}

.savings-zone-feature-text {
  color: white;
  font-size: 1em;
  font-weight: 500;
}

.savings-zone-button {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  color: #1e3a8a;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.125em;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  transition: all 300ms ease;
}

.savings-zone-button:hover {
  background: linear-gradient(to right, #fde047, #fbbf24);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
  transform: scale(1.02);
}

.savings-zone-button svg {
  transition: transform 300ms ease;
}

.savings-zone-button:hover svg {
  transform: translateX(-4px);
}

/* Section Header Styles */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label {
  background-color: #1a1a1a;
  color: white;
  padding: 8px 16px;
  font-size: 1.125em;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}

.section-divider {
  height: 1px;
  flex: 1;
  background-color: #e5e7eb;
}

/* Category Grid Section */
.category-grid-section {
  padding: 32px 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-grid-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.category-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-grid-item:hover .category-grid-image {
  transform: scale(1.1);
}

.category-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.category-grid-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: hsl(0, 75%, 45%);
  color: white;
  font-size: 0.75em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.category-grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
}

.category-grid-title {
  color: white;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 300ms ease;
}

.category-grid-item:hover .category-grid-title {
  color: #fbbf24;
}

/* Don't Miss Section */
.dont-miss-section {
  padding: 0 16px 32px 16px;
}

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

/* Newsletter Section */
.newsletter-section {
  background-color: hsl(0, 75%, 45%);
  padding: 48px 0;
  margin-top: 40px;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.newsletter-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.newsletter-icon-wrapper svg {
  color: white;
}

.newsletter-title {
  font-size: 1.5em;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 1em;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-field {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.875em;
  width: 100%;
  text-align: center;
  transition: all 200ms ease;
}

.newsletter-input-field:focus {
  outline: none;
  ring: 2px;
  ring-color: rgba(33, 105, 186, 0.2);
  border-color: hsl(0, 75%, 45%);
}

.newsletter-submit-btn {
  background-color: white;
  color: hsl(0, 75%, 45%);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-submit-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-submit-btn:active {
  transform: scale(0.98);
}

.newsletter-submit-btn svg {
  transition: transform 200ms ease;
}

.newsletter-submit-btn:hover svg {
  transform: translateX(-4px);
}

.newsletter-success {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  animation: fadeIn 300ms ease;
}

.newsletter-success-title {
  color: white;
  font-weight: 500;
  margin-bottom: 4px;
}

.newsletter-success-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875em;
}

/* Footer Styles */
.footer-main {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  padding: 48px 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  line-height: 1;
  text-decoration: none;
  width: fit-content;
}

.footer-logo-top {
  font-size: 0.625em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo-bottom {
  font-size: 1.875em;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-top: -2px;
}

.footer-description {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-size: 1em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-link:hover {
  color: hsl(0, 75%, 45%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
  padding: 24px 16px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright,
.footer-made {
  margin: 0;
}

.page {
  padding: 15px 0px;
}

/* Error Page Styles */
#errorpage {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

#errorpage h4 {
  font-size: 2.5em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#errorpage h3 {
  font-size: 1.8em;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

#errorpage p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 20px;
  text-align: right;
}

#errorpage ul,
#errorpage ol {
  text-align: right;
  margin: 15px 0;
  padding-right: 20px;
}

#errorpage ul {
  list-style: square inside;
}

#errorpage ol {
  list-style: decimal inside;
}

#errorpage li {
  font-size: 1em;
  line-height: 1.8;
  color: #555;
  margin: 8px 0;
  padding-right: 10px;
  transition: color 0.3s ease;
}

#errorpage a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

#errorpage a:hover {
  color: #2980b9;
  border-bottom-color: #2980b9;
  transform: translateY(-2px);
}

/* Responsive adjustments for error page */

/* Responsive Media Queries */

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker-animate {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(50%);
  }
}

@keyframes ticker-hot {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(33.33%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

/* ===================================
   SEARCH PAGE
   =================================== */

/* Search Results */
.search-results-section {
  padding: 2.5rem 0 4rem;
}

.search-results-count {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 15px;
}

/* Empty State */
.search-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.search-empty-icon {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.search-empty-icon svg {
  display: inline-block;
}

.search-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}

.search-empty-text {
  font-size: 1rem;
  color: #777;
  margin-bottom: 2rem;
}

.search-empty-btn {
  display: inline-block;
  padding: 12px 32px;
  background: hsl(0, 75%, 45%);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.search-empty-btn:hover {
  background: hsl(0, 80%, 38%);
  transform: translateY(-2px);
}

/* ===================================
   PAGE STYLES - Category/Content Pages
   =================================== */

/* Category Hero Section */
.category {
  background: linear-gradient(to left, hsl(0, 75%, 45%), hsl(0, 80%, 38%));
  position: relative;
  overflow: hidden;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.category-content {
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.category-breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.category-breadcrumbs .page-nav {
  display: block;
}

.category-breadcrumbs .page-nav ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-breadcrumbs .page-nav li {
  display: flex;
  align-items: center;
  position: relative;
}

.category-breadcrumbs .page-nav li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}

.category-breadcrumbs .page-nav li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-breadcrumbs .page-nav li a:hover {
  color: #ffffff;
}

.category-breadcrumbs .page-nav li:last-child span[itemprop="name"] {
  color: #ffffff;
  font-weight: 500;
}

.category-breadcrumbs .page-nav meta {
  display: none;
}

.category-header {
  color: #ffffff;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.category-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Page Content Section */
.page-content-section {
  padding: 2rem 0 3rem 0;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.page-main {
  width: 100%;
}

/* Featured Article */
.featured-article {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-decoration: none;
  transition: box-shadow 0.3s;
}

.featured-article:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.featured-article-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.featured-article-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-article:hover .featured-article-image img {
  transform: scale(1.05);
}

.featured-article-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.featured-article-category {
  display: inline-block;
  padding: 4px 12px;
  background: hsl(0, 75%, 45%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.featured-article-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(220, 15%, 15%);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.featured-article:hover .featured-article-title {
  color: hsl(0, 75%, 45%);
}

.featured-article-excerpt {
  color: hsl(220, 10%, 50%);
  margin: 0 0 1rem 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
}

.featured-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.featured-meta-item svg {
  flex-shrink: 0;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.article-card-item {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.article-card-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.article-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card-item:hover .article-card-image img {
  transform: scale(1.05);
}

.article-card-content {
  padding: 1rem;
}

.article-card-category {
  font-size: 0.75rem;
  color: hsl(0, 75%, 45%);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.article-card-title {
  font-weight: 700;
  color: hsl(220, 15%, 15%);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.article-card-item:hover .article-card-title {
  color: hsl(0, 75%, 45%);
}

.article-card-excerpt {
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-date {
  font-size: 0.75rem;
  color: hsl(220, 10%, 50%);
  margin-top: auto;
}

/* Load More Button */
.load-more-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(220, 14%, 96%);
  color: hsl(220, 15%, 15%);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1em;
}

.load-more-btn:hover {
  background: hsl(220, 13%, 91%);
}

.load-more-btn svg {
  flex-shrink: 0;
}

.page-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Ad Box - Horizontal */
.ad-box-horizontal {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, hsl(0, 0%, 98%), hsl(0, 0%, 96%));
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 8px;
  text-align: center;
}

.ad-box-horizontal .ad-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.ad-box-horizontal .ad-label {
  font-size: 0.75rem;
  color: hsl(0, 0%, 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ad-box-horizontal .ad-placeholder {
  width: 100%;
  max-width: 728px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px dashed hsl(0, 0%, 85%);
  border-radius: 4px;
  color: hsl(0, 0%, 60%);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Sidebar Components */
.sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.sidebar-card-header {
  background: hsl(0, 75%, 45%);
  padding: 1rem;
}

.sidebar-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.sidebar-card-title svg {
  flex-shrink: 0;
}

.sidebar-card-title-simple {
  font-weight: 700;
  color: hsl(220, 15%, 15%);
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
}

.sidebar-list-item {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  text-decoration: none;
  transition: background-color 0.2s;
}

.sidebar-list-item:hover {
  background: rgba(243, 244, 246, 0.5);
}

.sidebar-list-item:last-child {
  border-bottom: none;
}

.sidebar-item-title {
  font-weight: 500;
  color: hsl(220, 15%, 15%);
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
  transition: color 0.2s;
}

.sidebar-list-item:hover .sidebar-item-title {
  color: hsl(0, 75%, 45%);
}

.sidebar-item-time {
  color: hsl(220, 10%, 50%);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sidebar-item-time svg {
  flex-shrink: 0;
}

/* Sidebar Navigation List */
.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  color: hsl(220, 15%, 15%);
  text-decoration: none;
  transition: background-color 0.2s;
}

.sidebar-nav-item:hover {
  background: hsl(220, 14%, 96%);
}

.sidebar-nav-item svg {
  color: hsl(0, 75%, 45%);
  flex-shrink: 0;
}

.sidebar-nav-item.active {
  background: hsl(0, 75%, 45%);
  color: #ffffff;
}

.sidebar-nav-item.active svg {
  color: #ffffff;
}

/* Sidebar Pic */
.sidebar-pic {
  background: hsl(220, 14%, 96%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.sidebar-pic-label {
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  margin: 0 0 0.75rem 0;
}

.sidebar-pic-placeholder {
  aspect-ratio: 1;
  background: hsl(220, 13%, 91%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-pic-placeholder span {
  color: hsl(220, 10%, 50%);
  font-size: 0.875rem;
}

/* Responsive adjustments */

/* Responsive adjustments */

/* Article Page Styles */
.article-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 40px 20px;
  margin-bottom: 30px;
}

.article-header .container {
  max-width: 900px;
  margin: 0 auto;
}

.article-header h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.article-header .subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  opacity: 0.9;
}

/* Article Body Container */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.article-body ul {
  margin: 15px 0 20px 30px;
}

.article-body ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Intro Content */
.article-body .intro-content {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Featured Image */
.article-body .featured-img-wrapper {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
}

.article-body .featured-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content */
.article-body .main-content {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}

.age-selector {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: white;
  margin: 40px 0;
}

.age-selector h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.age-selector .buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.age-btn {
  background: white;
  color: #667eea;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.age-btn:hover {
  transform: scale(1.05);
}

.article-body .testimonial-box {
  background: rgba(249, 250, 251, 0.8);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  gap: 12px;
}

.article-body .testimonial-box::before {
  content: '"';
  font-size: 32px;
  color: rgba(231, 76, 60, 0.2);
  line-height: 1;
  font-family: Georgia, serif;
  flex-shrink: 0;
  margin-top: -4px;
}

.article-body .testimonial-content {
  flex: 1;
}

.article-body .testimonial-box p {
  font-size: 14px !important;
  margin-bottom: 8px !important;
  line-height: 1.6 !important;
  color: #111827;
}

.article-body .testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 16px;
}

.article-body .testimonial-meta strong {
  color: #6b7280;
  font-weight: 600;
}

.article-body .savings-amount {
  color: #16a34a;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

/* Calculator Box */
.article-body .calculator-box {
  background: linear-gradient(to bottom right, rgba(231, 76, 60, 0.05), white, rgba(252, 237, 237, 0.3));
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 16px;
  padding: 24px 32px;
  margin: 32px 0;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
}

/* Calculator Header */
.article-body .calculator-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.article-body .calculator-icon {
  width: 48px;
  height: 48px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body .calculator-icon svg {
  width: 24px;
  height: 24px;
}

.article-body .calculator-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #1a1a1a;
}

.article-body .calculator-title p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Slider Sections */
.article-body .calculator-sliders {
  margin-bottom: 32px;
}

.article-body .slider-group {
  margin-bottom: 24px;
}

.article-body .slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.article-body .slider-label label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
}

.article-body .slider-value {
  font-size: 18px;
  font-weight: 700;
  color: #e74c3c;
}

.article-body .slider-group input[type="range"] {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  accent-color: #e74c3c;
  direction: ltr;
}

.article-body .slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #e74c3c;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.article-body .slider-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #e74c3c;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.article-body .slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  direction: rtl;
}

/* Results Grid */
.article-body .calculator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.article-body .result-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.article-body .result-card.highlight {
  background: hsl(0, 75%, 45%);
  border: none;
  color: white;
}

.article-body .result-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  display: block;
}

.article-body .result-card.highlight .result-icon {
  opacity: 1;
}

.article-body .result-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

.article-body .result-card.highlight .result-label {
  color: rgba(255, 255, 255, 0.9);
}

.article-body .result-amount {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.article-body .result-card.highlight .result-amount {
  color: white;
}

.article-body .result-card.green .result-amount {
  color: #16a34a;
}

/* CTA Button */
.article-body .calculator-cta {
  width: 100%;
  background: hsl(0, 75%, 45%);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.article-body .calculator-cta:hover {
  background: rgba(231, 76, 60, 0.9);
}

.article-body .calculator-cta .cta-arrow {
  transition: transform 0.3s ease;
}

.article-body .calculator-cta:hover .cta-arrow {
  transform: translateX(-4px);
}

.article-body .calculator-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
}

.article-body .calc-result {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.article-body .calc-result-amount {
  font-size: 36px;
  font-weight: 700;
  color: #22c55e;
}

/* Trust Indicators */
.article-body .trust-indicators {
  background: #f9f9fa;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.article-body .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-body .trust-item {
  text-align: center;
}

.article-body .trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  margin-bottom: 12px;
}

.article-body .trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: hsl(0, 75%, 45%);
}

.article-body .trust-number {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.article-body .trust-label {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.article-body .trust-badges-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.article-body .trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.article-body .trust-badge-item svg {
  width: 16px;
  height: 16px;
  stroke: hsl(0, 75%, 45%);
}

/* Bottom Lead Form (Multi-Step) */
#bottomLeadForm {
  margin: 40px 0;
}

/* Eligibility CTA Button */
.eligibility-btn {
  position: relative;
  width: 100%;
  background: linear-gradient(to left, #f97316, #ef4444);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.eligibility-btn:hover {
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  filter: brightness(1.05);
}

.eligibility-btn-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.eligibility-btn:hover .eligibility-btn-shine {
  transform: translateX(100%);
}

.eligibility-btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eligibility-btn-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eligibility-btn-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eligibility-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eligibility-btn-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.eligibility-btn-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.eligibility-btn-arrow {
  opacity: 0.7;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.eligibility-btn:hover .eligibility-btn-arrow {
  opacity: 1;
  transform: translateX(-4px);
}

/* Notice Box */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px;
  margin: 24px 0;
}

.notice-box-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d97706;
}

.notice-box-icon svg {
  stroke: #d97706;
}

.notice-box-content {
  flex: 1;
}

.notice-box-title {
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 4px 0;
}

.notice-box-text {
  font-size: 13px;
  color: #a16207;
  margin: 0;
  line-height: 1.5;
}

/* Share Section */
.article-body .share-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.article-body .share-section p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Article Page Additional Utility Classes */
.breadcrumb {
  padding: 8px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.page-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 14px;
  color: #6b7280;
}

.page-nav ol li {
  display: inline-flex;
  align-items: center;
}

.page-nav ol li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #9ca3af;
}

.page-nav ol li a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}

.page-nav ol li a:hover {
  color: hsl(0, 75%, 45%);
}

.page-nav ol li:last-child span {
  color: #374151;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.pageTitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #111827;
}

.subTitle {
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 16px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.article-meta-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b7280;
}

.meta-item svg {
  color: #e74c3c;
  flex-shrink: 0;
  stroke: #e74c3c;
}

.article-header-link {
  color: white;
  opacity: 0.9;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.featured-img-wrapper {
  margin: 30px 0;
}

.featured-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.age-selector p {
  margin: 10px 0;
  opacity: 0.95;
}

/* Testimonials Section (matching React) */
.article-body .testimonials-section {
  margin: 24px 0;
}

.article-body .testimonials-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.article-body .calculator-box p {
  text-align: center;
  margin-bottom: 25px;
}

.article-body .calc-btn {
  width: 100%;
  background: #0ea5e9;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.article-body .calc-result-text {
  font-size: 16px;
  margin-bottom: 10px;
  color: #666;
}

.article-body .calc-result-note {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
}

/* Related Articles */
.article-body .related-articles {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.article-body .related-articles h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.article-body .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-card-image {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover .related-card-image img {
  transform: scale(1.05);
}

.related-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card:hover .related-card-title {
  color: hsl(0, 75%, 45%);
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsl(0, 75%, 45%);
  color: white;
  padding: 12px 16px;
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-bar.visible {
  display: block;
}

.sticky-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-text {
  display: none;
  flex-direction: column;
}

.sticky-bar-title {
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.sticky-bar-subtitle {
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
}

.sticky-bar-btn {
  background: white;
  color: hsl(0, 75%, 45%);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.sticky-bar-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.sticky-bar-btn:active {
  transform: scale(0.98);
}

.sticky-bar-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.article-share-inline {
  display: flex;
  gap: 8px;
}

.share-btn-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.share-btn-small:hover {
  transform: scale(1.05);
}

.share-btn-small.share-facebook {
  background: #1877f2;
}

.share-btn-small.share-facebook:hover {
  background: #166fe5;
}

.share-btn-small.share-whatsapp {
  background: #25d366;
}

.share-btn-small.share-whatsapp:hover {
  background: #22c55e;
}

.share-btn-small.share-email {
  background: #4b5563;
}

.share-btn-small.share-email:hover {
  background: #374151;
}

.share-btn-small.share-link {
  background: #e5e7eb;
  color: #111827;
}

.share-btn-small.share-link:hover {
  background: #e74c3c;
  color: white;
}

.share-btn-small.share-link.copied {
  background: #22c55e;
  color: white;
}

/* Age Selector Component (matching React) */
.age-selector-wrapper {
  margin: 32px 0;
}

.age-selector-box {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
}

.age-selector-header {
  text-align: center;
  margin-bottom: 24px;
}

.age-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  margin-bottom: 16px;
}

.age-icon-circle svg {
  color: #e74c3c;
  stroke: #e74c3c;
}

.age-selector-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.age-selector-header p {
  font-size: 16px;
  color: #6b7280;
}

.age-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 512px;
  margin: 0 auto;
}

.age-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 2px solid rgba(231, 76, 60, 0.2);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-select-btn:hover {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.age-btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-badge {
  width: 40px;
  height: 40px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #e74c3c;
  font-size: 14px;
  transition: all 0.3s ease;
}

.age-select-btn:hover .age-badge {
  background: #e74c3c;
  color: white;
}

.age-btn-content span {
  font-weight: 500;
  color: #111827;
  font-size: 15px;
}

.age-chevron {
  color: #6b7280;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.age-select-btn:hover .age-chevron {
  color: #e74c3c;
}

/* Lead Form Inline (matching React) */
/* Updated Lead Form CSS (matching React exactly) */
.lead-form-inline {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.lead-form-header {
  background: hsl(0, 75%, 45%);
  padding: 16px 24px;
}

.lead-form-header > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s;
}

.back-btn:hover {
  color: white;
}

.form-header-content {
  flex: 1;
  text-align: center;
}

.form-header-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.form-header-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.spacer {
  width: 64px;
}

.lead-form-progress {
  background: hsl(0, 75%, 45%);
  padding: 0 24px 16px;
}

.progress-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.progress-step {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background 0.3s;
}

.progress-step.active {
  background: white;
}

.form-error-message {
  color: #d32f2f;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  text-align: right;
  direction: rtl;
  display: none;
}

.step-indicator {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.multi-step-form {
  padding: 24px;
  background: #fff;
}

.form-step {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
}

.form-label {
  display: block;
  text-align: right;
}

.label-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
}

.input-with-icon {
  display: flex;
  align-items: center;
  position: relative;
}

.input-icon {
  position: absolute;
  color: #6b7280;
  pointer-events: none;
  right: 15px;
}

.form-input {
  width: 100%;
  padding: 12px 12px 12px 44px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.input-with-icon .form-input {
  margin: 0;
  max-width: 100%;
  padding-right: 40px;
}

.form-input:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-help {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  text-align: right;
}

.consent-info-box {
  background: rgba(229, 231, 235, 0.5);
  border-radius: 8px;
  padding: 16px;
}

.consent-message {
  font-size: 14px;
  color: #111827;
  margin-bottom: 12px;
  text-align: right;
}

.consent-label-full {
  display: flex;
  align-items: start;
  gap: 12px;
  cursor: pointer;
}

.consent-checkbox {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.consent-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  text-align: right;
}

.consent-link {
  color: hsl(0, 75%, 45%);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.consent-link:hover {
  text-decoration: underline;
}

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}

.prev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 10px 16px;
  transition: color 0.3s;
  font-size: 15px;
}

.prev-btn:hover {
  color: #111827;
}

.next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.next-btn:hover:not(:disabled) {
  background: #c0392b;
}

.next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover:not(:disabled) {
  background: #15803d;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.trust-badges {
  border-top: 1px solid #e5e7eb;
  background: #fcfcfd;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
}

.trust-badge svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* ==============================
   Form Popup (.myformPop)
   ============================== */
.myformPop {
  display: none;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  z-index: 10000;
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  padding: 0;
  direction: rtl;
  font-family: "Heebo", sans-serif;
  overflow: hidden;
  animation: myformPopIn 0.3s ease-out;
}

@keyframes myformPopIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Close button */
.myformPop .close {
  position: absolute;
  top: 12px;
  left: 12px;
  font-style: normal;
  font-size: 0.85em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  transition: background 0.2s;
  line-height: 1.6;
}

.myformPop .close:hover {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

/* Heading */
.myformPop .heading {
  background: hsl(0, 75%, 45%);
  color: #fff;
  font-size: 1.15em;
  font-weight: 700;
  padding: 20px 24px;
  line-height: 1.4;
}

/* Output / body area */
.myformPop .output {
  padding: 20px 24px 28px;
}

.myformPop .output ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.myformPop .output ul li {
  position: relative;
  padding-right: 22px;
  font-size: 0.95em;
  color: hsl(220, 15%, 15%);
  line-height: 1.6;
}

.myformPop .output ul li::before {
  content: "✕";
  position: absolute;
  right: 0;
  top: 0;
  color: hsl(0, 75%, 45%);
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1.7;
}

/* Success state */
.myformPop.success .heading {
  background: hsl(145, 55%, 38%);
}

.myformPop.success .close {
  background: rgba(0, 0, 0, 0.2);
}

.myformPop.success .close:hover {
  background: rgba(0, 0, 0, 0.4);
}

.myformPop.success .output {
  text-align: center;
  font-size: 1.05em;
  color: hsl(145, 40%, 30%);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   Lead Form Popup Overlay
   ═══════════════════════════════════════════ */
.leadform-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.leadform-popup-overlay.active {
  display: flex;
  animation: leadPopFadeIn 0.25s ease-out;
}

@keyframes leadPopFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.leadform-popup-box {
  position: relative;
  width: 92%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: leadPopSlideUp 0.3s ease-out;
}

.leadform-popup-box .lead-form-inline {
  border: 0;
  background: transparent;
}

@keyframes leadPopSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.leadform-popup-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #000;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.leadform-popup-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.leadform-popup-box .lead-form-container {
  border: none;
  box-shadow: none;
}

.leadform-popup-box .back-btn {
  display: none;
}

.leadform-popup-box .lead-form-header .spacer:first-child {
  display: none;
}
