:root {
  --primary: #271c55;
  --secondary: #7e245f;
  --accent: #c41473;
  --dark: #151226;
  --text: #343043;
  --muted: #746f83;
  --soft: #f6f2fb;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(39, 28, 85, .16);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
.site-header { min-height: 100vh; color: var(--white); background: radial-gradient(circle at 70% 20%, #b11b74 0%, rgba(177,27,116,.45) 28%, transparent 45%), linear-gradient(135deg, var(--primary), var(--dark)); overflow: hidden; position: relative; }
.site-header::after { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(196,20,115,.18); right: -180px; bottom: -180px; }
.navbar { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 44px; height: 44px; border-radius: 14px; background: var(--accent); display: grid; place-items: center; box-shadow: 0 14px 30px rgba(196,20,115,.35); }
.nav-links { display: flex; gap: 28px; font-weight: 600; color: rgba(255,255,255,.8); }
.nav-links a:hover { color: var(--white); }
.menu-toggle { display: none; border: 0; background: rgba(255,255,255,.14); color: white; font-size: 24px; padding: 6px 12px; border-radius: 10px; }
.hero { width: min(1180px, calc(100% - 40px)); margin: 0 auto; min-height: calc(100vh - 104px); display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 56px; position: relative; z-index: 1; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; margin-bottom: 12px; }
.hero .eyebrow { color: #ff86c0; }
h1 { font-size: clamp(2.5rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.06em; max-width: 820px; }
.hero-text { margin: 26px 0 34px; max-width: 620px; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: .2s ease; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 16px 30px rgba(196,20,115,.35); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,.32); color: var(--white); }
.hero-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(18px); border-radius: var(--radius); padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.card-icon { font-size: 62px; margin-bottom: 18px; }
.hero-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.hero-card p { color: rgba(255,255,255,.78); }
.section { padding: 96px 20px; }
.section-heading { width: min(1180px, 100%); margin: 0 auto 40px; }
.section-heading.center { text-align: center; max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.045em; color: var(--primary); }
.about-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }
.about-text { background: var(--soft); border-radius: var(--radius); padding: 36px; font-size: 1.06rem; }
.about-text p + p { margin-top: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat-card, .feature-card, .product-card, .client-grid div { background: var(--white); border: 1px solid #eee8f5; box-shadow: var(--shadow); border-radius: var(--radius); padding: 26px; }
.stat-card strong { display: block; font-size: 1.6rem; color: var(--primary); }
.stat-card span { color: var(--muted); }
.why, .clients { background: linear-gradient(180deg, var(--soft), #fff); }
.feature-grid, .product-grid, .client-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; gap: 20px; }
.feature-grid { grid-template-columns: repeat(3,1fr); }
.feature-card span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: white; font-weight: 900; margin-bottom: 16px; }
.feature-card h3, .product-card h3 { color: var(--primary); font-size: 1.35rem; margin-bottom: 10px; }
.product-grid { grid-template-columns: repeat(4,1fr); }
.product-icon { width: 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; background: var(--soft); font-size: 34px; margin-bottom: 18px; }
ul { list-style: none; }
li { color: var(--muted); margin-top: 8px; }
li::before { content: '•'; color: var(--accent); font-weight: 900; margin-right: 8px; }
.client-grid { grid-template-columns: repeat(4,1fr); text-align: center; font-weight: 800; color: var(--primary); }
.goals-box { width: min(1180px, 100%); margin: 0 auto; border-radius: 34px; color: white; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: var(--shadow); }
.goals-box h2 { color: white; }
.goals-box p:last-child { color: rgba(255,255,255,.78); font-size: 1.1rem; }
.contact { background: var(--soft); }
.contact-card { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; }
.contact-info, .address-box { background: white; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-info > p { margin: 14px 0 20px; color: var(--muted); }
.contact-list { display: grid; gap: 12px; }
.contact-list a { padding: 14px 16px; background: var(--soft); border-radius: 14px; font-weight: 700; color: var(--primary); }
.address-box p { margin: 12px 0 18px; color: var(--muted); }
iframe { width: 100%; height: 290px; border: 0; border-radius: 18px; }
.footer { padding: 26px 20px; display: flex; gap: 16px; justify-content: space-between; width: min(1180px, 100%); margin: 0 auto; color: var(--muted); }
.footer a { color: var(--primary); font-weight: 800; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 82px; left: 0; right: 0; flex-direction: column; padding: 20px; border-radius: 18px; background: rgba(21,18,38,.96); }
  .nav-links.active { display: flex; }
  .hero, .about-grid, .goals-box, .contact-card { grid-template-columns: 1fr; }
  .feature-grid, .product-grid, .client-grid { grid-template-columns: repeat(2,1fr); }
  .hero { padding: 70px 0; }
}
@media (max-width: 560px) {
  .section { padding: 68px 16px; }
  .navbar, .hero { width: min(100% - 28px, 1180px); }
  .stats-grid, .feature-grid, .product-grid, .client-grid { grid-template-columns: 1fr; }
  .hero-card, .about-text, .goals-box, .contact-info, .address-box { padding: 24px; }
  .footer { flex-direction: column; }
}

.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.product-photo-grid figure {
  overflow: hidden;
  border: 1px solid #eee8f5;
  border-radius: 18px;
  background: #fff;
}
.product-photo-grid img {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}
.product-photo-grid figcaption {
  min-height: 42px;
  padding: 9px 10px 11px;
  border-top: 1px solid #f0eaf6;
  color: var(--primary);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 560px) {
  .product-photo-grid { grid-template-columns: 1fr; }
  .product-photo-grid img { height: 150px; }
}
