/* ============================================
   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: 'Montserrat', sans-serif;
  /* Blog hero + card covers (home + blog hub) — swap paths when assets are ready */
  --blog-hero-image: url('/assets/images/Blog_Hero.jpg');
  /* --blog-cover-seo-image: url('/assets/images/SEO_Blog.jpg'); */
  --blog-cover-ads-image: url('/assets/BrandBook/blog-cover-ads.webp');
  --blog-cover-social-image: url('/assets/BrandBook/blog-cover-social.webp');
}

/* ============================================
   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-head);
  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);
}

/* Tool page - add padding for fixed nav */
body.tool-page,
body.blog-page {
  padding-top: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.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: 12.5rem 5rem 6rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Desktop home hero only: text left, image right (top-aligned under nav) */
@media (min-width: 1024px) {
  section.hero:not(.tool-hero) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(2rem, 4vw, 3.5rem);
    /* ~nav height: logo + padding — image sits just below navbar */
    padding: 7.25rem clamp(3rem, 5vw, 5rem) 4.5rem;
    min-height: auto;
  }

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

  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: flex-start;
    align-self: start;
    justify-self: end;
    width: 100%;
  }

  section.hero:not(.tool-hero) .hero-image-container.hero-visual-wrap {
    justify-content: center;
    justify-self: center;
    margin-right: auto;
  }

  section.hero:not(.tool-hero) .hero-image {
    max-width: 100%;
    width: 100%;
    max-height: min(calc(100vh - 7rem), 560px);
    object-fit: contain;
    object-position: top right;
  }

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

.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.5rem 1.15rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
  margin-top: 0.15rem;
  width: fit-content;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(200, 255, 0, 0.25);
  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;
}

/* Home hero: smaller headline, less heavy (tool page keeps global h1) */
section.hero:not(.tool-hero) h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: min(30rem, 100%);
}

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

section.hero:not(.tool-hero) h1 em {
  font-weight: 700;
}

.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;
  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(--white);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Home hero stats: match button text size (.btn-primary / .btn-ghost ≈ 0.95rem) */
section.hero:not(.tool-hero) .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  padding-top: 1.5rem;
  gap: 1.25rem 2rem;
}

section.hero:not(.tool-hero) .hero-stats > div {
  min-width: 0;
}

section.hero:not(.tool-hero) .hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.4;
}

section.hero:not(.tool-hero) .hero-stats .stat-label {
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-top: 0.35rem;
  color: rgba(245, 242, 238, 0.48);
  max-width: 14rem;
}

/* ============================================
   HERO SECTION (Tool Page)
   ============================================ */
.hero.tool-hero {
  text-align: center;
  padding: 8rem 2rem 3.5rem;
  max-width: min(700px, 100%);
  margin: 0 auto;
  min-height: 0;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.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: none;
  object-fit: cover;
}

/* Home hero branded visual */
section.hero:not(.tool-hero) .hero-visual-wrap {
  width: 100%;
  max-width: 640px;
  margin-top: 0.75rem;
}

section.hero:not(.tool-hero) .hero-visual-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.02;
  border-radius: 2rem;
  background:
    radial-gradient(120% 140% at 78% 14%, rgba(200, 255, 0, 0.16) 0%, rgba(200, 255, 0, 0.03) 36%, rgba(200, 255, 0, 0) 72%),
    linear-gradient(155deg, #121212 0%, #090909 68%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}

section.hero:not(.tool-hero) .hero-visual-card::before,
section.hero:not(.tool-hero) .hero-visual-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

section.hero:not(.tool-hero) .hero-visual-card::before {
  width: 280px;
  height: 280px;
  right: -95px;
  top: -95px;
  border: 1px solid rgba(200, 255, 0, 0.18);
}

section.hero:not(.tool-hero) .hero-visual-card::after {
  width: 190px;
  height: 190px;
  right: -38px;
  top: -35px;
  border: 1px solid rgba(200, 255, 0, 0.26);
}

section.hero:not(.tool-hero) .hero-visual-mark {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 10vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 0.92;
  text-shadow: 0 0 24px rgba(200, 255, 0, 0.12);
}

section.hero:not(.tool-hero) .hero-visual-sub {
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(245, 242, 238, 0.6);
  text-align: center;
}

.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;
}

/* ============================================
   STICKY MOBILE WHATSAPP
   ============================================ */
.wa-float {
  display: none;
  position: fixed;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
  outline: none;
}

.wa-float:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wa-float-icon {
  display: block;
  flex-shrink: 0;
}

