:root {
  --bg: #08090d;
  --bg2: #0d0f18;
  --bg3: #111420;
  --card: #131625;
  --card2: #0f1220;
  --primary: #5B6EF5;
  --primary2: #7B8EFF;
  --accent: #F0A500;
  --accent2: #FFD060;
  --gem: #3DD6F5;
  --gem2: #7EEEFF;
  --danger: #FF4560;
  --green: #00C48C;
  --text: #EEF0FF;
  --muted: #7A7FA8;
  --border: rgba(91, 110, 245, 0.18);
  --border2: rgba(91, 110, 245, 0.08);
  --glow: rgba(91, 110, 245, 0.25);
  --glow-gem: rgba(61, 214, 245, 0.2);
  --glow-accent: rgba(240, 165, 0, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

h1,
h2,
h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(91, 110, 245, 0.12);
  border: 1px solid rgba(91, 110, 245, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.badge.gem-badge {
  background: rgba(61, 214, 245, 0.1);
  border-color: rgba(61, 214, 245, 0.3);
  color: var(--gem);
}

.badge.accent-badge {
  background: rgba(240, 165, 0, 0.1);
  border-color: rgba(240, 165, 0, 0.3);
  color: var(--accent2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 6px 28px rgba(91, 110, 245, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(91, 110, 245, 0.55);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0800;
  font-weight: 900;
  box-shadow: 0 6px 28px rgba(240, 165, 0, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(240, 165, 0, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--primary2);
  border: 1.5px solid rgba(91, 110, 245, 0.4);
}

.btn-ghost:hover {
  background: rgba(91, 110, 245, 0.08);
  border-color: var(--primary);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg2);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  transition: padding 0.3s;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1.1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--gem);
}

.logo em {
  color: var(--accent);
  font-style: normal;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary2);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(13, 15, 24, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
}

.nav-drawer.open {
  display: block;
}

#hero {
  display: flex;
  align-items: center;
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 110, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 110, 245, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 110, 245, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 214, 245, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  animation: fade-up 0.8s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gem), var(--primary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 850px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

#stats {
  padding: 40px 0 50px;
  background: transparent;
  border: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-item {
  padding: 60px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: block;
}

.stat-num.gem {
  background: linear-gradient(135deg, var(--gem), var(--primary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num.white {
  background: linear-gradient(135deg, #ffffff, #9ba3c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num.gold {
  background: linear-gradient(135deg, var(--accent2), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num.green {
  background: linear-gradient(135deg, var(--green), #4fffd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(91, 110, 245, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(91, 110, 245, 0.12);
  border: 1px solid rgba(91, 110, 245, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary2);
}

.card h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.editorial-block {
  margin-top: 48px;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 32px 36px;
  border-right: 4px solid var(--primary);
}

.editorial-block p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #9ba3c8;
}

.editorial-block strong {
  color: var(--primary2);
  font-weight: 800;
}

.safety-block {
  background: rgba(240, 165, 0, 0.06);
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.safety-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.safety-block strong {
  display: block;
  color: var(--accent2);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.safety-block p {
  color: #b8a070;
  font-size: 0.98rem;
  margin: 0;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gem), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: all 0.3s;
}

.timeline-card:hover {
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(91, 110, 245, 0.12);
}

.step-icon {
  width: 36px;
  height: 36px;
  background: rgba(61, 214, 245, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gem);
  margin-bottom: 14px;
}

.timeline-card h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.95rem;
  margin: 0;
}

.timeline-num {
  width: 60px;
  height: 60px;
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--primary2);
  box-shadow: 0 0 20px rgba(91, 110, 245, 0.3);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 16px;
}

#offers {
  background: var(--bg);
}

.offer-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(91, 110, 245, 0.1),
    0 30px 80px rgba(91, 110, 245, 0.15),
    0 0 100px rgba(61, 214, 245, 0.05);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gem), var(--accent));
}

.offer-card::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(61, 214, 245, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.offer-users {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 196, 140, 0.1);
  border: 1px solid rgba(0, 196, 140, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 28px;
}

.offer-big-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gem), var(--gem2), var(--primary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(61, 214, 245, 0.35));
  margin-bottom: 8px;
}

.offer-unit {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
  text-align: right;
}

.offer-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.offer-feat svg {
  color: var(--green);
  flex-shrink: 0;
}

.urgency-line {
  font-size: 0.85rem;
  color: var(--accent2);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.offer-cta {
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
  border-radius: 14px;
  margin-bottom: 20px;
}

.offer-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.offer-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.offer-trust svg {
  color: var(--green);
}

.article-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  padding: 44px 48px;
  max-width: 840px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border2);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 1.7rem;
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card h3 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: var(--text);
}

.article-card ul {
  margin-bottom: 24px;
  padding-right: 24px;
  list-style-type: disc;
}

.article-card li {
  margin-bottom: 12px;
  color: #8890b8;
  line-height: 1.7;
}

.article-card ol {
  margin-bottom: 24px;
  padding-right: 24px;
}

.article-card ol li {
  margin-bottom: 14px;
}

.article-card p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #8890b8;
  margin-bottom: 20px;
}

.article-card p:last-child {
  margin-bottom: 0;
}

.article-card strong {
  color: var(--primary2);
  font-weight: 800;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: right;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text);
  transition: color 0.25s;
}

.faq-q:hover {
  color: var(--primary2);
}

.faq-arrow {
  width: 28px;
  height: 28px;
  background: rgba(91, 110, 245, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary2);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(91, 110, 245, 0.2);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-inner {
  padding: 0 28px 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid var(--border2);
  padding-top: 18px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.privacy-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.privacy-icon {
  width: 44px;
  height: 44px;
  background: rgba(91, 110, 245, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary2);
  margin-bottom: 16px;
}

.privacy-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.privacy-card p {
  font-size: 0.9rem;
}

footer {
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

footer strong {
  color: var(--primary2);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  header .btn {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  #hero {
    padding: 80px 0 30px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .stat-item {
    padding: 40px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .stat-num {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    gap: 8px;
    flex-direction: row;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline::before {
    right: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr 60px;
    gap: 16px;
    margin-bottom: 32px;
  }

  .timeline-num {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .offer-card {
    padding: 40px 20px;
  }

  .offer-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-card {
    padding: 24px 20px;
  }

  .article-meta {
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .safety-block {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}
