/* ========================================
   EliteDCs — Global Styles
   Color Palette: Black (#0a0a0a), Gold (#D4AF37), White (#ffffff)
   Fonts: Montserrat (headings), Inter (body)
   ======================================== */

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

:root {
  --gold: #D4AF37;
  --gold-light: #e6c84d;
  --gold-dark: #b8960f;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-light: #d0d0d0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--dark-border);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 0;
}

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

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

.nav-links a {
  color: var(--white); font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-beta-tag {
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; background: var(--gold); color: var(--black);
  padding: 0.15rem 0.4rem; border-radius: 4px; margin-left: 0.3rem;
  vertical-align: super; line-height: 1;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.88) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 4rem;
  padding: 4rem 0;
}

.hero-text { flex: 1 1 55%; }
.hero-text .tag {
  display: inline-block;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 1rem;
  border: 1px solid var(--gold); padding: 0.35rem 1rem; border-radius: 30px;
}
.hero-text h1 { font-size: 3.2rem; margin-bottom: 1.2rem; }
.hero-text h1 span { color: var(--gold); }
.hero-text p { font-size: 1.15rem; color: var(--gray-light); margin-bottom: 2rem; max-width: 560px; }

.hero-image { flex: 0 0 320px; text-align: center; }
.hero-image img {
  width: 320px; height: auto;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.15));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.9rem 2.2rem; border-radius: var(--radius);
  transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.25); }

.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ---------- Section Utilities ---------- */
.section { padding: 5rem 0; }
.section-dark { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 0.8rem; }
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* ---------- Services Grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.service-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  transition: all var(--transition); text-align: center;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,175,55,0.08); }

.service-icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(212,175,55,0.1);
  font-size: 1.5rem; color: var(--gold);
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; color: var(--gray); }

/* ---------- About Intro (Home) ---------- */
.about-intro {
  display: flex; align-items: center; gap: 3rem;
}
.about-intro-img { flex: 0 0 420px; border-radius: var(--radius); overflow: hidden; }
.about-intro-img img { width: 100%; border-radius: var(--radius); }
.about-intro-text { flex: 1; }
.about-intro-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.about-intro-text h2 span { color: var(--gold); }
.about-intro-text p { color: var(--gray-light); margin-bottom: 1rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 4rem 0; text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; color: var(--black); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(0,0,0,0.7); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { background: var(--black); color: var(--gold); }
.cta-banner .btn:hover { background: var(--dark); color: var(--gold-light); transform: translateY(-2px); }

/* ---------- About Page ---------- */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 0.6rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.about-profile {
  display: flex; align-items: flex-start; gap: 3rem;
}
.about-profile-img { flex: 0 0 300px; }
.about-profile-img img { border-radius: var(--radius); width: 100%; }
.about-profile-text { flex: 1; }
.about-profile-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-profile-text h2 span { color: var(--gold); }
.about-profile-text p { color: var(--gray-light); margin-bottom: 1rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.value-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--gold); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--gold); }
.value-card p { font-size: 0.92rem; color: var(--gray); }

.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.partner-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem;
  transition: all var(--transition);
}
.partner-card:hover { border-color: var(--gold); }
.partner-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.partner-card h3 a { color: var(--gold); }
.partner-card p { font-size: 0.92rem; color: var(--gray); }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: flex-start; }

.contact-info h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-info h2 span { color: var(--gold); }
.contact-info p { color: var(--gray-light); margin-bottom: 1.5rem; }

.contact-detail { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.2rem; }
.contact-detail .icon { color: var(--gold); font-size: 1.1rem; min-width: 20px; margin-top: 2px; }
.contact-detail span { color: var(--gray-light); font-size: 0.95rem; }
.contact-detail a { color: var(--gray-light); }
.contact-detail a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2.5rem;
}
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.contact-form-wrap .business-name { color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--gray-light); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--dark); border: 1px solid var(--dark-border);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Consent Checkboxes */
.consent-section { margin: 1.5rem 0; padding: 1.2rem; background: rgba(212,175,55,0.04); border: 1px solid var(--dark-border); border-radius: var(--radius); }
.consent-section h4 { font-size: 0.9rem; color: var(--gold); margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }

