@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #ecf0f1;
  --dark: #1a252f;
  --warm: #f39c12;
  --sage: #7d9a78;
  --cream: #faf8f5;
  --text: #34495e;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --font-heading: "Playfair Display", serif;
  --font-body: "Nunito", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: var(--secondary);
  font-size: 22px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding: 5px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 10px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: linear-gradient(45deg, var(--secondary), var(--sage));
  opacity: 0.08;
  transform: rotate(-15deg);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  font-size: 15px;
  margin-bottom: 25px;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge i {
  color: var(--warm);
  font-size: 20px;
  margin-bottom: 5px;
}

.hero-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.services {
  padding: 60px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--cream);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon i {
  font-size: 24px;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text);
}

.about-section {
  padding: 60px 0;
  background: var(--cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 15px;
}

.about-stats {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 12px;
}

.about-stats span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.about-stats small {
  font-size: 12px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-text p {
  font-size: 14px;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.about-features i {
  color: var(--sage);
}

.process {
  padding: 60px 0;
  background: var(--primary);
  color: var(--white);
}

.process .section-title {
  color: var(--white);
}

.process .section-subtitle {
  color: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 20px 15px;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--secondary);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.process-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  opacity: 0.8;
}

.testimonials {
  padding: 60px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: var(--cream);
  padding: 25px;
  border-radius: 15px;
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--secondary);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.author-info h4 {
  font-size: 14px;
  color: var(--primary);
}

.author-info span {
  font-size: 11px;
  color: var(--text);
}

.cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--secondary) 100%);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn:hover {
  background: var(--dark);
  color: var(--white);
}

.footer {
  background: var(--dark);
  color: var(--light);
  padding: 30px 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 15px;
}

.footer-contact p {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact i {
  color: var(--secondary);
  width: 16px;
}

.footer-links h4 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 11px;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 15px;
}

.footer-legal a {
  font-size: 11px;
  opacity: 0.6;
}

.footer-legal a:hover {
  opacity: 1;
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 120px 0 50px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 12px;
}

.breadcrumbs a {
  opacity: 0.7;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.breadcrumbs span {
  opacity: 0.5;
}

.content-section {
  padding: 50px 0;
}

.content-section.alt {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image i {
  font-size: 50px;
  color: var(--white);
  opacity: 0.8;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 12px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.contact-section {
  padding: 50px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

.contact-info {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 40px;
  color: var(--white);
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info > p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 25px;
}

.contact-details {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item div h4 {
  font-size: 13px;
  margin-bottom: 3px;
}

.contact-item div p {
  font-size: 12px;
  opacity: 0.7;
}

.contact-form-wrapper {
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 0;
}

.map-container {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.thank-you-content {
  max-width: 500px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sage), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.thank-you-icon i {
  font-size: 36px;
  color: var(--white);
}

.thank-you-content h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

.thank-you-content p {
  font-size: 14px;
  margin-bottom: 25px;
}

.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-content {
  max-width: 500px;
  margin: 0 auto;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 15px;
}

.error-content h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

.error-content p {
  font-size: 14px;
  margin-bottom: 25px;
}

.policy-content {
  padding: 50px 0;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.policy-content .last-updated {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 30px;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary);
  margin: 30px 0 12px;
}

.policy-content h3 {
  font-size: 16px;
  color: var(--primary);
  margin: 20px 0 10px;
}

.policy-content p {
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 12px 0 12px 20px;
}

.policy-content ul li {
  font-size: 13px;
  margin-bottom: 6px;
  list-style: disc;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 12px;
  flex: 1;
}

.cookie-content a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--sage));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 12px;
  color: var(--text);
}

.team-section {
  padding: 50px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.team-card {
  text-align: center;
  padding: 25px;
  background: var(--cream);
  border-radius: 15px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.team-avatar i {
  font-size: 32px;
  color: var(--white);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card span {
  font-size: 12px;
  color: var(--secondary);
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 12px;
  color: var(--text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  border-left: 3px solid var(--secondary);
}

.value-card i {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 11px;
  color: var(--text);
}

.faq-section {
  padding: 50px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 200px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.intro-section {
  padding: 50px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 15px;
}

.intro-text p {
  font-size: 14px;
  margin-bottom: 12px;
}

.benefits-list {
  margin: 20px 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.benefits-list i {
  color: var(--sage);
  font-size: 14px;
}

.pricing-section {
  padding: 50px 0;
  background: var(--white);
}

.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 15px;
  overflow: hidden;
}

.pricing-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
}

.pricing-body {
  padding: 25px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--light);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item span {
  font-size: 14px;
  color: var(--primary);
}

.pricing-item strong {
  font-size: 16px;
  color: var(--secondary);
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px var(--shadow);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 15px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-badge {
    left: 10px;
    bottom: 10px;
    padding: 10px 15px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .error-code {
    font-size: 70px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .section-title {
    font-size: 20px;
  }
}
