:root {
  --color-primary: #D4A5A5;
  --color-secondary: #8B9B7F;
  --color-accent: #7B6B5E;
  --color-plum: #9B7B8E;
  --color-sage: #A8B89C;
  --color-ivory: #FAF6F3;
  --color-rose-light: #E8D4D4;
  --color-rose-dark: #C9A9A6;
  --color-text: #4A4A4A;
  --color-text-light: #6B6B6B;
  --color-white: #FFFFFF;
  --color-overlay: rgba(74, 74, 74, 0.85);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Quicksand', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 75rem;
  --header-height: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-ivory);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-plum);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-accent);
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-rose-dark));
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: var(--space-lg) 0;
  transition: transform var(--transition-base), background var(--transition-base);
  background: rgba(250, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  position: fixed;
  background: rgba(250, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--color-plum);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 50vh;
  background: var(--color-ivory);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-3xl);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: 101;
  box-shadow: var(--shadow-xl);
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-rose-light);
}

.nav-mobile a:hover {
  color: var(--color-primary);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(212, 165, 165, 0.5), rgba(74, 74, 74, 0.6)), url('../visuals/bg-image-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 246, 243, 0.85) 0%, rgba(250, 246, 243, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 32rem;
  background: rgba(250, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}

.hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-rose-light);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-light);
  max-width: 36rem;
  margin: var(--space-md) auto 0;
}

.features-grid {
  display: grid;
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-sage));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rose-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.products-grid {
  display: grid;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-rose-light);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-plum);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.product-content {
  padding: var(--space-md);
}

.product-content h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.product-content p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.about-section {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-rose-light) 100%);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  grid-template-columns: 1fr 1fr;

}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.about-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.process-steps {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

.step-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-plum));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-quote::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  font-size: 2rem;
  color: var(--color-rose-light);
  display: block;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-accent);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-plum) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 50%;
  height: 150%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--color-white);
  color: var(--color-accent);
}

.cta-section .btn-primary:hover {
  background: var(--color-ivory);
}

.contact-section {
  position: relative;
}

.contact-wrapper {
  display: grid;
  gap: var(--space-xl);
}

.contact-info {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-plum) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  color: var(--color-white);
}

.contact-info h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item i {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 2px;
}

.contact-item span {
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--color-white);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--color-rose-light);
  border-radius: var(--radius-md);
  background: var(--color-ivory);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.2);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--color-primary);
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 18rem;
  border: none;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-rose-light);
}

.faq-question h3 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-question i {
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.footer {
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-header {
  background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-ivory) 100%);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-text-light);
  max-width: 36rem;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--color-text-light);
}

.breadcrumb span {
  color: var(--color-primary);
}

.content-section {
  padding: var(--space-2xl) 0;
}

.content-block {
  max-width: 48rem;
  margin: 0 auto;
}

.content-block h2 {
  margin: var(--space-xl) 0 var(--space-md);
}

.content-block h3 {
  margin: var(--space-lg) 0 var(--space-sm);
}

.content-block p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.content-block ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-block li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

.content-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-content h2 {
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-rose-light) 100%);
}

.thank-you-content {
  max-width: 32rem;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-plum));
  color: var(--color-white);
  font-size: 2.5rem;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: var(--space-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.info-grid {
  display: grid;
  gap: var(--space-lg);
}

.info-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.info-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.info-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.tools-list {
  display: grid;
  gap: var(--space-md);
}

.tool-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tool-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rose-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
}

.tool-info h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.tool-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .nav-desktop {
    display: block;
  }

  .burger {
    display: none;
  }

  .hero-content {
    max-width: 36rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tools-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8rem;
  }
}