* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #142126;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 107, 0.13), transparent 34rem),
        radial-gradient(circle at 90% 8%, rgba(232, 137, 0, 0.16), transparent 30rem),
        #f8f4eb;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-shell {
    overflow: hidden;
    padding-top: 78px;
}

.section-pad {
    padding: 76px 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(248, 244, 235, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 52, 59, 0.12);
    box-shadow: 0 10px 30px rgba(18, 52, 59, 0.08);
}

.nav-wrap {
    max-width: 1180px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--primary), #071820);
    box-shadow: 0 14px 28px rgba(18, 52, 59, 0.22);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    content: "";
    position: absolute;
}

.brand-mark::before {
    left: 12px;
    top: 12px;
    width: 26px;
    height: 13px;
    background: #d07810;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
}

.brand-mark::after {
    left: 12px;
    bottom: 11px;
    width: 26px;
    height: 18px;
    border-radius: 3px;
    background: var(--secondary);
}

.brand-mark span {
    left: 18px;
    top: 30px;
    width: 14px;
    height: 3px;
    border-radius: 20px;
    background: #fff;
}

.brand-text {
    display: grid;
}

.brand-text strong {
    font-size: 16px;
    letter-spacing: -0.02em;
}

.brand-text small {
    font-size: 12px;
    color: #607176;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: #33464c;
}

.main-nav a {
    position: relative;
}

.main-nav a:not(.nav-phone)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--secondary);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-phone {
    padding: 12px 16px;
    border-radius: 999px;
    background: #071522;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(18, 52, 59, 0.18);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: #071522;
    border-radius: 14px;
    cursor: pointer;
    padding: 12px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    max-width: 1220px;
    margin: 0 auto;
    padding-top: 88px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.96fr;
    align-items: center;
    gap: 54px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #09272f;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 52, 59, 0.13);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 800;
}

.eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(22, 163, 107, 0.16);
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.stock-copy h2,
.contact-copy h2 {
    margin: 20px 0 16px;
    color: #102930;
    letter-spacing: -0.055em;
    line-height: 0.97;
}

.hero h1 {
    font-size: clamp(42px, 6.7vw, 78px);
}

.hero-lead {
    max-width: 660px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #50646a;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 21px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #071522;
    color: #fff;
    box-shadow: 0 18px 36px rgba(18, 52, 59, 0.24);
}

.btn-secondary,
.btn-whatsapp {
    background: var(--secondary);
    color: #211400;
    box-shadow: 0 18px 34px rgba(232, 137, 0, 0.25);
}

.hero-stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 52, 59, 0.1);
}

.hero-stats strong {
    display: block;
    font-size: 28px;
    color: #0f3037;
}

.hero-stats span {
    display: block;
    margin-top: 4px;
    color: #63777d;
    font-size: 13px;
}

.hero-image-wrap {
    position: relative;
    min-height: 600px;
    border-radius: 42px;
    overflow: hidden;
    border: 1px solid rgba(18, 52, 59, 0.12);
    box-shadow: 0 32px 80px rgba(18, 52, 59, 0.16);
    background: #fff;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 25, 30, 0.08), rgba(8, 25, 30, 0.5)),
        radial-gradient(circle at 20% 20%, rgba(232, 137, 0, 0.2), transparent 20rem);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.hero-image-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.hero-image-card strong {
    display: block;
    color: #102930;
    font-size: 20px;
}

.hero-image-card span {
    display: block;
    margin-top: 7px;
    color: #52666c;
    line-height: 1.5;
}

.stock-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #fff;
    color: #102930;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.stock-badge span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.supplies-section,
.process-section,
.testimonials-section,
.faq-section {
    max-width: 1220px;
    margin: 0 auto;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2,
.feature-copy h2,
.stock-copy h2,
.contact-copy h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.section-heading p,
.feature-copy p,
.stock-copy p,
.contact-copy p {
    margin: 0;
    color: #586d73;
    font-size: 17px;
    line-height: 1.75;
}

.supplies-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.supply-card {
    position: relative;
    min-height: 290px;
    padding: 26px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(18, 52, 59, 0.1);
    box-shadow: 0 18px 48px rgba(18, 52, 59, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.supply-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -34px;
    bottom: -34px;
    border-radius: 34px;
    background: rgba(232, 137, 0, 0.13);
    transform: rotate(16deg);
}

.supply-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(18, 52, 59, 0.13);
}

.supply-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #071522;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.supply-card h3 {
    margin: 24px 0 12px;
    font-size: 22px;
    color: #122a30;
}

.supply-card p {
    margin: 0;
    line-height: 1.65;
    color: #62757b;
}

.supply-card span {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
    font-weight: 900;
    color: #9a5b00;
    font-size: 13px;
}

.image-feature {
    background:
        linear-gradient(135deg, rgba(18, 52, 59, 0.96), rgba(18, 52, 59, 0.9)),
        radial-gradient(circle at top right, rgba(22, 163, 107, 0.2), transparent 20rem);
    color: #fff;
}

.feature-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.feature-photo {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.feature-photo img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.feature-copy .section-kicker {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.feature-copy h2 {
    color: #fff;
}

.feature-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.benefit-list {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.benefit-list div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-list strong {
    display: block;
    color: #fff;
}

.benefit-list span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.stock-section {
    max-width: 1220px;
    margin: 0 auto;
}

.stock-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 28px;
    align-items: stretch;
}

.stock-copy,
.stock-board {
    border-radius: 36px;
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(18, 52, 59, 0.1);
    box-shadow: 0 20px 56px rgba(18, 52, 59, 0.09);
}

.stock-board {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.96));
}

.stock-copy .btn {
    margin-top: 28px;
}

.stock-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(18, 52, 59, 0.1);
}

