:root {
    --green-900: #173b27;
    --green-800: #1f5132;
    --green-700: #2e6b42;
    --green-600: #3d8152;
    --green-500: #58a56d;

    --sage-100: #edf5ef;
    --sage-50: #f6faf7;

    --text-dark: #1f2923;
    --text-main: #38443d;
    --text-muted: #66736b;

    --white: #ffffff;
    --border: #dce7df;

    --shadow-small: 0 8px 24px rgba(23, 59, 39, 0.08);
    --shadow-medium: 0 18px 50px rgba(23, 59, 39, 0.12);

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;

    --container: 1180px;
}


/* ==============================
   RESET
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--sage-50);
    color: var(--text-main);
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}


/* ==============================
   HEADER
============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(31, 81, 50, 0.1);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 160px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;
    text-decoration: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--green-600);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--green-800);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ==============================
   HOME HERO
============================== */

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px 20px;
    background:
        radial-gradient(
            circle at top left,
            rgba(88, 165, 109, 0.16),
            transparent 38%
        ),
        linear-gradient(135deg, #ffffff, #edf7ef);
}

.hero-logo {
    width: min(460px, 80vw);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 82px);
    letter-spacing: 0.12em;
    color: var(--green-800);
}

.hero h2 {
    margin-top: 20px;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 300;
    color: #4a6a57;
}

.hero p {
    margin-top: 30px;
    max-width: 760px;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.8;
    color: var(--text-muted);
}


/* ==============================
   BUTTONS
============================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 34px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.button-primary,
.hero .button {
    margin-top: 42px;
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(46, 107, 66, 0.22);
}

.button-primary:hover,
.hero .button:hover {
    background: var(--green-900);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(46, 107, 66, 0.28);
}


/* ==============================
   ABOUT HERO
============================== */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 120px;
    text-align: center;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(88, 165, 109, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(46, 107, 66, 0.12),
            transparent 26%
        ),
        linear-gradient(135deg, #ffffff 0%, #edf6ef 100%);
}

.about-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(46, 107, 66, 0.1);
    border-radius: 50%;
    transform: translateX(-50%);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    max-width: 900px;
    margin: 14px auto 0;
    color: var(--green-900);
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero-lead {
    max-width: 830px;
    margin: 34px auto 0;
    color: var(--text-muted);
    font-size: clamp(19px, 2.3vw, 24px);
    line-height: 1.75;
}


/* ==============================
   GENERAL SECTIONS
============================== */

.about-section {
    padding: 110px 0;
    background: var(--white);
}

.about-section-alt {
    background: var(--sage-100);
}

.about-section-dark {
    color: var(--white);
    background:
        radial-gradient(
            circle at top right,
            rgba(88, 165, 109, 0.22),
            transparent 35%
        ),
        var(--green-900);
}

.section-eyebrow {
    color: var(--green-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-section-dark .section-eyebrow,
.section-intro-light .section-eyebrow {
    color: #9ed4ac;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.45fr);
    gap: 90px;
    align-items: start;
}

.about-heading {
    position: sticky;
    top: 130px;
}

.about-heading h2,
.section-intro h2,
.about-cta h2 {
    margin-top: 14px;
    color: var(--green-900);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.about-content {
    max-width: 760px;
}

.about-content p {
    margin-bottom: 24px;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.85;
}

.about-content p:first-child {
    color: var(--text-dark);
    font-size: 21px;
}

.about-closing {
    margin-top: 38px;
    padding-left: 24px;
    border-left: 4px solid var(--green-500);
    color: var(--green-800) !important;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 58px;
}

.section-intro h2 {
    margin-bottom: 24px;
}

.section-intro > p:last-child {
    color: var(--text-muted);
    font-size: 19px;
    line-height: 1.8;
}

.section-intro-light h2,
.about-section-dark h2,
.about-section-dark h3 {
    color: var(--white);
}

.section-intro-light > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}


/* ==============================
   LISTS
============================== */

.about-list {
    display: grid;
    gap: 14px;
    margin: 32px 0 36px;
    list-style: none;
}

.about-list li {
    position: relative;
    padding: 16px 20px 16px 52px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: var(--sage-50);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
}

.about-list li::before {
    content: "?";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    font-size: 12px;
    transform: translateY(-50%);
}


/* ==============================
   FEATURE CARDS
============================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.feature-card {
    padding: 34px;
    border: 1px solid rgba(31, 81, 50, 0.1);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 107, 66, 0.22);
    box-shadow: var(--shadow-medium);
}

.feature-card h3 {
    margin-bottom: 14px;
    color: var(--green-900);
    font-size: 22px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}


/* ==============================
   PRINCIPLES
============================== */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.principle {
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.055);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.principle:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
}

.principle-number {
    display: inline-block;
    margin-bottom: 24px;
    color: #9ed4ac;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.principle h3 {
    margin-bottom: 14px;
    font-size: 21px;
    line-height: 1.35;
}

.principle p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
}


/* ==============================
   QUALITY POINTS
============================== */

.quality-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
}

