@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root {
  --primary: #00b88f;
  --secondary: #ff9f1c;
  --dark: #0e1a2f;
  --muted: #6c7a8b;
  --bg: #f6f9fc;
  --card: #ffffff;
  --gradient: linear-gradient(135deg, #00b88f, #12d6c5, #ff9f1c);
  --shadow: 0 14px 40px rgba(14, 26, 47, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(0, 184, 143, 0.08), transparent 26%), radial-gradient(circle at 80% 0%, rgba(255, 159, 28, 0.08), transparent 24%), var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

header,
main,
footer {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 64px 6vw 48px;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin: 8px 0 12px;
}

.hero-text h2,
.page-hero h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 12px;
}

.lead {
  color: var(--muted);
  max-width: 70ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: #fff;
  color: var(--dark);
  border-color: rgba(0, 0, 0, 0.08);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 143, 0.12);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-grid,
.section-contrast,
.timeline,
.team,
.filters,
.catalog,
.contact-grid {
  padding: 48px 6vw;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid,
.news-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.section-contrast {
  background: var(--dark);
  color: #f8fafc;
  border-radius: 28px;
  margin: 28px 6vw;
}

.section-contrast .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.product-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.tag {
  display: inline-block;
  margin-top: 6px;
  color: var(--secondary);
  font-weight: 700;
}

.news-card .news-date {
  color: var(--muted);
  margin: 0 0 8px;
  font-weight: 700;
}

.page {
  padding-top: 12px;
}

.filters {
  text-align: center;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn.active {
  border-color: transparent;
  background: var(--gradient);
  color: #fff;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.timeline .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 8px rgba(0, 184, 143, 0.15);
}

.team-grid {
  gap: 16px;
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-form {
  background: var(--card);
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 15px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.contact-info {
  display: grid;
  gap: 10px;
}

.map-placeholder img {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 28px 6vw 40px;
  background: #0b1021;
  color: #e2e8f0;
  display: grid;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5f5;
}

.footer-note {
  margin: 0;
  color: #94a3b8;
}

.seo-tail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 6vw;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    position: sticky;
  }
}

