/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #fffdfb;
    color: #1F2937;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font-family: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --primary: #7D9E89;
    --primary-dark: #4A5C50;
    --primary-light: #A8BDAE;

    --background: #EBEDEB;
    --cream: #EBEDEB;
    --cream-dark: #DDE3DE;

    --white: #FFFFFF;

    --text: #1F2937;
    --text-light: #4B5563;

    --border: #DDE3DE;

    --footer: #4A5C50;

    --shadow:
        0 20px 60px rgba(93, 65, 55, 0.09);

    --shadow-small:
        0 10px 30px rgba(93, 65, 55, 0.08);
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.15;
}

h1 span,
h2 span {
    color: var(--primary);
}

p {
    color: var(--text-light);
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(155, 107, 97, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 15px 35px rgba(60, 45, 40, 0.12);
}

.btn-light:hover {
    background: var(--cream);
}

.btn-small {
    min-height: 43px;
    padding: 0 19px;
    font-size: 13px;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.eyebrow i {
    font-size: 13px;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    background: rgba(255, 253, 251, 0.92);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    z-index: 1000;

    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, 253, 251, 0.97);
    border-color: var(--border);
    box-shadow: 0 5px 25px rgba(60, 45, 40, 0.06);
}

.header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text);

    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
}

.logo small {
    display: block;

    color: var(--primary);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cream);
    color: var(--primary);

    font-size: 17px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    color: var(--text-light);

    font-size: 15px;
    font-weight: 500;

    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 43px;
    height: 43px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--primary);

    cursor: pointer;

    font-size: 17px;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    padding-top: 78px;

    background:
        radial-gradient(circle at 75% 40%,
            rgba(215, 177, 164, 0.18),
            transparent 34%),
        var(--cream);

    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 60px 0;
}

.hero h1 {
    max-width: 670px;

    margin-top: 18px;

    font-size: clamp(44px, 5vw, 72px);

    letter-spacing: -1.8px;
}

.hero-content>p {
    max-width: 570px;

    margin-top: 25px;

    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 35px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-top: 45px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.3;
}

.hero-info-item i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);
    color: var(--primary);

    box-shadow: var(--shadow-small);

    font-size: 17px;
}

.hero-info-item strong {
    display: block;

    color: var(--text);
    font-size: 16px;
}

.hero-image-wrapper {
    position: relative;

    width: min(500px, 100%);
    aspect-ratio: 0.84;

    justify-self: end;
}

.hero-image {
    position: absolute;

    inset: 0;

    overflow: hidden;

    border-radius:
        48% 48% 30px 30px;

    background:
        linear-gradient(145deg,
            #e8d1c6,
            #cda89c);

    box-shadow:
        0 35px 80px rgba(93, 65, 55, 0.16);
}

.hero-image::before {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    top: 10%;
    left: 15%;

    background: rgba(255, 255, 255, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    color: rgba(255, 255, 255, 0.8);

    text-align: center;
}

.image-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
}

.image-placeholder span {
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.image-placeholder small {
    margin-top: 3px;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 3px;
}

.image-placeholder img {
    object-fit: cover;
    object-position: top;
}

.hero-image-decoration {
    position: absolute;

    inset: 22px -25px -22px 25px;

    border: 1px solid rgba(155, 107, 97, 0.25);

    border-radius:
        48% 48% 30px 30px;

    transform: rotate(4deg);
}

.hero-badge {
    position: absolute;

    bottom: 45px;
    left: -45px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 20px;

    background: var(--white);

    border-radius: 14px;

    box-shadow: var(--shadow);

    z-index: 2;
}

.hero-badge>i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cream);
    color: var(--primary);
}

.hero-badge strong,
.hero-badge span {
    display: block;
}

.hero-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 15px;
}

.hero-badge span {
    color: var(--text-light);
    font-size: 11px;
}

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(155, 107, 97, 0.12);
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;

    left: -220px;
    top: 30%;
}

.hero-decoration-2 {
    width: 250px;
    height: 250px;

    right: -100px;
    bottom: -100px;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 650px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin-top: 14px;

    font-size: clamp(36px, 4vw, 52px);

    letter-spacing: -1px;
}

.section-heading p {
    max-width: 550px;

    margin: 17px auto 0;

    font-size: 17px;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 35px 28px;

    min-height: 320px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover,
.service-card.featured {
    transform: translateY(-8px);

    border-color: transparent;

    box-shadow: var(--shadow);
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 15px;

    background: var(--cream);
    color: var(--primary);

    font-size: 21px;
}

.service-card h3 {
    font-size: 22px;
}

.service-card p {
    margin-top: 13px;

    font-size: 15px;
    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 25px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

.service-card a i {
    transition: transform 0.25s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}


/* =========================================
   PROBLEMS
========================================= */

.problems {
    background: var(--cream);
}

.problems-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: center;
}

.problems-image {
    position: relative;

    min-height: 620px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            #e0c4b8,
            #b88c80);

    box-shadow: var(--shadow);
}

.problems-image::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 25px;
}