/*
 * Chat FABs: WhatsApp pinned to the far right; Tawk sits immediately to its left (same row).
 * Rules up to 1024px match .wa-float visibility; /js/tawk-layout.js reinforces when Tawk re-renders.
 */
@media (max-width: 1024px) {
  .wa-float {
    display: flex;
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 999998;
  }

  #tawkchat-minimized-wrapper,
  #tawkchat-minimized,
  #tawkchat-minimized-button,
  #tawkchat-minimized-container,
  .tawk-min-container,
  .tawk-button-circle.tawk-button,
  div[class*='tawk-min-container'] {
    left: auto !important;
    right: calc(1rem + 56px + 14px + env(safe-area-inset-right, 0px)) !important;
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ============================================
   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;
}

.download-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(245,242,238,0.15);
  border-radius: 50px;
  padding: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-head);
  color: rgba(245,242,238,0.6);
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.2s;
}
.download-btn:hover {
  border-color: rgba(200,255,0,0.3);
  color: #c8ff00;
  background: rgba(200,255,0,0.04);
}
.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;
}

.section-sub a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.section-sub a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.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);
}
/* Services split layout */
.svc-list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.25s ease;
}

.svc-row:hover {
  padding-left: 0.8rem;
}

.svc-row:hover .svc-name {
  color: #c8ff00;
}

.svc-row:hover .svc-link {
  opacity: 1;
}

.svc-row:hover .svc-bg-num {
  color: rgba(200,255,0,0.04);
}

.svc-left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.svc-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(200,255,0,0.4);
  letter-spacing: 1px;
}

.svc-icon-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.svc-icon {
  font-size: 1.3rem;
}

.svc-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: #f5f2ee;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.2s;
}

.svc-price {
  font-size: 0.8rem;
  color: rgba(200,255,0,0.6);
  font-weight: 500;
}

.svc-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.svc-desc {
  font-size: 0.86rem;
  color: var(--white);
  line-height: 1.78;
  font-weight: 300;
}

.svc-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.stag {
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(245,242,238,0.32);
  letter-spacing: 0.2px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #c8ff00;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
  text-decoration: none;
  width: fit-content;
}

.svc-bg-num {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 7rem;
  color: rgba(255,255,255,0.02);
  letter-spacing: -4px;
  pointer-events: none;
  line-height: 1;
  transition: color 0.25s;
}

@media (max-width: 768px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .svc-link {
    opacity: 1;
  }
}


/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--gray);
}

.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;
  align-items: start;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: rgba(200, 255, 0, 0.9);
}

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

/* ============================================
   WHY SECTION
   ============================================ */
.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);
}

.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;
  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;
}

/* ============================================
   BLOGS SECTION
   ============================================ */
.blogs-section {
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.8rem;
}

.blog-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.3rem;
  background: var(--gray);
  overflow: hidden;
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link {
  transform: translateY(-3px);
}

.blog-thumb {
  position: relative;
  height: 160px;
  background:
    radial-gradient(120% 130% at 82% 8%, rgba(200, 255, 0, 0.2) 0%, rgba(200, 255, 0, 0.05) 34%, rgba(200, 255, 0, 0) 68%),
    linear-gradient(150deg, #161616 0%, #0d0d0d 72%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  overflow: hidden;
}

/* Thumbs with a real image: taller area + show full art (home grid columns are narrow; cover felt “zoomed”) */
.blog-thumb:has(> img) {
  height: auto;
  aspect-ratio: 2 / 1;
  min-height: 200px;
}

/* Optional: use a plain <img> instead of topic background classes */
.blog-thumb > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* If someone pairs topic classes with <img>, don’t stack a photo background — keep only the base thumb gradient */
.blog-thumb:has(> img).blog-thumb-seo,
.blog-thumb:has(> img).blog-thumb-ads,
.blog-thumb:has(> img).blog-thumb-social {
  background:
    radial-gradient(120% 130% at 82% 8%, rgba(200, 255, 0, 0.2) 0%, rgba(200, 255, 0, 0.05) 34%, rgba(200, 255, 0, 0) 68%),
    linear-gradient(150deg, #161616 0%, #0d0d0d 72%);
}

.blog-thumb:has(> img).blog-thumb-seo::after,
.blog-thumb:has(> img).blog-thumb-ads::after,
.blog-thumb:has(> img).blog-thumb-social::after {
  display: none;
}

.blog-thumb .blog-chip {
  position: relative;
  z-index: 1;
}

.blog-thumb-seo,
.blog-thumb-ads,
.blog-thumb-social {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.blog-thumb-seo::after,
.blog-thumb-ads::after,
.blog-thumb-social::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 130% at 82% 8%, rgba(200, 255, 0, 0.2) 0%, rgba(200, 255, 0, 0.05) 34%, rgba(200, 255, 0, 0) 68%),
    linear-gradient(170deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.58) 100%);
}

