@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --deep-forest: #101413;
  --wet-earth: #1F2623;
  --stone-moss: #2E3633;
  --sageleaf: #4A6A57;
  --misty-fern: #8DAA91;
  --pale-moss: #D4E2D0;
  --lime-accent: #B5DA61;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Nunito', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--deep-forest);
  background-color: var(--pale-moss);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.organic-blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: var(--misty-fern);
  opacity: 0.15;
  filter: blur(40px);
  z-index: -1;
}

.organic-blob-1 {
  width: 40vw;
  height: 40vw;
  top: 10%;
  right: -10%;
  animation: blob-float 20s ease-in-out infinite;
}

.organic-blob-2 {
  width: 35vw;
  height: 35vw;
  bottom: 15%;
  left: -5%;
  animation: blob-float 25s ease-in-out infinite reverse;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.curved-separator {
  position: relative;
  overflow: hidden;
}

.curved-separator::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: var(--pale-moss);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

.curved-separator-top {
  position: relative;
  overflow: hidden;
}

.curved-separator-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: var(--pale-moss);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

header {
  background: var(--wet-earth);
  padding: 2rem 0;
  position: relative;
  z-index: 102;
}

header::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 100%;
  height: 4rem;
  background: var(--wet-earth);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.header-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 103;
}

.logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--pale-moss);
  letter-spacing: 0.05em;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 103;
  position: relative;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}

.burger-menu.active {
  z-index: 103;
  position: relative;
}

.burger-menu span {
  width: 2rem;
  height: 0.3rem;
  background: var(--pale-moss);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
  position: relative;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.45rem, 0.45rem);
  background: var(--pale-moss) !important;
  opacity: 1 !important;
  position: relative;
  z-index: 104;
  width: 2rem;
  height: 0.3rem;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0 !important;
  transform: scale(0);
  width: 0 !important;
  height: 0 !important;
  display: none;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.45rem, -0.45rem);
  background: var(--pale-moss) !important;
  opacity: 1 !important;
  position: relative;
  z-index: 104;
  width: 2rem;
  height: 0.3rem;
}

nav {
  display: flex;
  gap: 3rem;
}

nav a {
  color: var(--pale-moss);
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  position: relative;
}

nav a:hover {
  background: rgba(212, 226, 208, 0.1);
  transform: translateY(-2px);
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--wet-earth);
  z-index: 99;
  padding: 8rem 2rem 2rem;
  clip-path: circle(0% at 50% 0%);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}

.mobile-menu.active {
  clip-path: circle(150% at 50% 0%);
  pointer-events: auto;
}

.mobile-menu nav {
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu nav a {
  font-size: 1.5rem;
  padding: 1rem;
  text-align: center;
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 6rem 2rem;
  position: relative;
}

section:first-of-type {
  padding-top: 4rem;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.container > * {
  width: 100%;
}

.container > .concept-item,
.container > .image-feature-card {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  background: linear-gradient(135deg, var(--wet-earth) 0%, var(--stone-moss) 100%);
  color: var(--pale-moss);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  height: 6rem;
  background: var(--pale-moss);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2rem;
  background: var(--lime-accent);
  color: var(--deep-forest);
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(181, 218, 97, 0.3);
  width: auto;
  max-width: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(181, 218, 97, 0.4);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.style-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.style-card {
  background: var(--pale-moss);
  padding: 3rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--lime-accent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.style-card:hover {
  border-color: var(--sageleaf);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 106, 87, 0.2);
}

.style-card:hover::before {
  opacity: 0.1;
}

.style-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sageleaf);
  position: relative;
  z-index: 1;
}

.style-card p {
  position: relative;
  z-index: 1;
  color: var(--stone-moss);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.material-tile {
  background: var(--misty-fern);
  padding: 3rem 2rem;
  border-radius: 2rem 4rem 2rem 4rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.material-tile::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--lime-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  opacity: 0.2;
}

.material-tile:hover::after {
  width: 200%;
  height: 200%;
}

.material-tile h3 {
  font-size: 1.8rem;
  color: var(--deep-forest);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.benefits-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.benefit-item {
  padding: 2rem;
  background: var(--pale-moss);
  border-radius: 2rem;
  position: relative;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 106, 87, 0.15);
}

.benefit-item h3 {
  font-size: 1.8rem;
  color: var(--sageleaf);
  margin-bottom: 1rem;
}

.soft-cta {
  background: var(--misty-fern);
  padding: 6rem 2rem;
  border-radius: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.soft-cta h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--deep-forest);
}

.soft-cta p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--stone-moss);
}