.problems-content h2 {
    max-width: 600px;

    margin-top: 15px;

    font-size: clamp(36px, 4vw, 53px);
}

.problems-content>p {
    max-width: 600px;

    margin-top: 20px;

    font-size: 17px;
}

.problem-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px 35px;

    margin-top: 35px;
}

.problem-item {
    display: flex;
    gap: 12px;
}

.problem-icon {
    flex-shrink: 0;

    color: var(--primary);

    margin-top: 2px;
}

.problem-item h3 {
    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.problem-item p {
    margin-top: 5px;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   BENEFITS
========================================= */

.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.benefit-card {
    position: relative;

    padding: 40px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.benefit-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(155, 107, 97, 0.1);

    font-family: "Playfair Display", serif;

    font-size: 80px;
    font-weight: 700;
}

.benefit-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cream);
    color: var(--primary);

    font-size: 22px;
}

.benefit-card h3 {
    position: relative;

    margin-top: 25px;

    font-size: 22px;
}

.benefit-card p {
    position: relative;

    margin-top: 12px;

    font-size: 15px;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--cream);
}

.about-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.about-image {
    position: relative;

    padding: 25px;
}

.about-image-main {
    aspect-ratio: 0.83;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(145deg,
            #A8BDAE,
            #4A5C50);

    box-shadow: var(--shadow);
}

.about-image-main img {
    height: 655;
    object-fit: cover;
    object-position: bottom;
}

.about-image-main .image-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.about-image-main .image-placeholder i {
    font-size: 55px;
}

.about-decoration {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 80%;
    height: 85%;

    border: 1px solid var(--primary-light);

    border-radius: 25px;

    z-index: 0;
}

.about-image-main {
    position: relative;
    z-index: 1;
}

.about-experience {
    position: absolute;

    right: -5px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 20px;

    background: var(--white);

    border-radius: 15px;

    box-shadow: var(--shadow);

    z-index: 2;
}

.about-experience i {
    color: var(--primary);
}

.about-experience strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 14px;
}

.about-experience span {
    display: block;

    color: var(--primary);

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
}

.about-content h2 {
    margin-top: 15px;

    font-size: clamp(38px, 4vw, 55px);
}

.about-highlight {
    margin-top: 25px;

    color: var(--primary);

    font-family: "Playfair Display", serif;

    font-size: 21px;
}

.about-content>p:not(.about-highlight) {
    max-width: 600px;

    margin-top: 15px;

    font-size: 16px;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 28px;
}


/* =========================================
   PROCESS
========================================= */

.process {
    background: var(--white);
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr 70px 1fr 70px 1fr;

    align-items: center;
}

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

.process-icon {
    position: relative;

    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--cream);

    color: var(--primary);

    font-size: 25px;
}

.process-icon span {
    position: absolute;

    top: -5px;
    right: -5px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 700;
}

.process-item h3 {
    font-size: 21px;
}

.process-item p {
    max-width: 240px;

    margin: 10px auto 0;

    font-size: 15px;
}

.process-line {
    height: 1px;

    background: var(--border);
}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {
    background: var(--cream);
}

.testimonial-slider {
    position: relative;

    display: flex;
    align-items: center;

    gap: 20px;
}

.testimonial-track {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    width: 100%;
}

.testimonial-card {
    padding: 35px;

    background: var(--white);

    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(93, 65, 55, 0.05);

    display: flex;
    flex-direction: column;
}

.stars {
    color: #c79a48;

    font-size: 12px;

    letter-spacing: 2px;
}

.testimonial-card blockquote {
    min-height: 120px;

    margin-top: 22px;

    color: var(--text);

    font-family: "Playfair Display", serif;

    font-size: 17px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    gap: 12px;

    padding-top: 22px;

    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cream);

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author strong {
    font-size: 15px;
}

.testimonial-author span {
    color: var(--text-light);

    font-size: 13px;
}

.slider-button {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--primary);

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.slider-button:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-dots {
    display: none;

    justify-content: center;
    gap: 7px;

    margin-top: 25px;
}

.dot {
    width: 7px;
    height: 7px;

    border: 0;
    border-radius: 50%;

    background: var(--primary-light);

    cursor: pointer;
}

.dot.active {
    width: 22px;

    border-radius: 10px;

    background: var(--primary);
}


/* =========================================
   FAQ
========================================= */

.faq {
    background: var(--white);
}

.faq-layout {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 100px;

    align-items: start;
}

.faq-heading h2 {
    margin-top: 15px;

    font-size: clamp(38px, 4vw, 52px);
}

.faq-heading>p {
    max-width: 400px;

    margin-top: 18px;

    font-size: 17px;
}

.faq-heading .btn {
    margin-top: 28px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 0;

    border: 0;

    background: transparent;

    color: var(--text);

    text-align: left;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
}

.faq-question i {
    flex-shrink: 0;

    color: var(--primary);

    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
    overflow: hidden;

    font-size: 15px;

    line-height: 1.8;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;

    padding-bottom: 25px;
}


/* =========================================
   CTA
========================================= */

.cta {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            var(--primary-dark),
            var(--primary));

    color: var(--white);
}

.cta-content {
    position: relative;

    max-width: 780px;

    margin: auto;

    text-align: center;

    z-index: 2;
}

.cta .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.cta h2 {
    margin-top: 17px;

    font-size: clamp(40px, 5vw, 60px);
}

.cta h2 span {
    color: var(--primary-light);
}

.cta p {
    max-width: 620px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;
}

.cta .btn {
    margin-top: 30px;
}

.cta-decoration {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}

.cta-decoration-1 {
    width: 500px;
    height: 500px;

    left: -280px;
    top: -220px;
}

.cta-decoration-2 {
    width: 350px;
    height: 350px;

    right: -160px;
    bottom: -200px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 75px 0 25px;

    background: #312c2a;

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 0.7fr 1fr;

    gap: 60px;

    padding-bottom: 55px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand>p {
    max-width: 300px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 8px;

    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    color: rgba(255, 255, 255, 0.75);

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-column h3 {
    margin-bottom: 20px;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.footer-column>a:not(.footer-button),
.footer-column>p {
    display: block;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;

    transition: color 0.25s ease;
}

.footer-column>a:not(.footer-button):hover {
    color: var(--white);
}

.footer-contact {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 3px;

    color: var(--primary-light);
}

.footer-column>p {
    line-height: 1.7;
}

.footer-button {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 15px;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
}

.footer-bottom i {
    color: var(--primary-light);
}


/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    height: 55px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 20px;

    border-radius: 50px;

    background: #25d366;
    color: white;

    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.25);

    z-index: 900;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.3);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 18px;
    }

    .hero-container {
        gap: 35px;
    }

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

    .problems-layout {
        gap: 50px;
    }

    .about-layout {
        gap: 60px;
    }

    .footer-grid {
        gap: 35px;
    }
}


@media (max-width: 850px) {

    .section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 25px 20px 30px;

        flex-direction: column;
        align-items: stretch;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: 0 20px 30px rgba(50, 40, 35, 0.08);

        transform: translateY(-120%);

        transition: transform 0.35s ease;

        z-index: 999;
    }

    .nav.open {
        transform: translateY(0);
    }

    .nav-link {
        padding: 10px 0;

        font-size: 14px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-button {
        margin-top: 10px;
    }

    .hero {
        min-height: auto;

        padding: 130px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
    }

    .hero-image-wrapper {
        justify-self: center;

        max-width: 460px;
    }

    .hero-badge {
        left: 0;
    }

    .problems-layout,
    .about-layout,
    .faq-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .problems-image {
        min-height: 450px;
        max-width: 550px;
        width: 100%;
        margin: auto;
    }

    .about-image {
        max-width: 500px;
        width: 100%;
        margin: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        max-width: 550px;
        margin: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .process-line {
        display: none;
    }

    .testimonial-track {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        display: none;
    }

    .testimonial-card:first-child {
        display: block;
    }

    .slider-dots {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, 1180px);
    }

    .section {
        padding: 70px 0;
    }

    .header {
        height: 70px;
    }

    .nav {
        top: 70px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-content>p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        display: grid;

        grid-template-columns: 1fr;

        justify-items: start;

        max-width: 220px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        max-width: 360px;
    }

    .hero-badge {
        left: -5px;
        bottom: 25px;
    }

    .hero-image-decoration {
        inset: 15px -10px -15px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .problems-image {
        min-height: 400px;
    }

    .benefit-card {
        padding: 30px;
    }

    .about-image {
        padding: 15px;
    }

    .about-experience {
        right: -5px;
    }

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

    .faq-heading>p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta {
        padding: 75px 0;
    }

    .cta h2 {
        font-size: 39px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 55px;
        height: 55px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .slider-button {
        display: none;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}