.consent-group { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 1rem; }
.consent-group:last-child { margin-bottom: 0; }
.consent-group input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px;
  accent-color: var(--gold); cursor: pointer;
}
.consent-group label { font-size: 0.8rem; color: var(--gray); line-height: 1.5; cursor: pointer; }
.consent-group label a { color: var(--gold); text-decoration: underline; }

.form-legal { font-size: 0.78rem; color: var(--gray); margin: 1rem 0 1.5rem; line-height: 1.6; }
.form-legal a { color: var(--gold); text-decoration: underline; }

.form-submit { width: 100%; }

/* Thank you message */
.thank-you-msg {
  display: none; text-align: center; padding: 3rem 1.5rem;
}
.thank-you-msg.show { display: block; }
.thank-you-msg h2 { color: var(--gold); margin-bottom: 1rem; }
.thank-you-msg p { color: var(--gray-light); }

/* ---------- About CTA ---------- */
.about-cta { position: relative; overflow: hidden; }
.about-cta-bg {
  position: absolute; inset: 0;
  background: url('../images/stock-team.jpeg') center/cover no-repeat;
  opacity: 0.12;
}
.about-cta-content {
  position: relative; z-index: 2; text-align: center;
}
.about-cta-content h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.about-cta-content h2 span { color: var(--gold); }
.about-cta-content p {
  color: var(--gray-light); max-width: 560px;
  margin: 0 auto 2rem; font-size: 1.05rem;
}

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin: 2.5rem 0 0.8rem; color: var(--gold); }
.legal-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.6rem; }
.legal-content p { color: var(--gray-light); margin-bottom: 1rem; }
.legal-content ul { color: var(--gray-light); margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content strong { color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark); border-top: 1px solid var(--dark-border);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }

.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 320px; }

