
:root {
  --brand: #00bb53;
  --brand-600: #00994a;
  --bg: #0b0c0e;
  --surface: #111317;
  --surface-2: #171a1f;
  --text: #e6e7e9;
  --muted: #a9adb3;
  --border: #252a31;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background:var(--bg); color:var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
a { color: var(--text); text-decoration: none; }
img { max-width: 100%; height: auto; display:block; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.header { position: sticky; top:0; z-index: 50; background: rgba(17,19,23,0.9); backdrop-filter: blur(8px); border-bottom:1px solid var(--border); }
.nav { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; gap: 12px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand img.logo { width: 180px; height:auto; }
.brand .site-title { font-weight: 700; letter-spacing:0.3px; }
.nav-links { display:flex; gap:18px; align-items:center; }
.nav-links a { opacity:0.9; }
.nav-links a:hover { color: var(--brand); }
.mobile-toggle { display:none; background:none; border:1px solid var(--border); color:var(--text); padding:8px 10px; border-radius:10px; }
.btn { display:inline-block; padding:12px 18px; border-radius:12px; border:1px solid var(--border); background:var(--surface-2); color:var(--text); font-weight:600; }
.btn:hover { border-color: var(--brand); }
.btn.brand { background: var(--brand); border-color: var(--brand); color:#041307; }
.btn.brand:hover { background: var(--brand-600); border-color: var(--brand-600); }
.btn.ghost { background: transparent; }
.hero { position:relative; padding: 84px 0 60px; background: linear-gradient(180deg, rgba(0,187,83,0.06), transparent 55%); overflow:hidden; }
.hero-grid { display:grid; grid-template-columns: 1.1fr 0.9fr; gap:36px; align-items:center; }
.kicker { color: var(--brand); font-weight:700; letter-spacing:1.2px; text-transform:uppercase; font-size:12px; }
h1 { font-size: clamp(36px, 4.4vw, 56px); line-height:1.05; margin:10px 0 14px; }
.lead { color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); }
.hero-art { position:relative; }
.hero-art .cam { position:absolute; right:-6%; top:-8%; width:min(52%,320px); opacity:0.75; filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)); }
.section { padding: 56px 0; }
.section h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.card { background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:18px; }
.card .title { font-weight:700; margin:8px 0 6px; }
.meta { color: var(--muted); font-size:14px; }
.cta-banner { margin: 26px 0 0; background: linear-gradient(90deg, rgba(0,187,83,0.16), rgba(0,187,83,0.04)); border:1px solid var(--border); padding: 22px; border-radius: 16px; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.footer { margin-top: 56px; padding: 30px 0 40px; border-top:1px solid var(--border); background: #0e1013; }
.footer .cols { display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.small { font-size:13px; color:var(--muted); }
.badge { display:inline-block; padding:6px 10px; border-radius:999px; border:1px solid var(--border); background:var(--surface-2); font-size:12px; color:var(--muted); }
.gallery { display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.gallery figure { position:relative; overflow:hidden; border-radius:12px; border:1px solid var(--border); cursor:pointer; }
.gallery figcaption { position:absolute; left:0; bottom:0; right:0; padding:8px 10px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75)); font-size:14px; }
.filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 12px; }
.filter-btn { padding:8px 12px; border-radius:12px; border:1px solid var(--border); background:var(--surface-2); cursor:pointer; }
.filter-btn.active, .filter-btn:hover { border-color: var(--brand); }
.lightbox { position:fixed; inset:0; background: rgba(0,0,0,0.9); display:none; align-items:center; justify-content:center; z-index:100; }
.lightbox.open { display:flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius:12px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
.testimonials { display:grid; grid-template-columns: 1fr; gap:16px; }
.quote { background: var(--surface); border:1px solid var(--border); border-radius:16px; padding:18px; opacity:0; transform: translateY(4px); transition: all .4s ease; }
.quote.active { opacity:1; transform: translateY(0); }
.pricing-table { display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
.price-card .price { font-size: 28px; font-weight: 800; color: var(--brand); }
.kv { display:grid; grid-template-columns: 1fr 2fr; gap:10px; }
.kv .k { color: var(--muted); }
form .row { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
input, select, textarea { width:100%; padding:12px 12px; border-radius:12px; border:1px solid var(--border); background: var(--surface); color: var(--text); }
textarea { min-height: 140px; }
.success { text-align:center; padding:60px 0 80px; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr; }
  .brand img.logo { width: 150px; }
  .mobile-toggle { display:block; }
  .nav-links { display:none; flex-direction:column; background: var(--surface); border:1px solid var(--border); padding:12px; border-radius:12px; position:absolute; right:4%; top:64px; }
  .nav-links.open { display:flex; }
}
/* --- BLOG ADDITIONS --- */

/* Page Headers (Shorter than main Hero) */
.page-header { padding: 80px 0 40px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; }

/* Blog Grid Layout (Main + Sidebar) */
.blog-layout { display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; margin-top: 40px; }

/* Blog Cards (Index Page) */
.blog-card { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--surface); transition: transform 0.2s ease; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.blog-thumb { height: 240px; width: 100%; object-fit: cover; }
.blog-content { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { font-size: 13px; color: var(--brand); font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-size: 20px; font-weight: 700; margin: 0 0 10px 0; color: var(--text); }
.blog-excerpt { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* Article Typography (Readability) */
.article-body { font-size: 18px; line-height: 1.8; color: #d1d5db; }
.article-body p { margin-bottom: 24px; }
.article-body h2 { color: var(--text); margin: 40px 0 20px; font-size: 28px; }
.article-body h3 { color: var(--text); margin: 30px 0 16px; font-size: 22px; }
.article-body ul { margin-bottom: 24px; padding-left: 20px; color: var(--muted); }
.article-body li { margin-bottom: 10px; }
.article-body img { margin: 30px 0; border-radius: 8px; width: 100%; }
.article-body blockquote { border-left: 4px solid var(--brand); margin: 30px 0; padding-left: 20px; font-style: italic; color: var(--text); font-size: 20px; }

/* Sidebar */
.sidebar-widget { background: var(--surface-2); border: 1px solid var(--border); padding: 24px; border-radius: 16px; margin-bottom: 24px; }
.widget-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a { color: var(--muted); display: flex; justify-content: space-between; font-size: 14px; }
.category-list a:hover { color: var(--brand); }

/* Mobile Adjustments */
@media (max-width: 920px) {
  .blog-layout { grid-template-columns: 1fr; }
}