/* ===== Variables ===== */
:root {
  --primary-color: #ffffff;
  --secondary-color: #0a0a12;
  --text-color: #a7aabb;
  --bg-color: #060611;
  --accent-color: #1d4ed8;
  --accent-secondary: #3b82f6;
  --divider-color: rgba(255, 255, 255, 0.06);
  --dark-divider-color: rgba(255, 255, 255, 0.12);
  --font: 'Manrope', sans-serif;
  --nav-height: 80px;
  --max-width: 1200px;
  --radius: 20px;
  --transition: all 0.4s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--text-color);
  background: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Section Title ===== */
.section-title {
  margin-bottom: 60px;
}

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

.section-title h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  padding: 8px 24px;
  margin-bottom: 20px;
}

.section-title-center h3 {
  margin-left: auto;
  margin-right: auto;
}

.sparkle-left::before,
.sparkle-right::after {
  content: '✦';
  font-size: 10px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.25em;
  letter-spacing: -0.02em;
}

/* ===== Gradient Text ===== */
.text-gradient {
  font-weight: 700;
  background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary) 50%, var(--accent-color) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}

.text-gradient:hover,
h2:hover .text-gradient {
  background-position: right center;
}

/* ===== Buttons ===== */
.btn-default {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary) 50%, var(--accent-color) 100%);
  background-size: 200% auto;
  border-radius: 100px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 17px 30px;
  transition: var(--transition);
  overflow: hidden;
  z-index: 0;
}

.btn-default:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.btn-default.btn-outlined {
  border: 1px solid var(--accent-color);
  background: transparent;
  padding: 16px 30px;
  position: relative;
  overflow: hidden;
}

.btn-default.btn-outlined::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--accent-color);
  transform: skew(45deg);
  transition: var(--transition);
  z-index: -1;
}

.btn-default.btn-outlined:hover {
  transform: translateY(-2px);
}

.btn-default.btn-outlined:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

/* Read more button */
.readmore-btn {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent-secondary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}

.arrow-circle::after {
  content: '→';
  font-size: 14px;
}

.readmore-btn:hover .arrow-circle {
  border-color: var(--accent-secondary);
  transform: rotate(45deg);
}

/* ===== Header / Nav ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-sticky {
  height: var(--nav-height);
  background: rgba(6, 6, 17, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header-sticky.scrolled {
  background: rgba(6, 6, 17, 0.95);
  border-bottom-color: var(--divider-color);
}

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

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  border: 1px solid var(--divider-color);
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--primary-color);
  border-color: var(--dark-divider-color);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 4px;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  border-radius: 6px;
  color: var(--text-color);
  transition: all 0.15s;
}

.lang-option:hover,
.lang-option.active {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
  color: var(--accent-secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
  pointer-events: none;
}

/* Floating shapes */
@keyframes shape-float {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(50px) rotate(360deg); }
}

@keyframes shape-float-reverse {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(50px) rotate(-360deg); }
}

.hero-shape {
  position: absolute;
  border-radius: 20%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-1 {
  left: 10%;
  top: 18%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  animation: shape-float 20s infinite linear alternate;
}

.hero-shape-2 {
  right: 12%;
  top: 22%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-secondary), #818cf8);
  animation: shape-float-reverse 18s infinite linear alternate;
  border-radius: 50%;
}

.hero-shape-3 {
  left: 5%;
  bottom: 25%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #818cf8, var(--accent-color));
  animation: shape-float-reverse 22s infinite linear alternate;
}

.hero-shape-4 {
  right: 8%;
  bottom: 30%;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  animation: shape-float 25s infinite linear alternate;
  border-radius: 30%;
}

.hero-content {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  max-width: 80vw;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7em;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-color);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

/* Partners marquee in hero */
.hero-partners {
  margin-top: 80px;
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
}

.hero-partners p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
  margin-bottom: 24px;
  opacity: 0.6;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}

.company-logo {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.company-logo:hover {
  opacity: 0.7;
}

.company-logo img {
  height: 36px;
  width: auto;
}

/* ===== About / Stats ===== */
.about-us {
  padding: 120px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-box {
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle pattern inside cards */
.about-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.about-box:hover {
  transform: translateY(-5px);
  border-color: var(--dark-divider-color);
}

.about-box-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.about-box-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-color);
  margin-bottom: 8px;
}

.about-box h2 {
  font-size: 48px;
  color: var(--accent-secondary);
  line-height: 1;
}

.about-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-box-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-secondary);
}

.about-box-desc {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

/* ===== Services ===== */
.our-services {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Card BG pattern */
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(29, 78, 216, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-item-content {
  position: relative;
  z-index: 1;
}

.service-logo {
  margin-bottom: 24px;
}

.service-logo img {
  height: 36px;
  width: auto;
}

.service-tagline {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-color);
  line-height: 1.7em;
  margin-bottom: 28px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-color);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.check-icon::before {
  content: '✓';
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-secondary);
}

.service-item-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--divider-color);
  padding-top: 24px;
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-tag {
  display: inline-block;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
}

.service-tag:hover {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--primary-color);
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 120px 0;
  border-top: 1px solid var(--divider-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-item {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: var(--dark-divider-color);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-secondary);
}

.step-number {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
  opacity: 0.5;
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  line-height: 1.7em;
  margin: 0;
}

/* ===== Facts / Features ===== */
.facts-section {
  padding: 120px 0;
  border-top: 1px solid var(--divider-color);
}

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

.facts-item {
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: var(--radius);
  padding: 40px 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.facts-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.facts-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.2);
}

.facts-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.facts-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-secondary);
}

.facts-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.facts-item p {
  font-size: 15px;
  line-height: 1.7em;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 120px 0;
  border-top: 1px solid var(--divider-color);
}

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

.accordion-item {
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.accordion-item.open {
  border-color: rgba(59, 130, 246, 0.2);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
  gap: 16px;
  background: transparent;
  transition: var(--transition);
}

.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.3s;
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.accordion-item.open .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body p {
  padding: 0 24px 24px;
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin: 0;
  line-height: 1.7em;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--divider-color);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 15px 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.main-footer {
  border-top: 1px solid var(--divider-color);
  padding: 80px 0 0;
}

.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--divider-color);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7em;
  max-width: 320px;
}

.footer-links-col h3 {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 15px;
  color: var(--text-color);
}

.footer-links-col a:hover {
  color: var(--accent-secondary);
}

.footer-contact li {
  font-size: 15px;
  line-height: 1.6em;
}

.footer-copyright {
  text-align: center;
  padding: 40px 0;
}

.footer-copyright p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

/* ===== Scroll Animations ===== */
.wow-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wow-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hero {
    padding: 160px 0 80px;
    min-height: auto;
  }

  .hero-shape { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

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

  .section-title h2 {
    font-size: clamp(24px, 6vw, 36px);
  }

  .about-box h2 {
    font-size: 36px;
  }

  .service-item {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  border-radius: 4px;
}
