/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f8f7f2;
    color: #14251d;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --green: #12382a;
    --green-light: #1d543d;
    --cream: #f8f7f2;
    --cream-dark: #eeece2;
    --gold: #c59b55;
    --dark: #14251d;
    --text: #64706a;
    --white: #ffffff;
    --border: rgba(20, 37, 29, 0.1);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(248, 247, 242, 0.92);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--white);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-size: 15px;
    letter-spacing: -0.4px;
}

.logo-text small {
    margin-top: 5px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    position: relative;
    color: #51605a;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green);
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 23px;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--green);
    transition: 0.3s ease;
}

.btn:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(18, 56, 42, 0.15);
}

.btn i {
    font-size: 11px;
}

.btn-small {
    padding: 12px 18px;
}

.btn-outline {
    background: transparent;
    color: var(--green);
}

.btn-outline:hover {
    color: var(--white);
}

.menu-btn,
.mobile-quote {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(197, 155, 85, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(29, 84, 61, 0.08),
            transparent 30%
        );
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-tag {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
}

.pulse {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(197, 155, 85, 0.12);
}

.hero h1 {
    max-width: 650px;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 600;
}

.hero h1 span,
.section-heading h2 span,
.about-content h2 span,
.center-heading h2 span,
.global-content h2 span,
.quote-content h2 span {
    color: var(--green-light);
    font-style: italic;
}

.hero-content > p {
    max-width: 570px;
    margin: 28px 0 32px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 35px;
    color: #68736e;
    font-size: 11px;
    font-weight: 500;
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-trust i {
    color: var(--gold);
}


/* Hero visual */

.hero-visual {
    height: 540px;
    position: relative;
}

.main-image {
    position: absolute;
    top: 15px;
    right: 0;
    width: 82%;
    height: 480px;
    overflow: hidden;
    border-radius: 170px 170px 15px 15px;
    background:
        linear-gradient(
            145deg,
            #c9b07e,
            #e5d8b9 40%,
            #496b56 100%
        );
    box-shadow: 0 30px 80px rgba(20, 37, 29, 0.16);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.85);
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255, 255, 255, 0.45),
            transparent 20%
        ),
        linear-gradient(
            135deg,
            rgba(18, 56, 42, 0.35),
            rgba(197, 155, 85, 0.35)
        );
}

.image-placeholder i {
    font-size: 75px;
}

.image-placeholder span {
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 13px 17px;
    display: flex;
    flex-direction: column;
    background: rgba(20, 37, 29, 0.85);
    color: white;
    border-radius: 8px;
}

.image-label span {
    color: #c9b07e;
    font-size: 8px;
    letter-spacing: 2px;
}

.image-label strong {
    font-size: 14px;
}

.floating-card {
    position: absolute;
    left: 0;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(20, 37, 29, 0.13);
    animation: floating 4s ease-in-out infinite;
}

.floating-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf1e9;
    color: var(--green);
}

.floating-card div:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card span {
    color: #7a827e;
    font-size: 10px;
}

