@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
    --color-primary: #00bcd4;
    --color-primary-light: rgba(0, 188, 212, 0.15);
    --color-primary-glow: rgba(0, 188, 212, 0.4);
    --color-secondary: #ff8f00;
    --color-secondary-light: rgba(255, 143, 0, 0.15);
    --color-secondary-glow: rgba(255, 143, 0, 0.4);
    --color-dark: #1a1a2e;
    --color-dark-light: #252542;
    --color-text: #e0e0e0;
    --color-text-muted: #9e9e9e;
    --color-white: #ffffff;
    --color-glass: rgba(255, 255, 255, 0.08);
    --color-glass-border: rgba(255, 255, 255, 0.12);
    --color-overlay: rgba(26, 26, 46, 0.95);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 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;
    --radius-full: 50%;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow-primary: 0 0 30px var(--color-primary-glow);
    --shadow-glow-secondary: 0 0 30px var(--color-secondary-glow);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-max: 75rem;
    --header-height: 4rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 50%, var(--color-dark) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

.header {
    position: fixed;
    top: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-xl));
    max-width: 60rem;
    transition: all var(--transition-base);
}

.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: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.logo {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.logo span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-desktop a {
    color: var(--color-text);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.burger-btn span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: var(--space-lg) 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--color-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-3xl) var(--space-md);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, var(--color-secondary-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.hero-content {
    text-align: center;
    max-width: 50rem;
}

.hero-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-dark);
    box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
    color: var(--color-dark);
}

.btn-secondary {
    background: var(--color-glass);
    color: var(--color-text);
    border: 1px solid var(--color-glass-border);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.section {
    padding: var(--space-3xl) var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow-primary);
    border-color: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    text-align: center;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: var(--text-xl);
    color: var(--color-primary);
}

.service-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.service-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.about-section {
    background: linear-gradient(180deg, transparent, var(--color-dark-light), transparent);
}

.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), var(--shadow-glow-secondary);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
}

.features-list i {
    color: var(--color-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.product-card {
    overflow: hidden;
}

.product-image {
    height: 12rem;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.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-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.product-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.product-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.step-card {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-dark);
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--color-primary);
}

.stats-section {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat-item h3 {
    font-size: var(--text-3xl);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.cta-section {
    text-align: center;
    background: var(--color-dark-light);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) var(--space-md);
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-glow), var(--color-secondary-glow));
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.contact-section {
    background: linear-gradient(180deg, transparent, var(--color-dark-light));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item i {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.contact-form {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    background: var(--color-dark);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    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 var(--color-primary-light);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.checkbox-group label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-xl);
    height: 15rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) contrast(1.1);
}

.footer {
    background: var(--color-dark);
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid var(--color-glass-border);
}

.footer-content {
    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(--text-lg);
    font-weight: 700;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    justify-content: center;
}

.footer-links a {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copy {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.cookie-popup {
    position: fixed;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-popup.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.cookie-text a {
    color: var(--color-primary);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 6rem;
    justify-content: center;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
}

.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.privacy-popup.active {
    display: flex;
}

.privacy-popup-content {
    background: var(--color-dark-light);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 30rem;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-popup-content h3 {
    margin-bottom: var(--space-md);
}

.privacy-popup-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.privacy-popup-close {
    display: block;
    margin-left: auto;
}

.page-header {
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-md) var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--color-primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, var(--color-secondary-glow) 0%, transparent 50%);
    opacity: 0.3;
    z-index: -1;
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--color-text-muted);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: var(--text-xs);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb span {
    color: var(--color-primary);
}

.content-section {
    padding: var(--space-2xl) var(--space-md);
}

.content-section h2 {
    margin-bottom: var(--space-md);
    font-size: var(--text-2xl);
}

.content-section h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--text-xl);
}

.content-section p {
    margin-bottom: var(--space-md);
    color: var(--color-text-muted);
}

.content-section ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-section li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-muted);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.error-content h1 {
    font-size: var(--text-5xl);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.thank-you-content {
    max-width: 30rem;
}

.thank-you-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: var(--text-3xl);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow-primary);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.faq-section .glass-card {
    margin-bottom: var(--space-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.faq-answer.active {
    max-height: 20rem;
    padding-top: var(--space-md);
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-card i {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
}

.feature-card h4 {
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

@media (min-width: 640px) {
    h1 {
        font-size: var(--text-5xl);
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .burger-btn {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-popup {
        left: auto;
        right: var(--space-md);
        max-width: 25rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .header-inner {
        padding: var(--space-xs) var(--space-sm);
    }

    .logo {
        font-size: var(--text-base);
    }

    .btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
    }
}