:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #ffffff;
  --dark: #0f172a;
  --accent: #f59e0b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(135deg, #020617, #1e293b);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 0;
}
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.logo-box {
  width: 52px; height: 52px; border-radius: 18px; background: white; color: #111827;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.logo-box svg { width: 28px; height: 28px; }
.brand-title { font-weight: 800; font-size: 1.1rem; }
.brand-subtitle { color: #cbd5e1; font-size: .92rem; }
.contact-inline { display: flex; flex-wrap: wrap; gap: 16px; color: #e2e8f0; font-size: .95rem; }
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #334155 55%, #475569);
  color: white;
  padding: 72px 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 28%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 32px;
  align-items: center;
}
.pill {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255,255,255,.06);
  font-size: .92rem;
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.02; margin: 0; }
.hero h1 span { color: #fcd34d; }
.hero-text { color: #dbeafe; max-width: 760px; font-size: 1.1rem; margin: 20px 0 0; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 22px; border-radius: 18px; font-weight: 700;
  transition: .2s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #111827; }
.btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,.25); }
.btn.full { width: 100%; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat-card, .card, .panel, .hero-panel, .contact-form, .faq-list details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.stat-card { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); padding: 18px; }
.stat-card strong { display: block; font-size: 1.3rem; }
.stat-card span { display: block; color: #dbeafe; font-size: .92rem; margin-top: 4px; }
.hero-panel { padding: 26px; }
.hero-panel h3 { color: var(--text); margin-top: 0; font-size: 1.6rem; }
.check-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; color: #334155; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #d97706; font-weight: 800; }
.lang-switcher-wrap { border-bottom: 1px solid var(--line); background: white; }
.lang-switcher { padding: 16px 0; display: flex; gap: 10px; flex-wrap: wrap; }
.lang-btn {
  border: 1px solid var(--line); background: white; color: #334155; border-radius: 999px;
  padding: 10px 16px; font: inherit; font-weight: 600; cursor: pointer;
}
.lang-btn.active { background: #0f172a; color: white; border-color: #0f172a; }
.section { padding: 72px 0; }
.lang-panel { display: none; }
.lang-panel.active { display: block; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; color: #64748b; font-size: .82rem; font-weight: 700; }
.eyebrow.light { color: #cbd5e1; }
.section h2 { margin: 10px 0 0; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; }
.section-head p, .panel p, .contact-copy { color: var(--muted); font-size: 1.05rem; }
.cards { display: grid; gap: 20px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card { padding: 26px; }
.card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 24px; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(15,23,42,.08);
}
.process-section { background: white; }
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.steps { display: grid; gap: 16px; margin-top: 24px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step span {
  width: 44px; height: 44px; border-radius: 16px; background: #0f172a; color: white; display: grid; place-items: center; font-weight: 800; flex: 0 0 auto;
}
.step h3 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); }
.dark-panel {
  background: #0f172a; color: white; padding: 28px; border-color: #1e293b;
}
.dark-panel p { color: #cbd5e1; }
.review-card .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 10px; }
.reviewer-name { margin-top: 14px; font-weight: 600; color: #334155; font-size: 0.95rem; }
/* Comment Form */
.comment-form-wrapper {
  max-width: 600px;
  margin: 48px auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.comment-form-wrapper h3 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 1.4rem;
}
.comment-form { display: grid; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.form-group label .required { color: #dc2626; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.error-msg {
  color: #dc2626;
  font-size: 0.85rem;
  min-height: 20px;
}
.star-rating {
  display: flex;
  gap: 8px;
}
.star-rating .star {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
}
.star-rating .star:hover,
.star-rating .star.hover {
  color: #fbbf24;
  transform: scale(1.1);
}
.star-rating .star.selected {
  color: #f59e0b;
}
.star-rating.error .star {
  animation: shake 0.3s ease;
}
.success-message {
  text-align: center;
  padding: 24px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 16px;
}
.success-message h4 {
  margin: 0 0 8px;
  color: #166534;
  font-size: 1.25rem;
}
.success-message p {
  margin: 0;
  color: var(--muted);
}

.faq-section { background: var(--bg); }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }
.contact-section { background: #fff7ed; border-top: 1px solid #fed7aa; border-bottom: 1px solid #fed7aa; }
.contact-center { text-align: center; }
.contact-center h2 { margin-bottom: 32px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.contact-card {
  background: white; border: 1px solid #fdba74; border-radius: 24px; padding: 28px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06); text-align: left;
}
.contact-card h3 { margin: 0 0 16px; font-size: 1.25rem; color: #9a3412; }
.contact-method { margin: 0 0 12px; font-size: 1.05rem; color: var(--text); }
.contact-method:last-child { margin-bottom: 0; }
.contact-method a { color: #0f172a; text-decoration: underline; text-underline-offset: 3px; }
.contact-method a:hover { color: #d97706; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
@media (max-width: 720px) {
  .contact-cards { grid-template-columns: 1fr; }
}
.contact-badges span { background: white; border: 1px solid #fdba74; color: #9a3412; border-radius: 999px; padding: 10px 14px; font-weight: 600; }
.footer { padding: 24px 0 42px; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: .95rem; }
.floating-actions {
  position: fixed; right: 16px; bottom: 16px; z-index: 30; display: grid; gap: 10px;
}
.float-btn {
  background: #0f172a; color: white; border-radius: 999px; padding: 12px 16px; box-shadow: 0 10px 24px rgba(15,23,42,.2); font-weight: 700;
}
@media (max-width: 980px) {
  .hero-grid, .split-grid, .three-col, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-inline { display: none; }
}
@media (max-width: 720px) {
  .hero, .section { padding: 56px 0; }
  .hero-grid, .split-grid, .three-col, .gallery-grid, .stats { grid-template-columns: 1fr; }
  .topbar-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
  .floating-actions { right: 12px; left: 12px; bottom: 12px; grid-template-columns: repeat(3, 1fr); }
  .float-btn { text-align: center; }
  .gallery-grid img { height: 220px; }
}
