@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #3F3B6C;
  --color-secondary: #624F82;
  --color-accent: #9F73AB;
  --color-highlight: #A3C7D6;
  --color-white: #ffffff;
  --color-light: #f8f7fc;
  --color-dark: #1a1a2e;
  --color-text: #2d2d44;
  --color-muted: #6b6b8a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(63, 59, 108, 0.08);
  --shadow-md: 0 4px 20px rgba(63, 59, 108, 0.12);
  --shadow-lg: 0 8px 40px rgba(63, 59, 108, 0.16);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-light);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

.header {
  position: fixed;
  top: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - var(--space-md));
  max-width: 70rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-xs) var(--space-sm);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header.hidden {
  transform: translateX(-50%) translateY(-150%);
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65vw;
}

.logo span {
  color: var(--color-accent);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.875rem;
  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-accent);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  width: 2rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 999;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--color-accent);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 var(--space-xl);
  background-image: url('../pictures/bg.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(98, 79, 130, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(98, 79, 130, 0.4);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-light);
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-btns .btn {
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  max-width: 35rem;
  margin: 0 auto var(--space-lg);
  width: 100%;
  padding: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-desc {
  color: var(--color-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-highlight), var(--color-accent));
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.6875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 50%;
  height: 50%;
  background: linear-gradient(135deg, var(--color-highlight), var(--color-accent));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.stat-item {
  flex: 1 1 auto;
  min-width: 4rem;
}

.stat-item h4 {
  font-size: 1.125rem;
  color: var(--color-secondary);
}

.stat-item span {
  font-size: 0.5625rem;
  color: var(--color-muted);
}

.products-section {
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.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-md);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.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-sm);
  left: var(--space-sm);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.product-info p {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.testimonials-section {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, var(--color-secondary), transparent);
  border-radius: 50%;
  opacity: 0.3;
}

.testimonials-section .section-tag {
  color: var(--color-highlight);
}

.testimonials-section .section-title {
  color: var(--color-white);
}

.testimonials-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), var(--color-highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.5625rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 0.6875rem;
  color: var(--color-white);
}

.testimonial-info span {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-section {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  color: var(--color-white);
}

.cta-box h2 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
  font-size: 0.75rem;
}

.cta-box .btn {
  background: var(--color-white);
  color: var(--color-secondary);
}

.cta-box .btn:hover {
  background: var(--color-light);
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-highlight);
}

.footer-copy {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero {
  padding: calc(var(--space-xl) + 3rem) 0 var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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.05'%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");
}

.page-hero h1 {
  color: var(--color-white);
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  max-width: 30rem;
  margin: var(--space-xs) auto 0;
  font-size: 0.75rem;
}

.asymmetric-section {
  position: relative;
}

.asymmetric-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.asymmetric-block {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.asymmetric-block.offset {
  margin-top: 0;
}

.asymmetric-block.accent {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
}

.asymmetric-block.accent h3 {
  color: var(--color-white);
}

.angled-section {
  background: var(--color-white);
  position: relative;
  padding: var(--space-2xl) 0;
  margin: var(--space-xl) 0;
}

.angled-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: var(--color-light);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.angled-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: var(--color-light);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.contact-creative {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.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(63, 59, 108, 0.2);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--color-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(159, 115, 171, 0.1);
}

.form-group textarea {
  min-height: 7rem;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: var(--color-accent);
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.info-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.info-card:hover {
  transform: translateX(4px);
}

.info-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-highlight), var(--color-accent));
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
}

.info-card p,
.info-card a {
  font-size: 0.75rem;
  color: var(--color-muted);
  word-break: break-word;
  overflow-wrap: break-word;
}

