@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
  --color-lavender: #C8A2C8;
  --color-pearl: #FFF8F0;
  --color-coral: #F5B7A5;
  --color-emerald: #047857;
  --color-dark: #1a1a2e;
  --color-text: #3d3d5c;
  --color-text-light: #6b6b8a;
  --color-white: #ffffff;
  --color-overlay: rgba(26, 26, 46, 0.85);
  --font-heading: 'Cormorant Garamond', Georgia, 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: 2rem;
  --radius-curve: 3rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-pearl);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-emerald);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-lavender);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  margin-bottom: var(--space-md);
}

ul, ol {
  list-style: none;
}

.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.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-curve);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-emerald), var(--color-lavender));
  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-emerald);
  border: 1px solid var(--color-emerald);
}

.btn-secondary:hover {
  background: var(--color-emerald);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: var(--space-md) 0;
  background-color: rgba(255, 248, 240, 0.95);
  transition: all var(--transition-normal);
}

.header.scrolled {
  position: fixed;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.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.25rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--color-emerald);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-lavender);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-normal);
}

.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);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  background: var(--color-pearl);
  padding: var(--space-3xl) var(--space-xl);
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
  z-index: 150;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
  display: block;
  padding: var(--space-sm) 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 140;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg, rgba(230, 220, 255, 0.85) 0%, rgba(255, 200, 180, 0.85) 100%),
    url('../visuals/bg-image-q.webp') center / cover no-repeat;
  border-radius: 0 0 0 50%;
  transform: rotate(-15deg);
  z-index: -1;
}

.hero-content {
  max-width: 32rem;
  padding-top: var(--space-3xl);
}

.hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-white);
  color: var(--color-emerald);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-curve);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.hero-actions {
  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;
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, rgba(200, 162, 200, 0.2), rgba(245, 183, 165, 0.2));
  color: var(--color-emerald);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-curve);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-light);
  max-width: 36rem;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-coral));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-white);
  font-size: 1.25rem;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-hover);
}

.product-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-coral) 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-emerald);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-curve);
  text-transform: uppercase;
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.product-info p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image::before {
  content: '';
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  bottom: var(--space-md);
  border: 2px solid var(--color-lavender);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--color-text-light);
}

.feature-list {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.feature-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-lavender);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.875rem;
}

.feature-text h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.feature-text p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d4a 100%);
  transform: skewY(-3deg);
  transform-origin: top left;
}

.cta-content {
  position: relative;
  text-align: center;
  color: var(--color-white);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.contact-section {
  background: var(--color-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-coral) 100%);
  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: center;
  gap: var(--space-md);
}

.contact-item i {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.875rem;
}

.contact-item span {
  font-size: 0.875rem;
}

.contact-form-wrapper {
  padding: var(--space-lg);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid rgba(200, 162, 200, 0.3);
  border-radius: var(--radius-md);
  background: var(--color-pearl);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-lavender);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.checkbox-group a {
  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: 250px;
  border: none;
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-lavender);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 0;
}

.page-header {
  padding: calc(var(--space-3xl) * 2) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-pearl) 0%, var(--color-white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: linear-gradient(135deg, rgba(200, 162, 200, 0.2), rgba(245, 183, 165, 0.2));
  border-radius: 50%;
  transform: rotate(-15deg);
}

.page-header h1 {
  position: relative;
}

.page-header p {
  position: relative;
  color: var(--color-text-light);
  max-width: 36rem;
  margin: var(--space-md) auto 0;
}

.breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.8125rem;
}

.breadcrumb a {
  color: var(--color-text-light);
}

.breadcrumb span {
  color: var(--color-text-light);
}

.policy-content {
  padding: var(--space-2xl) 0;
}

.policy-content h2 {
  margin: var(--space-xl) 0 var(--space-md);
}

.policy-content h3 {
  margin: var(--space-lg) 0 var(--space-md);
}

.policy-content p {
  margin-bottom: var(--space-md);
}

.policy-content ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-content li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--color-emerald);
  border-radius: 50%;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content {
  max-width: 28rem;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-emerald), var(--color-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content {
  max-width: 28rem;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-content h1 {
  margin-bottom: var(--space-md);
}

.error-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-normal);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-text p {
  font-size: 0.8125rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8125rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--color-emerald);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: var(--space-md);
  right: calc(var(--space-md) * -1);
  padding: var(--space-xs) var(--space-xl);
  background: var(--color-emerald);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  transform: rotate(45deg);
  transform-origin: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card h3 {
  margin-bottom: var(--space-sm);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: var(--space-md);
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--color-text-light);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(200, 162, 200, 0.2);
  font-size: 0.875rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--color-emerald);
}

.trends-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.trend-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.trend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.trend-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-coral) 100%);
}

.trend-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trend-content {
  padding: var(--space-lg);
}

.trend-date {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.trend-content h3 {
  margin-bottom: var(--space-sm);
}

.trend-content p {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-lavender), var(--color-coral));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(var(--space-xl) * -1);
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-emerald);
  border-radius: 50%;
  transform: translateX(-5px);
}

.timeline-item h4 {
  margin-bottom: var(--space-xs);
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.team-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--color-lavender), var(--color-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.team-card h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.team-card p {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-lavender);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: process;
}

.process-step {
  display: flex;
  gap: var(--space-md);
  counter-increment: process;
}

.process-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
}

.process-content h4 {
  margin-bottom: var(--space-xs);
}

.process-content p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question i {
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.value-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-coral));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
}

.value-content h4 {
  margin-bottom: var(--space-sm);
}

.value-content p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-block {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .trends-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trend-card {
    flex-direction: row;
  }
  
  .trend-image {
    width: 40%;
    aspect-ratio: auto;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 40rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .trends-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .trend-card {
    flex-direction: column;
  }
  
  .trend-image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
