@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B7355;
    --primary-dark: #6B5744;
    --secondary: #D4C4B0;
    --accent: #C9A86C;
    --dark: #2C2824;
    --light: #FAF8F5;
    --cream: #F5F0E8;
    --text: #4A4540;
    --text-light: #7A756E;
    --white: #FFFFFF;
    --shadow: rgba(139, 115, 85, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: var(--secondary);
}

.header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

/* ===== LOGO ===== */
.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* ===== NAV ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 0.35rem 0;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger span:nth-child(3) {
    transform: translateY(8px);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.section-alt {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.feature-card h4 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.product-info {
    padding: 1.2rem;
}

.product-info h4 {
    margin-bottom: 0.4rem;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: var(--secondary);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.testimonial-stars i {
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.cta-section p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--cream);
}

.contact-section {
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.contact-item-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    background: var(--light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.footer-links a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright span {
    margin: 0 0.5rem;
}

.footer-policies {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policies a:hover {
    color: var(--accent);
}

.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.2rem;
    box-shadow: 0 -5px 30px var(--shadow);
    z-index: 2000;
    transition: bottom 0.4s ease;
}

.cookie-popup.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 6rem 0 3rem;
    text-align: center;
    margin-top: 50px;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    margin-bottom: 1rem;
}

.content-section h3 {
    margin: 1.5rem 0 0.8rem;
}

.content-section p {
    color: var(--text);
    line-height: 1.7;
}

.content-section ul {
    margin: 0.8rem 0;
    padding-left: 1.2rem;
}

.content-section li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
    padding-left: 1rem;
}

.content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.warranty-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.warranty-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--secondary);
}

.warranty-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.warranty-card h4 {
    margin-bottom: 0.5rem;
}

.warranty-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.sample-item {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--secondary);
    transition: transform 0.3s ease;
}

.sample-item:hover {
    transform: translateY(-3px);
}

.sample-color {
    height: 80px;
}

.sample-info {
    padding: 0.8rem;
    text-align: center;
}

.sample-info h5 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.sample-info p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--primary);
}

.team-card h4 {
    margin-bottom: 0.3rem;
}

.team-card span {
    font-size: 0.8rem;
    color: var(--primary);
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 2rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--secondary);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-content {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 6px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -8px;
}

.timeline-content h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.error-content h2 {
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thankyou-content h1 {
    margin-bottom: 0.8rem;
}

.thankyou-content p {
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--primary);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.value-card h4 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 0.8rem;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.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 1.2rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid,
    .products-grid,
    .warranty-cards,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .samples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--secondary);
    }

    .nav a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .features-grid,
    .products-grid,
    .warranty-cards,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .samples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 40px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -28px;
        right: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .header .header-inner {
        padding: 0.8rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.9rem;
    }
    
    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .samples-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        gap: 1rem;
    }
}
