@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
    --color-lavender: #d8c5e2;
    --color-lavender-light: #ede5f2;
    --color-pink: #f5e1e6;
    --color-pink-dark: #e8c4ce;
    --color-ivory: #faf8f5;
    --color-grey-blue: #9aa8b5;
    --color-grey-blue-dark: #6b7d8a;
    --color-text: #3d3d3d;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-overlay: rgba(61, 61, 61, 0.85);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    --space-section: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-round: 50%;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 75rem;
    --header-height: 4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-ivory);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-grey-blue-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-lavender);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: var(--space-md);
}

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-lg) 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-inner {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--color-lavender);
}

.burger {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 200;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--color-white);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast);
}

.burger:hover {
    background: var(--color-lavender-light);
}

.burger-line {
    width: 1.2rem;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 160;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-lavender);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-section) var(--space-md);
    background: linear-gradient(135deg, rgba(237, 229, 242, 0.85) 0%, rgba(245, 225, 230, 0.85) 50%, rgba(250, 248, 245, 0.9) 100%),
                url('../visuals/bg-image-1.webp') center / cover no-repeat;
    background-color: var(--color-lavender-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: var(--color-lavender);
    opacity: 0.2;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -10%;
    width: 35%;
    height: 50%;
    background: var(--color-pink-dark);
    opacity: 0.15;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(50px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-grey-blue-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-lavender);
}

.btn-secondary:hover {
    background: var(--color-lavender-light);
    color: var(--color-text);
    transform: translateY(-2px);
}

.section {
    padding: var(--space-section) 0;
}

.section-alt {
    background: var(--color-white);
}

.section-gradient {
    background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-lavender-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-desc {
    color: var(--color-text-light);
    max-width: 35rem;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    color: var(--color-grey-blue-dark);
}

.card-title {
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.product-content {
    padding: var(--space-lg);
}

.product-title {
    margin-bottom: var(--space-sm);
}

.product-desc {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xxl);
    align-items: center;
}

.features-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.features-content {
    padding: var(--space-lg) 0;
}

.features-list {
    margin-top: var(--space-lg);
}

.features-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--color-lavender-light);
    border-radius: var(--radius-md);
}

.features-item i {
    color: var(--color-grey-blue-dark);
    font-size: 1.1rem;
    margin-top: 2px;
}

.features-item-text {
    font-size: 0.9rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
}

.about-block {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-block:first-child {
    transform: translateY(var(--space-xl));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-item {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-grey-blue-dark);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-pink-dark) 100%);
    text-align: center;
    padding: var(--space-section) var(--space-md);
}

.cta-title {
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.cta-text {
    color: var(--color-text-light);
    max-width: 30rem;
    margin: 0 auto var(--space-xl);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xxl);
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-pink) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    color: var(--color-text);
}

.contact-info-title {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--color-grey-blue-dark);
    margin-top: 3px;
}

.contact-item-text {
    font-size: 0.9rem;
}

.contact-item-text a {
    color: var(--color-text);
}

.contact-item-text a:hover {
    color: var(--color-grey-blue-dark);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-lavender);
    border-radius: var(--radius-md);
    background: var(--color-ivory);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-grey-blue);
    box-shadow: 0 0 0 3px rgba(154, 168, 181, 0.2);
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 1rem;
    height: 1rem;
    margin-top: 3px;
    accent-color: var(--color-grey-blue-dark);
}

.form-checkbox-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.form-checkbox-label a {
    color: var(--color-grey-blue-dark);
    text-decoration: underline;
}

.map-wrapper {
    margin-top: var(--space-xxl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 20rem;
    border: none;
}

.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-xl) 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-link {
    font-size: 0.8rem;
    color: var(--color-grey-blue);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-grey-blue);
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-section)) 0 var(--space-xxl);
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-pink) 100%);
    text-align: center;
}

.page-title {
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    color: var(--color-text-light);
    max-width: 35rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--color-grey-blue-dark);
}

.breadcrumb span {
    color: var(--color-text-light);
}

.content-section {
    padding: var(--space-section) 0;
}

.content-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-wrapper h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-wrapper p {
    color: var(--color-text-light);
}

.content-wrapper ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.content-wrapper li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.content-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: var(--color-lavender);
    border-radius: var(--radius-round);
}

.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-pink) 50%, var(--color-ivory) 100%);
    padding: var(--space-section);
}

.thank-you-content {
    max-width: 30rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-round);
    margin: 0 auto var(--space-xl);
    font-size: 2rem;
    color: var(--color-grey-blue-dark);
    box-shadow: var(--shadow-md);
}

.thank-you-title {
    margin-bottom: var(--space-md);
}

.thank-you-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-lavender-light) 100%);
    padding: var(--space-section);
}

.error-content {
    max-width: 30rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--space-md);
    text-shadow: var(--shadow-md);
}

.error-title {
    margin-bottom: var(--space-md);
}

.error-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
    flex: 1;
}

.cookie-text a {
    color: var(--color-grey-blue-dark);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender-light);
    border-radius: var(--radius-round);
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--color-grey-blue-dark);
}

.team-name {
    margin-bottom: var(--space-xs);
}

.team-role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-lavender);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-xl) - 4px);
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--color-grey-blue-dark);
    border-radius: var(--radius-round);
}

.timeline-title {
    margin-bottom: var(--space-sm);
}

.timeline-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.material-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.material-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender-light);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--color-grey-blue-dark);
    flex-shrink: 0;
}

.material-content {
    flex: 1;
}

.material-title {
    margin-bottom: var(--space-xs);
}

.material-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--space-lg) / 2 - 0.5rem);
    width: 1rem;
    height: 2px;
    background: var(--color-lavender);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-lavender);
    border-radius: var(--radius-round);
    margin: 0 auto var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
}

.process-title {
    margin-bottom: var(--space-sm);
}

.process-text {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
}

.faq-list {
    max-width: 45rem;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    color: var(--color-text);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-lavender-light);
}

.faq-question i {
    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-inner {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.value-card {
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-lavender-light) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-grey-blue-dark);
    margin-bottom: var(--space-md);
}

.value-title {
    margin-bottom: var(--space-sm);
}

.value-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 64rem) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48rem) {
    :root {
        --space-section: 3rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .features-image {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-block:first-child {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 30rem) {
    :root {
        --space-section: 2.5rem;
    }
    
    body {
        font-size: 0.85rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .nav-link {
        font-size: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .material-card {
        flex-direction: column;
        text-align: center;
    }
    
    .material-icon {
        margin: 0 auto;
    }
}

@media (max-width: 20rem) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .burger {
        right: var(--space-sm);
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
}
