/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 860px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-simple { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.cb-left { flex: 1; min-width: 220px; }
.cb-title { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.cb-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.cb-text a { color: var(--accent); text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }

.cb-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.cb-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  white-space: nowrap;
  transition: all 0.2s;
}
.cb-btn-settings { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.cb-btn-settings:hover { background: rgba(255,255,255,0.14); color: white; }
.cb-btn-necessary { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.cb-btn-necessary:hover { background: rgba(255,255,255,0.14); color: white; }
.cb-btn-accept { background: var(--accent); color: white; }
.cb-btn-accept:hover { background: var(--accent-light); }

/* Settings view */
.cb-settings-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.cb-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cb-toggle-label { font-size: 0.85rem; font-weight: 600; color: white; margin-bottom: 3px; }
.cb-toggle-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.cb-toggle-disabled {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(196,151,58,0.4);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.cb-settings-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Toggle switch */
.cb-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cb-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.cb-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cb-switch input:checked + .cb-slider { background: var(--accent); }
.cb-switch input:checked + .cb-slider::before { transform: translateX(20px); }

@media (max-width: 600px) {
  #cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 14px 14px 0 0; }
  #cookie-simple { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #9C7A4C;
  --accent-light: #b08d5f;
  --dark: #0f0f1a;
  --dark-card: #2e2c1e;
  --dark-card-hover: #383620;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --border: #e8e8e8;
  --bg: #ffffff;
  --bg-light: #f9f9f7;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-height: 68px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.nav-logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover { color: white; }

.nav-links a .arrow {
  font-size: 0.65rem;
  opacity: 0.6;
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  font-weight: 600;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-light) !important; color: white !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 100px 40px 80px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 48px 40px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--dark);
  color: white;
}

.btn-primary:hover { background: #2a2a3a; }

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

.btn-outline:hover { border-color: var(--text); }

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover { background: var(--accent-light); }

/* ===== SECTION WRAPPER ===== */
.section {
  padding: 80px 40px;
}

.section-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-center h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-center p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(196, 151, 58, 0.08);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.service-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: var(--dark);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.mehr-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: gap 0.2s;
}

.mehr-link:hover { gap: 10px; }

.mehr-link .arrow-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ===== CTA CENTERED ===== */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== PROCESS STEPS ===== */
.process-section {
  background: var(--bg-light);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.step {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: background 0.2s;
}

.step:hover { background: var(--dark-card-hover); }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.step-duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section { background: var(--bg-light); }

.comparison-table-wrap {
  max-width: 860px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table thead tr {
  background: var(--dark);
}

.comparison-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.comparison-table th.col-after {
  color: white !important;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table td {
  padding: 18px 24px;
  vertical-align: top;
  line-height: 1.5;
  color: var(--text-muted);
}

.comparison-table td span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 3px;
}

.row-label {
  font-weight: 700;
  color: var(--text) !important;
  width: 22%;
}

.col-before {
  color: var(--text-muted);
  width: 34%;
}

.col-after {
  color: var(--text) !important;
  width: 34%;
}

.col-after strong {
  color: var(--accent);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .comparison-table th, .comparison-table td { padding: 14px 16px; }
  .row-label { width: auto; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.8rem;
  max-width: 220px;
  line-height: 1.6;
}

.footer-links h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: 960px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-light); }

.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.faq-left h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.faq-left p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.faq-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.faq-email:hover { color: var(--accent); }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-num {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-question span:nth-child(2) { flex: 1; }

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

.faq-answer {
  display: none;
  padding: 0 0 18px 28px;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

/* ===== CONTACT FORM ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: white;
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

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

/* Light form variant (contact section) */
.light-form .form-group label {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
}

.light-form .form-group input,
.light-form .form-group textarea,
.light-form .form-group select {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.light-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.light-form .form-group input::placeholder,
.light-form .form-group textarea::placeholder {
  color: #bbb;
}

.light-form .form-group select option[value=""] { color: #bbb; }

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--text);
  text-decoration: underline;
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--dark);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }

  .nav-hamburger { display: flex; }

  .hero { padding: 60px 24px 48px; }

  .stats { gap: 32px; padding: 40px 24px; }

  .section { padding: 60px 24px; }

  .services-grid { grid-template-columns: 1fr; }

  .step {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }

  .step-duration {
    grid-column: 2;
    text-align: left;
  }

  .benefits-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
