/* =========================================
   ROOT
========================================= */

:root {
    --green: #026D39;
    --green-dark: #014D2A;
    --green-light: #EAF7EF;
    --yellow: #FFCC2A;
    --yellow-light: #FFF7D6;
    --white: #FFFFFF;
    --black: #17231D;
    --gray: #647069;
    --light: #F7FAF8;
    --border: #E3EAE5;
    --shadow:
        0 20px 50px rgba(2, 109, 57, 0.10);
    --radius: 20px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}

.section {
    padding: 30px 0;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(2,109,57,.08);
    transition: .3s;
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #46524B;
    position: relative;
    transition: .3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--green);
    color: white;
    padding: 11px 21px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.nav-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2,109,57,.2);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 27px;
    height: 3px;
    border-radius: 10px;
    background: var(--green);
}

.nav-close {
    display: none;
    border: 0;
    background: transparent;
    color: var(--green);
    font-size: 26px;
}


/* =========================================
   HERO
========================================= */

.hero {
    padding: 110px 0 100px;
    min-height: 760px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(255,204,42,.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #F5FBF7,
            #FFFFFF
        );
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 22px 0;
}

.hero h1 span,
.section-heading h2 span,
.about-content h3 span,
.why-content h2 span,
.download-content h2 span,
.contact-info h2 span {
    color: var(--green);
}

.hero p {
    max-width: 570px;
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    padding: 13px 23px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: .3s;
}

.btn-primary {
    background: var(--green);
    color: white;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(2,109,57,.2);
}

.btn-outline {
    color: var(--green);
    border-color: var(--green);
    background: white;
}

.btn-outline:hover {
    background: var(--green);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 42px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: "Poppins";
    font-size: 21px;
    color: var(--green);
}

.hero-stats span {
    font-size: 12px;
    color: var(--gray);
}


/* HERO IMAGE */

.hero-image {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 430px;
    height: 470px;
    object-fit: cover;
    border-radius: 45% 45% 45% 15%;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.hero-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: .9;
    z-index: 1;
    transform: translate(35px,20px);
}

/* .floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    background: rgba(255,255,255,.95);
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
} */

/* .floating-card i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
} */

/* .floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    font-size: 10px;
    color: var(--gray);
} */

/* .card-one {
    left: 0;
    top: 130px;
}

.card-two {
    right: 0;
    bottom: 120px;
    animation-delay: 1s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
} */


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-heading h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    margin: 15px 0;
}

.section-heading p {
    color: var(--gray);
    font-size: 15px;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.experience-box {
    position: absolute;
    right: -25px;
    bottom: 30px;
    width: 190px;
    padding: 20px;
    background: var(--green);
    color: white;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(2,109,57,.25);
}

.experience-box strong {
    display: block;
    font-family: Poppins;
    color: var(--yellow);
    font-size: 25px;
}

.experience-box span {
    font-size: 12px;
}

.about-content h3 {
    font-family: Poppins;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 14px;
}

.about-features {
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--yellow-light);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 19px;
}

.about-feature h4 {
    font-family: Poppins;
    font-size: 15px;
    margin-bottom: 2px;
}

.about-feature p {
    color: var(--gray);
    font-size: 13px;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--green-light);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 23px;
    margin-bottom: 24px;
    transition: .4s;
}

.service-card:hover .service-icon {
    background: var(--green);
    color: white;
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    font-family: Poppins;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 22px;
}

.service-card a {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}


/* =========================================
   WHY US
========================================= */

.why-us {
    background:
        linear-gradient(
            135deg,
            var(--green),
            #075F36
        );
    color: white;
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.why-content .section-label {
    background: rgba(255,255,255,.12);
    color: var(--yellow);
}

.why-content h2 {
    font-family: Poppins;
    font-size: 43px;
    line-height: 1.2;
    margin: 18px 0;
}

.why-content h2 span {
    color: var(--yellow);
}

.why-content p {
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
}

.why-content .btn {
    background: var(--yellow);
    color: var(--black);
}

.why-content .btn:hover {
    background: white;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.why-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    padding: 25px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    transition: .35s;
}

.why-card:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-6px);
}

.why-card > i {
    color: var(--yellow);
    font-size: 21px;
    margin-top: 10px;
}

.why-number {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 10px;
    color: rgba(255,255,255,.3);
    font-weight: 800;
}

.why-card h3 {
    font-family: Poppins;
    font-size: 16px;
    margin-bottom: 5px;
}

.why-card p {
    color: rgba(255,255,255,.65);
    font-size: 12px;
}