.concept-banner {
  width: 100%;
  height: 30rem;
  border-radius: 3rem;
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
}

.concept-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 20, 19, 0.4) 0%, rgba(74, 106, 87, 0.4) 100%);
  z-index: 1;
}

.concept-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--pale-moss);
}

.concept-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.concept-item {
  margin-bottom: 6rem;
  width: 100%;
  max-width: 100%;
}

.concept-item:last-child {
  margin-bottom: 0;
}

.concept-item h3 {
  font-size: 2.5rem;
  color: var(--sageleaf);
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.concept-item p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--stone-moss);
}

.concept-features {
  list-style: none;
  margin-bottom: 2rem;
}

.concept-features li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--stone-moss);
  font-size: 1.1rem;
}

.concept-features li::before {
  content: '🌿';
  position: absolute;
  left: 0;
}

.service-block {
  background: var(--pale-moss);
  padding: 3rem;
  border-radius: 3rem;
  margin-bottom: 3rem;
  border-left: 5px solid var(--lime-accent);
  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateX(1rem);
  box-shadow: 0 10px 30px rgba(74, 106, 87, 0.15);
}

.service-block h3 {
  font-size: 2rem;
  color: var(--sageleaf);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-block p {
  color: var(--stone-moss);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 120rem;
  margin: 0 auto;
}

.contact-form {
  background: var(--pale-moss);
  padding: 3rem;
  border-radius: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--stone-moss);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--misty-fern);
  border-radius: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sageleaf);
}

.form-group textarea {
  min-height: 12rem;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.contact-sidebar {
  background: var(--misty-fern);
  padding: 3rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-sidebar::before {
  content: '';
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  background: var(--sageleaf);
  border-radius: 50%;
  opacity: 0.1;
}

.contact-sidebar h3 {
  font-size: 2rem;
  color: var(--deep-forest);
  margin-bottom: 2rem;
}

.contact-info {
  list-style: none;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-info li {
  padding: 1rem 0;
  color: var(--stone-moss);
  font-size: 1.1rem;
}

.contact-info li strong {
  color: var(--deep-forest);
  display: block;
  margin-bottom: 0.3rem;
}

.thank-you-container {
  max-width: 80rem;
  margin: 8rem auto;
  padding: 4rem;
  background: var(--pale-moss);
  border-radius: 4rem;
  text-align: center;
}

.thank-you-container h1 {
  font-size: 3.5rem;
  color: var(--sageleaf);
  margin-bottom: 2rem;
}

.thank-you-container p {
  font-size: 1.3rem;
  color: var(--stone-moss);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.error-container {
  max-width: 60rem;
  margin: 8rem auto;
  padding: 4rem;
  text-align: center;
}

.error-shape {
  width: 20rem;
  height: 20rem;
  margin: 0 auto 3rem;
  background: var(--misty-fern);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: var(--sageleaf);
  font-weight: 700;
}

.error-container h1 {
  font-size: 3rem;
  color: var(--sageleaf);
  margin-bottom: 1rem;
}

.error-container p {
  font-size: 1.2rem;
  color: var(--stone-moss);
  margin-bottom: 2rem;
}

footer {
  background: var(--wet-earth);
  color: var(--pale-moss);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
  border-radius: 4rem 4rem 0 0;
}

.footer-container {
  max-width: 120rem;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--lime-accent);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--pale-moss);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 226, 208, 0.2);
  opacity: 0.7;
}

.page-title {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 80rem;
  margin: 0 auto 3rem;
}

.page-title h1 {
  font-size: 4rem;
  color: var(--sageleaf);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-title h2 {
  font-size: 3rem;
  color: var(--sageleaf);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.page-title p {
  font-size: 1.3rem;
  color: var(--stone-moss);
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--pale-moss);
  border-radius: 3rem;
}

.legal-content h2 {
  font-size: 2.5rem;
  color: var(--sageleaf);
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--stone-moss);
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--stone-moss);
}

