/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --black: #080808;
  --white: #f5f2ee;
  --accent: #c8ff00;
  --gray: #111111;
  --gray2: #1a1a1a;
  --gray2-alt: #181818;
  --muted: #777;
  --border: rgba(255, 255, 255, 0.07);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5rem;
  background: rgba(8, 8, 8, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tool page - add padding for fixed nav */
body.tool-page {
  padding-top: 0;
}

.tool-hero {
  padding-top: 8rem;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--black);
  font-weight: 800;
  font-family: var(--font-head);
}

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

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: rgba(245, 242, 238, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

nav ul a:hover {
  color: var(--white);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-cta-mobile {
  display: none;
}

.nav-cta-desktop {
  display: inline-block;
}

/* Nav CTA Button */
.nav-cta {
  background: var(--accent);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  font-family: var(--font-body);
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Nav Badge (for Tool page) */
.nav-badge {
  font-size: 10.5px;
  color: rgba(245, 242, 238, 0.28);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   HERO SECTION (Main Page)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11rem 5rem 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Desktop home hero only: text left, image right */
@media (min-width: 1024px) {
  section.hero:not(.tool-hero) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(2rem, 4vw, 3.5rem);
    padding: 11rem clamp(3rem, 5vw, 5rem) 6rem;
  }

  section.hero:not(.tool-hero) .hero-content {
    min-width: 0;
    margin: 0;
    justify-self: start;
    max-width: 640px;
  }

  section.hero:not(.tool-hero) .hero-left {
    max-width: 100%;
  }

  section.hero:not(.tool-hero) .hero-image-container {
    min-width: 0;
    margin: 0;
    max-width: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-self: end;
    width: 100%;
  }

  section.hero:not(.tool-hero) .hero-image {
    max-width: 100%;
    width: 100%;
    max-height: min(78vh, 620px);
    object-fit: contain;
  }

  section.hero:not(.tool-hero) .hero-stats {
    margin-top: 3rem;
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  max-width: 950px;
}

.hero-image-container {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 0, 0.04);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 0, 0.07);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 255, 0, 0.07);
  border: 1px solid rgba(200, 255, 0, 0.18);
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
  width: fit-content;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

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

/* Hero Typography */
h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 950px;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245, 242, 238, 0.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 5rem;
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================
   HERO SECTION (Tool Page)
   ============================================ */
.hero.tool-hero {
  text-align: center;
  padding: 8rem 2rem 3.5rem;
  max-width: 700px;
  margin: 0 auto;
  min-height: auto;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.live-badge {
  display: none;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero-sub.tool-sub {
  color: rgba(245, 242, 238, 0.38);
  font-size: 0.98rem;
  line-height: 1.78;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.incl-row {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.incl {
  font-size: 12.5px;
  color: rgba(245, 242, 238, 0.4);
  font-weight: 300;
}

.incl::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.btn-dark {
  background: var(--black);
  color: var(--accent);
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-body);
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-dark:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 8rem 5rem;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 4rem;
  font-weight: 300;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card {
  background: var(--black);
  padding: 2.8rem 2.5rem;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover {
  background: var(--gray2);
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.8rem;
}

.svc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.svc-arrow {
  margin-top: 2rem;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}

.service-card:hover .svc-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.process-left {
  position: sticky;
  top: 8rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200, 255, 0, 0.15);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.why-point {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 1px;
}

.why-point p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 242, 238, 0.65);
}

.why-point strong {
  color: var(--white);
  font-weight: 500;
}

.why-visual {
  aspect-ratio: 1;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 0, 0.06);
}

.why-visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 0, 0.1);
}

.why-visual-sub {
  font-size: 0.85rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
  background: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pkg-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  padding: 2.2rem;
  transition: border-color 0.25s, transform 0.25s;
  background: var(--black);
}

.pkg-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.pkg-card.featured {
  border-color: var(--accent);
  background: rgba(200, 255, 0, 0.02);
}

.pkg-card.featured:hover {
  transform: translateY(-3px);
}

.pkg-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.9rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.pkg-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pkg-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.pkg-price {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 800;
  color: var(--accent);
  margin: 1.2rem 0 0.35rem;
  line-height: 1.25;
}

.pkg-period {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22rem;
}

.pkg-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1.8rem 0;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pkg-features li {
  font-size: 0.85rem;
  color: rgba(245, 242, 238, 0.6);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  padding: 0.75rem;
  font-size: 0.88rem;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.pkg-cta:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.featured .pkg-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  font-weight: 500;
}

.featured .pkg-cta:hover {
  opacity: 0.9;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--accent);
  color: var(--black);
  text-align: center;
  padding: 7rem 5rem;
}

.cta-section h2 {
  color: var(--black);
  margin-bottom: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(8, 8, 8, 0.55);
  max-width: 460px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

.cta-email {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(8, 8, 8, 0.45);
}

.cta-email a {
  color: rgba(8, 8, 8, 0.65);
  text-decoration: none;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  margin-left: -240px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.5rem;
  
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-link {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-text {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.7);
  font-weight: 400;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.7);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  font-weight: 400;
  display: inline-block;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   FORM STYLES (Tool Page)
   ============================================ */
.form-outer {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.fcard {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.sec-label {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.3rem;
  display: block;
}

.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.fg.one {
  grid-template-columns: 1fr;
}

.f {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f label {
  font-size: 10.5px;
  color: rgba(245, 242, 238, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 0.78rem 0.95rem;
  font-size: 0.88rem;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 242, 238, 0.15);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(200, 255, 0, 0.35);
}

select option {
  background: #111;
  color: var(--white);
}

textarea {
  min-height: 78px;
  line-height: 1.6;
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.chk {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.55rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s;
}

.chk:hover {
  background: rgba(255, 255, 255, 0.025);
}

.chk input[type=checkbox] {
  width: 14px;
  height: 14px;
  min-width: 14px;
  accent-color: var(--accent);
  cursor: pointer;
}

.chk span {
  font-size: 0.85rem;
  color: rgba(245, 242, 238, 0.55);
  font-weight: 300;
}

.go-btn {
  width: 100%;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 1.05rem;
  font-size: 0.98rem;
  font-weight: 800;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.go-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

.go-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.go-note {
  text-align: center;
  font-size: 11px;
  color: rgba(245, 242, 238, 0.18);
  margin-top: 0.65rem;
  font-weight: 300;
}

#errmsg {
  display: none;
  background: rgba(255, 80, 80, 0.07);
  border: 1px solid rgba(255, 80, 80, 0.18);
  border-radius: 11px;
  padding: 0.9rem 1.1rem;
  color: #ff9090;
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   LOADING STYLES (Tool Page)
   ============================================ */
#loading {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.spin-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--black);
  margin: 0 auto 2rem;
  animation: pump 1.8s ease-in-out infinite;
}

@keyframes pump {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.load-h {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.load-s {
  color: rgba(245, 242, 238, 0.3);
  font-size: 0.86rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.steps.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  max-width: 280px;
  margin: 0 auto;
  text-align: left;
}

.step.loading-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.65rem;
  border-radius: 7px;
  font-size: 0.83rem;
  color: rgba(245, 242, 238, 0.22);
  font-weight: 300;
  transition: all 0.35s;
}

.step.loading-step.on {
  color: var(--white);
  background: rgba(200, 255, 0, 0.06);
}

.step.loading-step.ok {
  color: rgba(200, 255, 0, 0.55);
}

.step-d {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.step.loading-step.on .step-d {
  opacity: 1;
  animation: blink 1s infinite;
}

.step.loading-step.ok .step-d {
  opacity: 1;
}

/* ============================================
   RESULTS STYLES (Tool Page)
   ============================================ */
#results {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.rh {
  text-align: center;
  padding: 2.2rem 0 2.8rem;
}

.rh h2 {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}

.rh p {
  color: rgba(245, 242, 238, 0.3);
  font-size: 0.83rem;
  font-weight: 300;
}

.scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.sc {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 1.2rem;
  text-align: center;
}

.sn {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.28rem;
}

.sn.g {
  color: #c8ff00;
}

.sn.o {
  color: #f5a623;
}

.sn.r {
  color: #ff5555;
}

.sl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.27);
  font-weight: 500;
}

.block {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.block-head {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.bicon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.btitle {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bscore {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
}

.bbody {
  padding: 1.2rem;
  font-size: 0.86rem;
  line-height: 1.82;
  color: rgba(245, 242, 238, 0.6);
  font-weight: 300;
}

.bbody strong {
  color: var(--white);
  font-weight: 500;
}

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

.cta-block {
  background: var(--accent);
  border-radius: 16px;
  padding: 2.3rem;
  text-align: center;
  margin-top: 1.6rem;
}

.cta-block h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.cta-block p {
  color: rgba(8, 8, 8, 0.48);
  font-size: 0.86rem;
  margin-bottom: 1.3rem;
  font-weight: 300;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block a {
  display: inline-block;
  background: var(--black);
  color: var(--accent);
  border-radius: 50px;
  padding: 0.8rem 1.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-decoration: none;
  transition: opacity 0.18s;
}

.cta-block a:hover {
  opacity: 0.85;
}

.restart {
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.83rem;
  color: rgba(245, 242, 238, 0.2);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.restart:hover {
  color: rgba(245, 242, 238, 0.5);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  section {
    padding: 6rem 2rem;
  }
  
  .hero {
    padding: 9rem 2rem 5rem;
  }
  
  .hero-image-container {
    margin-top: 3rem;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  
  .hero.tool-hero {
    padding: 7rem 2rem 3rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  
  .process-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-left {
    position: static;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-visual {
    display: none;
  }
  
  footer {
    padding: 2rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }
  
  .nav-cta-desktop {
    display: none;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 100;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Overlay when menu is open */
  .nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1rem;
    color: rgba(245, 242, 238, 0.7);
    width: 100%;
  }
  
  .nav-menu a:hover {
    color: var(--accent);
  }

  /* Make the mobile CTA button text readable */
  .nav-menu .nav-cta {
    color: var(--black) !important;
  }
  
  .nav-cta-mobile {
    display: block;
    margin-top: 1rem;
  }
  
  .nav-cta-mobile .nav-cta {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .logo-img {
    height: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 2.5rem;
  }
  
  .hero {
    padding: 8rem 1.5rem 4rem;
  }
  
  .hero-image-container {
    margin-top: 2.5rem;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .footer-logo-img {
    margin-left: 0;
  }
  
  .hero.tool-hero {
    padding: 6rem 1.5rem 2.5rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 1.5rem;
  }
  
  section {
    padding: 5rem 1.5rem;
  }
  
  .cta-section {
    padding: 5rem 1.5rem;
  }
  
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 580px) {
  nav {
    padding: 1rem 1.2rem;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .hero.tool-hero {
    padding: 6rem 1.2rem 2.5rem;
  }
  
  .footer-logo-img {
    height: 30px;
    margin-left: 0;
  }
  
  .fcard {
    padding: 1.3rem;
  }
  
  .fg {
    grid-template-columns: 1fr;
  }
  
  .scores {
    grid-template-columns: 1fr 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
}
