:root {
  --accent: #1B4332;
  --accent-light: #F0F4F1;
  --text: #111;
  --muted: #777;
  --border: #E5E5E5;
  --max: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: #fff; }

/* NAV */
nav { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: #fff; z-index: 100; }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; height: 64px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; text-decoration: none; color: var(--text); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; }
.nav-cta { background: var(--accent); color: #fff; border: none; padding: 9px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* WRAPPER */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* HERO */
.hero { padding: 80px 40px; text-align: center; }
.hero-inner { max-width: 640px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); margin-bottom: 22px; border: 1px solid var(--border); padding: 5px 14px; border-radius: 20px; }
.badge-dot { width: 6px; height: 6px; background: #4CAF50; border-radius: 50%; }
.hero h1 { font-size: 52px; font-weight: 700; line-height: 1.08; letter-spacing: -2px; margin-bottom: 14px; }
.hero p { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }

.check-box { border: 1px solid var(--border); border-radius: 10px; padding: 5px 5px 5px 18px; display: inline-flex; align-items: center; gap: 8px; max-width: 560px; width: 100%; }
.check-box select { flex: 1.2; border: none; outline: none; font-size: 14px; color: var(--text); background: transparent; font-family: inherit; cursor: pointer; padding: 8px 0; }
.check-sep { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.check-box input[type="text"] { flex: 0.7; border: none; outline: none; font-size: 14px; color: var(--text); font-family: inherit; padding: 8px 10px; background: transparent; }
.check-box input::placeholder { color: #bbb; }
.check-btn { background: var(--accent); color: #fff; border: none; padding: 10px 20px; border-radius: 7px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; }

.result-bubble { display: none; margin: 14px auto 0; padding: 14px 20px; border-radius: 8px; font-size: 14px; max-width: 560px; }
.result-bubble.success { background: #F0FAF4; border: 1px solid #A8D5B8; color: var(--accent); }
.result-bubble.error { background: #FDF2F2; border: 1px solid #F5C0C0; color: #7B1D1D; }
.rb-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.rb-text { font-weight: 600; font-size: 15px; }
.rb-sub { font-size: 13px; opacity: 0.75; margin-top: 3px; }
.book-now-btn { background: var(--accent); color: #fff; border: none; padding: 9px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; }

.trust-row { display: flex; justify-content: center; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.trust-item { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); }

/* SECTION */
.section { padding: 64px 40px; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: 30px; font-weight: 700; letter-spacing: -0.7px; margin-bottom: 6px; }
.section-head p { font-size: 14px; color: var(--muted); }

/* FILTER */
.filter-bar { display: flex; justify-content: center; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-btn { padding: 7px 16px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; font-weight: 500; cursor: pointer; background: #fff; color: var(--muted); font-family: inherit; transition: all 0.15s; }
.filter-btn.active { background: var(--text); color: #fff; border-color: var(--text); }
.filter-btn:hover:not(.active) { border-color: #999; color: var(--text); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.service-card { background: #fff; padding: 32px 28px; transition: background 0.15s; display: flex; flex-direction: column; }
.service-card:hover { background: var(--accent-light); }
.service-card.hidden { display: none; }
.svc-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
.svc-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px; }
.stag { font-size: 11px; color: var(--muted); border: 1px solid var(--border); padding: 3px 8px; border-radius: 3px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; margin-top: auto; }

/* HOW */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.step { background: #fff; padding: 32px 28px; }
.step-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step-label { font-size: 11px; color: #bbb; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 8px; text-transform: uppercase; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* STATS */
.stats-row { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); }
.stat { padding: 48px 40px; border-right: 1px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 44px; font-weight: 700; letter-spacing: -2px; line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* FORM */
.form-section { background: var(--accent-light); padding: 64px 40px; }
.form-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-left h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.6px; margin-bottom: 10px; }
.form-left p { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-icon-wrap { width: 26px; height: 26px; background: #fff; border: 1px solid #A8D5B8; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.why-icon-wrap svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.why-text { font-size: 13px; color: #444; line-height: 1.55; padding-top: 4px; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
.form-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.fsub { font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fg { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.fg label { font-size: 11px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.05em; }
.fg input, .fg select, .fg textarea { padding: 9px 12px; border: 1px solid var(--border); border-radius: 5px; font-size: 13px; color: var(--text); outline: none; font-family: inherit; background: #fff; transition: border-color 0.15s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); }
.fg textarea { resize: none; height: 80px; }
.fg input.prefilled, .fg select.prefilled { background: #F0F4F1; border-color: #A8D5B8; color: var(--accent); font-weight: 500; }
.submit-btn { width: 100%; background: var(--accent); color: #fff; border: none; padding: 12px; border-radius: 5px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; margin-top: 4px; }
.fnote { text-align: center; font-size: 11px; color: #bbb; margin-top: 10px; }
.success-msg { display: none; padding: 18px; border: 1px solid #A8D5B8; border-radius: 6px; background: #F0FAF4; text-align: center; color: var(--accent); font-weight: 600; font-size: 14px; margin-top: 12px; }

/* PAGE HEADER (inner pages) */
.page-header { padding: 64px 40px 56px; text-align: center; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 40px; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 10px; }
.page-header p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* FOOTER */
footer { border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 28px 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-size: 15px; font-weight: 700; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--muted); }

/* COOKIE */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); z-index: 999; box-shadow: 0 -4px 24px rgba(0,0,0,0.06); }
.cookie-inner { max-width: var(--max); margin: 0 auto; padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-text { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-decline { padding: 7px 16px; border: 1px solid var(--border); border-radius: 5px; font-size: 13px; font-weight: 500; cursor: pointer; background: #fff; font-family: inherit; color: var(--muted); }
.cookie-accept { padding: 7px 16px; background: var(--accent); color: #fff; border: none; border-radius: 5px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }

@media (max-width: 768px) {
  .nav-inner, .wrap, .section, .form-section, .footer-inner, .cookie-inner { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 56px 20px; }
  .hero h1 { font-size: 36px; }
  .nav-links { display: none; }
  .check-box { flex-direction: column; padding: 12px; }
  .check-sep { width: 100%; height: 1px; }
  .services-grid, .how-grid, .form-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .frow { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .page-header { padding: 48px 20px 40px; }
  .page-header h1 { font-size: 30px; }
}
