:root {
  --bg: #fff9f5;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #243041;
  --muted: #667085;
  --primary: #4961d1;
  --secondary: #27b7a4;
  --accent: #ff8ea1;
  --warm: #ffd9b8;
  --border: #e7e7ef;
  --shadow: 0 18px 50px rgba(36, 48, 65, 0.10);
  --radius: 24px;
  --max: 1140px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(39,183,164,0.10), transparent 35%),
    radial-gradient(circle at top right, rgba(73,97,209,0.08), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar { background: #243041; color: #fff; padding: 10px 0; font-size: 14px; }
.topbar-inner, .nav-inner, .footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar .contact-mini { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.nav-wrap {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(231,231,239,0.9);
}
.nav-inner { padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 48px; height: 48px; border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow);
}
.brand span { display: block; }
.brand .small { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.brand .big { font-weight: 800; font-size: 18px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 10px; }
.nav-links a { padding: 12px 16px; border-radius: 999px; color: var(--muted); font-weight: 600; }
.nav-links a.active, .nav-links a:hover { background: linear-gradient(135deg, rgba(73,97,209,0.10), rgba(39,183,164,0.12)); color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px; padding: 14px 22px; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,0.92); color: var(--text); border: 1px solid rgba(255,255,255,0.5); }
.hero { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; }
.slider-hero { padding: 0; }
.hero-slider, .hero-overlay { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.slide.active { opacity: 1; }
.hero-overlay { background: linear-gradient(90deg, rgba(36,48,65,0.76) 0%, rgba(36,48,65,0.44) 50%, rgba(36,48,65,0.26) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; min-height: 660px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 120px 0 72px; }
.hero-copy { max-width: 620px; }
.eyebrow { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .10em; font-size: 12px; }
.eyebrow.light { color: #c7f4ec; }
.hero h1, .page-hero h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.02; margin: 12px 0 18px; }
.hero h1 { color: #fff; max-width: 620px; }
.lead { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 620px; }
.lead.light { color: rgba(255,255,255,0.9); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.slider-controls { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.92); color: var(--text); font-size: 28px; box-shadow: var(--shadow);
}
.slider-dots { display: flex; align-items: center; gap: 10px; }
.slider-dot {
  width: 12px; height: 12px; border-radius: 999px; background: rgba(255,255,255,0.45); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.5);
}
.slider-dot.active { width: 34px; background: #fff; }
.hero-card, .card, .info-card {
  background: rgba(255,255,255,0.94); border: 1px solid rgba(231,231,239,0.95); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.split-grid, .contact-grid, .about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.section { padding: 34px 0 72px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin: 10px 0 14px; }
.section-copy { color: var(--muted); line-height: 1.8; max-width: 720px; }
.grid-3, .grid-4, .product-grid, .gallery-grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.card-body { padding: 22px; }
.card h3, .info-card h3 { margin: 0 0 10px; font-size: 22px; }
.card p, .info-card p, li { color: var(--muted); line-height: 1.7; }
.icon-chip {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(73,97,209,0.12), rgba(39,183,164,0.16)); font-weight: 800; color: var(--primary);
}
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.list-clean li:last-child { border-bottom: none; }
.page-hero { padding: 52px 0 30px; }
.page-hero-box { border-radius: 32px; overflow: hidden; position: relative; min-height: 320px; box-shadow: var(--shadow); }
.page-hero-box::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,48,65,0.72) 0%, rgba(36,48,65,0.24) 55%, rgba(36,48,65,0.12) 100%);
}
.page-hero-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; padding: 48px; color: #fff; max-width: 700px; }
.product-card img, .gallery-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.price-tag {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,142,161,0.16); color: #c24162; font-size: 14px; font-weight: 700;
}
.contact-grid { align-items: start; }
form { display: grid; gap: 14px; }
input, textarea, select {
  width: 100%; padding: 15px 16px; border: 1px solid var(--border); border-radius: 16px; font: inherit; background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.footer { background: #243041; color: rgba(255,255,255,0.86); padding: 40px 0 28px; margin-top: 40px; }
.footer-grid { align-items: flex-start; }
.footer a { color: rgba(255,255,255,0.86); }
.footer small { color: rgba(255,255,255,0.66); }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.badge { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.86); border: 1px solid rgba(255,255,255,0.35); font-size: 14px; font-weight: 700; }
@media (max-width: 980px) {
  .split-grid, .contact-grid, .about-grid, .grid-3, .grid-4, .product-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero, .hero-content { min-height: 600px; }
}
@media (max-width: 760px) {
  .topbar-inner, .nav-inner, .footer-grid, .split-grid, .contact-grid, .about-grid, .grid-3, .grid-4, .product-grid, .gallery-grid { grid-template-columns: 1fr; display: grid; }
  .nav-links { gap: 4px; }
  .nav-links a { padding: 10px 12px; }
  .page-hero-content { padding: 28px; }
  .hero-content { min-height: 540px; padding: 104px 0 40px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { max-width: 100%; }
  .lead { max-width: 100%; }
  .hero { min-height: 540px; }
  .slider-controls { margin-top: 20px; }
}


@media (min-width: 1280px) {
  .container { width: min(var(--max), calc(100% - 64px)); }
}