.legal-content li {
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  nav {
    display: none;
  }

  .header-container {
    padding: 0 1.5rem;
    flex-wrap: nowrap;
  }

  .logo {
    font-size: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  .hero {
    padding: 4rem 1.5rem;
    min-height: 60vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-image img {
    clip-path: none;
    border-radius: 2rem;
  }

  .page-title {
    padding: 2rem 1rem 1rem;
  }

  .page-title {
    text-align: center;
  }

  .page-title h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .page-title h2 {
    font-size: 2rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .page-title p {
    font-size: 1.1rem;
  }

  .style-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .style-card {
    padding: 2rem;
    border-radius: 2rem;
  }

  .style-card-with-image {
    border-radius: 2rem;
  }

  .style-card-image {
    height: 18rem;
  }

  .style-card-content {
    padding: 2rem;
  }

  .materials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .material-tile {
    padding: 2rem 1.5rem;
  }

  .material-tile-with-icon {
    padding: 2.5rem 1.5rem;
  }

  .benefits-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-item {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .benefit-item:nth-child(odd),
  .benefit-item:nth-child(even) {
    transform: translateX(0);
  }

  .asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .asymmetric-grid.reverse {
    direction: ltr;
  }

  .asymmetric-grid .text-side {
    padding: 1.5rem;
  }

  .asymmetric-grid .image-side {
    order: -1;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-section .content-wrapper {
    padding: 1.5rem;
  }

  .image-feature-card {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 2rem;
  }

  .image-feature-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .image-feature-card .image-container {
    height: 20rem;
  }

  .image-feature-card .content-container {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .stat-card {
    padding: 2.5rem 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: -0.5rem;
    left: 1.5rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .process-step .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
  }

  .process-step .step-content {
    padding: 1.5rem;
    text-align: left;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .image-mosaic-item {
    aspect-ratio: 16/9;
  }

  .image-mosaic-item:nth-child(1),
  .image-mosaic-item:nth-child(4) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .icon-wrapper {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-sidebar {
    padding: 2rem;
  }

  .service-block {
    padding: 2rem;
  }

  .concept-banner {
    height: 20rem;
    border-radius: 2rem;
  }

  .concept-content h2 {
    font-size: 2.5rem;
  }

  .concept-item {
    margin-bottom: 4rem;
  }

  .concept-item h3 {
    font-size: 2rem;
  }

  .soft-cta {
    padding: 4rem 1.5rem;
    border-radius: 2rem;
  }

  .soft-cta h2 {
    font-size: 2.5rem;
  }

  .soft-cta p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .hero-image img,
  .image-side img,
  .image-wrapper img,
  .image-container img,
  .image-mosaic-item img {
    width: 100%;
    height: auto;
  }

  .legal-content {
    padding: 2rem 1rem;
  }

  .legal-content h2 {
    font-size: 2rem;
  }

  .thank-you-container {
    padding: 3rem 2rem;
    margin: 4rem auto;
  }

  .thank-you-container h1 {
    font-size: 3rem;
  }

  .error-container {
    padding: 3rem 1.5rem;
  }

  .error-shape {
    width: 18rem;
    height: 18rem;
    font-size: 7rem;
  }

  .error-container h1 {
    font-size: 2.5rem;
  }

  .materials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .asymmetric-grid .materials-grid {
    grid-template-columns: 1fr;
  }

  .process-step .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }

  .process-step .step-content h3 {
    font-size: 1.6rem;
  }

  .process-step .step-content p {
    font-size: 1rem;
  }

  .image-feature-card .content-container h3 {
    font-size: 2rem;
  }

  .image-feature-card .content-container p {
    font-size: 1rem;
  }

  .image-feature-card .content-container ul {
    font-size: 1rem;
  }

  .split-section .content-wrapper .benefit-item {
    margin-bottom: 1.5rem;
  }

  .split-section .content-wrapper .benefit-item h3 {
    font-size: 1.6rem;
  }

  .split-section .content-wrapper .benefit-item p {
    font-size: 1rem;
  }

  .contact-sidebar svg {
    width: 150px;
    height: 150px;
  }

  .service-block .cta-button {
    display: inline-block;
    width: auto;
    text-align: center;
    margin-top: 1rem;
  }

  .concept-item .image-feature-card {
    margin-bottom: 2rem;
  }

  .concept-item .image-mosaic {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }

  .concept-item .image-mosaic-item {
    aspect-ratio: 16/9;
  }

  .concept-item .image-mosaic-item:nth-child(1),
  .concept-item .image-mosaic-item:nth-child(4) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .curved-separator::before,
  .curved-separator-top::before {
    height: 3rem;
  }

  .testimonial-card .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .contact-sidebar svg {
    width: 120px;
    height: 120px;
    margin-top: 2rem;
  }

  .form-group textarea {
    min-height: 10rem;
  }

  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    margin-right: 0.5rem;
  }

  header::after {
    height: 3rem;
  }

  .hero::before {
    height: 4rem;
  }

  .mobile-menu nav a {
    font-size: 1.4rem;
    padding: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .burger-menu {
    min-width: 44px;
    min-height: 44px;
  }

  .form-group input,
  .form-group textarea {
    min-height: 44px;
  }

  .checkbox-group input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
  }

  .concept-features li::before {
    margin-right: 0.5rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }

  .contact-info {
    font-size: 1rem;
  }

  .contact-info li strong {
    font-size: 1rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
  }

  .concept-item img {
    border-radius: 1.5rem;
    margin-top: 1.5rem;
  }

  .service-block .cta-button {
    width: auto;
    text-align: center;
  }

  .split-section .image-wrapper img {
    border-radius: 1.5rem;
  }

  .organic-blob-1,
  .organic-blob-2 {
    opacity: 0.1;
  }

  .icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.2rem;
  }

  .material-tile-with-icon .icon-wrapper {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .process-step .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.6rem;
  }

  .stat-card .stat-number {
    font-size: 3rem;
  }

  .stat-card .stat-label {
    font-size: 1.1rem;
  }

  .testimonial-card h3 {
    font-size: 1.5rem;
  }

  .testimonial-card p {
    font-size: 1rem;
  }

  .concept-item h3 {
    font-size: 2.2rem;
  }

  .concept-item p {
    font-size: 1.1rem;
  }

  .concept-features li {
    font-size: 1rem;
  }

  .service-block h3 {
    font-size: 1.8rem;
  }

  .service-block p {
    font-size: 1rem;
  }

  .benefit-item h3 {
    font-size: 1.6rem;
  }

  .benefit-item p {
    font-size: 1rem;
  }

  .material-tile-with-icon h3 {
    font-size: 1.6rem;
  }

  .material-tile-with-icon p {
    font-size: 0.95rem;
  }

  .image-feature-card h3 {
    font-size: 2rem;
  }

  .image-feature-card p {
    font-size: 1rem;
  }

  .legal-content h2 {
    font-size: 2.2rem;
  }

  .legal-content p {
    font-size: 1rem;
  }

  .legal-content ul {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  * {
    box-sizing: border-box !important;
  }

  .header-container {
    padding: 0.75rem 1rem !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .logo {
    font-size: 1.3rem !important;
    max-width: calc(100% - 50px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .burger-menu {
    min-width: 44px !important;
    min-height: 44px !important;
    flex-shrink: 0 !important;
  }

  .burger-menu span {
    width: 1.5rem !important;
  }

  section {
    padding: 2.5rem 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    padding: 0 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .hero {
    padding: 2.5rem 0.75rem !important;
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-text {
    width: 100% !important;
    text-align: center !important;
  }

  .hero-text h1 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
  }

  .hero-text p {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
  }

  .hero-image {
    width: 100% !important;
    margin-top: 1rem !important;
  }

  .hero-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 1.5rem !important;
    max-width: 100% !important;
  }

  .page-title {
    padding: 1.5rem 0.5rem 1rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-title h1 {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    line-height: 1.3 !important;
  }

  .page-title h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    line-height: 1.3 !important;
  }

  .page-title p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .style-cards {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .style-card {
    padding: 1.25rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .style-card-with-image {
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .style-card-image {
    height: 12rem !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .style-card-content {
    padding: 1.25rem !important;
    width: 100% !important;
  }

  .style-card h3,
  .style-card-with-image h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .style-card p,
  .style-card-with-image p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .materials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .material-tile {
    padding: 1.25rem 0.75rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .material-tile h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .material-tile p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .material-tile-with-icon {
    padding: 1.5rem 0.75rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .material-tile-with-icon h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .material-tile-with-icon p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  .benefits-section {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .benefit-item {
    padding: 1.25rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  .benefit-item h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .benefit-item p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .asymmetric-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    direction: ltr !important;
  }

  .asymmetric-grid.reverse {
    direction: ltr !important;
  }

  .asymmetric-grid .image-side {
    order: -1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .asymmetric-grid .image-side img {
    width: 100% !important;
    height: auto !important;
    border-radius: 1.5rem !important;
  }

  .asymmetric-grid .text-side {
    padding: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .split-section {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    direction: ltr !important;
  }

  .split-section.reverse {
    direction: ltr !important;
  }

  .split-section .image-wrapper {
    order: -1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .split-section .image-wrapper img {
    width: 100% !important;
    height: auto !important;
    border-radius: 1.5rem !important;
  }

  .split-section .content-wrapper {
    padding: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .image-feature-card {
    grid-template-columns: 1fr !important;
    border-radius: 1.5rem !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    direction: ltr !important;
  }

  .image-feature-card.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }

  .image-feature-card .image-container {
    order: -1 !important;
    height: 15rem !important;
    width: 100% !important;
  }

  .image-feature-card .image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .image-feature-card .content-container {
    padding: 1.25rem !important;
    width: 100% !important;
  }

  .image-feature-card h3,
  .image-feature-card .content-container h3 {
    font-size: 1.4rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .image-feature-card p,
  .image-feature-card .content-container p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .stat-card {
    padding: 1.5rem 0.75rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .stat-number {
    font-size: 2.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  .stat-label {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
  }

  .stat-card p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  .testimonial-card {
    padding: 1.25rem !important;
    border-radius: 1.5rem !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .testimonial-card::before {
    font-size: 2.5rem !important;
    top: -0.3rem !important;
    left: 0.75rem !important;
  }

  .testimonial-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .testimonial-card p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .process-step {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .process-step .step-number {
    width: 2.75rem !important;
    height: 2.75rem !important;
    font-size: 1.2rem !important;
    margin: 0 auto 0.75rem !important;
  }

  .process-step .step-content {
    padding: 1rem !important;
    border-radius: 1rem !important;
    text-align: left !important;
    width: 100% !important;
  }

  .process-step h3,
  .process-step .step-content h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .process-step p,
  .process-step .step-content p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .image-mosaic {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin: 1.5rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .image-mosaic-item {
    border-radius: 1rem !important;
    aspect-ratio: 16/9 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .image-mosaic-item:nth-child(1),
  .image-mosaic-item:nth-child(4) {
    grid-row: span 1 !important;
    grid-column: span 1 !important;
  }

  .image-mosaic-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-form {
    padding: 1.25rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-form h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.3 !important;
  }

  .contact-sidebar {
    padding: 1.25rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 1rem !important;
  }

  .contact-sidebar h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
  }

  .service-block {
    padding: 1.25rem !important;
    border-radius: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
    transform: none !important;
  }

  .service-block h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .service-block p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  .service-block .cta-button {
    width: auto !important;
    display: inline-block !important;
    text-align: center !important;
    margin-top: 1rem !important;
  }

  .concept-banner {
    height: 12rem !important;
    border-radius: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }

  .concept-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .concept-content {
    padding: 1.25rem !important;
    width: 100% !important;
  }

  .concept-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
  }

  .concept-item {
    margin-bottom: 2.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .concept-item h3 {
    font-size: 1.4rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .concept-item p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  .concept-features {
    margin-left: 0;
    padding-left: 1.5rem;
  }

  .concept-features li {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .soft-cta {
    padding: 2rem 0.75rem !important;
    border-radius: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .soft-cta h2 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
  }

  .soft-cta p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
  }

  .cta-button {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 2rem !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .footer-container {
    padding: 2rem 0.75rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-section {
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }

  .footer-section:last-child {
    margin-bottom: 0 !important;
  }

  .footer-section h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-section p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  .footer-section ul {
    font-size: 0.85rem !important;
    list-style: none !important;
    padding: 0 !important;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem !important;
  }

  .footer-section a {
    font-size: 0.85rem !important;
  }

  .footer-bottom {
    font-size: 0.8rem !important;
    padding-top: 1.5rem !important;
    text-align: center !important;
  }

  .legal-content {
    padding: 2rem 0.75rem;
  }

  .legal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .legal-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .legal-content ul {
    margin-left: 1.5rem;
    font-size: 0.95rem;
  }

  .thank-you-container {
    padding: 2rem 1rem;
    margin: 3rem auto;
    border-radius: 2rem;
  }

  .thank-you-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .thank-you-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .error-container {
    padding: 2rem 1rem;
  }

  .error-shape {
    width: 15rem;
    height: 15rem;
    font-size: 6rem;
    margin-bottom: 2rem;
  }

  .error-container h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .error-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem !important;
    width: 100% !important;
  }

  .form-group label {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    border-radius: 0.75rem !important;
    box-sizing: border-box !important;
  }

  .form-group textarea {
    min-height: 8rem !important;
    resize: vertical !important;
  }

  .checkbox-group {
    font-size: 0.8rem !important;
    margin-bottom: 1.25rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .checkbox-group input[type="checkbox"] {
    min-width: 18px !important;
    min-height: 18px !important;
    margin-top: 0.2rem !important;
    margin-right: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .checkbox-group label {
    line-height: 1.5 !important;
    display: flex !important;
    align-items: flex-start !important;
  }

  .contact-info {
    width: 100% !important;
  }

  .contact-info li {
    font-size: 0.9rem !important;
    padding: 0.75rem 0 !important;
    line-height: 1.6 !important;
  }

  .contact-info li strong {
    font-size: 0.9rem !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
  }

  .organic-blob-1,
  .organic-blob-2 {
    display: none;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .asymmetric-grid .materials-grid {
    grid-template-columns: 1fr;
  }

  .curved-separator::before,
  .curved-separator-top::before {
    height: 2rem;
  }

  header::after {
    height: 2rem;
    bottom: -1rem;
  }

  .hero::before {
    height: 3rem;
    bottom: -1.5rem;
  }

  .mobile-menu nav a {
    font-size: 1.3rem;
    padding: 0.875rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  .burger-menu {
    min-width: 44px;
    min-height: 44px;
  }

  .form-group input,
  .form-group textarea {
    min-height: 44px;
  }

  .checkbox-group input[type="checkbox"] {
    min-width: 18px;
    min-height: 18px;
  }

  .logo {
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
  }


  .split-section .content-wrapper {
    padding: 1rem;
  }

  .split-section .content-wrapper .benefit-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .split-section .content-wrapper .benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .split-section .content-wrapper .benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .split-section .content-wrapper .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .asymmetric-grid .text-side .materials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .asymmetric-grid .text-side .material-tile-with-icon {
    padding: 2rem 1rem;
  }

  .asymmetric-grid .text-side .material-tile-with-icon h3 {
    font-size: 1.4rem;
  }

  .asymmetric-grid .text-side .material-tile-with-icon p {
    font-size: 0.9rem;
  }

  .contact-sidebar svg {
    width: 120px;
    height: 120px;
    margin-top: 2rem;
  }

  .contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
    border-radius: 0.75rem;
  }

  .checkbox-group {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .checkbox-group label {
    line-height: 1.5;
  }

  .service-block {
    margin-bottom: 2rem;
  }

  .service-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .service-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .concept-item {
    margin-bottom: 3rem;
  }

  .concept-item .image-feature-card {
    margin-bottom: 1.5rem;
  }

  .concept-item .image-mosaic {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    grid-template-columns: 1fr !important;
  }

  .concept-item .image-mosaic-item {
    aspect-ratio: 16/9 !important;
  }

  .concept-item .image-mosaic-item:nth-child(1),
  .concept-item .image-mosaic-item:nth-child(4) {
    grid-row: span 1 !important;
    grid-column: span 1 !important;
  }

  .concept-features {
    padding-left: 1.25rem !important;
    margin-left: 0 !important;
  }

  .concept-features li {
    font-size: 0.9rem !important;
    padding: 0.5rem 0 !important;
  }

  .concept-features li::before {
    left: -1.25rem !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .hero-image img,
  .image-side img,
  .image-wrapper img,
  .image-container img,
  .image-mosaic-item img,
  .style-card-image,
  .concept-banner img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .mobile-menu {
    padding-top: 4rem !important;
    width: 100% !important;
  }

  .mobile-menu nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .mobile-menu nav a {
    padding: 0.875rem !important;
    font-size: 1.1rem !important;
    border-radius: 1rem !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  main {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .curved-separator,
  .curved-separator-top {
    width: 100% !important;
    max-width: 100% !important;
  }

  .curved-separator::before,
  .curved-separator-top::before {
    height: 1.5rem !important;
  }

  header::after {
    height: 1.5rem !important;
    bottom: -0.75rem !important;
  }

  .hero::before {
    height: 2rem !important;
    bottom: -1rem !important;
  }

  .contact-sidebar svg {
    width: 80px !important;
    height: 80px !important;
    margin-top: 1.5rem !important;
  }


  .legal-content {
    padding: 1.5rem 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .legal-content h2 {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .legal-content h2:first-child {
    margin-top: 0 !important;
  }

  .legal-content p {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.7 !important;
  }

  .legal-content ul {
    margin-left: 1.25rem !important;
    margin-bottom: 1rem !important;
    font-size: 0.85rem !important;
    padding-left: 0.5rem !important;
  }

  .legal-content li {
    margin-bottom: 0.6rem !important;
    line-height: 1.6 !important;
  }

  .thank-you-container {
    padding: 2rem 0.75rem !important;
    margin: 2rem auto !important;
    border-radius: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .thank-you-container h1 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
  }

  .thank-you-container p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.7 !important;
  }

  .error-container {
    padding: 2rem 0.75rem !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .error-shape {
    width: 12rem !important;
    height: 12rem !important;
    font-size: 5rem !important;
    margin: 0 auto 1.5rem !important;
  }

  .error-container h1 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .error-container p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
  }

  .style-card-with-image h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .style-card-with-image p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .material-tile-with-icon .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .material-tile-with-icon h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .material-tile-with-icon p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .stat-card {
    padding: 2rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .stat-card p {
    font-size: 0.9rem;
    margin-top: 0.75rem;
  }

  .testimonial-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: -0.3rem;
    left: 1rem;
  }

  .image-mosaic-item {
    border-radius: 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 2rem;
  }

  .soft-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .soft-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .page-title h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .page-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .page-title p {
    font-size: 1rem;
  }

  .concept-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .concept-item p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .concept-content h2 {
    font-size: 2rem;
  }

  .concept-banner {
    height: 15rem;
    border-radius: 1.5rem;
  }

  .contact-info li {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .contact-info li strong {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .contact-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-block h3 {
    font-size: 1.6rem;
  }

  .benefit-item h3 {
    font-size: 1.5rem;
  }

  .benefit-item p {
    font-size: 0.95rem;
  }

  .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .material-tile h3 {
    font-size: 1.5rem;
  }

  .material-tile p {
    font-size: 0.9rem;
  }

  .style-card h3 {
    font-size: 1.5rem;
  }

  .style-card p {
    font-size: 0.95rem;
  }
}

.icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--sageleaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(74, 106, 87, 0.2);
  transition: all 0.3s ease;
}

.icon-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--lime-accent);
}

.style-card-with-image {
  background: var(--pale-moss);
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.style-card-with-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(74, 106, 87, 0.25);
}

.style-card-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
}

.style-card-content {
  padding: 2.5rem;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.asymmetric-grid.reverse {
  direction: rtl;
}

.asymmetric-grid.reverse > * {
  direction: ltr;
}

.asymmetric-grid .image-side {
  position: relative;
}

.asymmetric-grid .image-side img {
  border-radius: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}

.asymmetric-grid .text-side {
  padding: 2rem;
}

.image-feature-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  background: var(--pale-moss);
  border-radius: 3rem;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.image-feature-card:last-child {
  margin-bottom: 0;
}

.image-feature-card:hover {
  box-shadow: 0 15px 45px rgba(74, 106, 87, 0.2);
  transform: translateY(-5px);
}

.image-feature-card.reverse {
  grid-template-columns: 1.5fr 1fr;
  direction: rtl;
}

.image-feature-card.reverse > * {
  direction: ltr;
}

.image-feature-card .image-container {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.image-feature-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 300px;
}

.image-feature-card:hover .image-container img {
  transform: scale(1.1);
}

.image-feature-card .content-container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.image-feature-card .content-container h3 {
  font-size: 2.2rem;
  color: var(--sageleaf);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.image-feature-card .content-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--stone-moss);
  margin-bottom: 1.5rem;
}

.image-feature-card .content-container .cta-button {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.image-feature-card .content-container ul {
  margin-bottom: 1.5rem;
}

.image-feature-card .content-container ul:last-of-type {
  margin-bottom: 0;
}

.image-feature-card .content-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--stone-moss);
  margin-bottom: 1.5rem;
}

.material-tile-with-icon {
  background: linear-gradient(135deg, var(--misty-fern) 0%, var(--sageleaf) 100%);
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  color: white;
}

.material-tile-with-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(181, 218, 97, 0.3) 0%, transparent 70%);
  transition: transform 0.6s ease;
  transform: scale(0);
}

.material-tile-with-icon:hover::before {
  transform: scale(1);
}

.material-tile-with-icon:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.material-tile-with-icon .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 1.5rem;
}

.material-tile-with-icon h3 {
  color: white;
  margin-bottom: 1rem;
}

.material-tile-with-icon p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat-card {
  background: var(--pale-moss);
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  border: 3px solid var(--misty-fern);
  transition: all 0.3s ease;
  position: relative;
}

.stat-card p {
  margin-top: 1rem;
  color: var(--stone-moss);
  font-size: 1rem;
  line-height: 1.6;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--lime-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  border-color: var(--sageleaf);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sageleaf);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 1.2rem;
  color: var(--stone-moss);
  font-weight: 500;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  width: 100%;
  max-width: 100%;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-section .image-wrapper {
  position: relative;
}

.split-section .image-wrapper img {
  border-radius: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.split-section .content-wrapper {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section .content-wrapper .benefit-item {
  margin-bottom: 2.5rem;
}

.split-section .content-wrapper .benefit-item:last-child {
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--pale-moss);
  padding: 3rem;
  border-radius: 2.5rem;
  border-left: 5px solid var(--lime-accent);
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(74, 106, 87, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 6rem;
  color: var(--misty-fern);
  opacity: 0.3;
  font-family: var(--font-serif);
  line-height: 1;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.process-step .step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--sageleaf);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(74, 106, 87, 0.3);
}

.process-step .step-content {
  background: var(--pale-moss);
  padding: 2rem;
  border-radius: 1.5rem;
  border-left: 4px solid var(--lime-accent);
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 4rem 0;
  width: 100%;
  max-width: 100%;
}

.image-mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 1;
  width: 100%;
}

.image-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-mosaic-item:hover img {
  transform: scale(1.15);
}

.image-mosaic-item:nth-child(1) {
  grid-row: span 2;
}

.image-mosaic-item:nth-child(4) {
  grid-column: span 2;
}


