/* --- Variables --- */
:root {
  --bg: #060D0A;
  --surface: #0C1610;
  --surface-2: #112018;
  --green: #22c55e;
  --green-light: #4ade80;
  --green-dim: #14532d;
  --cream: #F5F0E8;
  --amber: #f59e0b;
  --text: #E8E2D9;
  --text-muted: #8A8499;
  --border: rgba(255,255,255,0.06);
}

/* --- Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', system-ui, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
a { text-decoration: none; color: inherit; }

/* --- Nav --- */
.site-nav { position: sticky; top: 0; background: rgba(6,13,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; height: 64px; display: flex; align-items: center; gap: 40px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--green-light); }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--green-light); }
.nav-cta { background: var(--green); color: #000; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--green-light); }

/* --- Hero --- */
.hero { position: relative; padding: 100px 40px 120px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(34,197,94,0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 15% 85%, rgba(245,158,11,0.05) 0%, transparent 60%); pointer-events: none; }
.hero-content { position: relative; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.hero-headline { font-size: clamp(36px, 4vw, 58px); color: var(--cream); margin-bottom: 20px; line-height: 1.1; }
.hero-lede { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary { background: var(--green); color: #000; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--green-light); }
.btn-secondary { font-size: 15px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.btn-secondary:hover { color: var(--green-light); }

/* --- Mockup --- */
.hero-mockup { display: flex; justify-content: center; align-items: center; }
.mockup-before-after { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; }
.mockup-pair { display: flex; align-items: center; gap: 16px; width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.mock-arrow { display: flex; justify-content: center; }
.mock-site { border-radius: 8px; overflow: hidden; width: 130px; flex-shrink: 0; }
.mock-old { border: 2px solid rgba(239,68,68,0.4); }
.mock-new { border: 2px solid rgba(34,197,94,0.4); box-shadow: 0 0 20px rgba(34,197,94,0.08); }
.mock-label { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 6px; }
.bad-label { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.good-label { background: rgba(34,197,94,0.15); color: var(--green-light); }
.mock-hdr-new { background: #14532d; padding: 6px 8px; display: flex; align-items: center; gap: 6px; }

/* --- Stats --- */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--green-light); line-height: 1; margin-bottom: 4px; }
.stat-desc { font-size: 13px; color: var(--text-muted); }
.stat-div { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* --- Sections --- */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.section-title { font-size: clamp(28px, 3vw, 44px); color: var(--cream); margin-bottom: 48px; }

/* --- Services --- */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.2s; }
.service-card:hover { border-color: rgba(34,197,94,0.3); }
.service-img-placeholder { font-size: 32px; margin-bottom: 16px; }
.service-name { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-price { font-size: 15px; font-weight: 600; color: var(--green-light); }

/* --- Gallery --- */
.gallery { padding: 100px 0; background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; }
.gi-1 { grid-column: span 2; }
.gallery-placeholder { background: var(--surface-2); border: 1px solid var(--border); height: 100%; min-height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.gi-1 .gallery-placeholder { min-height: 200px; }
.placeholder-icon { font-size: 32px; }
.placeholder-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* --- Testimonials --- */
.testimonials { padding: 100px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.review-stars { font-size: 18px; color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.review-platform { font-size: 14px; color: var(--text-muted); text-align: center; }

/* --- Quote Form --- */
.quote-section { padding: 100px 0; background: var(--surface); }
.quote-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.quote-body { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.quote-details { display: flex; flex-direction: column; gap: 10px; }
.qd-item { font-size: 14px; color: var(--text); font-weight: 500; }
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-size: 15px; font-family: 'DM Sans', sans-serif; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-full { width: 100%; text-align: center; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; }

/* --- CTA --- */
.cta-band { padding: 100px 40px; background: linear-gradient(135deg, #14532d 0%, #22c55e 100%); }
.cta-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.cta-headline { font-size: clamp(32px, 4vw, 52px); color: var(--cream); margin-bottom: 16px; }
.cta-body { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.35); color: white; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* --- Footer --- */
.site-footer { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: start; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green-light); display: block; margin-bottom: 4px; }
.footer-tag { font-size: 13px; color: var(--text-muted); }
.footer-info p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.footer-built { font-size: 12px; color: var(--text-muted); text-align: right; }
.footer-built strong { color: var(--green-light); }

/* --- Mobile --- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-1 { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quote-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-built { text-align: left; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 24px 80px; }
  .stats-bar { padding: 32px 24px; }
  .stats-inner { gap: 24px; }
  .stat-div { display: none; }
  .services, .gallery, .testimonials, .quote-section { padding: 60px 0; }
  .section-inner { padding: 0 24px; }
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-1 { grid-column: span 1; }
  .cta-band { padding: 60px 24px; }
  .site-footer { padding: 40px 24px; }
}