/* BuildersAIToolbox — Dark Industrial Theme */

:root {
  --bg:          #09090C;
  --surface:     #111318;
  --surface2:    #18191F;
  --surface3:    #1E202A;
  --border:      #252933;
  --border-hi:   #333848;
  --orange:      #FF6200;
  --orange-dark: #D95400;
  --orange-glow: rgba(255, 98, 0, 0.18);
  --white:       #FFFFFF;
  --text:        #E2E6F0;
  --muted:       #6B7385;
  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 8px 32px rgba(0,0,0,0.55);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: #ff8533; text-decoration: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.45rem, 3.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
p  { margin-bottom: 1rem; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: 92%; max-width: 1140px; margin: 0 auto; }
section { padding: 72px 0; }

/* ── PROMO BANNER ────────────────────────────────────────── */
.promo-banner {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 700;
}
.promo-banner a { color: #fff; text-decoration: underline; font-weight: 900; margin-left: 6px; }
.promo-banner a:hover { color: rgba(255,255,255,0.85); }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  background: rgba(9,9,12,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.nav-logo {
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 17px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-size: 0.81rem !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }
.nav-cta.active { border-bottom: none !important; }

/* Nav search */
.nav-search-form {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.nav-search-form:focus-within { border-color: var(--orange); }
.nav-search-input {
  background: transparent;
  border: none;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.82rem;
  width: 155px;
  outline: none;
}
.nav-search-input::placeholder { color: var(--muted); }
.nav-search-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1;
}
.nav-search-btn:hover { color: var(--orange); }

/* Start Here button */
.btn-start-here {
  display: inline-block;
  background: var(--white);
  color: var(--bg) !important;
  font-size: 0.79rem;
  font-weight: 900;
  padding: 8px 17px;
  border-radius: 22px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid var(--white);
  text-transform: uppercase;
}
.btn-start-here:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.28s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.nav-mobile.open { display: block; }
.nav-mobile .container { padding-top: 16px; padding-bottom: 24px; }
.nav-mobile ul { list-style: none; margin-bottom: 20px; }
.nav-mobile ul li { border-bottom: 1px solid var(--border); }
.nav-mobile ul li:first-child { border-top: 1px solid var(--border); }
.nav-mobile ul li a {
  display: block;
  padding: 15px 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-mobile ul li a:hover { color: var(--orange); }
.nav-mobile ul li a.mobile-start-here { color: var(--orange); }

.mobile-search-form { display: flex; gap: 8px; }
.mobile-search-form input {
  flex: 1;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
}
.mobile-search-form input:focus { border-color: var(--orange); }
.mobile-search-form input::placeholder { color: var(--muted); }
.mobile-search-form button {
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  padding: 12px 20px;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.mobile-search-form button:hover { background: var(--orange-dark); }

/* ── BREADCRUMBS ─────────────────────────────────────────── */
.breadcrumbs {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.breadcrumbs nav {
  font-size: 0.81rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.breadcrumbs nav a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs nav a:hover { color: var(--orange); }
.breadcrumbs nav .sep { color: var(--border-hi); font-size: 0.75rem; }
.breadcrumbs nav .current { color: var(--text); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(9,9,12,0.93) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600') center / cover no-repeat;
  padding: 108px 0 94px;
  border-bottom: 3px solid var(--orange);
}
.hero .container { max-width: 820px; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.13rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.78;
  font-weight: 400;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.btn:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255,98,0,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  margin-left: 14px;
}
.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px) rotate(0.3deg);
}
.btn-sm { display: inline-block; margin-top: 16px; padding: 11px 22px; font-size: 0.82rem; }
.btn-lg { padding: 17px 42px; font-size: 0.96rem; border-radius: 8px; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.section-header h2 { color: var(--white); margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }

.section-header-left { text-align: left; margin-bottom: 44px; }
.section-header-left .label { margin-bottom: 12px; padding-bottom: 8px; }
.section-header-left h2 { color: var(--white); margin-bottom: 10px; }
.section-header-left p { color: var(--muted); max-width: 520px; font-size: 0.97rem; line-height: 1.75; margin: 0; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.trust-item span:first-child { font-size: 1.3rem; }

/* ── BENEFIT CARDS ───────────────────────────────────────── */
.benefits { background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3px; }
.benefit-card {
  background: var(--surface2);
  padding: 38px 30px 42px;
  border-top: 4px solid var(--orange);
  position: relative;
  transition: background 0.2s;
}
.benefit-card:nth-child(2) { padding-top: 44px; }
.benefit-card:nth-child(3) { padding-bottom: 36px; }
.benefit-card:hover { background: var(--surface3); }
.benefit-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.benefit-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; letter-spacing: 0.2px; }
.benefit-card p { color: var(--muted); font-size: 0.93rem; }

/* ── BLOG PHOTO CARDS ────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3px; }
.blog-card {
  background: var(--surface2);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--border);
  transition: border-color 0.2s;
  overflow: hidden;
}
.blog-card:hover { border-top-color: var(--orange); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--surface3); }
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.4s, filter 0.3s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); filter: brightness(1); }
.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.blog-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1rem; line-height: 1.45; }
.blog-card p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.blog-card .read-more {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ── TOOL CARDS (homepage preview) ──────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3px; }
.tool-card {
  background: var(--surface2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.tool-card:hover { border-top-color: var(--orange); background: var(--surface3); }
.tool-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tool-card h3 { color: var(--white); margin-bottom: 8px; }
.tool-rating { font-size: 1.1rem; margin: 10px 0 12px; }
.tool-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.tool-card .btn { margin-top: 20px; text-align: center; }
.affiliate-note { font-size: 0.76rem; color: var(--muted); margin-top: 8px; font-style: italic; }

/* ── TOOL REVIEW (tools.html full reviews) ───────────────── */
.tool-review {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
}
.tool-review h3 { color: var(--white); font-size: 1rem; margin: 24px 0 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.tool-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.tool-review h2 { color: var(--white); margin-top: 10px; }
.tool-review p { color: var(--muted); }
.tool-review ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.tool-review ul li { color: var(--text); font-size: 0.93rem; }
.callout {
  background: rgba(255,98,0,0.08);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.callout p { margin: 0; color: var(--text); font-weight: 600; }

/* Price tag */
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,98,0,0.1);
  border: 1.5px solid rgba(255,98,0,0.3);
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 4px;
  margin: 8px 0 16px;
  letter-spacing: 0.3px;
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section { background: var(--surface); padding: 73px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: var(--surface2);
  border: none;
  padding: 19px 24px;
  text-align: left;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  line-height: 1.45;
}
.faq-question:hover { background: var(--surface3); }
.faq-icon {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.28s ease;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--surface2);
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; border-top: 1px solid var(--border); }
.faq-answer-inner { padding: 18px 24px 22px; }
.faq-answer-inner p { color: var(--muted); margin: 0; font-size: 0.93rem; line-height: 1.75; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── EMAIL SIGNUP ─────────────────────────────────────────── */
.signup-section {
  background: var(--surface);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.signup-section h2 { color: var(--white); margin-bottom: 12px; }
.signup-section p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.signup-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.signup-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 15px 18px;
  border-radius: var(--radius);
  border: 2px solid var(--border-hi);
  font-size: 0.97rem;
  outline: none;
  background: var(--surface2);
  color: var(--text);
  transition: border-color 0.2s;
}
.signup-form input[type="email"]:focus { border-color: var(--orange); }
.signup-form button {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s, transform 0.18s;
}
.signup-form button:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--surface);
  border-bottom: 3px solid var(--orange);
  padding: 66px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ── PHOTO HERO (tools page) ─────────────────────────────── */
.photo-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
}
.photo-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.photo-hero-content { position: relative; z-index: 2; padding: 48px 0; }
.photo-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.photo-hero p  { color: rgba(255,255,255,0.7); max-width: 540px; }

/* ── POST HERO ───────────────────────────────────────────── */
.post-hero { background: var(--surface); border-bottom: 3px solid var(--orange); padding: 64px 0 52px; text-align: center; }
.post-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.post-meta { color: var(--muted); font-size: 0.85rem; margin-top: 14px; }

/* ── POST PHOTO BANNER ───────────────────────────────────── */
.post-photo { height: 360px; overflow: hidden; background: var(--surface2); }
.post-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }

/* ── POST BODY ───────────────────────────────────────────── */
.post-body { background: var(--surface); padding: 60px 0; }
.post-content { max-width: 740px; margin: 0 auto; }
.post-content h2 { color: var(--white); margin: 44px 0 16px; font-size: 1.5rem; letter-spacing: -0.3px; }
.post-content h3 { color: var(--white); margin: 28px 0 10px; font-size: 1.1rem; }
.post-content p { color: var(--muted); margin-bottom: 18px; line-height: 1.8; }
.post-content ul { margin: 0 0 18px 20px; }
.post-content ul li { margin-bottom: 8px; line-height: 1.75; color: var(--muted); }
.post-content .callout { background: rgba(255,98,0,0.08); border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0; }
.post-content .callout p { color: var(--text); margin: 0; font-weight: 600; }

/* ── GUIDE PAGE ──────────────────────────────────────────── */
.guide-hero { background: var(--surface); border-bottom: 3px solid var(--orange); padding: 80px 0; text-align: center; }
.guide-hero h1 { color: var(--white); margin-bottom: 16px; }
.guide-hero p { color: var(--muted); max-width: 580px; margin: 0 auto 36px; }
.guide-preview {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: left;
}
.guide-preview h3 { color: var(--white); margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.guide-preview ul { list-style: none; }
.guide-preview ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.guide-preview ul li:last-child { border-bottom: none; }
.guide-preview ul li::before { content: "✓"; color: var(--orange); font-weight: 900; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-content { background: var(--surface); padding: 73px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-values { background: var(--bg); border-top: 3px solid var(--orange); }
.values-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.values-list li { display: flex; gap: 18px; align-items: flex-start; }
.value-icon { font-size: 1.8rem; flex-shrink: 0; }
.value-icon + div h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.3px; }
.value-icon + div p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ── PROMISE CARD ────────────────────────────────────────── */
.promise-card { background: var(--surface2); border: 1px solid var(--border); border-top: 4px solid var(--orange); border-radius: var(--radius); padding: 36px; }
.promise-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.promise-list li { display: flex; gap: 14px; align-items: flex-start; }
.promise-icon { font-size: 1.4rem; flex-shrink: 0; }
.promise-text strong { display: block; color: var(--white); margin-bottom: 3px; font-size: 0.93rem; }
.promise-text span { color: var(--muted); font-size: 0.88rem; }

/* ── AFFILIATE DISCLOSURE BAR ────────────────────────────── */
.disclosure-bar { background: rgba(255,98,0,0.08); border-bottom: 1px solid rgba(255,98,0,0.25); padding: 12px 0; }
.disclosure-bar p { margin: 0; font-size: 0.84rem; color: var(--muted); }
.disclosure-bar strong { color: var(--orange); }

/* ── SECTION DIVIDERS ────────────────────────────────────── */
.section-dark  { background: var(--bg); }
.section-mid   { background: var(--surface); }
.section-light { background: var(--surface2); }

/* ── NEXT STEP BLOCK ─────────────────────────────────────── */
.next-step-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-top: 48px;
}
.next-step-block p.step-label { font-size: 0.73rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.next-step-block h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.next-step-block > p { color: var(--muted); margin-bottom: 18px; font-size: 0.93rem; }

/* ── START HERE PAGE ─────────────────────────────────────── */
.steps-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.step-card {
  display: flex;
  gap: 22px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--orange); }
.step-number {
  background: var(--orange);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { color: var(--white); margin-bottom: 7px; font-size: 1.05rem; }
.step-content p { color: var(--muted); margin: 0; font-size: 0.91rem; line-height: 1.65; }

.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 40px; }
.problem-card {
  display: flex;
  flex-direction: column;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none !important;
}
.problem-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.problem-card .problem-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.problem-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.problem-card p { color: var(--muted); font-size: 0.87rem; margin: 0 0 14px; flex: 1; }
.problem-card .go-link { color: var(--orange); font-size: 0.81rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 3px solid var(--orange); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .nav-logo { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; color: var(--muted); }
.footer-col h4 { color: var(--white); font-size: 0.78rem; font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--orange); }

/* ── GUIDE TOOL PREVIEW CARDS ────────────────────────────── */
.guide-tool-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 20px; background: var(--surface2); transition: border-color 0.2s; }
.guide-tool-card:hover { border-color: var(--orange); }
.guide-tool-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.guide-tool-icon { font-size: 2rem; flex-shrink: 0; }
.guide-tool-header .tool-badge { margin-bottom: 0; }
.guide-tool-header h3 { color: var(--white); margin-top: 4px; font-size: 1rem; }
.guide-tool-card > p { color: var(--muted); margin-bottom: 10px; }
.guide-tool-card .learn-line { color: var(--muted); font-size: 0.88rem; }
.guide-tool-card .learn-line strong { color: var(--text); }

/* ── WHATSAPP BUTTON ─────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 9998;
  background: #25D366;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 6px 22px rgba(37,211,102,0.42);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none !important;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.55); color: #fff !important; }
.whatsapp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── CHAT WIDGET ─────────────────────────────────────────── */
#bcai-chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#bcai-bubble {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 0.87rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(255,98,0,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#bcai-bubble:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,98,0,0.55); }
#bcai-window {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 340px;
  background: #111318;
  border: 1px solid #252933;
  border-top: 3px solid #FF6200;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  overflow: hidden;
  flex-direction: column;
}
#bcai-window.open { display: flex; }
#bcai-header { background: #18191F; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #252933; }
#bcai-header span { font-size: 0.88rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
#bcai-close { background: none; border: none; color: #6B7385; font-size: 1.3rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
#bcai-close:hover { color: #FF6200; }
#bcai-messages { flex: 1; padding: 16px; height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.bcai-msg { max-width: 88%; padding: 10px 14px; border-radius: 8px; font-size: 0.88rem; line-height: 1.55; }
.bcai-msg.bot { background: #1E202A; color: #D8DCE8; border: 1px solid #252933; align-self: flex-start; border-bottom-left-radius: 2px; }
.bcai-msg.user { background: #FF6200; color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }
#bcai-input-area { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #252933; background: #111318; }
#bcai-input { flex: 1; background: #18191F; border: 1px solid #252933; border-radius: 6px; padding: 9px 12px; color: #E2E6F0; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
#bcai-input:focus { border-color: #FF6200; }
#bcai-input::placeholder { color: #6B7385; }
#bcai-send { background: #FF6200; color: #fff; border: none; border-radius: 6px; padding: 9px 14px; font-size: 0.82rem; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; }
#bcai-send:hover { background: #D95400; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-search-form { display: none; }
  .btn-start-here { display: none; }
  .nav-links { gap: 18px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right { gap: 12px; }
  section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-secondary { margin-left: 0; margin-top: 14px; }
  .hero { padding: 76px 0 68px; }
  #bcai-window { width: 300px; }
  .whatsapp-btn { bottom: 88px; right: 16px; padding: 10px 15px; font-size: 0.8rem; }
  .tool-review { padding: 28px 22px; }
}

@media (max-width: 580px) {
  .whatsapp-btn .wa-label { display: none; }
  .whatsapp-btn { padding: 12px; }
  .signup-form { flex-direction: column; }
  .signup-form input[type="email"], .signup-form button { width: 100%; }
  .trust-items { gap: 16px; }
  h1 { letter-spacing: -0.5px; }
  .step-card { flex-direction: column; gap: 14px; }
}