.blog-thumb-seo {
  background-image: var(--blog-cover-seo-image);
}

.blog-thumb-ads {
  background-image: var(--blog-cover-ads-image);
}

.blog-thumb-social {
  background-image: var(--blog-cover-social-image);
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--black);
  background: linear-gradient(165deg, #edff7a 0%, #c8ff00 42%, #b4ea00 100%);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 2px 12px rgba(0, 0, 0, 0.45);
}

.blog-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
}

.blog-card-body h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: rgba(245, 242, 238, 0.55);
  line-height: 1.65;
  font-weight: 300;
}

.blog-read {
  display: inline-block;
  margin-top: 0.95rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
}

nav .nav-blogs-active,
nav a[aria-current="page"] {
  color: var(--accent);
}

/* ============================================
   BLOG HUB PAGE (/blog/)
   ============================================ */
.blog-hub-hero {
  padding: 7.5rem clamp(1.5rem, 5vw, 5rem) 3.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-hub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.blog-hub-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.blog-hub-hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.blog-hub-hero-sub {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.52);
  line-height: 1.75;
  font-weight: 300;
  max-width: 34rem;
  margin-bottom: 1.35rem;
}

.blog-hub-chips {
  justify-content: flex-start;
  margin-bottom: 1.6rem;
}

.blog-hub-cta {
  display: inline-block;
}

.blog-hub-hero-media {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  background: var(--gray);
  position: relative;
}

.blog-hub-hero-media-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 120% at 78% 10%, rgba(200, 255, 0, 0.2) 0%, rgba(200, 255, 0, 0.06) 32%, rgba(200, 255, 0, 0) 70%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.28) 100%);
  pointer-events: none;
}

.blog-hub-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Optional: remove <img> and use CSS background-only hero */
.blog-hub-hero-media-custom.hero-bg-only {
  aspect-ratio: 9 / 7;
  background-image:
    radial-gradient(100% 120% at 78% 10%, rgba(200, 255, 0, 0.24) 0%, rgba(200, 255, 0, 0.07) 34%, rgba(200, 255, 0, 0) 72%),
    linear-gradient(150deg, #131313 0%, #0a0a0a 72%),
    var(--blog-hero-image);
  background-size: cover;
  background-position: center;
}

.blog-hub-main {
  padding: 0 clamp(1.5rem, 5vw, 5rem) 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-hub-section-head {
  scroll-margin-top: 6.5rem;
  margin-bottom: 1.25rem;
}

.blog-hub-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.blog-hub-lead {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.65;
}

.blog-hub-grid {
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

.blog-hub-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-hub-article {
  scroll-margin-top: 6.5rem;
  padding: 2rem 1.75rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--gray);
}

.blog-hub-article-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.75rem;
  color: var(--white);
}

.blog-hub-article-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 242, 238, 0.58);
  font-weight: 300;
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.blog-hub-article .blog-post-content {
  max-width: 48rem;
}

.blog-hub-article .blog-post-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(200, 255, 0, 0.95);
  margin: 1.5rem 0 0.55rem;
}

.blog-hub-article .blog-post-content h3:first-child {
  margin-top: 0;
}

.blog-hub-back-up {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(245, 242, 238, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-hub-back-up:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .blog-hub-hero-inner {
    grid-template-columns: 1fr;
  }

  .blog-hub-hero-media {
    order: -1;
    max-width: 520px;
    margin: 10px auto 0;
  }

  .blog-hub-hero {
    padding-top: 6.75rem;
  }
}

/* ============================================
   BLOG POST PAGE
   ============================================ */
.blog-post-main {
  padding: 8.5rem 5rem 5.5rem;
}

.blog-post-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.blog-breadcrumb {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245, 242, 238, 0.45);
  margin-bottom: 1.15rem;
  text-decoration: none;
}

.blog-breadcrumb:hover {
  color: var(--accent);
}

.blog-post-meta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-post-date {
  font-size: 0.82rem;
  color: rgba(245, 242, 238, 0.44);
}

.blog-post-category {
  font-size: 0.72rem;
  color: var(--accent);
  border: 1px solid rgba(200, 255, 0, 0.28);
  border-radius: 999px;
  padding: 0.26rem 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-post-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.blog-post-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 242, 238, 0.62);
  max-width: 760px;
  margin-bottom: 2rem;
}