.info-card a:hover {
  color: var(--color-accent);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 15rem;
  border: none;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-popup.show {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-content h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.cookie-content p {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btns .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-content h1 {
  font-size: 6rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-content h2 {
  margin-bottom: var(--space-sm);
}

.error-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.thankyou-content {
  max-width: 28rem;
}

.thankyou-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.thankyou-content h1 {
  margin-bottom: var(--space-sm);
}

.thankyou-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.policy-content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin: var(--space-xl) 0;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.policy-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.policy-content li {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  list-style: disc;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-item:nth-child(even) {
  direction: ltr;
}

.service-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  margin-bottom: var(--space-sm);
}

.service-content p {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-list span {
  background: var(--color-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--color-secondary);
}

.overlap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
}

.overlap-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.overlap-card.featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
}

.overlap-card.featured h3 {
  color: var(--color-white);
}

.overlap-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.review-header {
  background: linear-gradient(135deg, var(--color-light), var(--color-white));
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-product-img {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.review-product h4 {
  font-size: 0.9375rem;
}

.review-product .price {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.review-body {
  padding: var(--space-md);
}

.review-stars {
  color: #ffc107;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.review-text {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
}

.faq-section {
  background: var(--color-light);
}

.faq-list {
  max-width: 45rem;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
  cursor: pointer;
}

.faq-question i {
  font-size: 0.75rem;
  color: var(--color-accent);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  max-height: 15rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.benefits-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text);
}

.benefit-item i {
  color: var(--color-accent);
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.375rem;
  }

  .header {
    width: calc(100% - 0.5rem);
    padding: 0.25rem 0.375rem;
    top: 0.25rem;
    border-radius: 0.75rem;
  }

  .logo {
    font-size: 0.8rem;
    max-width: 55vw;
  }

  .burger {
    width: 1.25rem;
    height: 1rem;
  }

  .burger span {
    height: 1.5px;
  }

  .hero {
    padding: 4rem 0 1.5rem;
    min-height: auto;
  }

  .hero-tag {
    font-size: 0.5625rem;
    padding: 0.125rem 0.375rem;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .hero-tag i {
    font-size: 0.5rem;
  }

  h1 {
    font-size: 1.25rem !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 1rem !important;
  }

  h3 {
    font-size: 0.875rem !important;
  }

  h4 {
    font-size: 0.8125rem;
  }

  .hero-title {
    margin-bottom: 0.5rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-shadow: 0 0 black;
  }

  .btn {
    padding: 0.375rem 0.625rem;
    font-size: 0.625rem;
    gap: 0.25rem;
    border-radius: 0.5rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.375rem;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section-header {
    margin-bottom: 1rem;
    padding: 0;
  }

  .section-tag {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }

  .section-title {
    margin-bottom: 0.25rem;
  }

  .section-desc {
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  .feature-card {
    padding: 0.75rem;
  }

  .feature-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
  }

  .feature-card h3 {
    font-size: 0.8125rem !important;
    margin-bottom: 0.25rem;
  }

  .feature-card p {
    font-size: 0.625rem;
    line-height: 1.4;
  }

  .about-grid {
    gap: 1rem;
  }

  .about-image::before {
    display: none;
  }

  .about-content p {
    font-size: 0.6875rem;
    margin-bottom: 0.5rem;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .stat-item {
    flex: 1 1 calc(33% - 0.5rem);
    min-width: 4rem;
    text-align: center;
  }

  .stat-item h4 {
    font-size: 1rem !important;
  }

  .stat-item span {
    font-size: 0.5rem;
  }

  .product-card {
    border-radius: 0.5rem;
  }

  .product-info {
    padding: 0.5rem;
  }

  .product-info h3 {
    font-size: 0.75rem !important;
    margin-bottom: 0.125rem;
  }

  .product-info p {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
  }

  .product-price {
    font-size: 0.875rem;
  }

  .product-badge {
    font-size: 0.5rem;
    padding: 0.0625rem 0.25rem;
    top: 0.25rem;
    left: 0.25rem;
  }

  .testimonial-card {
    padding: 0.75rem;
    border-radius: 0.5rem;
  }

  .testimonial-text {
    font-size: 0.6875rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .testimonial-avatar {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.5rem;
  }

  .testimonial-info h4 {
    font-size: 0.625rem;
  }

  .testimonial-info span {
    font-size: 0.5rem;
  }

  .cta-box {
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .cta-box h2 {
    font-size: 0.9375rem !important;
    margin-bottom: 0.25rem;
  }

  .cta-box p {
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .footer {
    padding: 0.75rem 0;
  }

  .footer-inner {
    gap: 0.5rem;
  }

  .footer-logo {
    font-size: 0.875rem;
  }

  .footer-links {
    gap: 0.375rem;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.5rem;
  }

  .footer-copy {
    font-size: 0.4375rem;
  }

  .page-hero {
    padding: 3.5rem 0 1rem;
  }

  .page-hero h1 {
    font-size: 1.125rem !important;
  }

  .page-hero p {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
  }

  .asymmetric-content {
    gap: 0.75rem;
  }

  .asymmetric-block {
    padding: 0.75rem;
    border-radius: 0.5rem;
  }

  .asymmetric-block p {
    font-size: 0.625rem !important;
  }

  .contact-creative {
    gap: 0.75rem;
  }

  .contact-form-wrapper {
    padding: 0.75rem;
    border-radius: 0.75rem;
  }

  .contact-form-wrapper h2 {
    font-size: 0.9375rem !important;
    margin-bottom: 0.25rem;
  }

  .form-group {
    margin-bottom: 0.5rem;
  }

  .form-group label {
    font-size: 0.625rem;
    margin-bottom: 0.125rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.375rem 0.5rem;
    font-size: 0.6875rem;
    border-radius: 0.375rem;
  }

  .form-group textarea {
    min-height: 4rem;
  }

  .checkbox-group {
    gap: 0.25rem;
  }

  .checkbox-group input[type="checkbox"] {
    width: 0.75rem;
    height: 0.75rem;
  }

  .checkbox-group label {
    font-size: 0.5rem;
    line-height: 1.4;
  }

  .contact-info-cards {
    gap: 0.5rem;
  }

  .info-card {
    padding: 0.5rem;
    gap: 0.375rem;
    border-radius: 0.5rem;
  }

  .info-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.625rem;
    border-radius: 0.25rem;
  }

  .info-card h4 {
    font-size: 0.625rem;
    margin-bottom: 0;
  }

  .info-card p,
  .info-card a {
    font-size: 0.5rem;
  }

  .map-wrapper {
    border-radius: 0.5rem;
    margin-top: 0.5rem;
  }

  .map-wrapper iframe {
    height: 8rem;
  }

  .cookie-popup {
    padding: 0.5rem;
    bottom: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    border-radius: 0.5rem;
  }

  .cookie-content h4 {
    font-size: 0.6875rem;
    margin-bottom: 0.125rem;
  }

  .cookie-content p {
    font-size: 0.5rem;
    margin-bottom: 0.375rem;
    line-height: 1.4;
  }

  .cookie-btns {
    flex-direction: column;
    gap: 0.25rem;
  }

  .cookie-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    font-size: 0.5rem;
  }

  .error-page {
    padding: 0.75rem;
  }

  .error-content h1 {
    font-size: 3rem !important;
  }

  .error-content h2 {
    font-size: 0.9375rem !important;
  }

  .error-content p {
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .thankyou-page {
    padding: 0.75rem;
  }

  .thankyou-content {
    max-width: 100%;
  }

  .thankyou-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .thankyou-content h1 {
    font-size: 1.125rem !important;
    margin-bottom: 0.25rem;
  }

  .thankyou-content p {
    font-size: 0.6875rem;
    margin-bottom: 0.75rem;
  }

  .policy-content {
    padding: 0.75rem;
    margin: 0.75rem 0;
    border-radius: 0.75rem;
  }

  .policy-content h2 {
    font-size: 0.875rem !important;
    margin: 0.75rem 0 0.25rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.625rem;
    line-height: 1.5;
  }

  .policy-content ul {
    padding-left: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .policy-content li {
    margin-bottom: 0.125rem;
  }

  .services-showcase {
    gap: 0.75rem;
  }

  .service-item {
    border-radius: 0.75rem;
    gap: 0;
  }

  .service-content {
    padding: 0.75rem;
  }

  .service-content h3 {
    font-size: 0.875rem !important;
    margin-bottom: 0.25rem;
  }

  .service-content p {
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
  }

  .service-list {
    gap: 0.25rem;
  }

  .service-list span {
    font-size: 0.5rem;
    padding: 0.125rem 0.25rem;
  }

  .overlap-grid {
    gap: 0.5rem;
  }

  .overlap-card {
    padding: 0.75rem;
    border-radius: 0.5rem;
  }

  .overlap-card i {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .overlap-card h3 {
    font-size: 0.8125rem !important;
    margin-bottom: 0.25rem;
  }

  .overlap-card p {
    font-size: 0.625rem !important;
  }

  .review-card {
    border-radius: 0.5rem;
  }

  .review-header {
    padding: 0.5rem;
    gap: 0.375rem;
  }

  .review-product-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
  }

  .review-product h4 {
    font-size: 0.6875rem;
  }

  .review-product .price {
    font-size: 0.75rem;
  }

  .review-body {
    padding: 0.5rem;
  }

  .review-stars {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }

  .review-text {
    font-size: 0.625rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
  }

  .review-author {
    font-size: 0.5rem;
  }

  .faq-list {
    gap: 0.375rem;
  }

  .faq-item {
    border-radius: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .faq-question {
    padding: 0.5rem;
    font-size: 0.6875rem;
    gap: 0.25rem;
  }

  .faq-question i {
    font-size: 0.5rem;
  }

  .faq-answer p {
    padding: 0 0.5rem 0.5rem;
    font-size: 0.625rem;
  }

  .process-steps {
    gap: 0.5rem;
  }

  .process-step {
    gap: 0.375rem;
  }

  .step-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.6875rem;
  }

  .step-content h4 {
    font-size: 0.75rem;
    margin-bottom: 0.125rem;
  }

  .step-content p {
    font-size: 0.625rem;
    line-height: 1.4;
  }

  .benefits-wrap {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }

  .benefit-item {
    font-size: 0.625rem;
    gap: 0.25rem;
  }

  .benefit-item i {
    font-size: 0.625rem;
  }

  .nav-mobile {
    gap: 1rem;
  }

  .nav-mobile a {
    font-size: 1rem;
  }

  .angled-section {
    margin: 0.75rem 0;
    padding: 1.5rem 0;
  }

  .angled-section::before,
  .angled-section::after {
    height: 1.5rem;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    width: calc(100% - var(--space-md));
    padding: var(--space-xs) var(--space-sm);
    top: var(--space-sm);
  }

  .logo {
    font-size: 0.9rem;
  }

  .burger {
    width: 1.5rem;
    height: 1.25rem;
  }

  .hero {
    padding: var(--space-xl) 0;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-tag {
    font-size: 0.625rem;
    padding: var(--space-xs) var(--space-sm);
  }

  h1 {
    font-size: 1.375rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  h3 {
    font-size: 0.9375rem;
  }

  .hero-desc {
    font-size: 0.75rem;
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.6875rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-tag {
    font-size: 0.5625rem;
  }

  .section-desc {
    font-size: 0.75rem;
  }

  .feature-card {
    padding: var(--space-md);
  }

  .feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }

  .feature-card h3 {
    font-size: 0.875rem;
  }

  .feature-card p {
    font-size: 0.6875rem;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .stat-item h4 {
    font-size: 1.125rem;
  }

  .stat-item span {
    font-size: 0.5625rem;
  }

  .product-info h3 {
    font-size: 0.8125rem;
  }

  .product-info p {
    font-size: 0.6875rem;
  }

  .product-price {
    font-size: 0.9375rem;
  }

  .testimonial-text {
    font-size: 0.75rem;
  }

  .testimonial-avatar {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.625rem;
  }

  .cta-box {
    padding: var(--space-md);
  }

  .cta-box h2 {
    font-size: 1rem;
  }

  .cta-box p {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.5625rem;
  }

  .footer-copy {
    font-size: 0.5rem;
  }

  .page-hero {
    padding: calc(var(--space-xl) + 2.5rem) 0 var(--space-md);
  }

  .page-hero p {
    font-size: 0.75rem;
  }

  .cookie-popup {
    padding: var(--space-sm);
  }

  .cookie-content h4 {
    font-size: 0.75rem;
  }

  .cookie-content p {
    font-size: 0.5625rem;
  }

  .cookie-btns {
    flex-direction: column;
  }

  .cookie-btns .btn {
    width: 100%;
    font-size: 0.5625rem;
  }

  .benefits-wrap {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    font-size: 0.6875rem;
  }

  .nav-mobile a {
    font-size: 1.125rem;
  }
}

@media (min-width: 376px) and (max-width: 479px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    width: calc(100% - var(--space-md));
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 6rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(50% - var(--space-md));
  }

  .cookie-btns {
    flex-direction: column;
  }

  .cookie-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .benefits-wrap {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .header {
    top: var(--space-md);
    width: calc(100% - var(--space-lg));
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-xl);
  }

  .logo {
    font-size: 1.125rem;
  }

  .hero {
    padding: var(--space-2xl) 0;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-md);
    gap: var(--space-sm);
  }

  .hero-desc {
    font-size: 0.9375rem;
  }

  .btn {
    font-size: 0.8125rem;
    padding: var(--space-sm) var(--space-lg);
    gap: var(--space-sm);
    border-radius: var(--radius-lg);
  }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .hero-btns .btn {
    width: auto;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-xl);
  }

  .section-tag {
    font-size: 0.75rem;
  }

  .section-desc {
    font-size: 0.9375rem;
  }

  .feature-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
  }

  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }

  .feature-card p {
    font-size: 0.875rem;
  }

  .stats-row {
    gap: var(--space-lg);
  }

  .stat-item h4 {
    font-size: 1.75rem;
  }

  .stat-item span {
    font-size: 0.75rem;
  }

  .testimonial-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .testimonial-text {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
  }

  .testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }

  .testimonial-info h4 {
    font-size: 0.875rem;
  }

  .testimonial-info span {
    font-size: 0.75rem;
  }

  .cta-box {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
  }

  .cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }

  .cta-box p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-copy {
    font-size: 0.6875rem;
  }

  .page-hero {
    padding: calc(var(--space-2xl) + 4rem) 0 var(--space-xl);
  }

  .page-hero p {
    font-size: 0.9375rem;
  }

  .cookie-popup {
    left: auto;
    right: var(--space-md);
    max-width: 22rem;
  }
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overlap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overlap-card:nth-child(2) {
    margin-top: var(--space-xl);
  }

  .overlap-card:nth-child(3) {
    margin-top: calc(var(--space-xl) * -1);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .burger {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-creative {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr 1fr;
  }

  .asymmetric-content {
    grid-template-columns: 1fr 1fr;
  }

  .asymmetric-block.offset {
    margin-top: var(--space-2xl);
  }

  .map-wrapper iframe {
    height: 18rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overlap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overlap-card:nth-child(2) {
    margin-top: var(--space-2xl);
  }

  .overlap-card:nth-child(3) {
    margin-top: calc(var(--space-xl) * -0.5);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 2.75rem;
  }

  .form-group input,
  .form-group textarea {
    min-height: 2.75rem;
  }

  .faq-question {
    min-height: 3rem;
  }

  .burger {
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: var(--space-xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-canvas {
    display: none;
  }
}

@supports not (aspect-ratio: 4/3) {
  .product-image {
    height: 0;
    padding-bottom: 75%;
    position: relative;
  }

  .product-image img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .service-image {
    height: 0;
    padding-bottom: 62.5%;
    position: relative;
  }

  .service-image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