/* =========================================
   PRODUCTS
========================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.product-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image span {
    position: absolute;
    left: 14px;
    top: 14px;
    background: var(--yellow);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: Poppins;
    font-size: 18px;
    margin-bottom: 3px;
}

.product-info p {
    font-size: 12px;
    color: var(--gray);
}


/* =========================================
   FAQ
========================================= */

.faq {
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .3s;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 700;
    color: var(--black);
}

.faq-question i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-light);
    color: var(--green);
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: var(--gray);
    font-size: 14px;
}

.faq-item.active {
    border-color: rgba(2,109,57,.2);
}

.faq-item.active .faq-question i {
    background: var(--green);
    color: white;
    transform: rotate(45deg);
}


/* =========================================
   DOWNLOAD
========================================= */

.download {
    padding-top: 100px;
}

.download-box {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,204,42,.2),
            transparent 30%
        ),
        var(--green);
    border-radius: 30px;
    padding: 70px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.download-content .section-label {
    background: rgba(255,255,255,.1);
    color: var(--yellow);
}

.download-content h2 {
    font-family: Poppins;
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0;
}

.download-content h2 span {
    color: var(--yellow);
}

.download-content p {
    color: rgba(255,255,255,.75);
    max-width: 500px;
    margin-bottom: 25px;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #111;
    color: white;
    min-width: 145px;
}

.store-btn i {
    font-size: 25px;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
}

.store-btn small {
    font-size: 7px;
    font-weight: 500;
}

.app-visual {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}

.app-visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: 8px;
    top: 52px;
    z-index: -2;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.15);
    background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
        rgba(0, 53, 28, .16);
    background-size: 24px 24px;
    transform: rotate(8deg);
}

.visual-orbit,
.qr-halo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.visual-orbit {
    border: 1px solid rgba(255,255,255,.18);
    z-index: -1;
}

.orbit-one {
    width: 355px;
    height: 355px;
    right: 15px;
    top: 38px;
    opacity: .72;
}

.orbit-two {
    width: 280px;
    height: 280px;
    right: 53px;
    top: 76px;
    border-style: dashed;
    opacity: .45;
}

.visual-spark {
    position: absolute;
    z-index: 3;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 6px rgba(255,204,42,.13), 0 0 18px rgba(255,204,42,.7);
    display: none;
}

.spark-one { top: 66px; right: 80px; }
.spark-two { bottom: 94px; right: 310px; animation-delay: 1.1s; }

.qr-halo {
    width: 210px;
    height: 210px;
    left: -42px;
    bottom: 6px;
    background: radial-gradient(circle, rgba(255,204,42,.24), rgba(255,204,42,0) 68%);
    opacity: .9;
}

.qr-box {
    position: absolute;
    left: -4px;
    bottom: 29px;
    background: rgba(255,255,255,.97);
    color: var(--black);
    padding: 10px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 18px;
    width: 148px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 18px 45px rgba(0,0,0,.25), 0 0 0 7px rgba(255,255,255,.08);
    transform: none;
}

.qr-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .7px;
}

.qr-badge i { font-size: 10px; }

.scan-line {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 43px;
    height: 2px;
    opacity: .75;
    background: var(--green);
    box-shadow: 0 0 9px var(--green);
    display: none;
}

.qr-placeholder {
    width: 91px;
    height: 91px;
    background: white;
    border: 4px solid var(--black);
    padding: 7px;
    margin: auto auto 7px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 4px;
}

.qr-pattern span {
    background: var(--black);
}

.qr-box strong {
    display: block;
    font-size: 11px;
}

.qr-box small {
    display: block;
    color: var(--gray);
    font-size: 8px;
}

.phone-mockup {
    width: 226px;
    height: 438px;
    border: 7px solid #102117;
    border-radius: 37px;
    background: linear-gradient(145deg, #315b40, #07100a);
    position: relative;
    padding: 7px;
    transform: rotate(3deg) translateX(18px);
    box-shadow: 16px 28px 48px rgba(0,0,0,.28), -6px -4px 15px rgba(255,255,255,.12);
    z-index: 2;
}

/* .phone-glow {
    position: absolute;
    inset: -26px;
    z-index: -1;
    border-radius: 46px;
    background: radial-gradient(circle at 50% 60%, rgba(255,204,42,.3), transparent 66%);
} */
/* 
.phone-pedestal {
    position: absolute;
    right: 39px;
    bottom: 6px;
    z-index: 1;
    width: 250px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,0,0,.34), rgba(0,0,0,0) 68%);
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 7px;
    background: #111;
    border-radius: 20px;
    z-index: 5;
} */

/* .phone-screen {
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(165deg, #fafffb, #edf6ef);
    padding: 22px 12px 12px;
} */

/* .app-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    color: var(--green);
} */

/* .app-banner {
    margin-top: 15px;
    background: linear-gradient(135deg, #08713d, #034c29);
    color: white;
    border-radius: 15px;
    padding: 20px 13px;
} */

/* .app-banner small {
    font-size: 7px;
    color: var(--yellow);
} */

/* .app-banner strong {
    display: block;
    font-family: Poppins;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 6px;
} */

/* .app-categories {
    display: flex;
    gap: 6px;
    margin-top: 15px;
} */

/* .app-categories span {
    flex: 1;
    background: white;
    border-radius: 9px;
    padding: 9px 3px;
    text-align: center;
    font-size: 7px;
    color: var(--gray);
} */

/* .app-categories i {
    display: block;
    color: var(--green);
    font-size: 15px;
    margin-bottom: 4px;
} */


/* =========================================
   CONTACT
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 0;
    align-items: stretch;
    max-width: 1040px;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    background: var(--green-dark);
    box-shadow: 0 24px 60px rgba(1, 77, 42, .16);
}

.contact-info {
    position: relative;
    padding: 38px 42px;
    color: rgba(255,255,255,.74);
    background:
        radial-gradient(circle at 0% 100%, rgba(255, 204, 42, .22), transparent 35%),
        radial-gradient(circle at 100% 0%, rgba(54, 178, 107, .22), transparent 38%),
        var(--green-dark);
    overflow: hidden;
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -105px;
    bottom: -105px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 56px rgba(255,255,255,.025);
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.contact-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(255,204,42,.16);
}

.contact-info h2 {
    font-family: Poppins;
    font-size: clamp(31px, 3vw, 40px);
    letter-spacing: -1.5px;
    line-height: 1.13;
    margin: 17px 0 10px;
    color: white;
}

.contact-info h2 span { color: var(--yellow); }

.contact-info > p {
    max-width: 370px;
    margin-bottom: 22px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

.contact-details {
    display: grid;
    gap: 8px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.065);
    transition: transform .25s ease, background .25s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,.10);
}

.contact-item > div {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    background: rgba(255,204,42,.14);
    color: var(--yellow);
    border-radius: 10px;
    display: grid;
    place-items: center;
}

.contact-item span {
    flex: 1;
    font-size: 12px;
    color: rgba(255,255,255,.65);
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: white;
    font-size: 13px;
}

.app-delivery {
    margin-top: 15px;
    padding: 11px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    border-radius: 11px;
    background: white;
    box-shadow: 0 8px 18px rgba(4,71,37,.08);
    color: var(--green);
    font-size: 7px;
    font-weight: 700;
}

.app-delivery > span i { color: var(--yellow); margin-right: 3px; }
.app-delivery strong { font-size: 7px; }

.app-rating-card {
    position: absolute;
    right: -5px;
    bottom: 50px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 13px;
    color: white;
    background: rgba(7,45,25,.83);
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
    backdrop-filter: blur(8px);
    transform: none;
}

.rating-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #443300;
    background: var(--yellow);
    font-size: 11px;
}

.app-rating-card strong,
.app-rating-card small { display: block; }
.app-rating-card strong { font-size: 10px; }
.app-rating-card small { margin-top: 2px; color: rgba(255,255,255,.68); font-size: 8px; }

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes halo-pulse { 50% { transform: scale(1.13); opacity: .65; } }
@keyframes sparkle { 50% { transform: scale(1.35); opacity: .5; } }
@keyframes qr-float { 50% { transform: translateY(-8px) rotate(-1deg); } }
@keyframes phone-float { 50% { transform: rotate(3deg) translate(18px, -10px); } }
@keyframes rating-float { 50% { transform: translateY(-6px); } }
@keyframes qr-float-mobile { 50% { transform: scale(.8) translateY(-8px) rotate(-1deg); } }
@keyframes rating-float-mobile { 50% { transform: scale(.86) translateY(-6px); } }
@keyframes scan-qr { 0%, 100% { transform: translateY(0); opacity: 0; } 20%, 80% { opacity: .8; } 50% { transform: translateY(79px); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .visual-orbit, .visual-spark, .qr-halo, .qr-box, .phone-mockup, .app-rating-card, .scan-line { animation: none; }
}

.contact-link-icon {
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.contact-assurance {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.assurance-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,204,42,.16);
    color: var(--yellow);
    font-size: 12px;
}
.contact-assurance p { font-size: 11px; line-height: 1.5; color: rgba(255,255,255,.64); }
.contact-assurance strong { color: white; font-size: 11px; }

.contact-form {
    padding: 38px 42px;
    background: linear-gradient(145deg, #ffffff, #f9fcfa);
}

.form-heading { margin-bottom: 20px; }
.form-heading > span {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}
.form-heading h3 {
    margin: 4px 0 3px;
    font-family: Poppins;
    font-size: 25px;
    letter-spacing: -.7px;
    color: #FFCC2A;
}
.form-heading p { color: var(--gray); font-size: 13px; }

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-group {
    margin-bottom: 13px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #415047;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--light);
    border-radius: 10px;
    padding: 11px 13px;
    outline: none;
    resize: vertical;
    transition: .3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 3px rgba(2,109,57,.07);
}

.field-wrap {
    position: relative;
}

.field-wrap > i {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 1;
    color: #7a8b80;
    font-size: 13px;
    transform: translateY(-50%);
}

.field-wrap input {
    padding-left: 37px !important;
}

.contact-form .btn {
    border: 0;
    width: 100%;
    margin-top: 1px;
    justify-content: center;
    padding: 13px 20px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #14562A;
    color: white;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 15px;
    background: white;
    padding: 5px;
    border-radius: 7px;
}

.footer-brand p,
.footer-column p {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    max-width: 270px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: .3s;
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-family: Poppins;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255,255,255,.6);
    font-size: 15px;
    transition: .3s;
}

.footer-column a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-download {
    margin-top: 12px;
    color: var(--yellow) !important;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}


/* =========================================
   BACK TOP
========================================= */

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 0;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
    z-index: 900;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 20px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-image img {
        width: 360px;
        height: 420px;
    }

    .hero-circle {
        width: 380px;
        height: 380px;
    }

    .about-grid {
        gap: 50px;
    }

    .download-box {
        padding: 50px;
        gap: 30px;
    }

}


