.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 233, 239, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  box-shadow: var(--shadow-sm);
}

.site-nav {
  position: sticky;
  top: 76px;
  z-index: 90;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 600;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 32%), linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0.8rem 0 1rem;
  letter-spacing: -0.03em;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.4rem 0 1rem;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.2rem 0 0;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
  padding: 1rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f0 100%);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0;
}

.section-heading p {
  margin: 0;
  color: var(--color-text-muted);
}

.feature-grid,
.product-grid,
.category-grid,
.article-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-card,
.product-card,
.category-card,
.article-card,
.testimonial-card,
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.product-card:hover,
.category-card:hover,
.article-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: 1.4rem;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.product-card,
.article-card {
  padding: 1.1rem;
}

.product-media,
.article-media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.product-meta,
.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.price {
  font-weight: 800;
  color: var(--color-primary);
}

.category-card {
  padding: 1.3rem;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 400ms ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 1.4rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  text-align: left;
  font-weight: 700;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
  padding: 0 1.1rem;
  color: var(--color-text-muted);
}

.faq-item.is-open .faq-panel {
  max-height: 200px;
  padding-bottom: 1rem;
}

.newsletter-card,
.contact-card,
.breadcrumb,
.alert {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.newsletter-card {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.newsletter-form input {
  flex: 1 1 260px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.82);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a { color: inherit; }

.page-shell {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.breadcrumb a { color: var(--color-secondary); font-weight: 600; }

.hero-landing {
  padding: 4rem 0 3rem;
  background: linear-gradient(120deg, #fdf2e9 0%, #ffffff 100%);
}

.landing-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.55);
  padding: 1rem;
  z-index: 200;
}

.modal.is-open { display: flex; }

.modal__card {
  width: min(100%, 560px);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.modal__actions { display: flex; justify-content: flex-end; gap: 0.8rem; margin-top: 1rem; }