.footer-links h4,
.footer-contact h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-contact p { color: var(--gray); font-size: 0.9rem; margin-bottom: 0.3rem; }
.footer-contact a { color: var(--gray); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.5rem; text-align: center;
  color: var(--gray); font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-image { flex: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { flex-direction: column; }
  .about-intro-img { flex: none; width: 100%; max-width: 500px; margin: 0 auto; }
  .about-profile { flex-direction: column; align-items: center; text-align: center; }
  .about-profile-img { flex: none; width: 240px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
}

@media (max-width: 768px) {
  /* Nav sidebar */
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; justify-content: center;
    background: var(--dark); border-left: 1px solid var(--dark-border);
    transition: right var(--transition); gap: 1.5rem;
    padding: 2rem;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }

  /* Nav links — larger tap targets */
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.6rem 0;
    display: block;
  }

  /* Hero */
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 2rem; }
  .hero-content { padding: 2rem 0; gap: 2rem; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 1rem; }
  .hero-image img { width: 200px; }
  .hero-text .tag { font-size: 0.75rem; padding: 0.3rem 0.8rem; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.95rem; }
  .page-hero { padding: 7rem 0 2.5rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p { font-size: 1rem; }

  /* About page */
  .about-profile-text h2 { font-size: 1.5rem; }
  .about-profile-text p { font-size: 0.95rem; }

  /* Buttons — minimum 44px touch target */
  .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Contact form */
  .contact-info h2 { font-size: 1.5rem; }
  .contact-form-wrap h2 { font-size: 1.3rem; }
  .consent-group label { font-size: 0.85rem; line-height: 1.6; }
  .consent-group input[type="checkbox"] { width: 22px; height: 22px; margin-top: 2px; }
  .form-legal { font-size: 0.82rem; line-height: 1.7; }
  .form-group input,
  .form-group textarea { font-size: 16px; padding: 0.85rem 1rem; }

  /* Contact details — bigger tap targets */
  .contact-detail { padding: 0.5rem 0; }
  .contact-detail a { font-size: 1rem; padding: 0.25rem 0; display: inline-block; min-height: 44px; line-height: 2.2; }

  /* CTA banner */
  .cta-banner { padding: 3rem 0; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner p { font-size: 0.95rem; margin-bottom: 1.5rem; }

  /* Footer — better tap spacing */
  .footer-links li { margin-bottom: 0.8rem; }
  .footer-links a { font-size: 1rem; padding: 0.3rem 0; display: inline-block; min-height: 44px; line-height: 2.5; }
  .footer-contact p { margin-bottom: 0.5rem; }
  .footer-contact a { font-size: 1rem; padding: 0.25rem 0; display: inline-block; }

  /* FAQ */
  .faq-question { padding: 1rem 1.2rem; font-size: 0.95rem; min-height: 44px; }
  .faq-answer { padding: 0 1.2rem 1rem; font-size: 0.95rem; }

  /* Service cards */
  .service-card { padding: 1.5rem 1.2rem; }
  .service-card p { font-size: 0.9rem; }

  /* About CTA */
  .about-cta-content h2 { font-size: 1.6rem; }
  .about-cta-content p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.7rem; }
  .hero-text p { font-size: 0.92rem; }
  .hero-image img { width: 180px; }
  .section-header h2 { font-size: 1.5rem; }
  .contact-form-wrap { padding: 1.25rem; }
  .consent-section { padding: 1rem; }
  .consent-section h4 { font-size: 0.82rem; }
  .btn { width: 100%; text-align: center; }
  .about-intro-text h2 { font-size: 1.5rem; }
  .cta-banner h2 { font-size: 1.4rem; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Partner and value cards — tighter on small screens */
  .partner-card { padding: 1.5rem; }
  .value-card { padding: 1.5rem; }
}

/* ---------- Product Page ---------- */
.product-hero {
  padding: 10rem 0 4rem;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}
.product-hero .container {
  display: flex; align-items: center; gap: 4rem;
}
.product-hero-text { flex: 1; }
.product-hero-text .tag {
  display: inline-block;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 1rem;
  border: 1px solid var(--gold); padding: 0.35rem 1rem; border-radius: 30px;
}
.product-hero-text h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.product-hero-text h1 span { color: var(--gold); }
.product-hero-text .hero-sub { color: var(--gray-light); font-size: 1.15rem; margin-bottom: 2rem; max-width: 560px; }

.product-hero-terminal {
  flex: 0 0 440px;
  background: #1e1e1e; border: 1px solid var(--dark-border);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #2d2d2d;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-bar span {
  margin-left: auto; font-size: 0.75rem; color: #888;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.terminal-body {
  padding: 1.2rem 1.4rem;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.82rem; line-height: 1.8; color: #e0e0e0;
}
.terminal-body .prompt { color: var(--gold); }
.terminal-body .comment { color: #6a9955; }
.terminal-body .output { color: #888; }

/* Tool count badge */
.tool-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 30px; padding: 0.4rem 1rem;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  color: var(--gold);
}
.tool-badge-num {
  background: var(--gold); color: var(--black);
  border-radius: 50%; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
}

/* Feature grid (product page) */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.feature-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,175,55,0.08); }
.feature-card .feature-icon {
  width: 48px; height: 48px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(212,175,55,0.1); color: var(--gold);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card .tool-count { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--gray); }

/* Spotlight section */
.spotlight {
  display: flex; align-items: center; gap: 4rem;
}
.spotlight-text { flex: 1; }
.spotlight-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.spotlight-text h2 span { color: var(--gold); }
.spotlight-text p { color: var(--gray-light); margin-bottom: 1rem; }
.spotlight-visual { flex: 0 0 420px; }

