@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a4a;
    --primary-light: #4a7c6b;
    --primary-dark: #1e3d32;
    --secondary: #d4a574;
    --secondary-light: #e8c9a8;
    --accent: #8fb8a8;
    --bg-light: #f8f6f3;
    --bg-cream: #fdfbf7;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45, 90, 74, 0.1);
    --shadow-lg: 0 8px 40px rgba(45, 90, 74, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #c49660;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.header.scrolled .header-bg {
    opacity: 1;
    backdrop-filter: blur(10px);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo i {
    font-size: 22px;
    color: var(--secondary);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 24px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 70px 24px 24px;
    transition: var(--transition);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #fdfbf7 50%, #f0ede8 100%);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(141, 184, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 50%);
}

.hero-wrapper {
    display: grid;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 12px rgba(45, 90, 74, 0.08);
    margin-bottom: 20px;
}

.hero-label i {
    color: var(--secondary);
    font-size: 14px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 16px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 90, 74, 0.15);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-stats-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(45, 90, 74, 0.12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 11px;
    color: var(--text-medium);
    font-weight: 500;
}

.services-section {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    gap: 8px;
}

.about-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    gap: 32px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.about-features {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--primary);
    font-size: 16px;
}

.process-section {
    padding: 60px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 12px;
    color: var(--text-medium);
}

.testimonials-section {
    padding: 60px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.author-info h4 {
    font-size: 13px;
    font-weight: 600;
}

.author-info span {
    font-size: 11px;
    color: var(--accent);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.products-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-medium);
}

.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 13px;
    color: var(--accent);
    max-width: 450px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--secondary);
}

.about-page-section {
    padding: 60px 0;
    background: var(--white);
}

.about-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.team-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-medium);
}

.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    gap: 32px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-info-card > p {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-text p {
    font-size: 12px;
    color: var(--accent);
}

.contact-form-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 74, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-medium);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
}

.map-section {
    padding: 0;
    height: 300px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 32px 0 16px;
}

.footer-content {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: var(--accent);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 11px;
    color: var(--accent);
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.policy-links a {
    font-size: 11px;
    color: var(--accent);
}

.policy-links a:hover {
    color: var(--white);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-medium);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 16px;
    font-size: 12px;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 16px;
    background: var(--bg-light);
}

.error-content h1 {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 8px;
}

.error-content h2 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.error-content p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 24px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 16px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.thankyou-content {
    max-width: 450px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.thankyou-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.policy-page {
    padding: 60px 0;
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 32px 0 12px;
}

.policy-content h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin: 24px 0 10px;
}

.policy-content p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0 12px 20px;
    list-style: disc;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 6px;
    line-height: 1.6;
}

.policy-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-medium);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.why-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.why-grid {
    display: grid;
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.why-card i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 18px;
}

.why-card h3 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 12px;
    color: var(--text-medium);
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .hero {
        padding: 140px 0 100px;
        min-height: 700px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .stats-grid {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-text {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .testimonials-section,
    .products-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-wrapper {
        gap: 70px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 12px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
}
