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

:root {
    --color-primary: #4a3728;
    --color-secondary: #8b7355;
    --color-accent: #c9a87c;
    --color-highlight: #e8d5c4;
    --color-bg: #faf8f5;
    --color-bg-alt: #f0ebe4;
    --color-text: #2d2420;
    --color-text-light: #6b5d52;
    --color-white: #ffffff;
    --color-error: #b55454;
    --color-success: #5a8f6a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
    --size-xs: 0.625rem;
    --size-sm: 0.75rem;
    --size-base: 0.875rem;
    --size-md: 1rem;
    --size-lg: 1.25rem;
    --size-xl: 1.5rem;
    --size-2xl: 2rem;
    --size-3xl: 2.5rem;
    --size-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;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 0.0625rem 0.125rem rgba(74, 55, 40, 0.08);
    --shadow-md: 0 0.25rem 0.5rem rgba(74, 55, 40, 0.1);
    --shadow-lg: 0 0.5rem 1rem rgba(74, 55, 40, 0.12);
    --shadow-xl: 0 1rem 2rem rgba(74, 55, 40, 0.15);
    --transition-fast: 0.15s 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 {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    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);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    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-primary);
}

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

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

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header {
    position: relative;
    padding: var(--space-md) 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    border-bottom: 0.0625rem solid var(--color-highlight);
    z-index: 1001;
    transform: translateY(0);
    transition: transform var(--transition-base);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--size-sm);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
}

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

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

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

.burger {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: var(--space-sm);
    z-index: 110;
}

.burger span {
    width: 1.25rem;
    height: 0.125rem;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

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

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

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

.nav-mobile {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    padding: var(--space-3xl) var(--space-xl);
    transform: translateY(-100%);
    transition: transform var(--transition-base);
    z-index: 105;
    overflow-y: auto;
    display: none;
}

.nav-mobile.active {
    transform: translateY(0);
    display: block;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.nav-mobile a {
    font-size: var(--size-base);
    font-weight: 500;
    color: var(--color-text);
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 0.0625rem solid var(--color-highlight);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 36, 32, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
}

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

.hero {
    padding: var(--space-3xl) 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../visuals/bg-image-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(45, 36, 32, 0.4) 0%, rgba(45, 36, 32, 0.2) 40%, rgba(45, 36, 32, 0.5) 100%),
        linear-gradient(90deg, rgba(45, 36, 32, 0.5) 0%, transparent 50%, rgba(45, 36, 32, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 40rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-highlight);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.3);
}

.hero h1 {
    margin-bottom: var(--space-md);
    font-size: var(--size-2xl);
    color: var(--color-white);
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero p {
    font-size: var(--size-sm);
    color: var(--color-highlight);
    margin-bottom: var(--space-lg);
    text-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero .btn-primary {
    box-shadow: var(--shadow-lg);
}

.hero .btn-primary:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(201, 168, 124, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--size-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

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

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

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

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

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    max-width: 35rem;
    margin: 0 auto;
}

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

.workflow-item {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.workflow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
    background: var(--color-accent);
}

.workflow-number {
    font-family: var(--font-heading);
    font-size: var(--size-2xl);
    font-weight: 700;
    color: var(--color-highlight);
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
}

.workflow-item h3 {
    font-size: var(--size-md);
    margin-bottom: var(--space-sm);
}

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

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

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

.product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
}

.product-image {
    aspect-ratio: 4/3;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.product-content p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-heading);
    font-size: var(--size-lg);
    font-weight: 700;
    color: var(--color-primary);
}

.materials-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
}

.material-chip {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-white);
    border: 0.0625rem solid var(--color-highlight);
    border-radius: var(--radius-xl);
    font-size: var(--size-sm);
    color: var(--color-text);
}

.material-chip i {
    color: var(--color-accent);
}

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

.feature-box {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-primary);
    font-size: var(--size-lg);
}

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

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

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

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

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    font-size: var(--size-sm);
}

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

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

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

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    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(--size-sm);
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: var(--space-sm) var(--space-md);
    border: 0.0625rem solid var(--color-highlight);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
    background: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

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

.checkbox-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: var(--color-primary);
}

.checkbox-group label {
    font-size: var(--size-sm);
    color: var(--color-text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: var(--size-sm);
    margin-bottom: var(--space-xs);
}

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

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

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

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

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--size-lg);
    font-weight: 700;
    color: var(--color-white);
}

.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.8);
}

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

.footer-copyright {
    font-size: var(--size-xs);
    opacity: 0.7;
}

.page-header {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-highlight) 100%);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    max-width: 30rem;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--size-xs);
    margin-bottom: var(--space-md);
}

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

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

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

.content-block {
    max-width: 45rem;
    margin: 0 auto;
}

.content-block h2 {
    font-size: var(--size-xl);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
}

.content-block h2:first-child {
    margin-top: 0;
}

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

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

.content-block li {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
    position: relative;
}

.content-block li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: calc(var(--space-md) * -1);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.thank-you-content {
    max-width: 30rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--color-white);
    font-size: var(--size-2xl);
}

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

.thank-you-content p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.error-content {
    max-width: 30rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: var(--size-4xl);
    font-weight: 700;
    color: var(--color-highlight);
    line-height: 1;
    margin-bottom: var(--space-md);
}

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

.error-content p {
    font-size: var(--size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    padding: var(--space-md);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--size-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: var(--size-xs);
    color: var(--color-text-light);
}

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

.tip-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-left: 0.25rem solid var(--color-accent);
}

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

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

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

.trend-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.trend-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-highlight);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

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

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.testimonial-section {
    background: var(--color-primary);
    padding: var(--space-2xl) 0;
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 35rem;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: var(--size-lg);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

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

@media (max-width: 30rem) {
    .page-header h1 {
        font-size: var(--size-xl);
    }
}

@media (min-width: 30rem) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 48rem) {
    :root {
        --size-xs: 0.75rem;
        --size-sm: 0.875rem;
        --size-base: 1rem;
        --size-md: 1.125rem;
        --size-lg: 1.5rem;
        --size-xl: 1.75rem;
        --size-2xl: 2.25rem;
        --size-3xl: 3rem;
        --size-4xl: 4rem;
    }

    .burger {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

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

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

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

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

@media (min-width: 64rem) {
    .hero-content {
        max-width: 50rem;
    }

    .hero h1 {
        font-size: var(--size-3xl);
    }
}
