@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}

:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --surface-2: #f0ede7;
  --text: #1e2b2b;
  --text-muted: #4d5f5f;
  --accent: #c89d6b;
  --accent-dark: #a88652;
  --accent-2: #1a3a3a;
  --border: #d6cec0;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --fs-display: clamp(2.8rem, 7vw, 5.2rem);
  --fs-h1: clamp(2.4rem, 5vw, 3.8rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.4rem, 2.5vw, 1.8rem);
  --fs-body: 1.1rem;
  --fs-small: 0.9rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 16px 48px rgba(0,0,0,0.08);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--accent);
}
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.logo a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo-line1,
.logo-line2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--accent-2);
  letter-spacing: -0.02em;
}
.logo-line1 {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.logo-line2 {
  font-weight: 700;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.main-nav a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent-2);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle .bar {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}
.header-notice {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 2px 14px;
  border-radius: 30px;
  font-weight: 400;
}
.hero-section {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 70%);
  position: relative;
  overflow: hidden;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(70% 100% at 50% 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  margin-bottom: var(--space-sm);
}
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 1.1;
  color: var(--accent-2);
  margin-bottom: var(--space-sm);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: var(--space-md);
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--accent-2);
  color: var(--surface);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
}
.btn-outline:hover {
  background: var(--accent-2);
  color: var(--surface);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: var(--space-lg);
}
.stat-item .stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent-2);
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.floating-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--surface);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent-2);
  border: 1px solid var(--border);
}
.floating-badge i {
  color: var(--accent);
}
.section {
  padding: var(--space-xl) 0;
}
.bg-light {
  background: var(--surface-2);
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}
.section-tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  color: var(--accent-2);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-card .service-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-body {
  padding: var(--space-md);
}
.service-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.2rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 0.5rem;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  margin-bottom: 0.3rem;
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  color: var(--accent-2);
}
.link-arrow i {
  transition: transform 0.3s;
}
.link-arrow:hover i {
  transform: translateX(6px);
}
.center-btn {
  text-align: center;
  margin-top: var(--space-lg);
}
.grid-2-aligned {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.grid-2-aligned.reverse {
  direction: rtl;
}
.grid-2-aligned.reverse > * {
  direction: ltr;
}
.image-block {
  position: relative;
}
.image-block img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.floating-badge-secondary {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--surface);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
}
.floating-badge-secondary i {
  color: var(--accent);
}
.text-block .section-tag {
  text-align: left;
}
.text-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}
.text-block p {
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}
.check-list {
  list-style: none;
  margin: var(--space-md) 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.check-list i {
  color: var(--accent);
  font-size: 1.2rem;
}
.values-section .value-card {
  padding: var(--space-md);
  text-align: center;
  border-top: 4px solid var(--accent);
}
.value-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.steps-list {
  margin: var(--space-md) 0;
}
.step {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1.2;
  min-width: 2.8rem;
}
.step p {
  margin: 0;
  color: var(--text);
}
.cta-banner-main,
.cta-banner-page {
  background: var(--accent-2);
  padding: var(--space-lg) 0;
  color: var(--surface);
}
.cta-inner-main,
.cta-inner-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cta-content-main,
.cta-content-page {
  flex: 1;
}
.cta-tag-main,
.cta-tag-page {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  margin-bottom: 0.5rem;
}
.cta-content-main h2,
.cta-content-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  margin-bottom: 0.3rem;
}
.cta-content-main p,
.cta-content-page p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
}
.btn-cta-main,
.btn-cta-page {
  background: var(--accent);
  color: var(--accent-2);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-cta-main:hover,
.btn-cta-page:hover {
  background: var(--surface);
  transform: translateY(-3px);
}
.cta-decoration-main,
.cta-decoration-page {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
}
.contact-section {
  background: var(--surface);
}
.form-wrapper {
  background: var(--surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.form-wrapper h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  margin-bottom: 0.2rem;
}
.form-wrapper p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.contact-form .form-group {
  margin-bottom: var(--space-sm);
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}
.checkbox-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.checkbox-group input {
  width: auto;
}
.checkbox-group label {
  font-weight: 400;
  font-size: 0.95rem;
}
.faq-wrapper {
  padding: var(--space-md);
}
.faq-wrapper h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}
.faq-item h4 {
  font-weight: 600;
  cursor: pointer;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.3rem;
  display: block;
}
.page-hero {
  background: var(--surface);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  color: var(--accent-2);
}
.page-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.service-detail-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
}
.service-detail-item.reverse {
  direction: rtl;
}
.service-detail-item.reverse > * {
  direction: ltr;
}
.service-detail-item .service-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.service-detail-item .service-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  margin-bottom: 0.3rem;
}
.service-detail-item .service-content p {
  color: var(--text-muted);
}
.instructions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.instruction-card {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--accent);
}
.instruction-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.instruction-card h3 i {
  color: var(--accent);
}
.instruction-card p {
  color: var(--text-muted);
}
.contact-info-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}
.info-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  align-items: flex-start;
}
.info-row i {
  width: 1.6rem;
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 0.2rem;
}
.info-row strong {
  display: block;
  font-weight: 600;
}
.info-row p {
  margin: 0;
  color: var(--text-muted);
}
.hours-block {
  margin-top: var(--space-md);
}
.hours-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-list li:last-child {
  border-bottom: none;
}
.thanks-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
}
.thanks-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}
.thanks-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.thanks-wrapper h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h1);
}
.thanks-wrapper .thanks-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
  margin: var(--space-md) 0;
}
.thanks-wrapper .thanks-steps .step {
  display: flex;
  gap: var(--space-sm);
}
.thanks-wrapper .thanks-steps .step-num {
  font-weight: 700;
  color: var(--accent);
}
.thanks-contact {
  margin: var(--space-md) 0;
}
.site-footer {
  background: var(--accent-2);
  color: var(--surface-2);
  padding: var(--space-lg) 0 var(--space-sm);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
}
.footer-col .logo a {
  color: var(--surface);
}
.footer-col .logo .logo-line1,
.footer-col .logo .logo-line2 {
  color: var(--surface);
}
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-top: var(--space-sm);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--surface);
}
.footer-col p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-links a {
  color: var(--surface-2);
  font-weight: 400;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-updated {
  font-size: 0.7rem;
  opacity: 0.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}
.disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto var(--space-sm);
  text-align: center;
}
.copyright {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--accent-2);
  color: var(--surface);
  padding: var(--space-sm) var(--space-md);
  z-index: 999;
  display: flex;
  justify-content: center;
}
.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
}
.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}
.cookie-content a {
  color: var(--accent);
}
.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}
.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}
.btn-cookie-accept {
  background: var(--accent);
  color: var(--accent-2);
}
.btn-cookie-decline {
  background: transparent;
  border: 1px solid var(--surface);
  color: var(--surface);
}
.btn-cookie-accept:hover {
  background: var(--surface);
  color: var(--accent-2);
}
.btn-cookie-decline:hover {
  background: var(--surface);
  color: var(--accent-2);
}
.step-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  box-shadow: 0 8px 24px rgba(200, 157, 107, 0.3);
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  margin-bottom: 0.3rem;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.info-box {
  background: var(--surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--accent);
  max-width: 800px;
  margin: 0 auto;
}
.info-box p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.info-box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .hero-grid,
  .grid-2-aligned,
  .grid-2-aligned.reverse,
  .service-detail-item,
  .service-detail-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-lg);
  }
  .service-detail-item.reverse {
    direction: ltr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .instructions-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner-main,
  .cta-inner-page {
    flex-direction: column;
    text-align: center;
  }
  .cta-decoration-main,
  .cta-decoration-page {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    word-break: break-word;
  }
    .info-box, .thanks-wrapper {
      padding: var(--space-md);
    }
  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--surface);
    padding: var(--space-md);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .main-nav ul.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-stats {
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  .hero-content h1 {
    font-size: var(--fs-h1);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .form-wrapper {
    padding: var(--space-md);
  }
  .step-card {
    padding: var(--space-md);
  }
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
.btn-primary:active,
.btn-outline:active {
  transform: scale(0.96);
}
a[href^="#"] {
  scroll-margin-top: 80px;
}
.faq-item h4::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.active h4::after {
  transform: rotate(180deg);
}
.faq-item p {
  display: none;
}
.faq-item.active p {
  display: block;
}

.legal-section {
  background: var(--bg);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--accent-2);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--accent);
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.legal-content ul {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  color: var(--text-muted);
}
.legal-content ul li {
  margin-bottom: 0.3rem;
}
.legal-content a {
  color: var(--accent-2);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--accent);
}
.legal-content em {
  display: block;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
}