.stock-header span {
    color: #607277;
}

.stock-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.stock-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border-radius: 18px;
    background: #f6f1e7;
}

.stock-list strong {
    color: #08784f;
    white-space: nowrap;
}

.text-link {
    display: inline-flex;
    font-weight: 900;
    color: #102930;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-step {
    padding: 26px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(18, 52, 59, 0.1);
    box-shadow: 0 18px 46px rgba(18, 52, 59, 0.07);
}

.process-step span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #f4e8d7;
    color: #281800;
    font-weight: 900;
    font-size: 20px;
}

.process-step h3 {
    margin: 24px 0 10px;
    color: #122a30;
}

.process-step p {
    margin: 0;
    line-height: 1.65;
    color: #62757b;
}

.dispatch-section {
    background: linear-gradient(180deg, transparent, rgba(18, 52, 59, 0.05));
}

.dispatch-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.dispatch-card {
    position: relative;
    min-height: 420px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(18, 52, 59, 0.14);
}

.dispatch-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 34, 0.05), rgba(7, 21, 34, 0.74));
}

.dispatch-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.dispatch-card div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}

.dispatch-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
}

.dispatch-card strong {
    display: block;
    max-width: 440px;
    font-size: 28px;
    line-height: 1.1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(18, 52, 59, 0.1);
    box-shadow: 0 18px 46px rgba(18, 52, 59, 0.08);
}

.stars {
    margin-bottom: 16px;
    color: #b96800;
    font-size: 17px;
    letter-spacing: 0.04em;
}

.testimonial-card p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: #465c62;
}

.testimonial-card strong {
    display: block;
    color: #102930;
}

.testimonial-card span {
    display: block;
    margin-top: 4px;
    color: #728389;
    font-size: 13px;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(18, 52, 59, 0.1);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(18, 52, 59, 0.06);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
    color: #13282e;
    font-weight: 900;
}

.faq-item button span {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4ecdd;
    color: #102930;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    color: #62757b;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 160px;
}

.faq-item.active button span {
    transform: rotate(45deg);
    background: var(--secondary);
    color: #281800;
}

.contact-section {
    max-width: 1220px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-copy,
.quote-form {
    border-radius: 38px;
    background: #fff;
    border: 1px solid rgba(18, 52, 59, 0.1);
    box-shadow: 0 24px 70px rgba(18, 52, 59, 0.12);
}

.contact-copy {
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin: 28px 0;
    display: grid;
    gap: 12px;
}

.contact-details a,
.contact-details span {
    display: block;
    padding: 15px 16px;
    border-radius: 18px;
    background: #f7f2e8;
    color: #102930;
    font-weight: 800;
}

.contact-copy img {
    margin-top: auto;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 26px;
}

.quote-form {
    padding: 32px;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-row label {
    color: #102930;
    font-weight: 900;
    font-size: 14px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    border: 1px solid rgba(18, 52, 59, 0.16);
    border-radius: 16px;
    background: #fbfaf6;
    padding: 15px 16px;
    color: #102930;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(232, 137, 0, 0.12);
}

.quote-form .btn {
    width: 100%;
    margin-top: 6px;
}

.form-note {
    margin: 14px 0 0;
    color: #6d7d82;
    font-size: 13px;
    line-height: 1.5;
}

.form-success {
    display: none;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(22, 163, 107, 0.12);
    color: #075b3c;
    font-weight: 900;
}

.form-success.show {
    display: block;
}

.site-footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px 44px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #53666c;
}

.site-footer div {
    display: grid;
    gap: 5px;
}

.site-footer strong {
    color: #122a30;
}

.site-footer a {
    font-weight: 900;
    color: #102930;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--secondary);
    color: #211400;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(232, 137, 0, 0.34);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 16px auto 16px;
        display: grid;
        gap: 4px;
        padding: 18px;
        border-radius: 26px;
        background: #fff;
        box-shadow: 0 24px 70px rgba(18, 52, 59, 0.18);
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
    }

    .nav-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 14px;
        border-radius: 16px;
    }

    .main-nav a:hover {
        background: #f6f1e6;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-phone {
        text-align: center;
    }

    .hero-grid,
    .feature-grid,
    .stock-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap,
    .hero-image-wrap img {
        min-height: 480px;
    }

    .supplies-grid,
    .process-grid,
    .dispatch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .feature-photo img {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 56px 16px;
    }

    .nav-wrap {
        padding: 0 16px;
    }

    .brand-text strong {
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-stats,
    .supplies-grid,
    .process-grid,
    .dispatch-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap,
    .hero-image-wrap img {
        min-height: 410px;
        border-radius: 30px;
    }

    .hero-image-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
        border-radius: 22px;
    }

    .stock-badge {
        top: 18px;
        left: 18px;
        font-size: 13px;
    }

    .feature-photo img {
        min-height: 320px;
    }

    .stock-copy,
    .stock-board,
    .contact-copy,
    .quote-form {
        padding: 26px;
        border-radius: 28px;
    }

    .stock-list div {
        display: grid;
        gap: 6px;
    }

    .dispatch-card,
    .dispatch-card img {
        min-height: 340px;
    }

    .dispatch-card strong {
        font-size: 24px;
    }

    .site-footer {
        display: grid;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}