*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #fff94d;
  --accent-dark: #e6e045;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #1c1c1c;
  --muted: #5c5c5c;
  --border: #e0e0dc;
  --header-bg: #111111;
  --header-text: #f5f5f5;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --max-w: 1180px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: min(var(--max-w), 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--header-bg);
  color: var(--header-text);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.logo span { color: var(--header-text); font-weight: 400; }

.main-nav { display: flex; gap: 22px; flex-wrap: wrap; }

.main-nav a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active { opacity: 1; color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--header-text);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 16px;
  border-top: 1px solid #333;
  margin-top: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 8px 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.mobile-nav a:hover { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,249,77,0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover { background: var(--accent); color: #111; }

.btn-dark {
  background: #111;
  color: var(--accent);
}

.btn-dark:hover { background: #222; }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 620px;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #111;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero p {
  font-size: 1.08rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 72px 0; }

.section-header {
  margin-bottom: 44px;
  max-width: 640px;
}

.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-header p { color: var(--muted); }

.bg-white { background: var(--surface); }
.bg-dark { background: #111; color: #eee; }
.bg-dark .section-label { color: #999; }
.bg-dark .section-header p { color: #aaa; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img.tall { height: 220px; }

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body { padding: 22px; }

.card-body h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-body p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 14px;
}

.card-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num em {
  font-style: normal;
  color: var(--accent);
  background: #111;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 1.8rem;
}

.stat-label { font-size: 0.88rem; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

.step-item {
  padding: 24px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
  font-size: 0.9rem;
}

.step-item h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: var(--muted); }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-item {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.feature-item h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; color: var(--muted); }

/* Reviews */
.review-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }

.review-text {
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}

.review-author { font-weight: 700; font-size: 0.88rem; }
.review-role { font-size: 0.82rem; color: var(--muted); }

/* CTA */
.cta-band {
  background: #111;
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-band p { opacity: 0.8; margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Page hero */
.page-hero {
  background: #111;
  color: #fff;
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--accent);
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { opacity: 0.75; max-width: 560px; }

.breadcrumb {
  font-size: 0.82rem;
  opacity: 0.6;
  margin-bottom: 16px;
}

.breadcrumb a:hover { color: var(--accent); }

/* Content pages */
.content-section { padding: 56px 0 72px; }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin: 32px 0 12px; font-weight: 700; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.prose p { margin-bottom: 16px; color: #333; }
.prose ul { margin: 12px 0 16px 20px; list-style: disc; }
.prose li { margin-bottom: 6px; color: #444; }

.content-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
}

.content-img img { width: 100%; height: 100%; object-fit: cover; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 28px rgba(255,249,77,0.2);
  transform: scale(1.03);
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; margin: 16px 0; }
.pricing-card .price small { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pricing-card ul { text-align: left; margin: 20px 0; }
.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.pricing-card li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.data-table th { background: #111; color: var(--accent); font-weight: 600; }
.data-table tr:last-child td { border-bottom: none; }

/* Location cards */
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.location-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.location-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 6px; }
.location-card .tag {
  display: inline-block;
  background: #f0f0ec;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  margin-top: 12px;
}

/* Team */
.team-card { text-align: center; }

.team-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card .card-body h3 { font-size: 1.05rem; }
.team-role { color: var(--accent); background: #111; display: inline-block; padding: 2px 10px; border-radius: 4px; font-size: 0.78rem; font-weight: 600; margin-bottom: 10px; }

/* FAQ */
.faq-list { max-width: 780px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question:hover { background: #fafaf8; }

.faq-question .icon {
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer { display: block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.contact-info-block {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.contact-info-block h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.contact-info-block p { font-size: 1rem; font-weight: 600; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.93rem;
  background: var(--bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  padding: 14px;
  background: #eef9ee;
  border: 1px solid #b8ddb8;
  border-radius: 6px;
  color: #2a6b2a;
  font-size: 0.9rem;
  margin-top: 14px;
}

.form-success.show { display: block; }

.map-placeholder {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Blog */
.blog-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-card .card-body h3 { font-size: 1.05rem; }

.article-hero-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Legal */
.legal-content { max-width: 780px; padding: 48px 0 64px; }

.legal-content h1 { font-size: 1.7rem; margin-bottom: 24px; font-weight: 800; }

.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}

.legal-content p { margin-bottom: 12px; }

.legal-content ul {
  margin: 8px 0 14px 22px;
  list-style: disc;
}

.legal-content li { margin-bottom: 5px; }

.doc-id {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: #999;
}

/* Footer */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 56px 0 28px;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.75;
  padding: 4px 0;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent); opacity: 1; }

.hours-block {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 12px;
}

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Responsive */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .feature-grid, .pricing-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-img { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 48px 0; }
  .grid-2, .grid-3, .grid-4, .feature-grid, .pricing-grid, .stats-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .hero { min-height: 420px; }
}
