@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --color-nude-light: #F5EDE6;
    --color-nude: #E8DDD4;
    --color-nude-dark: #D4C4B5;
    --color-lavender-light: #D8CEE2;
    --color-lavender: #C5B8D1;
    --color-lavender-dark: #9B8AA6;
    --color-plum: #4A3F55;
    --color-plum-light: #5E5269;
    --color-cream: #FAF8F5;
    --color-white: #FFFFFF;
    --color-text: #3D3544;
    --color-text-light: #6B5F75;
    --color-overlay: rgba(74, 63, 85, 0.85);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 50%;
    --radius-blob: 60% 40% 50% 50% / 50% 60% 40% 50%;

    --shadow-sm: 0 2px 8px rgba(74, 63, 85, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 63, 85, 0.12);
    --shadow-lg: 0 8px 32px rgba(74, 63, 85, 0.16);
    --shadow-glow: 0 0 40px rgba(197, 184, 209, 0.4);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-liquid: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    --max-width: 75rem;
    --header-height: 4.5rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-plum);
}

h1 {
    font-size: var(--fs-4xl);
}

h2 {
    font-size: var(--fs-3xl);
}

h3 {
    font-size: var(--fs-2xl);
}

h4 {
    font-size: var(--fs-xl);
}

h5 {
    font-size: var(--fs-lg);
}

h6 {
    font-size: var(--fs-md);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-lavender-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-plum);
    border: 1px solid var(--color-nude-dark);
}

.btn-secondary:hover {
    background: var(--color-nude-light);
    border-color: var(--color-lavender);
}

.btn-ghost {
    color: var(--color-plum);
    padding: var(--space-sm);
}

.btn-ghost:hover {
    color: var(--color-lavender-dark);
}

.header {
    position: fixed;
    top: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-2xl));
    max-width: 60rem;
    transition: var(--transition-liquid);
}

.header.scrolled {
    top: var(--space-sm);
}

.header.hidden {
    transform: translateX(-50%) translateY(-150%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 196, 181, 0.3);
}

.logo {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-plum);
    letter-spacing: 0.02em;
}

.logo span {
    color: var(--color-lavender-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-desktop a {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-lavender-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-plum);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-overlay);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 500;
    color: var(--color-white);
    transition: var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--color-lavender-light);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-nude) 100%);
    border-radius: var(--radius-blob);
    opacity: 0.4;
    animation: blob-float 15s ease-in-out infinite;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, var(--color-nude-light) 0%, var(--color-lavender) 100%);
    border-radius: 50% 60% 40% 50% / 40% 50% 60% 50%;
    opacity: 0.3;
    animation: blob-float 12s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }

    25% {
        transform: translate(20px, -30px) scale(1.05);
        border-radius: 50% 60% 40% 50% / 60% 40% 50% 50%;
    }

    50% {
        transform: translate(-10px, 20px) scale(0.95);
        border-radius: 40% 50% 60% 50% / 50% 50% 40% 60%;
    }

    75% {
        transform: translate(15px, 10px) scale(1.02);
        border-radius: 50% 40% 50% 60% / 40% 60% 50% 50%;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-lavender-dark);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(var(--fs-3xl), 8vw, var(--fs-4xl));
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--fs-md);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-blob);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: img-morph 20s ease-in-out infinite;
}

@keyframes img-morph {
    0%, 100% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }

    50% {
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
}

.hero-img-wrapper img {
    width: 100%;
    max-width: 24rem;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-nude) 100%);
    border-radius: var(--radius-lg);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-plum);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 184, 209, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.about-img-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-float {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.about-float-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-lavender-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.about-float-text {
    font-size: var(--fs-sm);
}

.about-float-text strong {
    display: block;
    font-size: var(--fs-lg);
    font-family: var(--font-heading);
    color: var(--color-plum);
}

.about-content h3 {
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-sm);
}

.about-features {
    display: grid;
    gap: var(--space-md);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.about-feature i {
    color: var(--color-lavender-dark);
    font-size: var(--fs-md);
}

.about-feature span {
    font-size: var(--fs-sm);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lavender) 0%, var(--color-nude-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-nude) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--color-plum);
    font-size: var(--fs-lg);
}

.service-card h4 {
    margin-bottom: var(--space-sm);
    font-size: var(--fs-md);
}

.service-card p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

.service-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-lavender-dark);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.service-link:hover {
    gap: var(--space-sm);
}

.products {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-nude-light) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-lavender-dark);
}

.product-info {
    padding: var(--space-lg);
}

.product-info h4 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-sm);
}

.product-info p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--color-plum);
}

.product-price span {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-text-light);
}

.process {
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-lavender-dark) 100%);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--color-white);
}

.step-content h4 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.testimonials {
    background: linear-gradient(180deg, var(--color-nude-light) 0%, var(--color-cream) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: var(--color-lavender-dark);
}

.testimonial-text {
    font-size: var(--fs-sm);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-nude) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-plum);
    font-weight: 600;
    font-size: var(--fs-sm);
}

.testimonial-info strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-plum);
}

.testimonial-info span {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
}

.cta {
    position: relative;
    overflow: hidden;
}

