/* ── BC CLOUD SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #4CAF50;
  --green-dark: #388E3C;
  --green-light: #81C784;
  --green-pale: #E8F5E9;
  --dark: #1a1a2e;
  --darker: #0f0f1a;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg: #f9fafb;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── TOP BAR ── */
.topbar {
  background: var(--darker);
  padding: 0.45rem 1.5rem;
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.topbar a { color: #9ca3af; font-size: 0.78rem; font-weight: 500; transition: color 0.15s; }
.topbar a:hover { color: white; }

/* ── NAV ── */
nav {
  background: white; border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.3rem; font-weight: 800; color: var(--text); }
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.85rem; letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; position: relative; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--text);
  border-radius: 6px; display: flex; align-items: center; gap: 0.25rem; transition: background 0.15s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { background: var(--bg); color: var(--green); }
.nav-links > li > a.active { color: var(--green); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 0.5rem; min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 200;
  /* Invisible top padding bridges the gap between trigger and menu */
  padding-top: 0.75rem;
  margin-top: 0;
}
/* Invisible bridge so mouse can travel from link into menu without losing hover */
.nav-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; width: 100%; height: 0.75rem;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.75rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  transition: background 0.1s;
}
.dropdown-menu a:hover { background: var(--bg); color: var(--green); }
.dropdown-menu .dm-icon { font-size: 1rem; }
.dropdown-divider { border: none; border-top: 1px solid var(--border); margin: 0.4rem 0; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-login { font-size: 0.875rem; font-weight: 600; color: var(--muted); padding: 0.4rem 0.75rem; border-radius: 6px; transition: color 0.15s; }
.nav-login:hover { color: var(--text); }
.nav-cta { background: var(--green); color: white; font-size: 0.875rem; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 8px; transition: background 0.15s, transform 0.1s; }
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Mobile nav */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--text); }
.mobile-nav { display: none; background: white; border-top: 1px solid var(--border); padding: 1rem 2rem; flex-direction: column; gap: 0.5rem; }
.mobile-nav a { display: block; padding: 0.6rem 0; font-size: 0.9rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, #0f1923 0%, #1a2a3a 50%, #0d1f2d 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(76,175,80,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(76,175,80,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header::after {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(76,175,80,0.15) 0%, transparent 70%);
}
.page-header-inner { position: relative; z-index: 1; }
.page-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-light); margin-bottom: 0.75rem; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.75rem; }
.page-header p { color: #94a3b8; font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ── COMMON SECTION ── */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-sm { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--darker); padding: 5rem 2rem; }
.section-dark-inner { max-width: 1200px; margin: 0 auto; }
.section-grey { background: var(--bg); padding: 5rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-grey-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.left { text-align: left; }
.section-eyebrow {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 0.75rem;
}
.section-eyebrow.light { background: rgba(76,175,80,0.15); color: var(--green-light); }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; }
.section-header h2.white { color: white; }
.section-header p { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; }
.section-header p.light { color: #9ca3af; }

/* ── PRICING ── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.plan-card {
  background: white; border: 2px solid var(--border); border-radius: 14px; padding: 2rem 1.75rem;
  position: relative; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.plan-card:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(76,175,80,0.12); transform: translateY(-2px); }
.plan-card.featured { border-color: var(--green); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 0.2rem 0.75rem; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.5rem; }
.plan-price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.2rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-specs { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.plan-specs li { font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.plan-specs li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-specs li.no::before { content: '✗'; color: #e5e7eb; }
.plan-specs li.no { color: var(--muted); }
.plan-btn {
  display: block; text-align: center; padding: 0.7rem 1rem; border-radius: 8px;
  font-weight: 700; font-size: 0.875rem; border: 2px solid var(--green);
  color: var(--green); transition: all 0.15s; margin-top: auto;
}
.plan-btn:hover, .plan-card.featured .plan-btn { background: var(--green); color: white; }

/* ── FEATURE GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.feature-card {
  background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--green); transform: translateY(-2px); }
.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.spec-table th { background: var(--bg); padding: 0.85rem 1rem; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); border-bottom: 1px solid var(--border); }
.spec-table td { padding: 0.85rem 1rem; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--bg); }
.spec-table .check { color: var(--green); font-weight: 700; }
.spec-table .cross { color: #d1d5db; }

/* ── STATS BAR ── */
.stats-bar { background: var(--green); padding: 2.5rem 2rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-val { font-size: 2rem; font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }

/* ── HONESTY BOX ── */
.honesty-box {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px;
  padding: 1.75rem 2rem; display: flex; align-items: flex-start; gap: 1.25rem;
}
.honesty-box h3 { font-size: 1rem; font-weight: 700; color: #92400e; margin-bottom: 0.4rem; }
.honesty-box p { font-size: 0.875rem; color: #78350f; line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.review-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.875rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--muted); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: white; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem; font-size: 0.9rem; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q .arrow { font-size: 0.75rem; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--muted); line-height: 1.7; background: white; }
.faq-a.open { display: block; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 0.7rem 1.5rem; border-radius: 8px; font-weight: 700; font-size: 0.875rem; transition: all 0.15s; cursor: pointer; border: none; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: white; }
.btn-dark { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.15); }
.btn-dark:hover { background: rgba(255,255,255,0.18); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 4rem 2rem; text-align: center; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 2rem; }
.cta-banner .btn-white { background: white; color: var(--green-dark); font-weight: 700; padding: 0.875rem 2rem; border-radius: 8px; display: inline-block; transition: transform 0.15s; }
.cta-banner .btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
.footer-main { background: var(--darker); padding: 4rem 2rem 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .nav-logo { color: white; margin-bottom: 0.75rem; }
.footer-brand .logo-mark { background: var(--green); }
.footer-brand p { font-size: 0.8rem; color: #6b7280; line-height: 1.7; max-width: 280px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 0.3rem 0.6rem; font-size: 0.7rem; color: #9ca3af; font-weight: 600; }
footer h4 { color: #e5e7eb; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul li a { color: #6b7280; font-size: 0.85rem; transition: color 0.15s; }
footer ul li a:hover { color: white; }
.footer-bottom { background: var(--darker); border-top: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 2rem; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; color: #6b7280; }
.footer-bottom-inner a { color: #6b7280; }
.footer-bottom-inner a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .topbar { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .plans-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── INFO CARDS ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.info-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 0.75rem 2rem; background: var(--bg); border-bottom: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.65rem 0.9rem; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.875rem; font-family: 'Inter', sans-serif; color: var(--text);
  transition: border-color 0.15s; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ── STATUS DOTS ── */
.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.status-dot.green { background: var(--green); }
.status-dot.amber { background: #f59e0b; }
.status-dot.red { background: #ef4444; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.status-dot.pulse { animation: blink 2s infinite; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.gap-sm { gap: 2rem; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }
