:root {
    --navy: #11111c;
    --navy2: #181827;
    --orange: #cf7144;
    --orange2: #e38a5d;
    --cream: #f6f4f0;
    --soft: #fbfaf8;
    --text: #20202a;
    --muted: #666;
    --line: #e5e1dc;
    --white: #fff;
    --green: #16864b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* HERO SECTION */
.hero {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 490px;
    align-items: center;
    padding: 55px 5%;
    gap: 45px;
}

.eyebrow,
.kicker {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.06;
    margin: 16px 0;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    color: #555;
    line-height: 1.6;
    max-width: 560px;
}

.buttons {
    display: flex;
    gap: 14px;
    margin: 25px 0;
}

.hero-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 700;
    margin-top: 25px;
}

/* GENERAL SECTIONS & GRIDS */
.section {
    padding: 65px 5%;
}

.center {
    text-align: center;
}

.section h2 {
    font-size: 31px;
    margin: 8px 0 35px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.card {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 125px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 14px;
}

.card h3 {
    font-size: 15px;
    margin: 0 0 7px;
}

.card p {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 10px;
}

.more {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 390px;
}

.split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.copy {
    padding: 55px 7%;
    background: #faf9f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copy h2 {
    font-size: 32px;
    margin: 8px 0 14px;
}

.copy p {
    color: #666;
    line-height: 1.6;
}

.ticks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 20px 0;
    font-size: 13px;
    font-weight: 600;
}

.ticks div:before {
    content: '✓';
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #f1ddd1;
    color: var(--orange);
    margin-right: 8px;
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.icon {
    width: 48px;
    height: 48px;
    margin: auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eee;
    font-size: 21px;
}

.why-item h3 {
    font-size: 15px;
    margin: 10px 0 5px;
}

.why-item p {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.step {
    text-align: center;
    position: relative;
}

.step .icon {
    background: #eef0f5;
}

.step h3 {
    font-size: 13px;
    margin: 8px 0 4px;
}

.step p {
    font-size: 11px;
    color: #777;
    margin: 0;
}

.products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.product {
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 7px;
    background: #fff;
    text-align: center;
}

.product img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.product b {
    font-size: 12px;
    display: block;
    margin: 8px 3px 4px;
}

.price {
    font-size: 12px;
    color: #555;
    margin: 0 3px 8px;
}

.mini {
    font-size: 10px;
    padding: 7px 9px;
    border-radius: 5px;
    background: var(--orange);
    color: #fff;
    border: 0;
    cursor: pointer;
}

.cta {
    background: var(--navy);
    color: #fff;
    padding: 38px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.cta h2 {
    margin: 0 0 7px;
    font-size: 28px;
}

.cta p {
    margin: 0;
    color: #ccc;
}


/* TOP BAR */
.top {
    background: var(--navy);
    color: #eee;
    font-size: 12px;
    padding: 9px 5%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.top a {
    color: #eee;
}

.top a:hover {
    color: var(--orange);
}

/* HEADER & NAVIGATION */
.nav {
    height: 74px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand {
    font-weight: 800;
    font-size: 22px;
    line-height: .9;
    color: var(--navy);
    display: inline-block;
}

.brand small {
    display: block;
    font-size: 8px;
    font-weight: 500;
    margin-top: 5px;
    color: #777;
    letter-spacing: .5px;
}

.brand span {
    color: var(--orange);
}

.links {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
}

.links a {
    color: var(--text);
    position: relative;
    padding: 6px 0;
}

.links a:hover,
.links a.active {
    color: var(--orange);
}

.links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.quote {
    background: var(--orange);
    color: white !important;
    padding: 13px 21px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
}

.quote:hover {
    background: #b55d32;
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--navy);
    padding: 5px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn.dark {
    background: var(--navy);
    color: white;
}

.btn.dark:hover {
    background: #1c1c2e;
}

.btn.orange {
    background: var(--orange);
    color: white;
}

.btn.orange:hover {
    background: #b55d32;
}

.btn.outline {
    border: 1px solid var(--orange);
    color: var(--orange);
    background: white;
}

.btn.outline:hover {
    background: #fff8f4;
}

/* FOOTER */
.footer {
    background: #0b0b13;
    color: #ccc;
    padding: 45px 5% 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px;
}

.footer h3 {
    color: #fff;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 14px;
}

.footer p,
.footer a {
    font-size: 12px;
    color: #aaa;
    line-height: 1.8;
    display: block;
}

.footer a:hover {
    color: var(--orange);
}

.copyline {
    text-align: center;
    border-top: 1px solid #282832;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 11px;
    color: #777;
}

/* FLOATING WHATSAPP BUTTON */
.float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #20b85a;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 99;
    box-shadow: 0 5px 20px rgba(32, 184, 90, 0.4);
    transition: transform 0.2s;
}

.float:hover {
    transform: scale(1.08);
}

/* RESPONSIVE NAVIGATION & LAYOUT */
@media(max-width: 1000px) {
    .cards,
    .products {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media(max-width: 820px) {
    .top {
        display: none;
    }

    .nav {
        height: 65px;
    }

    .links,
    .nav .quote {
        display: none;
    }

    .menu {
        display: block;
    }

    .links.show {
        display: flex !important;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        padding: 20px 5%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .links.show a {
        font-size: 15px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 42px 20px;
        gap: 30px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .trust {
        gap: 12px;
    }

    .section {
        padding: 45px 20px;
    }

    .section h2,
    .copy h2 {
        font-size: 27px;
    }

    .cards,
    .products,
    .why-grid,
    .steps {
        grid-template-columns: 1fr 1fr;
    }

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

    .split .copy {
        order: 2;
        padding: 40px 20px;
    }

    .split img {
        height: 260px;
    }

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

    .cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 20px;
    }

    .footer {
        padding: 38px 20px 15px;
    }

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

    .card img {
        height: 105px;
    }

    .product img {
        height: 90px;
    }
}

@media(max-width: 480px) {
    .cards,
    .products,
    .why-grid,
    .steps {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 32px;
    }
}