.circle-decoration {
    position: absolute;
    right: -40px;
    top: 50px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(197, 155, 85, 0.45);
    border-radius: 50%;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================
   STATS
========================================= */

.stats {
    background: var(--green);
    color: white;
    padding: 26px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat:last-child {
    border-right: none;
}

.stat > i {
    color: var(--gold);
    font-size: 18px;
}

.stat div {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 12px;
}

.stat span {
    color: rgba(255,255,255,0.55);
    font-size: 10px;
}


/* =========================================
   SECTIONS
========================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px;
}

.section-heading h2,
.center-heading h2,
.about-content h2,
.quote-content h2 {
    margin-top: 15px;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.section-heading > p,
.center-heading > p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    max-width: 420px;
}


/* =========================================
   PRODUCTS
========================================= */

.products-section {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(20, 37, 29, 0.1);
}

.product-image {
    height: 280px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.product-image::before,
.product-image::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.product-image::before {
    width: 230px;
    height: 230px;
}

.product-image::after {
    width: 130px;
    height: 130px;
}

.makhana {
    background:
        linear-gradient(145deg, #c6b07d, #8f9b67);
}

.dry-fruits {
    background:
        linear-gradient(145deg, #6d5037, #c39a66);
}

.nuts {
    background:
        linear-gradient(145deg, #8c704c, #d0ae7a);
}

.product-badge {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    padding: 6px 9px;
    background: var(--green);
    color: white;
    font-size: 8px;
    letter-spacing: 1.5px;
    border-radius: 5px;
}

.product-icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 42px;
}

.product-content {
    padding: 27px;
}

.product-content > span {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.product-content h3 {
    margin: 9px 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.product-content p {
    color: var(--text);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.product-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    font-weight: 700;
}

.product-content a i {
    color: var(--gold);
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    height: 500px;
    position: relative;
}

.about-box {
    position: absolute;
    inset: 20px 60px 20px 0;
    background: var(--green);
    border-radius: 10px;
    color: white;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.about-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -180px;
    right: -160px;
}

.about-number {
    font-family: "Playfair Display", serif;
    font-size: 90px;
    color: rgba(255,255,255,0.09);
    position: absolute;
    top: 20px;
    left: 30px;
}

.about-box small {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
}

.about-box strong {
    font-family: "Playfair Display", serif;
    display: block;
    font-size: 40px;
    margin-top: 5px;
}

.about-pattern {
    position: absolute;
    width: 180px;
    height: 180px;
    right: 0;
    bottom: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
}

.about-content > p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
    margin-top: 23px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
}

.about-points i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf2ec;
    color: var(--green);
    font-size: 9px;
}


/* =========================================
   WHY US
========================================= */

.why-section {
    background: var(--cream-dark);
}

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: auto auto 60px;
}

.center-heading > p {
    margin: 20px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    position: relative;
    padding: 30px 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(20,37,29,0.08);
}

.feature-number {
    position: absolute;
    right: 20px;
    top: 17px;
    font-size: 10px;
    color: #b4bbb7;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #edf2ec;
    color: var(--green);
    border-radius: 8px;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.feature-card p {
    color: var(--text);
    font-size: 11px;
    line-height: 1.8;
    margin-top: 10px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.process-step {
    text-align: center;
}

.process-step > span {
    display: block;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 13px;
}

.process-step > i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 20px;
}

.process-step h3 {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    margin-top: 16px;
}

.process-step p {
    max-width: 170px;
    margin: 8px auto 0;
    color: var(--text);
    font-size: 10px;
    line-height: 1.7;
}

.process-line {
    width: 45px;
    height: 1px;
    background: #d7dcd7;
}


/* =========================================
   GLOBAL SECTION
========================================= */

.global-section {
    position: relative;
    overflow: hidden;
    background: var(--green);
    color: white;
    padding: 110px 0;
}

.global-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.global-content .section-tag {
    color: var(--gold);
}

.global-content h2 {
    margin-top: 15px;
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
}

.global-content h2 span {
    color: #d4c49c;
}

.global-content > p {
    color: rgba(255,255,255,0.55);
    margin-top: 20px;
    font-size: 13px;
}

.global-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(197,155,85,0.08);
    border-radius: 50%;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
}

.world-map {
    position: relative;
    width: 100%;
    height: 280px;
    max-width: 900px;
    margin: 55px auto 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.06) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(197,155,85,0.12);
}

.dot-1 {
    left: 48%;
    top: 54%;
}

.dot-2 {
    left: 26%;
    top: 42%;
}

.dot-3 {
    left: 67%;
    top: 38%;
}

.dot-4 {
    left: 79%;
    top: 62%;
}

.map-line {
    position: absolute;
    height: 1px;
    width: 250px;
    border-top: 1px dashed rgba(197,155,85,0.5);
    transform-origin: left center;
}

.line-1 {
    left: 48%;
    top: 54%;
    transform: rotate(-155deg);
}

.line-2 {
    left: 48%;
    top: 54%;
    transform: rotate(-28deg);
}

.line-3 {
    left: 48%;
    top: 54%;
    transform: rotate(16deg);
}

.india-marker {
    position: absolute;
    left: calc(48% - 30px);
    top: calc(54% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.india-marker span {
    width: 16px;
    height: 16px;
    border: 2px solid var(--gold);
    border-radius: 50%;
}


/* =========================================
   QUOTE
========================================= */

.quote-section {
    background: var(--cream);
}

.quote-box {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 70px;
    background: white;
    padding: 65px;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.quote-content h2 {
    font-size: 45px;
}

.quote-content > p {
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
    margin-top: 20px;
}

.quote-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.quote-contact div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
}

.quote-contact i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    background: #edf2ec;
    color: var(--green);
    border-radius: 50%;
}

.quote-form {
    padding: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dfe3df;
    background: #fbfbf9;
    border-radius: 7px;
    padding: 13px 14px;
    color: var(--dark);
    font-size: 11px;
    outline: none;
    transition: 0.2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,155,85,0.08);
}

.form-btn {
    width: 100%;
    border: none;
    margin-top: 3px;
}

.form-note {
    text-align: center;
    margin-top: 13px;
    color: #969e99;
    font-size: 9px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #0c241b;
    color: white;
    padding: 65px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    max-width: 230px;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    margin-top: 18px;
}

.footer-logo .logo-mark {
    background: white;
    color: var(--green);
}

.footer-logo .logo-text strong {
    color: white;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    transition: 0.2s;
}

.socials a:hover {
    background: white;
    color: var(--green);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.footer-column a {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    transition: 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    color: rgba(255,255,255,0.3);
    font-size: 9px;
}


/* =========================================
   TOAST
========================================= */

.toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--green);
    color: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(150px);
    opacity: 0;
    transition: 0.4s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast > i {
    color: #80b898;
}

.toast div {
    display: flex;
    flex-direction: column;
}

.toast strong {
    font-size: 11px;
}

.toast span {
    color: rgba(255,255,255,0.55);
    font-size: 9px;
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 17px;
    }

    .hero-grid {
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 50px;
    }

    .quote-box {
        gap: 40px;
        padding: 45px;
    }

}


@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .desktop-quote {
        display: none;
    }

    .menu-btn {
        display: block;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        background: white;
        border-radius: 8px;
        color: var(--green);
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 15px;
        right: 15px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: white;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 13px;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .mobile-quote {
        display: flex;
        justify-content: center;
        background: var(--green);
        color: white !important;
        border-radius: 7px;
        margin-top: 5px;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-visual {
        height: 440px;
        margin-top: 20px;
    }

    .main-image {
        width: 85%;
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 0;
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 400px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-line {
        display: none;
    }

    .quote-box {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 500px) {

    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-visual {
        height: 360px;
    }

    .main-image {
        height: 330px;
    }

    .floating-card {
        left: 0;
        bottom: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-box {
        inset: 20px 30px 20px 0;
    }

    .quote-box {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}