:root {
    --bg: #f6f4e9;
    --surface: #fffdf5;
    --surface-2: #eae7d3;
    --ink: #23281f;
    --muted: #656b5c;
    --accent: #9c6b09;
    --accent-dark: #7a5406;
    --mint: #bcdc94;
    --leaf: #2f6d3c;
    --white: #ffffff;
    --shadow: 0 30px 90px rgba(31, 45, 26, 0.16);
    --font-body: "Manrope", sans-serif;
    --font-display: "Instrument Serif", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(255,255,255,0.72), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(188, 220, 148,0.34), transparent 30%),
        var(--bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(35, 40, 31,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 40, 31,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, black, transparent 70%);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    width: min(100%, 1540px);
    margin: 0 auto;
    overflow: hidden;
}

.dose-header {
    position: sticky;
    top: 18px;
    z-index: 50;
    width: calc(100% - 48px);
    margin: 18px auto 0;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 14px 18px 14px 22px;
    border: 1px solid rgba(35, 40, 31, 0.09);
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.76);
    box-shadow: 0 18px 50px rgba(35, 40, 31, 0.09);
    backdrop-filter: blur(20px);
}

.dose-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.dose-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}

.dose-brand span {
    font-size: 18px;
}

.dose-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.dose-nav a {
    font-size: 14px;
    font-weight: 700;
    color: rgba(35, 40, 31, 0.72);
    transition: color 0.2s ease;
}

.dose-nav a:hover {
    color: var(--accent);
}

.header-action,
.primary-btn,
.dose-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    min-height: 50px;
    padding: 0 22px;
    box-shadow: 0 18px 36px rgba(156, 107, 9, 0.24);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-action svg,
.primary-btn svg,
.dose-form button svg {
    width: 17px;
    height: 17px;
}

.header-action:hover,
.primary-btn:hover,
.dose-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(156, 107, 9, 0.3);
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(35, 40, 31, 0.12);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
}

.mobile-menu-btn svg {
    width: 21px;
    height: 21px;
}

.dose-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(380px, 0.78fr);
    grid-template-areas:
        "copy visual"
        "proof visual";
    gap: 44px 58px;
    padding: 86px 44px 64px;
    min-height: calc(100vh - 112px);
}

.dose-hero::after {
    content: "";
    position: absolute;
    right: 4%;
    top: 10%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(188, 220, 148, 0.28);
    filter: blur(18px);
    z-index: -1;
}

