@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #2d3436;
  --accent-color: #c9a962;
  --accent-hover: #b8943f;
  --light-bg: #f8f7f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 0.8rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--white);
}

.section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.section-header p {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  font-size: 13px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

header.hidden {
  transform: translateY(-100%);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.logo-text.home {
  color: var(--white);
}

header.scrolled .logo-text {
  color: var(--primary-color);
}

header.scrolled .nav-toggle {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--white);
  padding: 5px;
  z-index: 999999999;
}

.nav-toggle.active {
  color: black;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--accent-color);
}

header.scrolled nav a {
  color: var(--primary-color);
}

header.scrolled nav a:hover,
header.scrolled nav a.active {
  color: var(--accent-color);
}

body.subpage header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

body.subpage nav a {
  color: var(--primary-color);
}

body.subpage nav a:hover,
body.subpage nav a.active {
  color: var(--accent-color);
}

body.subpage .nav-toggle {
  color: var(--primary-color);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(201, 169, 98, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 169, 98, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 30%
    );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 2;
}

.hero-decor {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero-decor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 50%;
}

.hero-decor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 50%;
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  padding-right: 20px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.hero-label i {
  font-size: 10px;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero-text h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  opacity: 0.4;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--accent-color);
  padding: 14px 28px;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 14px 28px;
}

.hero .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.1) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 4;
}

.hero-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.hero-badge .label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.hero-stats {
  position: absolute;
  top: 30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.hero-stats i {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

.hero-stats-text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-stats-text strong {
  display: block;
  font-size: 13px;
  color: var(--primary-color);
}

.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 25px 15px;
  border-radius: 8px;
  background: var(--light-bg);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.feature-card h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.feature-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.about {
  background: var(--light-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.about-text p {
  color: var(--text-muted);
  font-size: 13px;
}

.about-list {
  list-style: none;
  margin: 20px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
}

.about-list i {
  color: var(--accent-color);
  font-size: 14px;
}

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent-color);
  transition: var(--transition);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.service-card h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.service-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.products {
  background: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-image {
  height: 180px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.product-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
}

.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1d1e 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.cta p {
  margin-bottom: 20px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.author-info h5 {
  font-size: 13px;
  margin-bottom: 2px;
  color: var(--primary-color);
}

.author-info span {
  font-size: 11px;
  color: var(--text-muted);
}

.page-hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 100px 0 50px;
  text-align: center;
}

.page-hero h1 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 13px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 12px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

.breadcrumb span {
  color: var(--accent-color);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 13px;
  margin: 0;
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
}

.contact-form-wrapper h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.checkbox-group input {
  margin-top: 2px;
  width: auto;
}

.checkbox-group a {
  color: var(--accent-color);
}

.map-section {
  background: var(--light-bg);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px 0 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-icon {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.policy-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.policy-links a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.policy-links a:hover {
  color: var(--accent-color);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 12px;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--accent-color);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  font-size: 11px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent-color);
  color: var(--white);
  border: none;
}

.cookie-accept:hover {
  background: var(--accent-hover);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.cookie-decline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.error-page,
.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light-bg);
  height: 100vh;
}

.error-content,
.thank-you-content {
  padding: 40px;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.error-content h2,
.thank-you-content h1 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.error-content p,
.thank-you-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 13px;
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.policy-page {
  background: var(--white);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 30px 0 15px;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.policy-content h3 {
  margin: 20px 0 10px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.policy-content p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.policy-content ul {
  margin: 10px 0 15px 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.policy-content li {
  margin-bottom: 6px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.material-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: var(--transition);
}

.material-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.material-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.material-card h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.material-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  text-align: center;
  padding: 25px 15px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.step-card h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.step-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--border-color);
}

.step-card:last-child::after {
  display: none;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

.benefit-item h5 {
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.benefit-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-label {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }

  .hero-stats {
    right: 10px;
    top: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid,
  .products-grid,
  .testimonials-grid,
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1001;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 70px 30px 30px;
    gap: 0;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    color: black;
  }

  nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .hero::after {
    height: 80px;
  }

  .hero-decor {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-stats {
    display: none;
  }

  .hero-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }

  .services-grid,
  .products-grid,
  .testimonials-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-badge {
    padding: 12px 16px;
  }

  .hero-badge .number {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .error-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 10px;
  }

  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.2rem;
  }

  .section {
    padding: 30px 0;
  }

  .logo-text {
    font-size: 1rem;
  }
}
