:root {
  --bg: #f9f9ff;
  --accent: #ffa577;
  --accent-dark: #e08a5c;
  --secondary: #d55448;
  --secondary-dark: #b53f36;
  --text: #2d2d44;
  --text-light: #5a5a72;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(45, 45, 68, 0.08);
  --shadow-hover: 0 14px 40px rgba(45, 45, 68, 0.14);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

ul {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--white);
  border-radius: 32px;
  margin: 40px auto;
  width: min(94%, calc(var(--max) + 40px));
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(249, 249, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(45, 45, 68, 0.06);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(45, 45, 68, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
}

.logo span {
  color: var(--secondary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-link:hover, .nav-link:focus {
  color: var(--secondary);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: var(--text-light);
}

.dropdown-toggle svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255, 165, 119, 0.4);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 119, 0.55);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(213, 84, 72, 0.35);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  background: var(--white);
  color: var(--secondary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text);
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #fff0e8 0%, #f9f9ff 60%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,165,119,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--secondary);
  font-style: normal;
}

.hero-text {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-img {
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
}

/* Cards & grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 12px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.category-card {
  text-align: center;
  padding: 32px 24px;
}

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  fill: var(--secondary);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  color: var(--text-light);
}

/* Reviews */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(45,45,68,0.12);
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  transition: transform 0.25s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-light);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

/* Forms */
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(45,45,68,0.15);
  border-radius: 10px;
  background: var(--bg);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,165,119,0.2);
}

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

.error-msg {
  color: var(--secondary);
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-group.error .error-msg {
  display: block;
}

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

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.contact-info-card svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--secondary);
}

.map-frame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #a0362d 100%);
  color: var(--white);
  text-align: center;
  border-radius: 32px;
  padding: 80px 20px;
  margin: 0 auto;
  width: min(94%, calc(var(--max) + 40px));
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 68, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 440px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  fill: var(--secondary);
}

.modal h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modal-close {
  margin-top: 24px;
}

/* Footer */
.site-footer {
  background: #1e1e30;
  color: #d9d9e6;
  padding: 64px 0 24px;
  margin-top: 80px;
}

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

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: #b6b6c9;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #9494a6;
}

/* Legal */
.legal-content h2 {
  font-size: 1.6rem;
  margin: 36px 0 16px;
  color: var(--text);
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 14px;
}

/* Blog */
.meta {
  display: flex;
  gap: 16px;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.meta span {
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Article */
.article-hero {
  padding: 150px 0 60px;
  background: linear-gradient(135deg, #fff0e8 0%, var(--bg) 100%);
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 18px;
}

.article-body p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.article-body ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-light);
  margin-bottom: 22px;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 20px 28px;
  margin: 28px 0;
  background: var(--white);
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow);
  font-style: italic;
  color: var(--text);
}

.info-box {
  background: #fff0e8;
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
}

.info-box h3 {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .footer-grid { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: var(--shadow-hover);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg);
    margin-top: 10px;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .mobile-toggle { display: block; }
  .desktop-shop { display: none; }

  .grid-4, .grid-3, .grid-2, .stats-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .btn { padding: 10px 20px; }
  .cta h2 { font-size: 1.6rem; }
}

/* Logo SVG */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid rgba(45,45,68,0.08);
  box-shadow: 0 -4px 20px rgba(45,45,68,0.12);
  z-index: 1500;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.cookie-text {
  color: var(--text-light);
  font-size: 0.95rem;
  flex: 1 1 320px;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