.cta-box {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-plum) 0%, var(--color-plum-light) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: var(--radius-full);
    opacity: 0.1;
}

.cta-box::before {
    top: -10rem;
    right: -5rem;
    background: var(--color-lavender);
}

.cta-box::after {
    bottom: -10rem;
    left: -5rem;
    background: var(--color-nude);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-size: var(--fs-2xl);
}

.cta-content p {
    color: var(--color-lavender-light);
    margin-bottom: var(--space-xl);
    font-size: var(--fs-sm);
}

.cta-content .btn-primary {
    background: var(--color-white);
    color: var(--color-plum);
}

.cta-content .btn-primary:hover {
    background: var(--color-nude-light);
}

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-intro h3 {
    margin-bottom: var(--space-md);
}

.contact-intro p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-nude) 100%);
    border-radius: var(--radius-md);
    color: var(--color-plum);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-plum);
    margin-bottom: var(--space-xs);
}

.contact-item-text span,
.contact-item-text a {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.contact-item-text a:hover {
    color: var(--color-lavender-dark);
}

.contact-form-wrapper {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-plum);
}

.form-group input,
.form-group textarea {
    padding: var(--space-md);
    border: 1px solid var(--color-nude-dark);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-lavender);
    box-shadow: 0 0 0 3px rgba(197, 184, 209, 0.2);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 1rem;
    height: 1rem;
    margin-top: 2px;
    accent-color: var(--color-lavender-dark);
}

.form-checkbox label {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--color-lavender-dark);
    text-decoration: underline;
}

.map-wrapper {
    margin-top: var(--space-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 18rem;
    border: none;
}

.faq-section {
    padding: var(--space-4xl) 0;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-plum);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-nude-light);
}

.faq-question i {
    transition: var(--transition-base);
    color: var(--color-lavender-dark);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    max-height: 20rem;
}

.footer {
    padding: var(--space-xl) 0;
    background: var(--color-plum);
    color: var(--color-lavender-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo span {
    color: var(--color-lavender);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.footer-links a {
    font-size: var(--fs-xs);
    color: var(--color-lavender-light);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    font-size: var(--fs-xs);
    color: var(--color-lavender);
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--color-nude-light) 0%, var(--color-cream) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, transparent 60%);
    border-radius: var(--radius-blob);
    opacity: 0.3;
}

.page-hero h1 {
    margin-bottom: var(--space-md);
    position: relative;
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 32rem;
    margin: 0 auto;
    font-size: var(--fs-sm);
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-xs);
    position: relative;
}

.breadcrumb a {
    color: var(--color-lavender-dark);
}

.breadcrumb span {
    color: var(--color-text-light);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: var(--fs-xl);
    margin: var(--space-xl) 0 var(--space-md);
}

.content-wrapper h3 {
    font-size: var(--fs-lg);
    margin: var(--space-lg) 0 var(--space-md);
}

.content-wrapper p {
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-wrapper li {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.content-wrapper ol li {
    list-style: decimal;
}

.content-wrapper a {
    color: var(--color-lavender-dark);
    text-decoration: underline;
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    text-align: center;
}

.thank-you-content {
    max-width: 32rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-lavender-dark) 100%);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--fs-3xl);
    box-shadow: var(--shadow-glow);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    text-align: center;
}

.error-content {
    max-width: 32rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--color-lavender-light);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-content h1 {
    margin-bottom: var(--space-md);
    font-size: var(--fs-2xl);
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    max-width: 28rem;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(150%);
    transition: var(--transition-liquid);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-popup h4 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-sm);
}

.cookie-popup p {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.cookie-popup a {
    color: var(--color-lavender-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

.cookie-actions .btn {
    flex: 1;
    padding: var(--space-sm);
    font-size: var(--fs-xs);
}

.privacy-popup {
    position: fixed;
    inset: 0;
    background: rgba(74, 63, 85, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.privacy-popup.active {
    opacity: 1;
    visibility: visible;
}

.privacy-popup-content {
    width: 100%;
    max-width: 32rem;
    max-height: 80vh;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition-base);
}

.privacy-popup.active .privacy-popup-content {
    transform: scale(1);
}

.privacy-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.privacy-popup-header h3 {
    font-size: var(--fs-lg);
}

.privacy-popup-close {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.privacy-popup-close:hover {
    background: var(--color-nude-light);
    color: var(--color-plum);
}

.privacy-popup-body p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.privacy-popup-body ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.privacy-popup-body li {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.team-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-nude) 100%);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--color-plum);
}

.team-card h4 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
}

.team-card p {
    font-size: var(--fs-sm);
    color: var(--color-lavender-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.value-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--space-md);
}

.value-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-lavender-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.value-content h4 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.stat-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-plum);
    margin-bottom: var(--space-xs);
}

.stat-card span {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
}

@media (min-width: 480px) {
    .cookie-popup {
        left: auto;
        right: var(--space-lg);
        max-width: 24rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .burger {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 320px) {
    :root {
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
        --fs-2xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .header {
        width: calc(100% - var(--space-lg));
    }

    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-xs);
    }
}