.quality-point {
    padding: 26px;
    border-left: 4px solid var(--green-600);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.quality-point h3 {
    margin-bottom: 8px;
    color: var(--green-900);
    font-size: 19px;
}

.quality-point p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* ==============================
   VALUES
============================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    min-height: 230px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--green-900);
    font-size: 21px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 16px;
}


/* ==============================
   MISSION
============================== */

.mission-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            rgba(23, 59, 39, 0.98),
            rgba(46, 107, 66, 0.94)
        );
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.mission-card {
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.mission-card .section-eyebrow {
    color: #afe0bb;
}

.mission-card h2 {
    margin-top: 18px;
    color: var(--white);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.35;
    letter-spacing: -0.025em;
}


/* ==============================
   CTA
============================== */

.about-cta {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at right center,
            rgba(88, 165, 109, 0.18),
            transparent 32%
        ),
        #eaf4ec;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-cta h2 {
    max-width: 720px;
    margin-bottom: 18px;
}

.about-cta p {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 18px;
}

.about-cta .button {
    flex-shrink: 0;
    margin-top: 0;
}


/* ==============================
   FOOTER
============================== */

.site-footer,
footer {
    padding: 55px 0 30px;
    background: #112b1d;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px 60px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 130px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1000px) {
    .principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        gap: 55px;
    }
}