.hero-copy {
    grid-area: copy;
    align-self: end;
    max-width: 840px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero-copy h1 {
    max-width: 780px;
    font-family: var(--font-display);
    font-size: clamp(68px, 9vw, 142px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0;
}

.hero-copy p,
.section-heading p {
    max-width: 650px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.secondary-link {
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.secondary-link:hover {
    color: var(--accent);
}

.hero-stage {
    grid-area: visual;
    position: relative;
    align-self: center;
    min-height: 690px;
}

.hero-orbit {
    position: absolute;
    inset: 52px 6% auto auto;
    width: min(85%, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(35, 40, 31, 0.13);
    animation: slowRotate 22s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(35, 40, 31, 0.1);
}

.hero-orbit::before {
    inset: 16%;
}

.hero-orbit::after {
    inset: 30%;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-person-card {
    position: absolute;
    right: 8%;
    top: 40px;
    width: min(76%, 470px);
    height: 540px;
    border-radius: 230px 230px 28px 28px;
    overflow: hidden;
    border: 10px solid rgba(255,255,255,0.62);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-person-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-card {
    position: absolute;
    z-index: 2;
    width: 230px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    animation: floatCard 5.2s ease-in-out infinite;
}

.care-card-top {
    top: 10px;
    left: 2%;
}

.care-card-bottom {
    right: 0;
    bottom: 150px;
    animation-delay: -1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.care-card strong,
.care-card small {
    display: block;
}

.care-card strong {
    margin-bottom: 6px;
    font-size: 16px;
}

.care-card small {
    color: var(--muted);
    line-height: 1.55;
}

.floating-product {
    position: absolute;
    left: 0;
    bottom: 110px;
    width: 260px;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    transform: rotate(-6deg);
}

.hero-social-proof {
    grid-area: proof;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: end;
    gap: 14px;
}

.hero-social-proof div {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(35, 40, 31,0.08);
}

.hero-social-proof strong {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}

.hero-social-proof span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.brand-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 44px 78px;
}

.brand-strip span {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(35, 40, 31,0.08);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

section {
    position: relative;
}

.care-services,
.expertise-section,
.global-section {
    padding: 92px 44px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.section-heading h2,
.integrity-copy h2,
.product-copy h2,
.cta-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}

.services-grid,
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.expertise-grid--5col {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.expertise-grid--5col .expertise-card {
    min-height: 220px;
    padding: 22px 20px;
}

.expertise-grid--5col .expertise-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card,
.expertise-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border-radius: 34px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(35, 40, 31,0.08);
    box-shadow: 0 20px 70px rgba(35, 40, 31,0.08);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.expertise-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 30px 90px rgba(35, 40, 31,0.14);
}

.service-card svg {
    width: 34px;
    height: 34px;
    color: var(--accent);
    margin-bottom: 26px;
}

.service-card h3,
.expertise-card h3 {
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
}

.service-card p,
.expertise-card p,
.integrity-copy p,
.product-copy p,
.cta-copy p {
    color: var(--muted);
    line-height: 1.72;
}

.expertise-card p + p {
    margin-top: 16px;
}

.service-card a {
    margin-top: auto;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.integrity-section,
.product-highlight,
.cta-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    margin: 28px 44px;
    padding: 54px;
    border-radius: 46px;
    background: var(--surface);
    box-shadow: 0 36px 120px rgba(35, 40, 31, 0.1);
}

.integrity-visual {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 38px;
    background: var(--mint);
}

.integrity-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: saturate(0.94);
}

.rx-ticket {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
}

.rx-ticket span,
.rx-ticket strong {
    display: block;
}

.rx-ticket span {
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.rx-ticket strong {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
}

.integrity-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.integrity-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 800;
}

.integrity-list svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
}

.expertise-section {
    background:
        linear-gradient(180deg, transparent, rgba(255,255,255,0.38));
}

.expertise-card {
    min-height: 260px;
}

.expertise-card span {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: auto;
}

.product-highlight {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    background: #2c3f38;
    color: var(--white);
    overflow: hidden;
}

.product-copy p {
    color: rgba(255,255,255,0.76);
    margin: 24px 0 30px;
}

.primary-btn.dark {
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}

.product-stack {
    position: relative;
    min-height: 460px;
}

.product-stack img {
    position: absolute;
    width: 52%;
    padding: 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 26px 80px rgba(0,0,0,0.24);
}

.product-stack img:nth-child(1) {
    left: 2%;
    top: 12%;
    transform: rotate(-8deg);
}

.product-stack img:nth-child(2) {
    right: 4%;
    top: 24%;
    transform: rotate(7deg);
}

.product-stack img:nth-child(3) {
    left: 28%;
    bottom: 8%;
    transform: rotate(-1deg);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(35, 40, 31,0.09);
    border-radius: 36px;
    overflow: hidden;
    background: rgba(255,255,255,0.48);
}

.market-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 140px;
    padding: 18px 8px;
    border-right: 1px solid rgba(35, 40, 31,0.09);
    border-bottom: 1px solid rgba(35, 40, 31,0.09);
    transition: background 0.3s ease;
}

.market-tile:hover {
    background: rgba(255,255,255,0.85);
}

.market-tile img {
    width: 56px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.4s ease, transform 0.35s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.market-tile:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
}

.market-tile span.country-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.market-tile:hover span.country-name {
    color: var(--ink);
}

.cta-section {
    align-items: start;
    background:
        radial-gradient(circle at top left, rgba(188, 220, 148,0.42), transparent 34%),
        var(--surface);
}

.dose-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dose-form input,
.dose-form select,
.dose-form textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(35, 40, 31,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    color: var(--ink);
    outline: none;
    padding: 0 18px;
}

.dose-form textarea {
    grid-column: 1 / -1;
    min-height: 138px;
    padding-top: 18px;
    resize: vertical;
}

.dose-form button {
    width: max-content;
    min-width: 170px;
}

.dose-form.submitted button {
    background: var(--leaf);
}

.dose-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 44px;
    padding: 30px;
    border-radius: 32px 32px 0 0;
    background: var(--ink);
    color: rgba(255,255,255,0.74);
}

.dose-footer div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dose-footer img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 12px;
}

.dose-footer strong,
.dose-footer a {
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Products Showcase Section ===== */
.products-showcase {
    padding: 92px 44px;
}

.products-showcase .section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.products-showcase .section-heading .eyebrow {
    justify-content: center;
}

.products-showcase .section-heading .eyebrow::before {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(35, 40, 31, 0.08);
    box-shadow: 0 20px 70px rgba(35, 40, 31, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 30px 90px rgba(35, 40, 31, 0.14);
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    padding: 12px;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.06);
}

.product-image-wrap.product-placeholder {
    background: linear-gradient(135deg, #fffdf5 0%, #eae7d3 100%);
}

.product-image-wrap.product-placeholder i {
    width: 52px;
    height: 52px;
    color: var(--accent);
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.product-card:hover .product-image-wrap.product-placeholder i {
    transform: scale(1.12);
    opacity: 1;
}

.product-info {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
}

.products-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

@media (max-width: 1180px) {
    .dose-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "proof";
        min-height: auto;
    }

    .hero-stage {
        min-height: 620px;
    }

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

    .expertise-grid--5col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .dose-header {
        grid-template-columns: auto 1fr auto;
    }

    .dose-nav,
    .header-action {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-grid;
        place-items: center;
    }

    .integrity-section,
    .product-highlight,
    .cta-section {
        grid-template-columns: 1fr;
        margin: 20px;
        padding: 30px;
        border-radius: 34px;
    }

    .dose-form {
        grid-template-columns: 1fr;
    }

    .dose-form button {
        width: 100%;
    }

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

    .dose-footer {
        flex-direction: column;
        align-items: flex-start;
        margin: 20px;
    }
}

@media (max-width: 680px) {
    .dose-header {
        width: calc(100% - 28px);
        min-height: 66px;
        top: 10px;
        margin-top: 10px;
        padding: 10px 12px;
    }

    .dose-brand span {
        display: none;
    }

    .dose-brand img {
        width: 44px;
        height: 44px;
    }

    .dose-hero,
    .care-services,
    .expertise-section,
    .global-section,
    .products-showcase {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dose-hero {
        padding-top: 54px;
        gap: 26px;
    }

    .hero-copy h1 {
        font-size: 58px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-stage {
        min-height: 620px;
    }

    .hero-person-card {
        top: 96px;
        right: 3%;
        width: 88%;
        height: 430px;
    }

    .care-card {
        width: 205px;
        border-radius: 22px;
    }

    .care-card-top {
        left: 0;
        top: 24px;
    }

    .care-card-bottom {
        right: 0;
        bottom: 22px;
    }

    .floating-product {
        width: 210px;
        bottom: 86px;
    }

    .hero-social-proof,
    .services-grid,
    .expertise-grid,
    .expertise-grid--5col,
    .dose-form {
        grid-template-columns: 1fr;
    }

    .dose-form button {
        width: 100%;
    }

    .brand-strip {
        padding: 0 20px 54px;
        justify-content: flex-start;
    }

    .section-heading h2,
    .integrity-copy h2,
    .product-copy h2,
    .cta-copy h2 {
        font-size: 44px;
    }

    .product-stack {
        min-height: 420px;
    }

    .product-stack img {
        width: 68%;
    }

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

    .dose-form textarea,
    .dose-form button {
        grid-column: auto;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 24px;
        right: 24px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
