:root {
  --color-primary-start: #1b6cff;
  --color-primary-end: #00c6ff;
  --color-bg-dark: #0d1117;
  --color-text-light: #e5e7eb;
  --color-card-bg: rgba(255, 255, 255, 0.12);
  --blur-amount: 12px;
  --section-padding: 60px;

  --color-secondary-text: #94a3b8;
  --color-footer-bg: #0e1621;

  /* Original FAQ/Hero vars kept for glass and sections */
  --grad-start: #1b6cff;
  --grad-end: #00c6ff;
  --bg: #0d1117;
  --text: #e5e7eb;
  --card-bg: rgba(255, 255, 255, 0.12);
  --blur: 12px;
  --section-pad: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg); /* Using original var for consistency */
  color: var(--text); /* Using original var for consistency */
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 100px;
}

a {
  color: var(--grad-end); /* Using original var for consistency */
  text-decoration: none;
}
h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

/* Wrapper Utility (Original .wrap renamed) */
.content-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button Component (Original .btn renamed) */
.cta-button {
  display: inline-block;
  padding: 16px 44px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--grad-start),
    /* Using original var for consistency */ var(--grad-end)
      /* Using original var for consistency */
  );
  color: #fff;
  border: none;
  border-radius: 40px;
  box-shadow: 0 10px 24px rgba(0, 128, 255, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  font-size: 1.1rem;
  text-align: center;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 128, 255, 0.45);
}

section {
  padding: var(--section-pad) 0; /* Using original var for consistency */
  position: relative;
  z-index: 1;
}

/* Hero Section (Original .hero renamed) */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 110%,
      rgba(0, 198, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% -20%,
      rgba(27, 108, 255, 0.4),
      transparent 60%
    );
  z-index: -2;
}

.hero-section__subtitle {
  max-width: 520px;
  margin: 12px auto 28px;
  font-size: 1.1rem;
}

/* Glass Effect Utility (Original .glass renamed) */
.glass-style,
.glass /* Original class kept for FAQ */ {
  background: var(--card-bg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.hero-card {
  padding: 40px;
  width: 100%;
  max-width: 420px;
  margin: 40px auto 0;
}

/* Mobile Fixed CTA (Original .sticky-cta renamed) */
.mobile-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(150%);
  transition: transform 0.4s ease-out;
  display: none;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

.mobile-fixed-cta .cta-button {
  margin: 0;
  font-size: 1.2rem;
  padding: 18px;
}

/* Feature List (Original .feature-row renamed) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.pill-style {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 30px;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
}
.feature-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--grad-start),
    /* Using original var for consistency */ var(--grad-end)
      /* Using original var for consistency */
  );
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

/* Section Styling (Original .section-title renamed) */
.section-heading {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
}
.section-description {
  max-width: 600px;
  margin: -10px auto 34px;
  font-size: 1rem;
  color: var(--color-secondary-text);
  text-align: center;
}

/* Process Steps (Original .steps/.step/.step-number renamed) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}
.step-card {
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.step-card__number {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--grad-start),
    /* Using original var for consistency */ var(--grad-end)
      /* Using original var for consistency */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  transform: rotate(20deg);
}
.step-card__text {
  margin-top: 48px;
}

/* Dark Background Section (Original .section-dark renamed) */
.section-dark-bg {
  padding: var(--section-pad) 0;
  background-color: var(--color-footer-bg);
}
.section-dark-bg .section-heading {
  margin-bottom: 40px;
}
.section-dark-bg__description {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 28px;
}
.section-dark-bg__cta-container {
  text-align: center;
}
.section-dark-bg__cta-button {
  width: auto;
}

/* Benefits Section (Original #why/ #benefits, etc., renamed) */
.benefit-section {
  padding: 64px 0;
  text-align: center;
}
.benefit-section__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 32px;
}
.highlight-text {
  color: #3b82f6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}
.benefit-item {
  padding: 24px;
  border: 1px solid var(--color-primary-end);
  border-radius: 14px;
  background: #111827b0;
  backdrop-filter: blur(14px);
}
.benefit-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.benefit-item__text {
  font-size: 0.85rem;
  color: var(--color-secondary-text);
  margin: 0;
}

/* --- START OF ORIGINAL FAQ CSS (Preserved) --- */
.faq-item {
  margin-bottom: 14px;
}
.faq-q {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-a {
  display: none;
  padding: 16px 20px;
  color: #cbd5e1;
}

.faq-item:last-of-type {
  margin-bottom: 28px;
}
/* --- END OF ORIGINAL FAQ CSS (Preserved) --- */

/* Footer Styling (Original footer renamed to .site-footer) */
.site-footer {
  margin-top: 32px;
  padding: 40px 24px 32px;
  text-align: center;
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--color-secondary-text);
}
.footer-nav {
  margin-bottom: 28px;
}
.footer-nav a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--color-primary-end);
  text-decoration: underline;
}
.site-footer__notice-heading {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 0 0 16px;
}
.site-footer__notice-text {
  color: var(--color-secondary-text);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto 24px;
}
.site-footer__copyright {
  margin-bottom: 0;
  color: #475569;
}

/* Transitions */
.pill-style,
.step-card {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s,
    box-shadow 0.25s, color 0.25s;
}

.pill-style:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 128, 255, 0.35);
}

.step-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 128, 255, 0.35);
  border-color: var(--grad-start);
}

/* Media Queries (Original media queries kept where relevant) */
@media (max-width: 767px) {
  .mobile-fixed-cta {
    display: block;
  }
  .hero-section h1 {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }
  .hero-card {
    padding: 28px;
    margin-top: 24px;
  }
  .section-heading {
    font-size: 1.65rem;
    margin-bottom: 32px;
  }
  .benefit-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.15;
  }
}

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

@media (min-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;
    max-width: 760px !important;
  }
}
