/* ========================================
   MALYBEILI — Landing Page Styles
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Base palette */
    --clr-white: #ffffff;
    --clr-cream: #faf8f5;
    --clr-beige: #f0ebe3;
    --clr-beige-dk: #e0d6c8;
    --clr-warm: #c9b99a;
    --clr-text: #3a3631;
    --clr-text-lt: #7a746b;

    /* Accents */
    --clr-soft: #e8cfc0;
    --clr-blue: #b8d4e3;
    --clr-blue-lt: #d6e8f0;

    /* Typography */
    --ff-heading: 'Cormorant Garamond', 'Georgia', serif;
    --ff-body: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-px: clamp(1.25rem, 4vw, 3rem);
    --max-w: 1200px;

    /* Transitions */
    --ease: cubic-bezier(.25, .8, .25, 1);
    --dur: .35s;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-text);
    background: var(--clr-white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ---------- General Typography ---------- */
.section-label {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-warm);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--clr-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--clr-text-lt);
    max-width: 540px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
    padding: .85rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--ff-heading);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--clr-text);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--clr-text-lt);
    position: relative;
    transition: color var(--dur) var(--ease);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--clr-warm);
    transition: width var(--dur) var(--ease);
}

.nav-links a:hover {
    color: var(--clr-text);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--clr-cream);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--clr-blue-lt) 0%, transparent 70%);
    opacity: .5;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--clr-soft) 0%, transparent 70%);
    opacity: .35;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--clr-warm);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--clr-text-lt);
    font-size: 0.55em;
    margin-top: .5rem;
}

.hero-desc {
    font-size: 1rem;
    color: var(--clr-text-lt);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-white);
    background: var(--clr-text);
    border-radius: 50px;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.hero-cta:hover {
    background: var(--clr-warm);
    transform: translateY(-2px);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--dur) var(--ease);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image .float-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    padding: .75rem 1.25rem;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.float-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7eb88c;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image .accent-frame {
    position: absolute;
    top: -12px;
    left: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    border: 2px solid var(--clr-beige-dk);
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

.about-text p {
    font-size: .95rem;
    color: var(--clr-text-lt);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-values .value-item {
    text-align: center;
}

.about-values .value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--clr-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
    font-size: 1.25rem;
}

.about-values .value-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--clr-text);
}

/* ============ PRODUCTS SECTION ============ */
.products {
    padding: var(--section-py) 0;
    background: var(--clr-cream);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header .section-subtitle {
    margin: 0 auto;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: .55rem 1.5rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid var(--clr-beige-dk);
    color: var(--clr-text-lt);
    background: transparent;
    transition: all var(--dur) var(--ease);
}

.category-tab:hover,
.category-tab.active {
    background: var(--clr-text);
    color: var(--clr-white);
    border-color: var(--clr-text);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
}

.product-card-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--clr-cream);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-img .product-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--clr-soft);
    color: var(--clr-text);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 50px;
}

.product-card-body {
    padding: 1.25rem;
}

.product-category {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-warm);
    margin-bottom: .35rem;
}

.product-name {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: .35rem;
}

.product-desc {
    font-size: .82rem;
    color: var(--clr-text-lt);
    line-height: 1.6;
}

/* ============ FEATURED / BEST SELLERS ============ */
.featured {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-header .section-subtitle {
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-card {
    background: var(--clr-cream);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

.featured-card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.featured-card:hover .featured-card-img img {
    transform: scale(1.05);
}

.featured-card-body {
    padding: 1.5rem;
}

.featured-card .product-category {
    margin-bottom: .4rem;
}

.featured-card .product-name {
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.featured-card .product-desc {
    font-size: .85rem;
    line-height: 1.65;
}

.featured-card .best-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--clr-text);
    color: var(--clr-white);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem .85rem;
    border-radius: 50px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--clr-cream);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--clr-white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--clr-warm);
    font-size: .9rem;
}

.testimonial-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--clr-text-lt);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: .85rem;
    font-weight: 500;
    color: var(--clr-text);
}

.testimonial-loc {
    font-size: .72rem;
    color: var(--clr-text-lt);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--ff-heading);
    font-size: 3rem;
    color: var(--clr-beige);
    line-height: 1;
    pointer-events: none;
}

/* ============ HOW WE WORK ============ */
.process {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header .section-subtitle {
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.6%;
    width: 66.7%;
    height: 2px;
    background: var(--clr-beige);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--clr-cream);
    border: 2px solid var(--clr-beige-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clr-text);
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.process-step:hover .process-step-num {
    background: var(--clr-text);
    border-color: var(--clr-text);
    color: var(--clr-white);
}

.process-step h3 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--clr-text);
}

.process-step p {
    font-size: .85rem;
    color: var(--clr-text-lt);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============ CONTACT ============ */
.contact {
    padding: var(--section-py) 0;
    background: var(--clr-cream);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: .92rem;
    color: var(--clr-text-lt);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 420px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--clr-white);
    border-radius: 12px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.contact-channel:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

.contact-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--clr-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-channel-label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--clr-text-lt);
    margin-bottom: .15rem;
}

.contact-channel-value {
    font-size: .9rem;
    font-weight: 500;
    color: var(--clr-text);
}

.social-links {
    display: flex;
    gap: .75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.social-link:hover {
    background: var(--clr-text);
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: var(--clr-white);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-text);
    transition: fill var(--dur) var(--ease);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--clr-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form-group label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-text-lt);
}

.form-group input,
.form-group textarea {
    font-family: var(--ff-body);
    font-size: .9rem;
    padding: .85rem 1rem;
    border: 1.5px solid var(--clr-beige);
    border-radius: 10px;
    background: var(--clr-cream);
    color: var(--clr-text);
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-warm);
    background: var(--clr-white);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit {
    padding: .95rem 2rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-white);
    background: var(--clr-text);
    border-radius: 50px;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--clr-warm);
    transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.footer {
    padding: 3rem 0 2rem;
    background: var(--clr-text);
    color: rgba(255, 255, 255, .6);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: .04em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    transition: color var(--dur) var(--ease);
}

.footer-links a:hover {
    color: var(--clr-white);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
}

.footer-copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.reveal-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.reveal-children.visible>*:nth-child(1) {
    transition-delay: 0s;
}

.reveal-children.visible>*:nth-child(2) {
    transition-delay: .1s;
}

.reveal-children.visible>*:nth-child(3) {
    transition-delay: .2s;
}

.reveal-children.visible>*:nth-child(4) {
    transition-delay: .3s;
}

.reveal-children.visible>*:nth-child(5) {
    transition-delay: .35s;
}

.reveal-children.visible>*:nth-child(6) {
    transition-delay: .4s;
}

.reveal-children.visible>*:nth-child(7) {
    transition-delay: .45s;
}

.reveal-children.visible>*:nth-child(8) {
    transition-delay: .5s;
}

.reveal-children.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 420px;
        margin: 0 auto;
        aspect-ratio: 4/4;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .about-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .about-values {
        justify-content: center;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--clr-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -8px 0 30px rgba(0, 0, 0, .08);
        transition: right var(--dur) var(--ease);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .about-values {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}