@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap');

:root {
    --color-primary: #4a6741;
    --color-primary-light: #6b8c5f;
    --color-primary-dark: #3a5233;
    --color-secondary: #d4a574;
    --color-secondary-light: #e8c9a8;
    --color-accent: #c17f59;
    --color-bg: #faf8f5;
    --color-bg-alt: #f3efe8;
    --color-bg-dark: #e8e2d9;
    --color-text: #2d3a29;
    --color-text-light: #5a6855;
    --color-text-muted: #8a9485;
    --color-white: #ffffff;
    --color-overlay: rgba(45, 58, 41, 0.85);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', sans-serif;
    --size-xs: 0.75rem;
    --size-sm: 0.875rem;
    --size-base: 1rem;
    --size-md: 1.125rem;
    --size-lg: 1.25rem;
    --size-xl: 1.5rem;
    --size-2xl: 2rem;
    --size-3xl: 2.5rem;
    --size-4xl: 3.5rem;
    --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%;
    --shadow-sm: 0 1px 3px rgba(45, 58, 41, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 58, 41, 0.1);
    --shadow-lg: 0 8px 30px rgba(45, 58, 41, 0.12);
    --shadow-xl: 0 20px 50px rgba(45, 58, 41, 0.15);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: var(--size-4xl);
}

h2 {
    font-size: var(--size-3xl);
}

h3 {
    font-size: var(--size-2xl);
}

h4 {
    font-size: var(--size-xl);
}

.container {
    width: 100%;
    max-width: 75rem;
    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-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    position: fixed;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
    z-index: 1001;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--size-xl);
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo i {
    font-size: var(--size-lg);
    color: var(--color-accent);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-desktop a {
    font-size: var(--size-sm);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 20rem;
    height: 100vh;
    background: var(--color-bg);
    padding: var(--space-4xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 105;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.nav-mobile a {
    font-family: var(--font-display);
    font-size: var(--size-xl);
    color: var(--color-text);
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-bg-dark);
    transition: all var(--transition-fast);
}

.nav-mobile a:hover {
    color: var(--color-accent);
    padding-left: var(--space-md);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-secondary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, var(--color-primary-light) 0%, #00000061 70%);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--color-accent);
}

.hero h1 {
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-text {
    font-size: var(--size-md);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 32rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    font-size: var(--size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--color-text-light);
}

.section-alt {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-accent);
    transition: height var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: var(--size-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: var(--size-lg);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--size-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--size-sm);
}

.feature-content h4 {
    font-size: var(--size-base);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background: var(--color-secondary-light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 12rem;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: var(--size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.product-content {
    padding: var(--space-lg);
}

.product-content h3 {
    font-size: var(--size-lg);
    margin-bottom: var(--space-sm);
}

.product-content p {
    font-size: var(--size-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-display);
    font-size: var(--size-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.product-price span {
    font-size: var(--size-sm);
    font-weight: 400;
    color: var(--color-text-muted);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    order: 2;
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--size-sm);
}

.contact-item-content h4 {
    font-size: var(--size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-item-content p,
.contact-item-content a {
    font-size: var(--size-sm);
    color: var(--color-text-light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 15rem;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    order: 1;
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--size-sm);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--size-sm);
    border: 1px solid var(--color-bg-dark);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: var(--size-xs);
    color: var(--color-text-light);
    margin-bottom: 0;
}

.form-checkbox a {
    text-decoration: underline;
}

.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-xl) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--size-lg);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo i {
    color: var(--color-secondary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.footer-links a {
    font-size: var(--size-xs);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-copy {
    font-size: var(--size-xs);
    color: rgba(255, 255, 255, 0.5);
}

.page-hero {
    padding: calc(var(--space-4xl) + 4rem) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease;
}

.page-hero p {
    color: var(--color-text-light);
    max-width: 35rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: var(--size-sm);
    animation: fadeInUp 0.8s ease;
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb span {
    color: var(--color-text-muted);
}

.breadcrumb strong {
    color: var(--color-primary);
}

.content-section {
    padding: var(--space-3xl) 0;
}

.content-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: var(--size-2xl);
    margin: var(--space-2xl) 0 var(--space-md);
}

.content-wrapper h3 {
    font-size: var(--size-xl);
    margin: var(--space-xl) 0 var(--space-md);
}

.content-wrapper p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.content-wrapper ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.content-wrapper li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary-light) 100%);
}

.thank-you-content {
    max-width: 30rem;
    animation: fadeInUp 0.8s ease;
    margin: 0 auto;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--size-2xl);
    margin: 0 auto var(--space-xl);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-bg);
}

.error-content {
    max-width: 30rem;
    animation: fadeInUp 0.8s ease;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

.error-content h1 {
    margin-bottom: var(--space-md);
}

.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);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-content p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btns .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--size-xs);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.process-item {
    display: flex;
    gap: var(--space-lg);
}

.process-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: var(--size-xl);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.process-content h4 {
    margin-bottom: var(--space-xs);
}

.process-content p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: var(--size-lg);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: var(--size-3xl);
    color: var(--color-accent);
    line-height: 1;
}

.testimonial-author {
    font-size: var(--size-sm);
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 480px) {
    h2 {
        font-size: var(--size-2xl);
    }
}

@media (min-width: 480px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-popup {
        left: var(--space-xl);
        right: var(--space-xl);
        max-width: 40rem;
    }
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 17px;
    }

    .nav-desktop {
        display: block;
    }

    .burger-btn {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        order: 1;
    }

    .contact-form-wrapper {
        order: 2;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}