/* TABLET */

@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85%);
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 30px;
        gap: 25px;
        box-shadow: -15px 0 40px rgba(0,0,0,.12);
        transition: .4s;
        z-index: 1000;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .nav-link {
        font-size: 16px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 13px;
    }

    .hero {
        padding-top: 135px;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .download-box,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        min-height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-content {
        text-align: center;
    }

    .why-content .section-label {
        margin: auto;
    }

    .why-content p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .download-content {
        text-align: center;
    }

    .download-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .download-buttons {
        justify-content: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-kicker {
        margin: auto;
    }

    .contact-details {
        max-width: 400px;
        margin: auto;
        text-align: left;
    }

    .contact-assurance {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* MOBILE */

@media (max-width: 560px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .section {
        padding: 25px 0;
    }

    .nav-container {
        min-height: 72px;
    }

    .logo img {
        width: 60px;
    }

    .hero {
        padding: 115px 0 60px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 17px;
    }

    .hero-image {
        min-height: 390px;
    }

    .hero-image img {
        width: 285px;
        height: 350px;
        border-radius: 40% 40% 40% 12%;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .card-one {
        left: 0;
        top: 65px;
    }

    .card-two {
        right: 0;
        bottom: 55px;
    }

    .floating-card {
        padding: 9px 10px;
        transform: scale(.8);
    }

    .floating-card i {
        width: 32px;
        height: 32px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .about-image img {
        height: 380px;
    }

    .experience-box {
        right: 10px;
        bottom: 20px;
        width: 160px;
        padding: 15px;
    }

    .about-content h3 {
        font-size: 27px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 23px;
    }

    .why-us {
        padding: 40px 0;
    }

    .why-content h2 {
        font-size: 32px;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 22px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 240px;
    }

    .download-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .download-content h2 {
        font-size: 31px;
    }

    .app-visual {
        min-height: 435px;
    }

    .qr-box {
        left: -4px;
        bottom: 27px;
        transform: scale(.8);
        transform-origin: bottom left;
    }

    .phone-mockup {
        width: 198px;
        height: 385px;
        margin-left: 44px;
        transform: rotate(5deg) translateX(12px);
    }

    .orbit-one {
        width: 315px;
        height: 315px;
        right: 2px;
        top: 55px;
    }

    .orbit-two {
        width: 245px;
        height: 245px;
        right: 37px;
        top: 90px;
    }

    .app-rating-card {
        right: -3px;
        bottom: 48px;
        transform: scale(.86);
        transform-origin: bottom right;
    }

    .phone-pedestal {
        right: 24px;
        bottom: 8px;
        width: 215px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .contact-info {
        padding: 42px 22px;
    }

    .contact-grid {
        border-radius: 20px;
    }

    .form-heading h3 {
        font-size: 24px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}


/* SMALL MOBILE */

@media (max-width: 370px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-image img {
        width: 255px;
        height: 320px;
    }

    .hero-circle {
        width: 270px;
        height: 270px;
    }

    .floating-card {
        transform: scale(.7);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}
