@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5016;
    --primary-light: #4a7c23;
    --secondary: #8b9a6d;
    --accent: #c4a35a;
    --dark: #1a2e0a;
    --light: #f5f7f2;
    --cream: #faf9f6;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-light); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    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-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 15px auto 0;
    font-size: 13px;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary);
    font-size: 1.2rem;
}

header.scrolled .logo a,
header.scrolled .nav-link {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, var(--secondary) 0%, var(--primary-light) 100%);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0 40px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: var(--primary);
    font-size: 1.3rem;
}

.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: var(--radius);
    background: var(--light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.feature-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.about-preview {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-light);
    font-size: 13px;
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.about-list i {
    color: var(--primary);
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.product-info {
    padding: 18px;
}

.product-info h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 8px 16px;
    font-size: 11px;
}

.process {
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--secondary);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.author-info h5 {
    font-size: 13px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 14px;
}

.cta .btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.cta .btn-primary:hover {
    background: var(--white);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.7;
    max-width: 250px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--accent);
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    opacity: 0.6;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.policy-links a:hover {
    color: var(--accent);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 0 50px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.9;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb span {
    opacity: 0.5;
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
}

.content-main h3 {
    margin: 25px 0 12px;
}

.content-main p {
    color: var(--text-light);
    font-size: 13px;
}

.content-main ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-main li {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.sidebar-widget {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.sidebar-widget h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 8px;
}

.sidebar-widget a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget i {
    color: var(--primary);
    font-size: 10px;
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info > p {
    opacity: 0.9;
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-details {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item h5 {
    color: var(--white);
    font-size: 12px;
    margin-bottom: 3px;
    font-family: 'Nunito', sans-serif;
}

.contact-item p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.contact-form-wrapper {
    padding: 35px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 14px;
}

.map-section iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 450px;
    padding: 30px;
}

.error-content i,
.thankyou-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.thankyou-content h1 {
    margin-bottom: 10px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.policy-content {
    background: var(--white);
    padding: 50px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.policy-text h3 {
    margin: 25px 0 12px;
    font-size: 1.1rem;
}

.policy-text p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.policy-text ul {
    margin: 12px 0;
    padding-left: 25px;
}

.policy-text li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.policy-meta {
    background: var(--light);
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-size: 12px;
    color: var(--text-light);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 18px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.about-team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.team-card h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.team-card span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.value-card i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.6;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tip-card i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.tip-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.tip-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 991px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p { margin: 0 auto 25px; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; max-width: 400px; margin: 0 auto; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .footer-bottom { justify-content: center; text-align: center; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 70px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .nav-toggle { display: flex; }
    
    .hero-text h1 { font-size: 2rem; }
    
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 30px; }
    .team-grid { grid-template-columns: 1fr; }
    
    .cookie-content { flex-direction: column; text-align: center; }
}

@media (max-width: 479px) {
    .section { padding: 35px 0; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .hero { min-height: auto; padding: 100px 0 50px; }
    .hero-text h1 { font-size: 1.7rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    
    .contact-info, .contact-form-wrapper { padding: 25px; }
    
    .footer-links { flex-direction: column; gap: 20px; }
    .policy-links { flex-direction: column; gap: 8px; align-items: center; }
    
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