@media (max-width: 800px) {
    .header-inner {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        gap: 18px;
    }

    .brand-logo {
        width: 140px;
    }

    .main-navigation {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .main-navigation a {
        font-size: 14px;
    }

    .about-hero {
        padding: 90px 0 80px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-heading {
        position: static;
    }

    .feature-grid,
    .quality-points,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links {
        justify-content: center;
    }
}


@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero {
        padding: 70px 18px;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: 0.08em;
    }

    .hero h2 {
        font-size: 25px;
    }

    .hero p {
        font-size: 17px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .about-heading h2,
    .section-intro h2,
    .about-cta h2 {
        font-size: 34px;
    }

    .about-content p,
    .about-content p:first-child {
        font-size: 17px;
    }

    .feature-grid,
    .principles-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .value-card,
    .mission-card {
        padding: 26px;
    }

    .principle {
        padding: 26px 22px;
    }

    .main-navigation {
        gap: 12px 16px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}


/* ==============================
   HOME PAGE
============================== */

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(88, 165, 109, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(46, 107, 66, 0.14),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, #edf6ef 100%);
}

.home-hero::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(46, 107, 66, 0.1);
    border-radius: 50%;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 90px;
}

.home-hero-content h1 {
    max-width: 760px;
    margin-top: 18px;
    color: var(--green-900);
    font-size: clamp(54px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-hero-lead {
    max-width: 730px;
    margin-top: 34px;
    color: var(--text-muted);
    font-size: clamp(19px, 2.1vw, 24px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
}

.hero-actions .button {
    margin-top: 0;
}

.button-secondary {
    background: transparent;
    border-color: rgba(31, 81, 50, 0.28);
    color: var(--green-900);
}

.button-secondary:hover {
    background: var(--white);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

.button-light {
    margin-top: 36px;
    background: var(--white);
    color: var(--green-900);
}

.button-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.home-hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-visual-card {
    position: relative;
    z-index: 3;
    width: min(100%, 400px);
    padding: 52px 40px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 32px 80px rgba(23, 59, 39, 0.17);
    text-align: center;
    backdrop-filter: blur(18px);
}

.hero-visual-logo {
    width: min(280px, 100%);
    margin: 0 auto 30px;
}

.hero-visual-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.science-orbit {
    position: absolute;
    border: 1px solid rgba(46, 107, 66, 0.2);
    border-radius: 50%;
}

.science-orbit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 8px rgba(88, 165, 109, 0.13);
}

.science-orbit-large {
    width: 480px;
    height: 480px;
    transform: rotate(28deg);
}

.science-orbit-small {
    width: 340px;
    height: 340px;
    transform: rotate(-42deg);
}

.floating-label {
    position: absolute;
    z-index: 4;
    padding: 11px 17px;
    border: 1px solid rgba(31, 81, 50, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-small);
    color: var(--green-800);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.floating-label-one {
    top: 64px;
    right: 0;
}

.floating-label-two {
    bottom: 82px;
    left: -15px;
}

.floating-label-three {
    right: -25px;
    bottom: 28px;
}


/* HOME INTRO */

.home-intro {
    padding: 110px 0;
    background: var(--white);
}

.home-intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
    gap: 90px;
    align-items: start;
}

.home-intro h2,
.home-family-content h2,
.philosophy-content h2,
.home-research h2 {
    margin-top: 14px;
    color: var(--green-900);
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.home-intro-content p,
.home-family-content p {
    margin-bottom: 24px;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.85;
}

.home-intro-content p:first-child {
    color: var(--text-dark);
    font-size: 21px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--green-700);
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* SERVICES */

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-service-card {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(31, 81, 50, 0.1);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-service-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(88, 165, 109, 0.08);
}

.home-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(46, 107, 66, 0.22);
    box-shadow: var(--shadow-medium);
}

.service-number {
    color: var(--green-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 30px 0 24px;
    border-radius: 20px;
    background: var(--sage-100);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--green-700);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-service-card h3 {
    margin-bottom: 15px;
    color: var(--green-900);
    font-size: 22px;
    line-height: 1.35;
}

.home-service-card p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.card-link {
    position: relative;
    z-index: 2;
    margin-top: auto;
    color: var(--green-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}


/* PHILOSOPHY */

.home-philosophy {
    padding: 120px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(88, 165, 109, 0.22),
            transparent 30%
        ),
        linear-gradient(135deg, #173b27, #225b38);
}

.home-philosophy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    align-items: center;
    gap: 100px;
}

.philosophy-content .section-eyebrow {
    color: #a8dcb5;
}

.philosophy-content h2 {
    color: var(--white);
}

.philosophy-content > p {
    max-width: 720px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    line-height: 1.85;
}

.philosophy-points {
    display: grid;
    gap: 18px;
}

.philosophy-point {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.055);
}

.philosophy-point > span {
    color: #a8dcb5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.philosophy-point h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 19px;
}

.philosophy-point p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}


/* FAMILY SECTION */

.home-family-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 90px;
}

.home-family-panel {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 48px;
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(23, 59, 39, 0.98),
            rgba(46, 107, 66, 0.9)
        );
    box-shadow: var(--shadow-medium);
}

.family-decoration {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.family-decoration::before,
.family-decoration::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.family-decoration::before {
    inset: 42px;
}

.family-decoration::after {
    inset: 92px;
}

.family-panel-content {
    position: relative;
    z-index: 2;
}

.family-panel-content .section-eyebrow {
    color: #a8dcb5;
}

.family-large-text {
    margin-top: 20px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.035em;
}

.home-family-content h2 {
    margin-bottom: 30px;
}

.home-family-content p {
    color: var(--text-muted);
}


/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.process-step {
    position: relative;
    min-height: 270px;
    padding: 28px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.84);
}

.process-step:not(:last-child)::after {
    content: ">";
    position: absolute;
    top: 47px;
    right: -14px;
    z-index: 2;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    font-size: 13px;
}

.process-index {
    color: var(--green-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.process-step h3 {
    margin: 26px 0 12px;
    color: var(--green-900);
    font-size: 21px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* RESEARCH */

.home-research {
    padding: 120px 0;
    overflow: hidden;
    background: var(--white);
}

.home-research-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 90px;
}

.home-research-content > p:last-of-type {
    max-width: 720px;
    margin-top: 26px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.85;
}

.research-molecule {
    position: relative;
    width: 430px;
    height: 430px;
    margin: 0 auto;
}

.molecule-node {
    position: absolute;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 7px solid rgba(88, 165, 109, 0.25);
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: 0 15px 30px rgba(23, 59, 39, 0.18);
}

.molecule-node-center {
    top: 196px;
    left: 196px;
    width: 48px;
    height: 48px;
    background: var(--green-900);
}

.molecule-node-one {
    top: 45px;
    left: 196px;
}

.molecule-node-two {
    top: 125px;
    right: 35px;
}

.molecule-node-three {
    right: 65px;
    bottom: 60px;
}

.molecule-node-four {
    left: 75px;
    bottom: 45px;
}

.molecule-node-five {
    top: 105px;
    left: 30px;
}

.molecule-line {
    position: absolute;
    top: 217px;
    left: 217px;
    width: 150px;
    height: 3px;
    background: rgba(46, 107, 66, 0.28);
    transform-origin: left center;
}

.molecule-line-one {
    transform: rotate(-90deg);
}

.molecule-line-two {
    transform: rotate(-35deg);
}

.molecule-line-three {
    transform: rotate(43deg);
}

.molecule-line-four {
    transform: rotate(132deg);
}

.molecule-line-five {
    transform: rotate(205deg);
}


/* HOME RESPONSIVE */

@media (max-width: 1100px) {
    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .home-hero-grid,
    .home-intro-grid,
    .home-philosophy-grid,
    .home-family-grid,
    .home-research-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .home-hero {
        padding: 80px 0;
    }

    .home-hero-content {
        text-align: center;
    }

    .home-hero-content h1,
    .home-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .home-hero-visual {
        min-height: 480px;
    }

    .home-family-panel {
        min-height: 430px;
    }

    .research-molecule {
        width: 390px;
        height: 390px;
        transform: scale(0.9);
    }
}

@media (max-width: 650px) {
    .home-hero-content h1 {
        font-size: 48px;
    }

    .home-hero-visual {
        min-height: 390px;
    }

    .hero-visual-card {
        padding: 38px 25px;
    }

    .science-orbit-large {
        width: 350px;
        height: 350px;
    }

    .science-orbit-small {
        width: 250px;
        height: 250px;
    }

    .floating-label {
        display: none;
    }

    .home-services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: auto;
    }

    .home-family-panel {
        min-height: 360px;
        padding: 32px;
    }

    .research-molecule {
        width: 300px;
        height: 300px;
        margin-left: -15px;
        transform: scale(0.72);
        transform-origin: top left;
    }
}


/* ==============================
   CONTACT PAGE
============================== */

.contact-hero {
    padding: 125px 0 110px;
    text-align: center;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(88, 165, 109, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 10%,
            rgba(46, 107, 66, 0.12),
            transparent 28%
        ),
        linear-gradient(135deg, #ffffff, #edf6ef);
}

.contact-hero h1 {
    max-width: 850px;
    margin: 16px auto 0;
    color: var(--green-900);
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.contact-hero-lead {
    max-width: 820px;
    margin: 32px auto 0;
    color: var(--text-muted);
    font-size: clamp(19px, 2.2vw, 23px);
    line-height: 1.75;
}

.contact-main {
    padding: 110px 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 85px;
    align-items: start;
}

.contact-information h2,
.contact-form-panel h2,
.contact-closing h2 {
    margin-top: 14px;
    color: var(--green-900);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.contact-introduction {
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.85;
}

.contact-methods {
    display: grid;
    gap: 18px;
    margin-top: 44px;
}

.contact-method {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--sage-50);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    border-color: rgba(46, 107, 66, 0.25);
    box-shadow: var(--shadow-small);
}

.contact-method-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--sage-100);
}

.contact-method-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: var(--green-700);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method-label {
    margin-bottom: 3px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-method-value {
    display: inline-block;
    color: var(--green-900);
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

a.contact-method-value:hover {
    color: var(--green-600);
}

.contact-method-note {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.contact-availability {
    margin-top: 28px;
    padding: 28px;
    border-left: 4px solid var(--green-500);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    background: var(--sage-100);
}

.contact-availability h3 {
    margin-bottom: 8px;
    color: var(--green-900);
    font-size: 19px;
}

.contact-availability p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.contact-form-panel {
    padding: 44px;
    border: 1px solid rgba(31, 81, 50, 0.12);
    border-radius: 30px;
    background: var(--sage-50);
    box-shadow: var(--shadow-medium);
}

.contact-form-panel h2 {
    font-size: clamp(34px, 4vw, 48px);
}

.contact-form-intro {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.contact-form {
    margin-top: 34px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--green-900);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ccdacf;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-dark);
    font: inherit;
    font-size: 16px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    min-height: 52px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 180px;
    padding: 15px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(88, 165, 109, 0.14);
}

.contact-submit {
    margin-top: 4px;
    border: 0;
    cursor: pointer;
}

.form-notice {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.contact-topics {
    padding: 110px 0;
    background: var(--sage-100);
}

.contact-topics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.contact-topic-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(31, 81, 50, 0.1);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-topic-card > span {
    color: var(--green-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.contact-topic-card h3 {
    margin: 28px 0 14px;
    color: var(--green-900);
    font-size: 21px;
}

.contact-topic-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.contact-closing {
    padding: 100px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at right center,
            rgba(88, 165, 109, 0.24),
            transparent 32%
        ),
        linear-gradient(135deg, #173b27, #245f3b);
}

.contact-closing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contact-closing .section-eyebrow {
    color: #a8dcb5;
}

.contact-closing h2 {
    max-width: 760px;
    color: var(--white);
}

.contact-closing p {
    max-width: 760px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.8;
}

.contact-closing .button {
    flex-shrink: 0;
    margin-top: 0;
}

@media (max-width: 1000px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-topics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .contact-hero {
        padding: 90px 0 80px;
    }

    .contact-main,
    .contact-topics {
        padding: 80px 0;
    }

    .contact-form-panel {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-closing-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .contact-hero h1 {
        font-size: 43px;
    }

    .contact-method {
        grid-template-columns: 1fr;
    }

    .contact-method-value {
        font-size: 18px;
        overflow-wrap: anywhere;
    }

    .contact-topics-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   PRODUCTS PAGE
============================== */

.products-hero {
    position: relative;
    overflow: hidden;
    padding: 125px 0 110px;
    text-align: center;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(88, 165, 109, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(46, 107, 66, 0.13),
            transparent 28%
        ),
        linear-gradient(135deg, #ffffff, #edf6ef);
}

.products-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(46, 107, 66, 0.1);
    border-radius: 50%;
    transform: translateX(-50%);
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

.products-hero h1 {
    max-width: 900px;
    margin: 16px auto 0;
    color: var(--green-900);
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.products-hero-lead {
    max-width: 820px;
    margin: 32px auto 0;
    color: var(--text-muted);
    font-size: clamp(19px, 2.2vw, 23px);
    line-height: 1.75;
}


/* PRODUCT LIST */

.products-section {
    padding: 110px 0;
    background: var(--white);
}

.products-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.products-intro h2 {
    max-width: 700px;
    margin-top: 14px;
    color: var(--green-900);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.products-intro > p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(46, 107, 66, 0.25);
    box-shadow: var(--shadow-medium);
}

.product-card-featured {
    border-color: rgba(46, 107, 66, 0.22);
}

.product-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    padding: 9px 15px;
    border-radius: 999px;
    background: var(--green-900);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-badge-secondary {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-small);
}


/* DRAWN PRODUCT IMAGE */

.product-image-area {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 28px;
    overflow: hidden;
    padding: 55px 30px 38px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.24),
            transparent 40%
        ),
        linear-gradient(145deg, #173b27, #39784b);
}

.product-image-area-light {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(88, 165, 109, 0.2),
            transparent 35%
        ),
        linear-gradient(145deg, #f5faf6, #dcecdf);
}

.product-bottle {
    position: relative;
    z-index: 3;
    width: 128px;
    height: 250px;
    border-radius: 18px 18px 25px 25px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.92),
            rgba(224, 235, 226, 0.96) 48%,
            rgba(255, 255, 255, 0.92)
        );
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.22);
}

.product-bottle-up {
    transform: rotate(-4deg);
}

.product-bottle-down {
    transform: rotate(4deg) translateY(8px);
}

.bottle-cap {
    position: absolute;
    top: -30px;
    left: 24px;
    width: 80px;
    height: 38px;
    border-radius: 10px 10px 5px 5px;
    background: #17241b;
    box-shadow: inset 0 -7px 0 rgba(255, 255, 255, 0.08);
}

.bottle-label {
    position: absolute;
    top: 66px;
    left: 10px;
    right: 10px;
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 8px;
    border-radius: 10px;
    background: var(--white);
    color: var(--green-900);
    text-align: center;
    box-shadow: 0 5px 16px rgba(23, 59, 39, 0.12);
}

.product-bottle-up .bottle-label {
    border-top: 8px solid #78a944;
}

.product-bottle-down .bottle-label {
    border-top: 8px solid #d46e42;
}

.bottle-label strong {
    font-size: 19px;
    letter-spacing: 0.03em;
}

.bottle-label small {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-drop {
    position: absolute;
    border-radius: 50% 50% 50% 0;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(-45deg);
}

.product-drop-one {
    top: 75px;
    right: 70px;
    width: 55px;
    height: 55px;
}

.product-drop-two {
    bottom: 55px;
    left: 55px;
    width: 30px;
    height: 30px;
}

.product-ring {
    position: absolute;
    border: 1px solid rgba(46, 107, 66, 0.15);
    border-radius: 50%;
}

.product-ring-one {
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
}

.product-ring-two {
    bottom: -110px;
    left: -80px;
    width: 330px;
    height: 330px;
}


/* PRODUCT CONTENT */

.product-card-content {
    padding: 38px;
}

.product-category {
    margin-bottom: 10px;
    color: var(--green-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-card-content h2 {
    color: var(--green-900);
    font-size: clamp(26px, 3vw, 35px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.product-description {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.product-features {
    display: grid;
    gap: 12px;
    margin: 28px 0 34px;
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 31px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.55;
}

.product-features li::before {
    content: "?";
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--green-700);
    font-size: 11px;
    font-weight: 900;
}

.product-purchase {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.product-price-block {
    display: flex;
    flex-direction: column;
}

.product-price-label {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-price {
    margin-top: 3px;
    color: var(--green-900);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.product-shipping {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 13px;
}

.product-buy-button {
    margin-top: 0;
    white-space: nowrap;
}

.product-buy-button span {
    margin-left: 9px;
}


/* APPLICATIONS */

.product-use-section {
    padding: 110px 0;
    background: var(--sage-100);
}

.product-use-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-use-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(31, 81, 50, 0.1);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-small);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-use-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-use-number {
    color: var(--green-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.product-use-card h3 {
    margin: 30px 0 14px;
    color: var(--green-900);
    font-size: 21px;
}

.product-use-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* GUIDANCE */

.product-guidance {
    padding: 110px 0;
    background: var(--white);
}

.product-guidance-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: start;
}

.product-guidance h2 {
    margin-top: 14px;
    color: var(--green-900);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.product-guidance-content {
    display: grid;
    gap: 18px;
}

.guidance-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--sage-50);
}

.guidance-step > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.guidance-step h3 {
    margin-bottom: 5px;
    color: var(--green-900);
    font-size: 19px;
}

.guidance-step p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* SAFETY */

.product-safety {
    padding: 85px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at right center,
            rgba(88, 165, 109, 0.22),
            transparent 32%
        ),
        linear-gradient(135deg, #173b27, #245f3b);
}

.product-safety-inner {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    align-items: center;
}

.product-safety-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    color: var(--white);
    font-size: 34px;
    font-weight: 800;
}

.product-safety .section-eyebrow {
    color: #a8dcb5;
}

.product-safety h2 {
    margin-top: 9px;
    color: var(--white);
    font-size: clamp(29px, 4vw, 45px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.product-safety p {
    max-width: 930px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 16px;
    line-height: 1.8;
}


/* PRODUCTS RESPONSIVE */

@media (max-width: 1000px) {
    .products-intro,
    .product-guidance-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .products-hero {
        padding: 90px 0 80px;
    }

    .products-hero h1 {
        font-size: 43px;
    }

    .products-section,
    .product-use-section,
    .product-guidance {
        padding: 80px 0;
    }

    .product-image-area {
        min-height: 330px;
        gap: 18px;
    }

    .product-bottle {
        width: 105px;
        height: 215px;
    }

    .bottle-cap {
        left: 20px;
        width: 65px;
    }

    .bottle-label {
        top: 55px;
    }

    .product-card-content {
        padding: 28px;
    }

    .product-purchase {
        align-items: stretch;
        flex-direction: column;
    }

    .product-buy-button {
        width: 100%;
    }

    .product-use-grid {
        grid-template-columns: 1fr;
    }

    .product-safety-inner {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   REAL PRODUCT PHOTOS
============================== */

.product-photo-gallery {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
}

.product-main-photo {
    position: relative;
    z-index: 2;
    width: min(78%, 390px);
    max-height: 350px;
    object-fit: contain;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.24);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-secondary-photo {
    position: absolute;
    right: 26px;
    bottom: 24px;
    z-index: 3;
    width: 135px;
    height: 135px;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    transform: rotate(3deg);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover .product-main-photo {
    transform: scale(1.025);
    box-shadow: 0 32px 65px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-secondary-photo {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.33);
}

.product-image-area-light .product-main-photo,
.product-image-area-light .product-secondary-photo {
    box-shadow: 0 22px 48px rgba(23, 59, 39, 0.18);
}

@media (max-width: 650px) {
    .product-photo-gallery {
        min-height: 340px;
        padding: 24px;
    }

    .product-main-photo {
        width: min(88%, 330px);
        max-height: 285px;
    }

    .product-secondary-photo {
        right: 15px;
        bottom: 15px;
        width: 95px;
        height: 95px;
        border-width: 4px;
    }
}


/* =========================================================
   RESEARCH PAGE
========================================================= */

.research-page {
    background: #f7faf8;
    color: #183126;
}


/* HERO */

.research-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 105px;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 22%, rgba(73, 212, 139, 0.16), transparent 30%),
        linear-gradient(135deg, #071d14 0%, #0b2e20 48%, #103f2c 100%);
}

.research-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 58px 58px;
}

.research-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.research-hero-glow-one {
    top: -180px;
    right: -100px;
    width: 520px;
    height: 520px;
    background: rgba(87, 226, 151, 0.12);
}

.research-hero-glow-two {
    bottom: -240px;
    left: 15%;
    width: 500px;
    height: 500px;
    background: rgba(62, 177, 119, 0.1);
}

.research-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: 75px;
    align-items: center;
}

.research-hero-copy h1 {
    max-width: 720px;
    margin: 20px 0 24px;
    font-size: clamp(3.4rem, 6vw, 6.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.research-hero-lead {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.13rem;
    line-height: 1.8;
}

.research-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.research-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.research-hero-points span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.research-hero-points span::first-letter {
    color: #73e2a7;
}


/* CHROMATOGRAM */

.research-visual {
    position: relative;
    min-width: 0;
}

.chromatogram-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.chromatogram-header,
.chromatogram-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chromatogram-header {
    padding: 24px 26px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.chromatogram-header strong {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
}

.chromatogram-label {
    color: #6ee0a3;
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.chromatogram-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #65e39e;
    box-shadow: 0 0 16px rgba(101, 227, 158, 0.9);
}

.chromatogram-chart {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
    background-size: 52px 52px;
}

.chromatogram-svg {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 35px;
    width: calc(100% - 40px);
    height: 285px;
    overflow: visible;
}

.chromatogram-area {
    fill: url(#peakFill);
}

.chromatogram-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 7px rgba(87, 224, 151, 0.45));
}

.peak-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.67rem;
    font-weight: 700;
}

.peak-marker i {
    width: 7px;
    height: 7px;
    border: 2px solid #78e2aa;
    border-radius: 50%;
    background: #123e2c;
    box-shadow: 0 0 12px rgba(120, 226, 170, 0.8);
}

.peak-marker-one {
    left: 23%;
    top: 63px;
}

.peak-marker-two {
    left: 58%;
    top: 93px;
}

.peak-marker-three {
    right: 8%;
    top: 142px;
}

.chromatogram-footer {
    gap: 15px;
    padding: 15px 25px 18px;
    color: rgba(255, 255, 255, 0.42);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.68rem;
    letter-spacing: 0.03em;
}

.research-floating-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    background: rgba(16, 57, 40, 0.86);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
}

.research-floating-card-one {
    top: -30px;
    right: -28px;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
}

.floating-value {
    color: #7be7ac;
    font-size: 1.7rem;
    font-weight: 900;
}

.floating-label {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.7rem;
}

.research-floating-card-two {
    left: -35px;
    bottom: -28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
}

.floating-icon {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: #0c3b27;
    border-radius: 11px;
    background: #79e7ab;
    font-weight: 900;
}

.research-floating-card-two strong,
.research-floating-card-two span {
    display: block;
}

.research-floating-card-two strong {
    font-size: 0.78rem;
}

.research-floating-card-two div span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.67rem;
}


/* INTRO */

.research-intro {
    padding: 105px 0;
    background: #ffffff;
}

.research-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.research-intro h2 {
    max-width: 640px;
    margin: 16px 0 0;
    color: #103624;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.research-intro-copy {
    padding-top: 35px;
}

.research-intro-copy p {
    margin: 0 0 22px;
    color: #52665b;
    font-size: 1.05rem;
    line-height: 1.9;
}


/* CAPABILITIES */

.research-capabilities {
    padding: 110px 0;
    background:
        linear-gradient(180deg, #f4f8f5 0%, #edf4ef 100%);
}

.research-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 55px;
}

.research-capability-card {
    position: relative;
    overflow: hidden;
    min-height: 365px;
    padding: 34px 28px;
    border: 1px solid rgba(22, 74, 47, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 45px rgba(21, 62, 40, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.research-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(21, 62, 40, 0.12);
}

.capability-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: rgba(19, 79, 48, 0.13);
    font-size: 2.1rem;
    font-weight: 900;
}

.research-capability-card h3 {
    margin: 27px 0 14px;
    color: #123a27;
    font-size: 1.25rem;
}

.research-capability-card p {
    margin: 0;
    color: #5c6f64;
    font-size: 0.92rem;
    line-height: 1.75;
}

.capability-icon {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(145deg, #e2f7e9, #c9edd6);
}

.capability-icon-peaks {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding: 15px;
}

.capability-icon-peaks span {
    width: 7px;
    border-radius: 8px 8px 2px 2px;
    background: #258959;
}

.capability-icon-peaks span:nth-child(1) {
    height: 17px;
}

.capability-icon-peaks span:nth-child(2) {
    height: 38px;
}

.capability-icon-peaks span:nth-child(3) {
    height: 25px;
}

.capability-icon-peaks span:nth-child(4) {
    height: 46px;
}

.capability-icon-target::before,
.capability-icon-target::after,
.capability-icon-target span {
    content: "";
    position: absolute;
    border: 3px solid #2f9563;
    border-radius: 50%;
}

.capability-icon-target::before {
    inset: 14px;
}

.capability-icon-target::after {
    inset: 24px;
}

.capability-icon-target span {
    inset: 31px;
    border: 0;
    background: #2f9563;
}

.capability-icon-purity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.capability-icon-purity span {
    width: 11px;
    border-radius: 10px;
    background: #2c8f60;
}

.capability-icon-purity span:nth-child(1) {
    height: 24px;
}

.capability-icon-purity span:nth-child(2) {
    height: 42px;
}

.capability-icon-purity span:nth-child(3) {
    height: 31px;
}

.capability-icon-repeat::before,
.capability-icon-repeat::after {
    content: "";
    position: absolute;
    width: 31px;
    height: 31px;
    border: 4px solid #2c8f60;
    border-radius: 50%;
}

.capability-icon-repeat::before {
    top: 14px;
    left: 13px;
    border-right-color: transparent;
}

.capability-icon-repeat::after {
    right: 13px;
    bottom: 14px;
    border-left-color: transparent;
}


/* CHROMATOGRAPHY FEATURE */

.chromatography-feature {
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
}

.chromatography-feature-grid {
    display: grid;
    grid-template-columns: minmax(430px, 0.95fr) 1.05fr;
    gap: 100px;
    align-items: center;
}

.chromatography-illustration {
    position: relative;
    display: flex;
    min-height: 570px;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 38%, rgba(74, 196, 126, 0.16), transparent 35%),
        linear-gradient(145deg, #eaf5ed, #dcece1);
}

.column-system {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-reservoir {
    position: relative;
    width: 110px;
    height: 82px;
    overflow: hidden;
    border: 5px solid #194c34;
    border-radius: 18px 18px 10px 10px;
    background: rgba(255, 255, 255, 0.62);
}

.column-reservoir span {
    position: absolute;
    z-index: 2;
    top: 17px;
    width: 100%;
    color: #143b29;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
}

.reservoir-liquid {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    background: linear-gradient(180deg, #83e5ae, #43b977);
}

.column-connector {
    width: 14px;
    height: 32px;
    background: #194c34;
}

.column-body {
    position: relative;
    width: 126px;
    height: 300px;
    overflow: hidden;
    border: 6px solid #194c34;
    border-radius: 20px;
    background:
        radial-gradient(circle, rgba(44, 117, 78, 0.23) 2px, transparent 3px);
    background-color: rgba(255, 255, 255, 0.7);
    background-size: 13px 13px;
    box-shadow:
        inset 12px 0 20px rgba(255, 255, 255, 0.7),
        inset -12px 0 20px rgba(23, 73, 48, 0.07);
}

.compound-band {
    position: absolute;
    right: 8px;
    left: 8px;
    height: 18px;
    border-radius: 50%;
    filter: blur(1px);
}

.compound-band-one {
    top: 60px;
    background: rgba(66, 190, 122, 0.88);
    box-shadow: 0 0 20px rgba(66, 190, 122, 0.48);
}

.compound-band-two {
    top: 145px;
    background: rgba(41, 129, 83, 0.78);
    box-shadow: 0 0 18px rgba(41, 129, 83, 0.42);
}

.compound-band-three {
    top: 228px;
    background: rgba(150, 208, 173, 0.88);
    box-shadow: 0 0 18px rgba(150, 208, 173, 0.48);
}

.column-detector {
    display: flex;
    width: 155px;
    height: 68px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    border-radius: 16px;
    background: #143e2a;
    box-shadow: 0 18px 35px rgba(14, 57, 36, 0.22);
}

.detector-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #71e5a7;
    box-shadow: 0 0 14px #71e5a7;
}

.separation-label {
    position: absolute;
    padding: 10px 14px;
    color: #16452e;
    border: 1px solid rgba(25, 89, 55, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 25px rgba(28, 75, 49, 0.09);
    font-size: 0.74rem;
    font-weight: 800;
}

.separation-label::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 65px;
    height: 1px;
    background: rgba(31, 112, 70, 0.34);
}

.separation-label-one {
    top: 172px;
    right: 35px;
}

.separation-label-two {
    top: 268px;
    left: 28px;
}

.separation-label-three {
    right: 20px;
    bottom: 122px;
}

.separation-label-one::before,
.separation-label-three::before {
    right: 100%;
}

.separation-label-two::before {
    left: 100%;
}

.chromatography-copy h2 {
    margin: 17px 0 25px;
    color: #103823;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.chromatography-copy > p {
    margin: 0 0 19px;
    color: #566c60;
    font-size: 1rem;
    line-height: 1.85;
}

.research-check-list {
    display: grid;
    gap: 13px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.research-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #284b38;
    font-weight: 700;
}

.research-check-list li span {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #2e9862;
    font-size: 0.74rem;
}


/* WORKFLOW */

.research-workflow {
    padding: 115px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 15%, rgba(82, 215, 143, 0.12), transparent 28%),
        #0b2d1f;
}

.research-workflow .section-heading h2 {
    color: #ffffff;
}

.workflow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    margin-top: 65px;
}

.workflow-track::before {
    content: "";
    position: absolute;
    top: 27px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(110, 226, 165, 0.45),
        transparent
    );
}

.workflow-step {
    position: relative;
    z-index: 2;
}

.workflow-step-number {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    place-items: center;
    color: #0b3423;
    border: 6px solid #123f2c;
    border-radius: 50%;
    background: #74e3a7;
    box-shadow: 0 0 0 1px rgba(116, 227, 167, 0.23);
    font-weight: 900;
}

.workflow-step h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.12rem;
}

.workflow-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.59);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* PRINCIPLE */

.research-principle {
    padding: 110px 0;
    background: #f4f8f5;
}

.research-principle-inner {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 55px;
    align-items: center;
}

.research-principle-symbol {
    position: relative;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
}

.principle-ring {
    position: absolute;
    border: 1px solid rgba(40, 142, 89, 0.35);
    border-radius: 50%;
}

.principle-ring-one {
    inset: 10px;
}

.principle-ring-two {
    inset: 29px;
}

.principle-core {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #278d5b;
    box-shadow: 0 15px 35px rgba(39, 141, 91, 0.3);
    font-size: 1.55rem;
    font-weight: 900;
}

.research-principle h2 {
    margin: 13px 0 18px;
    color: #123824;
    font-size: clamp(2rem, 3.5vw, 3.7rem);
    letter-spacing: -0.04em;
}

.research-principle p {
    margin: 0;
    color: #586c61;
    line-height: 1.82;
}

.research-principle blockquote {
    margin: 0;
    padding: 28px 30px;
    color: #1e5c3d;
    border-left: 4px solid #39a86d;
    border-radius: 0 18px 18px 0;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(22, 68, 43, 0.08);
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.55;
}


/* CTA */

.research-cta {
    padding: 90px 0;
    color: #ffffff;
    background:
        linear-gradient(135deg, #267d52 0%, #359f68 55%, #47b879 100%);
}

.research-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.research-cta h2 {
    max-width: 820px;
    margin: 13px 0 15px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.research-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}


/* RESPONSIVE */

@media (max-width: 1120px) {
    .research-hero-grid {
        grid-template-columns: 1fr;
    }

    .research-visual {
        max-width: 820px;
    }

    .research-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .chromatography-feature-grid {
        grid-template-columns: 1fr;
    }

    .chromatography-illustration {
        max-width: 700px;
    }

    .research-principle-inner {
        grid-template-columns: 130px 1fr;
    }

    .research-principle blockquote {
        grid-column: 2;
    }
}

@media (max-width: 820px) {
    .research-hero {
        padding: 85px 0;
    }

    .research-hero-grid {
        gap: 65px;
    }

    .research-floating-card-one {
        right: 10px;
    }

    .research-floating-card-two {
        left: 10px;
    }

    .research-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .research-intro-copy {
        padding-top: 0;
    }

    .workflow-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-track::before {
        display: none;
    }

    .research-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 580px) {
    .research-hero-copy h1 {
        font-size: 3.25rem;
    }

    .research-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .research-hero-actions .button {
        justify-content: center;
        width: 100%;
    }

    .research-hero-points {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .chromatogram-chart {
        height: 290px;
    }

    .chromatogram-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .chromatogram-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .research-floating-card {
        display: none;
    }

    .research-capability-grid {
        grid-template-columns: 1fr;
    }

    .chromatography-illustration {
        min-height: 500px;
    }

    .separation-label {
        display: none;
    }

    .workflow-track {
        grid-template-columns: 1fr;
    }

    .research-principle-inner {
        grid-template-columns: 1fr;
    }

    .research-principle blockquote {
        grid-column: auto;
    }
}
