@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
    --color-primary: #0891b2;
    --color-primary-dark: #0e7490;
    --color-secondary: #d97706;
    --color-secondary-light: #f59e0b;
    --color-accent: #06b6d4;
    --color-bg: #fafafa;
    --color-bg-alt: #f5f5f5;
    --color-bg-glass: rgba(255, 255, 255, 0.85);
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-muted: #9ca3af;
    --color-white: #ffffff;
    --color-dark: #111827;
    --color-border: #e5e7eb;
    --color-success: #10b981;
    --color-error: #ef4444;
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --text-xs: 0.75rem;
    --text-sm: 0.8125rem;
    --text-base: 0.9375rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --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: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(8, 145, 178, 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 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-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-primary-dark);
}

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-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: var(--text-3xl);
}

h2 {
    font-size: var(--text-2xl);
}

h3 {
    font-size: var(--text-xl);
}

h4 {
    font-size: var(--text-lg);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    color: var(--color-white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    position: fixed;
    background: var(--color-bg-glass);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    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-white);
    font-size: var(--text-sm);
}

.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
    z-index: 1001;
}

.burger-line {
    width: 1.25rem;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 20rem;
    height: 100vh;
    background: var(--color-white);
    padding: var(--space-3xl) var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.nav-mobile-link {
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(217, 119, 6, 0.05));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.05));
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.hero-image {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-float {
    position: absolute;
    background: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-float-1 {
    top: 10%;
    left: -5%;
}

.hero-float-2 {
    bottom: 15%;
    right: -5%;
}

.hero-float i {
    color: var(--color-primary);
}

.features {
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--text-md);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.services {
    background: linear-gradient(180deg, var(--color-bg), var(--color-white));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.service-content {
    padding: var(--space-lg);
}

.service-title {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.service-price {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
}

.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    display: block;
}

.about-badge-text {
    font-size: var(--text-xs);
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.about-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.about-list i {
    color: var(--color-success);
}

.process {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.process .section-title {
    color: var(--color-white);
}

.process .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.step-number {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-md);
}

.step-title {
    font-size: var(--text-md);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.testimonials {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    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;
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--text-sm);
}

.testimonial-name {
    font-size: var(--text-sm);
    font-weight: 600;
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.cta {
    background: var(--color-white);
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(217, 119, 6, 0.1));
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.cta-title {
    margin-bottom: var(--space-sm);
}

.cta-desc {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    color: var(--color-white);
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.contact-info p {
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.contact-item i {
    width: 1.5rem;
    text-align: center;
    margin-top: 2px;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    background: var(--color-bg);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

.form-checkbox input {
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.form-checkbox a {
    color: var(--color-primary);
}

.map-section {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 15rem;
    border: none;
}

.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 600;
    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(--text-xs);
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.cookie-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.cookie-text a {
    color: var(--color-primary);
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.privacy-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    max-width: 28rem;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--color-text);
}

.popup-content h3 {
    margin-bottom: var(--space-md);
}

.popup-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.page-header {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(217, 119, 6, 0.05));
    text-align: center;
}

.page-title {
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

.breadcrumb a {
    color: var(--color-primary);
}

.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-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.product-content {
    padding: var(--space-lg);
}

.product-title {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
}

.product-desc {
    font-size: var(--text-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-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-primary);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.error-content {
    max-width: 28rem;
}

.error-code {
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-title {
    margin-bottom: var(--space-sm);
}

.error-desc {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(217, 119, 6, 0.05));
}

.thankyou-content {
    max-width: 28rem;
}

.thankyou-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-success), #34d399);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: var(--text-2xl);
    color: var(--color-white);
}

.thankyou-title {
    margin-bottom: var(--space-sm);
}

.thankyou-desc {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.policy-content {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

.policy-container {
    max-width: 48rem;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: var(--space-xl);
}

.policy-section h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.policy-section p,
.policy-section li {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.policy-section ul {
    padding-left: var(--space-lg);
    list-style: disc;
}

.faq-section {
    background: var(--color-bg);
}

.faq-list {
    max-width: 42rem;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: left;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.stats-section {
    background: var(--color-white);
    padding: var(--space-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
}

.stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.benefit-content h4 {
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.benefit-content p {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

@media (min-width: 480px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .burger-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-desc {
        margin-left: 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .map-container iframe {
        height: 20rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    h1 {
        font-size: var(--text-4xl);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}