.blog-post-cover {
  height: 280px;
  border-radius: 1.4rem;
  background:
    radial-gradient(120% 125% at 82% 10%, rgba(200, 255, 0, 0.2) 0%, rgba(200, 255, 0, 0.05) 30%, rgba(200, 255, 0, 0) 68%),
    linear-gradient(145deg, #141414 0%, #0a0a0a 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.2rem;
}

.blog-post-content {
  max-width: 760px;
}

.blog-post-content h2 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
  margin-top: 2.1rem;
}

.blog-post-content p {
  color: rgba(245, 242, 238, 0.62);
  font-size: 0.98rem;
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 1rem;
}

.blog-post-content ul {
  margin: 0.55rem 0 1.2rem 1.1rem;
}

.blog-post-content li {
  color: rgba(245, 242, 238, 0.62);
  font-size: 0.95rem;
  line-height: 1.76;
  margin-bottom: 0.35rem;
}

.blog-post-author {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 242, 238, 0.52);
  font-size: 0.85rem;
}

/* ============================================
   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;
}

/* FAQ */
.faq-section {
  padding: 8rem 5rem;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-radius: 16px;
  overflow: visible;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #f5f2ee;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  letter-spacing: -0.01em;
}

.faq-q:hover {
  background: rgba(255,255,255,0.02);
  color: #c8ff00;
}

.faq-item.open .faq-q {
  color: #c8ff00;
  background: rgba(200,255,0,0.03);
}

.faq-icon {
  font-size: 1.4rem;
  color: rgba(245,242,238,0.3);
  font-weight: 300;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.3s;
  font-family: var(--font-head);
}

.faq-item.open .faq-icon {
  color: #c8ff00;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-a p {
  padding: 0 1.8rem 1.4rem 1.8rem;
  color: rgba(245,242,238,0.45);
  font-size: 0.9rem;
  line-height: 1.78;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 5rem 1.5rem;
  }
  .faq-q {
    padding: 1.1rem 1.2rem;
    font-size: 0.92rem;
  }
  .faq-a p {
    padding: 0 1.2rem 1.1rem 1.2rem;
  }
}
/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--gray);
  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: 80px;
  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-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(245, 242, 238, 0.68);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social-link svg {
  display: block;
  flex-shrink: 0;
}

.footer-social-link:hover {
  color: var(--accent);
  border-color: rgba(200, 255, 0, 0.45);
  background: rgba(200, 255, 0, 0.05);
  transform: translateY(-1px);
}

.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 {
  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;
  box-sizing: border-box;
}

body.tool-page .form-outer {
  max-width: min(640px, 100%);
}

body.tool-page .fg {
  min-width: 0;
}

.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;
}

#results .lead-inbox-card {
  margin-top: 1rem;
}

.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) {
  /* Narrow / tablet / small laptop: drawer nav so links aren’t cramped */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 103;
  }

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 86vw);
    height: 100vh;
    height: 100dvh;
    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: 102;
    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;
  }

  .nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .nav-menu li {
    width: 100%;
  }

  .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);
  }

  .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;
  }

  nav {
    padding: 1rem 2rem;
  }
  
  section {
    padding: 6rem 2rem;
  }
  
  .hero {
    padding: 10.25rem 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;
    min-height: 0;
    justify-content: flex-start;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .footer-bottom {
    padding: 1.5rem 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 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) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-post-main {
    padding: 7.25rem 1.5rem 4.5rem;
  }

  .blog-post-cover {
    height: 210px;
    border-radius: 1rem;
  }
  
  .hero-stats {
    gap: 2.5rem;
  }

  section.hero:not(.tool-hero) .hero-stats {
    gap: 1.25rem 1.5rem;
  }
  
  .hero {
    padding: 9.75rem 1.5rem 4rem;
  }
  
  .hero-image-container {
    margin-top: 2.5rem;
  }

  section.hero:not(.tool-hero) .hero-visual-wrap {
    max-width: 100%;
    margin-top: 2rem;
  }

  section.hero:not(.tool-hero) .hero-visual-card {
    border-radius: 1.45rem;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .footer-logo-img {
    margin-left: -12px;
  }
  
  .hero.tool-hero {
    padding: 8.2rem 1.5rem 2.5rem;
    overflow: hidden;
  }
  
  .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;
  }
  
  .hero.tool-hero {
    padding: 8rem 1.2rem 2.5rem;
  }
  
  .footer-logo-img {
    margin-left: -12px;
  }
  
  .fcard {
    padding: 1.3rem;
  }
  
  .fg {
    grid-template-columns: 1fr;
  }
  
  .scores {
    grid-template-columns: 1fr 1fr;
  }

  .hero.tool-hero h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  section.hero:not(.tool-hero) h1 {
    font-size: 1.65rem;
  }
}