.spotlight-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.spotlight-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.6rem 0; color: var(--gray-light); font-size: 0.95rem;
}
.spotlight-list .check { color: var(--gold); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; }

/* Pricing section */
.pricing-cards { display: flex; gap: 2rem; justify-content: center; max-width: 800px; margin: 0 auto; }
.pricing-card {
  flex: 1; max-width: 380px;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  text-align: center; transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.12);
}
.pricing-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem; border-radius: 30px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--white); }
.pricing-card .price {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
  color: var(--white); margin: 1rem 0 0.3rem;
}
.pricing-card .price-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 0.5rem; }
.pricing-card .price-note { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.pricing-card .price-original {
  color: var(--gray); font-size: 1.1rem; text-decoration: line-through; margin-bottom: 0.3rem;
}
.pricing-card ul {
  list-style: none; text-align: left; margin: 1.5rem 0;
  padding: 1.5rem 0; border-top: 1px solid var(--dark-border);
}
.pricing-card li {
  padding: 0.4rem 0; color: var(--gray-light); font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.pricing-card li::before {
  content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }

/* How it works steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.step-card { text-align: center; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid var(--gold);
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
  color: var(--gold);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--gray); }

/* Setup guide styles */
.guide-step {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem;
  margin-bottom: 2rem;
}
.guide-step h3 { font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.guide-step h3 .step-badge {
  background: var(--gold); color: var(--black);
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 800;
  flex-shrink: 0;
}
.guide-step p { color: var(--gray-light); margin-bottom: 1rem; font-size: 0.95rem; }
.guide-step .click-path {
  background: var(--dark); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 0.8rem 1.2rem;
  font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.85rem;
  color: var(--gold); margin-bottom: 1rem;
}
.guide-step .click-path span { color: var(--gray); }
.guide-step .warning {
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: 0.88rem; color: var(--gold);
}
.guide-step .screenshot-placeholder {
  background: var(--dark); border: 2px dashed var(--dark-border);
  border-radius: var(--radius); padding: 3rem 2rem;
  text-align: center; color: var(--gray); font-size: 0.9rem;
  margin: 1rem 0;
}
.guide-step code {
  background: var(--dark); padding: 0.2rem 0.5rem;
  border-radius: 4px; font-size: 0.85rem; color: var(--gold);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.guide-step pre {
  background: var(--dark); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.82rem;
  color: #e0e0e0; overflow-x: auto; margin: 1rem 0;
}

/* Product page responsive */
@media (max-width: 992px) {
  .product-hero .container { flex-direction: column; text-align: center; }
  .product-hero-text .hero-sub { margin-left: auto; margin-right: auto; }
  .product-hero-terminal { flex: none; width: 100%; max-width: 500px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { flex-direction: column; }
  .spotlight-visual { flex: none; width: 100%; max-width: 500px; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 400px; width: 100%; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 768px) {
  .product-hero { padding: 7rem 0 2.5rem; }
  .product-hero-text h1 { font-size: 2rem; }
  .product-hero-text .hero-sub { font-size: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .terminal-body { font-size: 0.75rem; }
}
@media (max-width: 480px) {
  .product-hero-text h1 { font-size: 1.7rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card .price { font-size: 2.4rem; }
}

/* ---------- Showcase Section ---------- */
.showcase-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); margin-bottom: 2rem;
  overflow: hidden; transition: border-color var(--transition);
}
.showcase-card:hover { border-color: var(--gold); }

.showcase-header {
  padding: 1.2rem 2rem;
  background: rgba(212,175,55,0.06);
  border-bottom: 1px solid var(--dark-border);
}
.showcase-time {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.time-old {
  color: var(--gray); font-size: 0.9rem;
  text-decoration: line-through; text-decoration-color: rgba(255,100,100,0.5);
}
.time-arrow { color: var(--gold); font-size: 1.2rem; font-weight: 700; }
.time-new {
  color: var(--gold); font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 700;
}

.showcase-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.showcase-prompt, .showcase-behind {
  padding: 1.5rem 2rem;
}
.showcase-prompt {
  border-right: 1px solid var(--dark-border);
}
.showcase-label {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 0.8rem;
}
.showcase-prompt p {
  color: var(--white); font-size: 1.05rem; font-style: italic;
  line-height: 1.6; margin: 0;
}
.showcase-behind ul {
  list-style: none; padding: 0; margin: 0;
}
.showcase-behind li {
  padding: 0.3rem 0; color: var(--gray-light); font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.showcase-behind li::before {
  content: '\2192'; color: var(--gold); flex-shrink: 0; font-weight: 700;
}

.showcase-why {
  padding: 1rem 2rem;
  background: rgba(212,175,55,0.04);
  border-top: 1px solid var(--dark-border);
  color: var(--gray); font-size: 0.88rem; font-style: italic;
}

/* ---------- Impossible Grid ---------- */
.impossible-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.impossible-item {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: all var(--transition);
}
.impossible-item:hover {
  border-color: var(--gold); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.08);
}
.impossible-icon {
  width: 44px; height: 44px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(212,175,55,0.1); color: var(--gold);
}
.impossible-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.impossible-item p { font-size: 0.88rem; color: var(--gray); }

/* ---------- Agency Grid ---------- */
.agency-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
}
.agency-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  transition: all var(--transition);
}
.agency-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.08);
}
.agency-card h3 {
  font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--gold);
}
.agency-card p { font-size: 0.9rem; color: var(--gray); }

/* ---------- Credibility Stats ---------- */
.credibility-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.credibility-item {
  padding: 2rem 1rem;
}
.credibility-num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
  color: var(--gold); margin-bottom: 0.5rem; line-height: 1;
}
.credibility-label {
  color: var(--gray); font-size: 0.9rem; line-height: 1.5;
}

/* ---------- Pricing Comparison ---------- */
.pricing-comparison {
  max-width: 500px; margin: 2.5rem auto 0;
}
.comparison-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.comparison-item:last-child { border-bottom: none; }
.comparison-label { color: var(--gray); font-size: 0.9rem; }
.comparison-value {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  color: var(--gray-light);
}
.comparison-value.highlight { color: var(--gold); }

/* ---------- New Section Responsive ---------- */
@media (max-width: 992px) {
  .showcase-content { grid-template-columns: 1fr; }
  .showcase-prompt { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .agency-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .impossible-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .showcase-header { padding: 1rem 1.2rem; }
  .showcase-prompt, .showcase-behind { padding: 1.2rem; }
  .showcase-why { padding: 0.8rem 1.2rem; }
  .showcase-time { font-size: 0.85rem; }
  .showcase-prompt p { font-size: 0.95rem; }
  .agency-grid { grid-template-columns: 1fr; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .credibility-num { font-size: 2.4rem; }
  .impossible-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .credibility-grid { grid-template-columns: 1fr; }
  .showcase-time { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .time-arrow { display: none; }
  .comparison-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}

/* Safe area for notched phones (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .nav-links.open {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Nav overlay for mobile */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 999;
}
.nav-overlay.show { display: block; }

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: var(--dark-card);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--gold);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] .faq-question::after {
  content: '−';
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* ---------- Product Page: Problem & Agency Grid ---------- */
.problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}

/* ---------- Setup Guide: Prerequisites Grid ---------- */
.prereq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.prereq-item {
  text-align: center;
  padding: 1rem;
  background: var(--dark);
  border-radius: var(--radius);
}
.prereq-num {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.prereq-label {
  font-size: 0.85rem;
  color: var(--gray-light);
}
.prereq-note {
  font-size: 0.75rem;
  color: var(--gray);
}
.prereq-footnote {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--gray);
}

/* ---------- Mobile: Product + Setup Guide ---------- */
@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .prereq-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-actions .tool-badge { text-align: center; }
}
