/* =========================================================
   PLANT SCIENCE CONFERENCE
   GLOBAL DESIGN SYSTEM
   White-Dominant Botanical Theme
   ========================================================= */


/* ---------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------- */

:root {

    /* Backgrounds */
    --white: #ffffff;
    --botanical-white: #f7faf5;
    --soft-green-white: #f1f7ee;
    --sage-light: #e4f0df;

    /* Green Palette */
    --green-light: #b8d7b0;
    --green-soft: #8fbd88;
    --green: #5f9f58;
    --green-medium: #477f48;
    --green-dark: #2f6338;
    --forest: #1f4d2b;
    --deep-forest: #14351f;

    /* Text */
    --text-dark: #18351f;
    --text: #36533c;
    --text-muted: #708073;
    --text-light: #9aa99d;

    /* Borders */
    --border-light: #e2ebe0;
    --border-green: #cbdcc7;

    /* Shadows */
    --shadow-soft:
        0 10px 40px rgba(31, 77, 43, 0.06);

    --shadow-medium:
        0 20px 60px rgba(31, 77, 43, 0.10);

    /* Radius */
    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    /* Container */
    --container-width: 1240px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.35s ease;
    --transition-smooth: 0.6s cubic-bezier(.22, 1, .36, 1);
}


/* ---------------------------------------------------------
   2. RESET
   --------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        "Helvetica Neue",
        Arial,
        sans-serif;

    background: var(--botanical-white);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


/* ---------------------------------------------------------
   3. GLOBAL CONTAINER
   --------------------------------------------------------- */

.container {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin-inline: auto;
}


/* ---------------------------------------------------------
   4. TYPOGRAPHY
   --------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.025em;
}


h1 {
    font-size: clamp(3rem, 6vw, 6.5rem);
}


h2 {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
}


h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
}


p {
    color: var(--text);
}


/* ---------------------------------------------------------
   5. HEADER
   --------------------------------------------------------- */

.site-header {

    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.88);

    border-bottom:
        1px solid rgba(203, 220, 199, 0.65);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background var(--transition),
        box-shadow var(--transition);
}


.nav-wrapper {

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


.site-logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}


.site-logo img {
    width: auto;
    height: 48px;
    object-fit: contain;
}


/* ---------------------------------------------------------
   6. NAVIGATION
   --------------------------------------------------------- */

.main-nav {

    display: flex;
    align-items: center;

    gap: 30px;
}


.main-nav a {

    position: relative;

    color: var(--text-dark);

    font-size: 0.92rem;
    font-weight: 500;

    padding: 8px 0;

    transition:
        color var(--transition-fast);
}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--green);

    border-radius: 999px;

    transition:
        width var(--transition-smooth);
}


.main-nav a:hover {
    color: var(--green-dark);
}


.main-nav a:hover::after {
    width: 100%;
}


/* ---------------------------------------------------------
   7. BUTTONS
   --------------------------------------------------------- */

.nav-cta,
.primary-button,
.secondary-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding:
        12px 22px;

    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 600;

    transition:
        transform var(--transition-smooth),
        background var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}


.nav-cta,
.primary-button {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--forest)
        );

    box-shadow:
        0 10px 25px rgba(63, 127, 69, 0.18);
}


.nav-cta:hover,
.primary-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(63, 127, 69, 0.24);
}


.secondary-button {

    color: var(--forest);

    background: var(--white);

    border:
        1px solid var(--border-green);
}


.secondary-button:hover {

    color: var(--white);

    background: var(--green-dark);

    border-color: var(--green-dark);

    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   8. GENERIC SECTION
   --------------------------------------------------------- */

section {
    position: relative;
}


.section {
    padding: 120px 0;
}


.section-light {
    background: var(--white);
}


.section-botanical {
    background: var(--botanical-white);
}


.section-soft {
    background: var(--soft-green-white);
}


/* ---------------------------------------------------------
   9. SECTION HEADER
   --------------------------------------------------------- */

.section-header {

    max-width: 760px;

    margin-bottom: 60px;
}


.section-label {

    display: inline-flex;

    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: var(--green-dark);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.section-label::before {

    content: "";

    width: 28px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--green-light)
        );

    border-radius: 999px;
}


.section-header h2 {
    margin-bottom: 20px;
}


.section-header p {

    max-width: 650px;

    color: var(--text-muted);

    font-size: 1.05rem;
}


/* ---------------------------------------------------------
   10. GENERIC CARD
   --------------------------------------------------------- */

.card {

    background: var(--white);

    border:
        1px solid var(--border-light);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);

    transition:
        transform var(--transition-smooth),
        box-shadow var(--transition-smooth),
        border-color var(--transition);
}


.card:hover {

    transform: translateY(-7px);

    border-color: var(--border-green);

    box-shadow: var(--shadow-medium);
}


/* ---------------------------------------------------------
   11. GRID
   --------------------------------------------------------- */

.grid {
    display: grid;
    gap: 24px;
}


.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ---------------------------------------------------------
   12. FOOTER
   --------------------------------------------------------- */

.site-footer {

    padding-top: 90px;

    color: rgba(255, 255, 255, 0.8);

    background:
        linear-gradient(
            145deg,
            var(--forest),
            var(--deep-forest)
        );
}


.footer-content {

    display: grid;

    grid-template-columns:
        1.3fr
        1fr;

    gap: 80px;

    padding-bottom: 70px;
}


.footer-brand img {

    width: auto;
    height: 48px;

    margin-bottom: 20px;
}


.footer-brand p {

    max-width: 480px;

    color: rgba(255, 255, 255, 0.68);
}


.footer-links {

    display: flex;

    justify-content: flex-end;

    align-items: flex-start;

    gap: 28px;
}


.footer-links a {

    color:
        rgba(255, 255, 255, 0.75);

    transition:
        color var(--transition-fast);
}


.footer-links a:hover {
    color: var(--white);
}


.footer-bottom {

    padding:
        25px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}


.footer-bottom p {

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.85rem;
}


/* ---------------------------------------------------------
   13. SELECTION
   --------------------------------------------------------- */

::selection {

    color: var(--white);

    background: var(--green-dark);
}


/* ---------------------------------------------------------
   14. SCROLLBAR
   --------------------------------------------------------- */

::-webkit-scrollbar {
    width: 9px;
}


::-webkit-scrollbar-track {
    background: var(--botanical-white);
}


::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--green-light),
            var(--green-dark)
        );

    border-radius: 999px;
}


/* ---------------------------------------------------------
   15. ACCESSIBILITY
   --------------------------------------------------------- */

:focus-visible {

    outline:
        3px solid
        rgba(95, 159, 88, 0.35);

    outline-offset: 4px;
}
/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height:
        calc(100vh - 82px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbf6 52%,
            #eef6eb 100%
        );
}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

    overflow: hidden;
}


.hero-video-layer {

    position: absolute;

    inset: 0;

    overflow: hidden;

    opacity: 0.16;

    z-index: 1;
}


.hero-video {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
}


.hero-video-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.96) 0%,
            rgba(255,255,255,0.78) 45%,
            rgba(241,247,238,0.52) 100%
        );
}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}


.hero-glow-one {

    width: 520px;
    height: 520px;

    right: -150px;
    top: -100px;

    background:
        radial-gradient(
            circle,
            rgba(143, 189, 136, 0.20),
            rgba(143, 189, 136, 0)
        );
}


.hero-glow-two {

    width: 420px;
    height: 420px;

    left: -180px;
    bottom: -160px;

    background:
        radial-gradient(
            circle,
            rgba(95, 159, 88, 0.12),
            rgba(95, 159, 88, 0)
        );
}


.leaf-canvas {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: auto;

    z-index: 3;
}


.hero-container {

    position: relative;

    z-index: 5;

    min-height:
        calc(100vh - 82px);

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    align-items: center;

    gap: 60px;

    padding:
        90px 0 100px;
}


.hero-content {

    max-width: 760px;
}


.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--green-dark);

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 0.16em;

}


.hero-label::before {

    content: "";

    width: 34px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--green-light)
        );

    border-radius: 999px;
}


.hero-title {

    max-width: 850px;

    margin-bottom: 28px;

    font-size:
        clamp(
            3.2rem,
            6vw,
            6.4rem
        );

    font-weight: 650;

    letter-spacing: -0.055em;

    color: var(--deep-forest);
}


.hero-title span {

    display: block;

    color: var(--green);

    font-weight: 600;
}


.hero-description {

    max-width: 650px;

    margin-bottom: 38px;

    color: var(--text-muted);

    font-size:
        clamp(
            1rem,
            1.3vw,
            1.15rem
        );

    line-height: 1.8;
}


.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 55px;
}


.hero-meta {

    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}


.hero-meta-item {

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.hero-meta-item strong {

    color: var(--forest);

    font-size: 0.9rem;

    font-weight: 700;
}


.hero-meta-item span {

    color: var(--text-muted);

    font-size: 0.72rem;

    letter-spacing: 0.02em;
}


.hero-meta-divider {

    width: 1px;
    height: 32px;

    background:
        var(--border-green);
}


/* ---------------------------------------------------------
   HERO VISUAL
   --------------------------------------------------------- */

.hero-visual {

    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-visual-frame {

    position: relative;

    width: min(
        100%,
        560px
    );

    aspect-ratio: 1 / 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,0.98),
            rgba(238,246,235,0.88) 55%,
            rgba(207,227,200,0.55)
        );

    border:
        1px solid
        rgba(95,159,88,0.18);

    box-shadow:
        0 40px 100px
        rgba(31,77,43,0.10);

    animation:
        heroFloat 9s ease-in-out infinite;
}


.hero-visual-frame::before {

    content: "";

    position: absolute;

    inset: 25px;

    border-radius: 50%;

    border:
        1px solid
        rgba(95,159,88,0.18);
}


.hero-visual-frame::after {

    content: "";

    position: absolute;

    inset: 55px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(95,159,88,0.20);
}


.hero-visual-inner {

    position: absolute;

    inset: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(228,240,223,0.78)
        );

    box-shadow:
        inset 0 0 50px
        rgba(95,159,88,0.07);
}


.hero-botanical-ring {

    width: 160px;
    height: 160px;

    border-radius: 50%;

    border:
        1px solid
        rgba(63,127,69,0.24);

    position: relative;

    animation:
        rotateSoft 24s linear infinite;
}


.hero-botanical-ring::before,
.hero-botanical-ring::after {

    content: "";

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(95,159,88,0.25);
}


.hero-botanical-ring::before {

    inset: 22px;
}


.hero-botanical-ring::after {

    inset: 48px;
}


.hero-visual-label {

    position: absolute;

    text-align: center;

    color: var(--forest);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    line-height: 1.8;
}


.hero-visual-label span {

    display: block;

    width: 7px;
    height: 7px;

    margin:
        0 auto 12px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 7px
        rgba(95,159,88,0.10);
}


@keyframes heroFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {

        transform:
            translateY(-12px)
            rotate(1deg);
    }
}


/* ---------------------------------------------------------
   HERO SCROLL INDICATOR
   --------------------------------------------------------- */

.hero-scroll-indicator {

    position: absolute;

    left: 50%;
    bottom: 30px;

    z-index: 8;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: var(--text-muted);

    font-size: 0.68rem;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.scroll-line {

    width: 1px;
    height: 38px;

    background:
        linear-gradient(
            to bottom,
            var(--green),
            transparent
        );

    animation:
        scrollLine 2s ease-in-out infinite;
}


@keyframes scrollLine {

    0%,
    100% {
        opacity: 0.35;
        transform: scaleY(0.7);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}
/* ============================================================
   PLANT SCIENCE — PREMIUM CONTENT SECTIONS
   IMPORTANT:
   This block is added AFTER the existing CSS.
   Existing HERO/BANNER styles are intentionally untouched.
============================================================ */


/* ============================================================
   GLOBAL SECTION FOUNDATION
============================================================ */

.section-space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #3f8f52;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.5;
}

.section-heading h2,
.about-content h2,
.growth-content h2,
.innovation-content h2,
.final-cta-box h2 {
    margin: 0;
    color: #123d25;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.section-heading h2 span,
.about-content h2 span,
.growth-content h2 span,
.innovation-content h2 span,
.final-cta-box h2 span {
    color: #55a95d;
}

.section-heading p {
    max-width: 680px;
    margin: 24px auto 0;
    color: #627568;
    font-size: 17px;
    line-height: 1.8;
}


/* ============================================================
   ABOUT SECTION
============================================================ */

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(112, 184, 119, 0.10),
            transparent 30%
        ),
        #f7faf5;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(79, 151, 91, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 90px;
    align-items: center;
}

.about-content {
    max-width: 760px;
}

.about-content .large-text {
    margin: 0 0 26px;
    color: #214b30;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.55;
    font-weight: 500;
}

.about-content > p:not(.large-text) {
    margin: 0 0 28px;
    color: #637468;
    font-size: 16px;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #2f8145;
    font-weight: 700;
    text-decoration: none;
    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.text-link:hover {
    gap: 18px;
    color: #174f2b;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-stat {
    min-height: 180px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(65, 133, 78, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(37, 81, 45, 0.06);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.about-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(65, 133, 78, 0.32);
    box-shadow: 0 28px 65px rgba(37, 81, 45, 0.11);
}

.about-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #276c3a;
    font-size: 28px;
    line-height: 1;
}

.about-stat span {
    color: #718075;
    font-size: 13px;
    line-height: 1.5;
}


/* ============================================================
   RESEARCH AREAS
============================================================ */

.research-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.research-card {
    position: relative;
    min-height: 350px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(65, 133, 78, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(246, 251, 245, 0.95)
        );
    box-shadow: 0 15px 45px rgba(32, 76, 41, 0.045);
    transition:
        transform 0.45s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.research-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(82, 169, 91, 0.08);
    transition: transform 0.5s ease;
}

.research-card:hover {
    transform: translateY(-12px);
    border-color: rgba(65, 133, 78, 0.30);
    box-shadow: 0 30px 70px rgba(32, 76, 41, 0.11);
}

.research-card:hover::after {
    transform: scale(1.35);
}

.research-number {
    display: block;
    color: #58a964;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.research-icon {
    width: 54px;
    height: 54px;
    margin: 28px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #edf7ed;
    color: #3f9250;
    font-size: 23px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.research-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #183f27;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.research-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: #718074;
    font-size: 14px;
    line-height: 1.75;
}

.research-card a {
    position: relative;
    z-index: 2;
    color: #348047;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.research-card a:hover {
    color: #153f22;
}


/* ============================================================
   PLANT GROWTH SECTION
============================================================ */

.growth-section {
    position: relative;
    overflow: hidden;
    background: #f3f8f1;
}

.growth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 90px;
    align-items: center;
}

.growth-video {
    position: relative;
    height: 620px;
    overflow: hidden;
    border-radius: 32px;
    background: #dce9d9;
    box-shadow: 0 30px 80px rgba(27, 69, 37, 0.14);
}

.growth-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.growth-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(17, 62, 29, 0.02),
            rgba(17, 62, 29, 0.18)
        );
    pointer-events: none;
}

.growth-content {
    max-width: 620px;
}

.growth-content > p {
    margin: 25px 0 0;
    color: #66756a;
    font-size: 16px;
    line-height: 1.85;
}

.growth-content .primary-button {
    margin-top: 32px;
}


/* ============================================================
   CONFERENCE SECTION
============================================================ */

.conference-section {
    background: #ffffff;
}

.conference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.conference-card {
    overflow: hidden;
    border: 1px solid rgba(57, 117, 68, 0.13);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 50px rgba(32, 74, 40, 0.055);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.conference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(32, 74, 40, 0.12);
}

.conference-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #e7efe5;
}

.conference-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(10, 38, 19, 0.25)
    );
    pointer-events: none;
}

.conference-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.conference-card:hover .conference-image img {
    transform: scale(1.07);
}

.conference-content {
    padding: 30px;
}

.conference-content > span {
    color: #4d9c59;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.conference-content h3 {
    margin: 13px 0 13px;
    color: #183f27;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.conference-content p {
    margin: 0 0 24px;
    color: #718074;
    font-size: 14px;
    line-height: 1.75;
}

.conference-content a {
    color: #347f45;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.conference-content a:hover {
    color: #123d21;
}

.center-button {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}


/* ============================================================
   INNOVATION VIDEO SECTION
============================================================ */

.innovation-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #153d22;
}

.innovation-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.innovation-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.innovation-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 38, 18, 0.91) 0%,
            rgba(8, 38, 18, 0.72) 42%,
            rgba(8, 38, 18, 0.32) 100%
        );
}

.innovation-container {
    position: relative;
    z-index: 2;
}

.innovation-content {
    max-width: 760px;
}

.innovation-content .section-eyebrow {
    color: #b5dfb5;
}

.innovation-content h2 {
    color: #ffffff;
}

.innovation-content h2 span {
    color: #8bd58d;
}

.innovation-content p {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.innovation-content .primary-button {
    margin-top: 34px;
}


/* ============================================================
   FINAL CTA
============================================================ */

.final-cta {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(93, 171, 99, 0.12),
            transparent 30%
        ),
        #f7faf5;
}

.final-cta-box {
    position: relative;
    overflow: hidden;
    padding: 75px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border: 1px solid rgba(60, 130, 72, 0.15);
    border-radius: 36px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f1f8ef 100%
        );
    box-shadow: 0 30px 80px rgba(33, 77, 41, 0.08);
}

.final-cta-box::after {
    content: "";
    position: absolute;
    right: -140px;
    top: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(76, 155, 85, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-box > div:first-child {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.final-cta-box p {
    margin: 25px 0 0;
    color: #68766c;
    font-size: 16px;
    line-height: 1.75;
}

.final-cta-actions {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}


/* ============================================================
   BUTTON POLISH
   Only applies to shared buttons outside Hero-specific styling.
============================================================ */

.about-section .primary-button,
.growth-section .primary-button,
.innovation-section .primary-button,
.final-cta .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 16px 24px;
    border-radius: 999px;
    background: #3f914d;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 14px 30px rgba(54, 133, 67, 0.18);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.about-section .primary-button:hover,
.growth-section .primary-button:hover,
.innovation-section .primary-button:hover,
.final-cta .primary-button:hover {
    transform: translateY(-3px);
    background: #2e763d;
    box-shadow: 0 20px 40px rgba(54, 133, 67, 0.25);
}

.about-section .secondary-button,
.conference-section .secondary-button,
.final-cta .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 23px;
    border: 1px solid rgba(57, 119, 67, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #2f7040;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.about-section .secondary-button:hover,
.conference-section .secondary-button:hover,
.final-cta .secondary-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: rgba(57, 119, 67, 0.45);
}


/* ============================================================
   SCROLL REVEAL SUPPORT
============================================================ */

.about-section,
.research-section,
.growth-section,
.conference-section,
.innovation-section,
.final-cta {
    scroll-margin-top: 100px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .section-space {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .about-grid,
    .growth-grid {
        gap: 55px;
    }

    .research-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conference-card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .final-cta-box {
        padding: 60px;
    }

}


/* ============================================================
   MOBILE / SMALL TABLET
============================================================ */

@media (max-width: 800px) {

    .section-space {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .about-content h2,
    .growth-content h2,
    .innovation-content h2,
    .final-cta-box h2 {
        font-size: clamp(38px, 9vw, 56px);
    }

    .about-grid,
    .growth-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 45px;
    }

    .growth-grid {
        gap: 45px;
    }

    .about-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .growth-video {
        height: 480px;
    }

    .research-grid {
        grid-template-columns: 1fr;
    }

    .research-card {
        min-height: auto;
    }

    .conference-grid {
        grid-template-columns: 1fr;
    }

    .conference-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .innovation-section {
        min-height: 620px;
    }

    .innovation-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 38, 18, 0.88),
                rgba(8, 38, 18, 0.65)
            );
    }

    .final-cta-box {
        padding: 50px 35px;
        flex-direction: column;
        align-items: flex-start;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 520px) {

    .section-space {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-heading h2,
    .about-content h2,
    .growth-content h2,
    .innovation-content h2,
    .final-cta-box h2 {
        font-size: 38px;
        line-height: 1.02;
    }

    .section-eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .about-content .large-text {
        font-size: 20px;
    }

    .about-stat-grid {
        grid-template-columns: 1fr;
    }

    .about-stat {
        min-height: 145px;
    }

    .growth-video {
        height: 380px;
        border-radius: 24px;
    }

    .research-card,
    .conference-card {
        border-radius: 23px;
    }

    .research-card {
        padding: 28px;
    }

    .conference-image {
        height: 220px;
    }

    .conference-content {
        padding: 25px;
    }

    .innovation-section {
        min-height: 570px;
    }

    .innovation-content p {
        font-size: 15px;
    }

    .final-cta-box {
        padding: 40px 25px;
        border-radius: 28px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-actions a {
        width: 100%;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .research-card,
    .about-stat,
    .conference-card,
    .conference-image img,
    .text-link,
    .about-section .primary-button,
    .growth-section .primary-button,
    .innovation-section .primary-button,
    .final-cta .primary-button {
        transition: none;
    }

}
/* =========================================================
   ABOUT PAGE — PREMIUM BOTANICAL DESIGN
   ========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(103, 174, 106, 0.13),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fbfdf9 0%,
            #f2f8ef 100%
        );
}

.about-hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.about-hero-glow-one {
    width: 420px;
    height: 420px;
    right: 7%;
    top: 12%;
    border: 1px solid rgba(65, 145, 78, 0.10);
    box-shadow:
        0 0 100px rgba(83, 163, 91, 0.08);
}

.about-hero-glow-two {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -50px;
    border: 1px solid rgba(65, 145, 78, 0.10);
}

.about-hero-orbit {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -180px;
    top: -100px;
    border: 1px solid rgba(61, 137, 74, 0.07);
    border-radius: 50%;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 70px;
    align-items: center;
}

.about-hero-content {
    max-width: 780px;
}

.about-hero-content h1 {
    margin: 0;
    color: #123d25;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.about-hero-content h1 span {
    display: inline-block;
    color: #55a95d;
}

.about-hero-content p {
    max-width: 650px;
    margin: 30px 0 0;
    color: #637468;
    font-size: 18px;
    line-height: 1.8;
}

.about-hero-actions {
    margin-top: 34px;
}

.about-hero-actions .primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 25px;
    border-radius: 999px;
    background: #3f914d;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 16px 35px rgba(54, 133, 67, 0.18);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.about-hero-actions .primary-button:hover {
    transform: translateY(-4px);
    background: #2f783e;
}


/* =========================================================
   ABOUT HERO VISUAL
========================================================= */

.about-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.about-orbit-card {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-orbit-center {
    position: relative;
    z-index: 3;
    width: 175px;
    height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #edf7eb
        );
    border: 1px solid rgba(62, 139, 74, 0.18);
    box-shadow:
        0 25px 70px rgba(44, 101, 53, 0.12),
        inset 0 0 40px rgba(93, 166, 98, 0.06);
}

.about-orbit-center span {
    color: #6a8370;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.about-orbit-center strong {
    margin-top: 7px;
    color: #235d32;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(66, 145, 77, 0.15);
    border-radius: 50%;
}

.orbit-one {
    inset: 8%;
    transform: rotate(18deg) scaleY(0.72);
}

.orbit-two {
    inset: 18%;
    transform: rotate(-38deg) scaleY(0.72);
}

.orbit-three {
    inset: 28%;
    transform: rotate(62deg) scaleY(0.75);
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #59a761;
    box-shadow: 0 0 0 7px rgba(89, 167, 97, 0.08);
}

.dot-one {
    top: 12%;
    right: 28%;
}

.dot-two {
    bottom: 20%;
    left: 14%;
}

.dot-three {
    top: 55%;
    right: 7%;
}


/* =========================================================
   MISSION
========================================================= */

.about-mission {
    background: #ffffff;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 100px;
    align-items: start;
}

.about-split-heading h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.about-split-heading h2 span {
    color: #55a95d;
}

.about-split-content {
    max-width: 760px;
}

.about-split-content .large-text {
    margin: 0 0 28px;
    color: #234d30;
    font-size: clamp(21px, 2.1vw, 29px);
    line-height: 1.55;
}

.about-split-content > p:not(.large-text) {
    margin: 0 0 23px;
    color: #68766c;
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   SCIENTIFIC FOCUS
========================================================= */

.about-focus {
    background:
        linear-gradient(
            180deg,
            #f5faf3 0%,
            #fbfdf9 100%
        );
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.focus-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(64, 136, 75, 0.13);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 15px 45px rgba(32, 76, 41, 0.045);
    transition:
        transform 0.45s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.focus-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(82, 169, 91, 0.08);
    transition: transform 0.5s ease;
}

.focus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(64, 136, 75, 0.28);
    box-shadow: 0 28px 65px rgba(32, 76, 41, 0.10);
}

.focus-card:hover::after {
    transform: scale(1.4);
}

.focus-number {
    color: #5ca764;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.focus-icon {
    width: 52px;
    height: 52px;
    margin: 27px 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #edf7ed;
    color: #3e9150;
    font-size: 22px;
}

.focus-card h3 {
    margin: 0 0 13px;
    color: #183f27;
    font-size: 22px;
    line-height: 1.15;
}

.focus-card p {
    margin: 0;
    color: #718074;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 90px;
    align-items: center;
}

.about-story-video {
    position: relative;
    height: 650px;
    overflow: hidden;
    border-radius: 34px;
    background: #dfe9dc;
    box-shadow: 0 30px 80px rgba(29, 70, 38, 0.13);
}

.about-story-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-story-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 53, 24, 0.02),
            rgba(11, 53, 24, 0.32)
        );
}

.about-story-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.about-story-label span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #9ed99c;
}

.about-story-content {
    max-width: 650px;
}

.about-story-content h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.99;
    letter-spacing: -0.045em;
}

.about-story-content h2 span {
    color: #55a95d;
}

.about-story-content > p {
    margin: 25px 0 0;
    color: #68766c;
    font-size: 16px;
    line-height: 1.85;
}

.story-points {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.story-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    align-items: start;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(67, 135, 77, 0.12);
}

.story-point > span {
    color: #55a95d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.story-point strong {
    color: #214d2e;
    font-size: 16px;
}

.story-point p {
    margin: 5px 0 0;
    color: #778279;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   GLOBAL COMMUNITY
========================================================= */

.community-section {
    background: #f6faf4;
}

.community-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.community-heading h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.community-heading h2 span {
    color: #55a95d;
}

.community-heading p {
    max-width: 650px;
    margin: 25px 0 0;
    color: #68766c;
    font-size: 16px;
    line-height: 1.8;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.community-card {
    min-height: 190px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(64, 136, 75, 0.12);
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 13px 40px rgba(32, 76, 41, 0.045);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(32, 76, 41, 0.10);
}

.community-card strong {
    color: #245c33;
    font-size: 22px;
}

.community-card span {
    margin-top: 8px;
    color: #778279;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   ABOUT INNOVATION
========================================================= */

.about-innovation {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #123a20;
}

.about-innovation-video {
    position: absolute;
    inset: 0;
}

.about-innovation-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-innovation-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 38, 17, 0.92) 0%,
            rgba(7, 38, 17, 0.72) 48%,
            rgba(7, 38, 17, 0.28) 100%
        );
}

.about-innovation-container {
    position: relative;
    z-index: 2;
}

.about-innovation-content {
    max-width: 780px;
}

.about-innovation-content .section-eyebrow {
    color: #b6dfb7;
}

.about-innovation-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(45px, 5.5vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.about-innovation-content h2 span {
    color: #8bd58d;
}

.about-innovation-content p {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.about-innovation-content .primary-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
    padding: 16px 25px;
    border-radius: 999px;
    background: #ffffff;
    color: #2e753d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.about-innovation-content .primary-button:hover {
    transform: translateY(-4px);
    background: #eaf5e8;
}


/* =========================================================
   WHY PARTICIPATE
========================================================= */

.why-section {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 70px;
    border-top: 1px solid rgba(64, 136, 75, 0.12);
}

.why-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(64, 136, 75, 0.12);
}

.why-item > span {
    color: #59a761;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.why-item h3 {
    margin: 0 0 10px;
    color: #194228;
    font-size: 23px;
}

.why-item p {
    margin: 0;
    color: #718074;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(93, 171, 99, 0.12),
            transparent 30%
        ),
        #f6faf4;
}

.about-final-box {
    position: relative;
    overflow: hidden;
    padding: 75px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border: 1px solid rgba(60, 130, 72, 0.14);
    border-radius: 36px;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f0f8ee
        );
    box-shadow: 0 30px 80px rgba(33, 77, 41, 0.08);
}

.about-final-box::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -190px;
    border: 1px solid rgba(76, 155, 85, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.about-final-box > div:first-child {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-final-box h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.about-final-box h2 span {
    color: #55a95d;
}

.about-final-box p {
    margin: 24px 0 0;
    color: #6d796f;
    font-size: 16px;
    line-height: 1.75;
}

.about-final-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.about-final-actions .primary-button,
.about-final-actions .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 23px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.about-final-actions .primary-button {
    background: #3f914d;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(54, 133, 67, 0.18);
}

.about-final-actions .primary-button:hover {
    transform: translateY(-3px);
    background: #2e773d;
}

.about-final-actions .secondary-button {
    border: 1px solid rgba(57, 119, 67, 0.22);
    background: rgba(255, 255, 255, 0.7);
    color: #2f7040;
}

.about-final-actions .secondary-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
}


/* =========================================================
   ABOUT 3D DEPTH
========================================================= */

.focus-card,
.community-card,
.about-stat {
    transform-style: preserve-3d;
    will-change: transform;
}

.about-orbit-card {
    transform-style: preserve-3d;
    animation: aboutFloating 7s ease-in-out infinite;
}

@keyframes aboutFloating {

    0%,
    100% {
        transform:
            translateY(0)
            rotateX(0deg)
            rotateY(0deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotateX(1deg)
            rotateY(-1deg);
    }

}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .about-hero-container {
        grid-template-columns: 1fr 0.75fr;
        gap: 40px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid {
        gap: 55px;
    }

    .about-final-box {
        padding: 60px;
    }

}


@media (max-width: 800px) {

    .about-hero {
        min-height: auto;
        padding:
            100px 0 80px;
    }

    .about-hero-container {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        text-align: center;
        margin-inline: auto;
    }

    .about-hero-content p {
        margin-inline: auto;
    }

    .about-hero-actions {
        display: flex;
        justify-content: center;
    }

    .about-hero-visual {
        min-height: 380px;
    }

    .about-orbit-card {
        width: min(360px, 90vw);
    }

    .about-split,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-split-heading {
        max-width: 700px;
    }

    .about-story-video {
        height: 520px;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-final-box {
        padding: 50px 35px;
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 520px) {

    .about-hero {
        padding:
            80px 0 60px;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-hero-visual {
        min-height: 300px;
    }

    .about-orbit-card {
        width: 290px;
    }

    .about-orbit-center {
        width: 130px;
        height: 130px;
    }

    .about-orbit-center strong {
        font-size: 17px;
    }

    .focus-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .focus-card {
        min-height: 270px;
    }

    .about-story-video {
        height: 400px;
        border-radius: 25px;
    }

    .about-innovation {
        min-height: 570px;
    }

    .about-innovation-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 38, 17, 0.90),
                rgba(7, 38, 17, 0.65)
            );
    }

    .about-final-box {
        padding: 40px 25px;
        border-radius: 28px;
    }

    .about-final-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .about-final-actions a {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-orbit-card {
        animation: none;
    }

    .focus-card,
    .community-card,
    .about-stat,
    .about-hero-actions .primary-button,
    .about-final-actions .primary-button,
    .about-final-actions .secondary-button {
        transition: none;
    }

}
/* =========================================================
   RESEARCH AREAS / CATEGORIES PAGE
   PREMIUM BOTANICAL DESIGN
========================================================= */


/* =========================================================
   RESEARCH HERO
========================================================= */

.research-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(90, 169, 96, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fbfdf9 0%,
            #f1f8ef 100%
        );
}

.research-hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.research-hero-glow {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(63, 143, 77, 0.10);
}

.research-hero-glow-one {
    width: 500px;
    height: 500px;
    right: 5%;
    top: 8%;
    box-shadow:
        0 0 100px rgba(77, 157, 85, 0.07);
}

.research-hero-glow-two {
    width: 230px;
    height: 230px;
    left: -80px;
    bottom: -60px;
}

.research-hero-orbit {
    position: absolute;
    width: 850px;
    height: 850px;
    right: -300px;
    top: -160px;
    border:
        1px solid
        rgba(62, 137, 74, 0.06);
    border-radius: 50%;
}

.research-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.75fr);
    gap: 70px;
    align-items: center;
}

.research-hero-content {
    max-width: 780px;
}

.research-hero-content h1 {
    margin: 0;
    color: #123d25;
    font-size: clamp(54px, 6vw, 88px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.research-hero-content h1 span {
    display: inline-block;
    color: #55a95d;
}

.research-hero-content p {
    max-width: 650px;
    margin: 30px 0 0;
    color: #647468;
    font-size: 18px;
    line-height: 1.8;
}

.research-hero-meta {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.research-hero-meta span {
    padding: 9px 14px;
    border:
        1px solid
        rgba(63, 137, 74, 0.13);
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.72);
    color: #477653;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   RESEARCH HERO VISUAL
========================================================= */

.research-hero-visual {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-orbit-system {
    position: relative;
    width: min(450px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    animation:
        researchFloat 7s ease-in-out infinite;
}

.research-core {
    position: relative;
    z-index: 5;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border:
        1px solid
        rgba(63, 137, 74, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 25%,
            #ffffff,
            #edf7eb
        );
    box-shadow:
        0 30px 75px
        rgba(41, 98, 50, 0.13),
        inset 0 0 40px
        rgba(82, 162, 90, 0.05);
}

.research-core span {
    color: #738178;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.research-core strong {
    margin-top: 6px;
    color: #235c32;
    font-size: 26px;
    line-height: 1;
}

.research-core small {
    margin-top: 5px;
    color: #5c7a62;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.research-orbit {
    position: absolute;
    border:
        1px solid
        rgba(64, 143, 76, 0.15);
    border-radius: 50%;
}

.research-orbit-one {
    inset: 6%;
    transform:
        rotate(18deg)
        scaleY(0.67);
}

.research-orbit-two {
    inset: 17%;
    transform:
        rotate(-42deg)
        scaleY(0.70);
}

.research-orbit-three {
    inset: 29%;
    transform:
        rotate(65deg)
        scaleY(0.74);
}

.research-orbit-dot {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #58a761;
    box-shadow:
        0 0 0 7px
        rgba(88, 167, 97, 0.09);
}

.research-dot-one {
    top: 10%;
    right: 27%;
}

.research-dot-two {
    bottom: 18%;
    left: 12%;
}

.research-dot-three {
    top: 52%;
    right: 4%;
}

@keyframes researchFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotateX(0deg)
            rotateY(0deg);
    }

    50% {
        transform:
            translateY(-13px)
            rotateX(1deg)
            rotateY(-1deg);
    }

}


/* =========================================================
   INTRODUCTION
========================================================= */

.research-intro {
    background: #ffffff;
}

.research-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.85fr)
        minmax(0, 1.15fr);
    gap: 100px;
    align-items: start;
}

.research-intro-grid h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.research-intro-grid h2 span {
    color: #55a95d;
}

.research-intro-grid .large-text {
    margin: 0 0 25px;
    color: #254d31;
    font-size: clamp(21px, 2.1vw, 29px);
    line-height: 1.55;
}

.research-intro-grid p:not(.large-text) {
    margin: 0;
    color: #6c786f;
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   RESEARCH AREA CARDS
========================================================= */

.research-areas-section {
    background:
        linear-gradient(
            180deg,
            #f5faf3 0%,
            #fbfdf9 100%
        );
}

.research-area-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 18px;
}

.research-area-card {
    position: relative;
    min-height: 380px;
    padding: 30px;
    overflow: hidden;
    border:
        1px solid
        rgba(64, 137, 75, 0.13);
    border-radius: 28px;
    background:
        rgba(255, 255, 255, 0.88);
    box-shadow:
        0 15px 45px
        rgba(32, 76, 41, 0.045);
    transform-style: preserve-3d;
    transition:
        transform 0.45s
        cubic-bezier(.2,.7,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.research-area-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    bottom: -110px;
    border-radius: 50%;
    background:
        rgba(82, 169, 91, 0.075);
    transition:
        transform 0.55s ease;
}

.research-area-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(81, 164, 90, 0.35),
            transparent
        );
    opacity: 0;
    transition:
        opacity 0.4s ease;
}

.research-area-card:hover {
    transform:
        translateY(-11px)
        rotateX(1deg);
    border-color:
        rgba(64, 137, 75, 0.28);
    box-shadow:
        0 30px 70px
        rgba(32, 76, 41, 0.11);
}

.research-area-card:hover::before {
    transform:
        scale(1.45);
}

.research-area-card:hover::after {
    opacity: 1;
}

.research-area-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.research-area-top > span {
    color: #5ca764;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.research-area-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #edf7ed;
    color: #3e9150;
    font-size: 23px;
    box-shadow:
        inset 0 0 20px
        rgba(85, 165, 91, 0.04);
}

.research-area-card h3 {
    position: relative;
    z-index: 2;
    margin: 38px 0 14px;
    color: #183f27;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.research-area-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #718074;
    font-size: 13px;
    line-height: 1.78;
}

.research-area-tags {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.research-area-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f0f6ef;
    color: #5d7762;
    font-size: 9px;
    font-weight: 700;
}

.research-area-number {
    position: absolute;
    right: 22px;
    bottom: 13px;
    color: rgba(53, 119, 64, 0.055);
    font-size: 90px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;
}


/* =========================================================
   CONNECTION SECTION
========================================================= */

.research-connection {
    background: #ffffff;
}

.research-connection-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(420px, 1.05fr);
    gap: 80px;
    align-items: center;
}

.research-connection-content {
    max-width: 680px;
}

.research-connection-content h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.research-connection-content h2 span {
    color: #55a95d;
}

.research-connection-content p {
    margin: 25px 0 0;
    color: #68766c;
    font-size: 16px;
    line-height: 1.85;
}

.research-connection-content .primary-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
    padding: 16px 25px;
    border-radius: 999px;
    background: #3f914d;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    box-shadow:
        0 15px 35px
        rgba(54, 133, 67, 0.17);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.research-connection-content .primary-button:hover {
    transform: translateY(-4px);
    background: #2f783e;
}


/* =========================================================
   SCIENTIFIC NETWORK VISUAL
========================================================= */

.research-connection-visual {
    position: relative;
    width: min(580px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
}

.connection-node {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border:
        1px solid
        rgba(62, 137, 74, 0.15);
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.92);
    color: #356b41;
    font-size: 11px;
    font-weight: 700;
    box-shadow:
        0 15px 40px
        rgba(32, 76, 41, 0.08);
    backdrop-filter:
        blur(12px);
    -webkit-backdrop-filter:
        blur(12px);
}

.center-node {
    width: 145px;
    height: 145px;
    top: 50%;
    left: 50%;
    transform:
        translate(-50%, -50%);
    flex-direction: column;
    background:
        radial-gradient(
            circle at 35% 25%,
            #ffffff,
            #edf7eb
        );
    box-shadow:
        0 25px 65px
        rgba(39, 96, 48, 0.13);
}

.center-node strong {
    color: #2d713b;
    font-size: 20px;
    line-height: 1;
}

.center-node span {
    margin-top: 6px;
    color: #718075;
    font-size: 8px;
    letter-spacing: 0.18em;
}

.node-one {
    width: 92px;
    height: 92px;
    top: 7%;
    left: 42%;
}

.node-two {
    width: 92px;
    height: 92px;
    top: 30%;
    right: 4%;
}

.node-three {
    width: 105px;
    height: 105px;
    bottom: 7%;
    right: 14%;
}

.node-four {
    width: 92px;
    height: 92px;
    bottom: 12%;
    left: 8%;
}

.node-five {
    width: 100px;
    height: 100px;
    top: 34%;
    left: 2%;
}

.connection-line {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    height: 1px;
    width: 42%;
    transform-origin: left center;
    background:
        linear-gradient(
            90deg,
            rgba(78, 155, 86, 0.35),
            rgba(78, 155, 86, 0.05)
        );
}

.line-one {
    transform:
        rotate(-82deg);
}

.line-two {
    transform:
        rotate(-27deg);
}

.line-three {
    transform:
        rotate(34deg);
}

.line-four {
    transform:
        rotate(145deg);
}

.line-five {
    transform:
        rotate(208deg);
}


/* =========================================================
   RESEARCH VIDEO
========================================================= */

.research-video-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #123a20;
}

.research-video-background {
    position: absolute;
    inset: 0;
}

.research-video-background video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.research-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 38, 17, 0.92) 0%,
            rgba(7, 38, 17, 0.72) 48%,
            rgba(7, 38, 17, 0.28) 100%
        );
}

.research-video-container {
    position: relative;
    z-index: 2;
}

.research-video-content {
    max-width: 780px;
}

.research-video-content .section-eyebrow {
    color: #b6dfb7;
}

.research-video-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(45px, 5.5vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.research-video-content h2 span {
    color: #8bd58d;
}

.research-video-content p {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.research-video-content .primary-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
    padding: 16px 25px;
    border-radius: 999px;
    background: #ffffff;
    color: #2e753d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.research-video-content .primary-button:hover {
    transform: translateY(-4px);
    background: #eaf5e8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.research-final {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(93, 171, 99, 0.12),
            transparent 30%
        ),
        #f6faf4;
}

.research-final-box {
    position: relative;
    overflow: hidden;
    padding: 75px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border:
        1px solid
        rgba(60, 130, 72, 0.14);
    border-radius: 36px;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f0f8ee
        );
    box-shadow:
        0 30px 80px
        rgba(33, 77, 41, 0.08);
}

.research-final-box::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -190px;
    top: -190px;
    border:
        1px solid
        rgba(76, 155, 85, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.research-final-box > div:first-child {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.research-final-box h2 {
    margin: 0;
    color: #153f26;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.research-final-box h2 span {
    color: #55a95d;
}

.research-final-box p {
    margin: 24px 0 0;
    color: #6d796f;
    font-size: 16px;
    line-height: 1.75;
}

.research-final-actions {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.research-final-actions .primary-button,
.research-final-actions .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 23px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.research-final-actions .primary-button {
    background: #3f914d;
    color: #ffffff;
    box-shadow:
        0 14px 30px
        rgba(54, 133, 67, 0.18);
}

.research-final-actions .primary-button:hover {
    transform: translateY(-3px);
    background: #2e773d;
}

.research-final-actions .secondary-button {
    border:
        1px solid
        rgba(57, 119, 67, 0.22);
    background:
        rgba(255, 255, 255, 0.7);
    color: #2f7040;
}

.research-final-actions .secondary-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
}


/* =========================================================
   RESEARCH RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .research-hero-container {
        gap: 40px;
    }

    .research-area-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .research-intro-grid {
        gap: 60px;
    }

    .research-connection-grid {
        gap: 50px;
    }

    .research-final-box {
        padding: 60px;
    }

}


@media (max-width: 800px) {

    .research-hero {
        min-height: auto;
        padding:
            100px 0 80px;
    }

    .research-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .research-hero-content {
        margin-inline: auto;
    }

    .research-hero-content p {
        margin-inline: auto;
    }

    .research-hero-meta {
        justify-content: center;
    }

    .research-hero-visual {
        min-height: 380px;
    }

    .research-orbit-system {
        width: min(370px, 90vw);
    }

    .research-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .research-connection-grid {
        grid-template-columns: 1fr;
    }

    .research-connection-visual {
        width: min(520px, 100%);
    }

    .research-final-box {
        padding: 50px 35px;
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 520px) {

    .research-hero {
        padding:
            80px 0 60px;
    }

    .research-hero-content h1 {
        font-size: 46px;
    }

    .research-hero-content p {
        font-size: 15px;
    }

    .research-hero-visual {
        min-height: 300px;
    }

    .research-orbit-system {
        width: 290px;
    }

    .research-core {
        width: 130px;
        height: 130px;
    }

    .research-core strong {
        font-size: 21px;
    }

    .research-area-grid {
        grid-template-columns: 1fr;
    }

    .research-area-card {
        min-height: 340px;
    }

    .research-connection-visual {
        width: 310px;
    }

    .center-node {
        width: 110px;
        height: 110px;
    }

    .center-node strong {
        font-size: 16px;
    }

    .node-one,
    .node-two,
    .node-four {
        width: 65px;
        height: 65px;
        font-size: 9px;
    }

    .node-three,
    .node-five {
        width: 75px;
        height: 75px;
        font-size: 9px;
    }

    .research-video-section {
        min-height: 570px;
    }

    .research-video-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 38, 17, 0.90),
                rgba(7, 38, 17, 0.65)
            );
    }

    .research-final-box {
        padding: 40px 25px;
        border-radius: 28px;
    }

    .research-final-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .research-final-actions a {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .research-orbit-system {
        animation: none;
    }

    .research-area-card,
    .research-connection-content .primary-button,
    .research-final-actions .primary-button,
    .research-final-actions .secondary-button {
        transition: none;
    }

}
/* =========================================================
   REGISTRATION PAGE
   International Plant Science Conference 2027
   ========================================================= */


/* ---------------------------------------------------------
   REGISTRATION HERO
   --------------------------------------------------------- */

.registration-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 45%, rgba(115, 180, 120, 0.16), transparent 30%),
        radial-gradient(circle at 15% 80%, rgba(190, 220, 190, 0.18), transparent 35%),
        #f9fcf8;
}

.registration-hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.registration-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
}

.registration-glow-one {
    width: 520px;
    height: 520px;
    right: -140px;
    top: -120px;
    background: radial-gradient(
        circle,
        rgba(104, 170, 109, 0.16),
        transparent 68%
    );
}

.registration-glow-two {
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: -180px;
    background: radial-gradient(
        circle,
        rgba(75, 145, 83, 0.12),
        transparent 70%
    );
}

.registration-orbit {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -260px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(67, 128, 73, 0.08);
    border-radius: 50%;
}

.registration-orbit::before,
.registration-orbit::after {
    content: "";
    position: absolute;
    inset: 70px;
    border: 1px solid rgba(67, 128, 73, 0.07);
    border-radius: 50%;
}

.registration-orbit::after {
    inset: 150px;
}


.registration-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    align-items: center;
    gap: 70px;
    min-height: 680px;
}


.registration-hero-content {
    max-width: 720px;
}


.registration-hero-content h1 {
    margin: 22px 0 25px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 700;
    color: #123b22;
}

.registration-hero-content h1 span {
    display: block;
    color: #55a85b;
}


.registration-hero-content p {
    max-width: 650px;
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.75;
    color: #607468;
}


.registration-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* ---------------------------------------------------------
   REGISTRATION HERO VISUAL
   --------------------------------------------------------- */

.registration-hero-visual {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.registration-orbit-system {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: registrationFloat 7s ease-in-out infinite;
}


.registration-core {
    position: relative;
    z-index: 5;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #edf8ee 70%
        );
    border: 1px solid rgba(69, 133, 75, 0.18);
    box-shadow:
        0 25px 70px rgba(43, 92, 49, 0.12),
        inset 0 0 35px rgba(104, 169, 110, 0.08);
}


.registration-core span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #69906f;
}


.registration-core strong {
    margin-top: 7px;
    font-size: 28px;
    letter-spacing: -0.03em;
    color: #19552c;
}


.registration-core small {
    margin-top: 3px;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: #69906f;
}


.registration-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(71, 139, 78, 0.14);
}


.ring-one {
    width: 250px;
    height: 250px;
    animation: registrationRotate 18s linear infinite;
}


.ring-two {
    width: 350px;
    height: 350px;
    border-style: dashed;
    animation: registrationRotateReverse 25s linear infinite;
}


.ring-three {
    width: 440px;
    height: 440px;
    border-color: rgba(71, 139, 78, 0.08);
    animation: registrationRotate 35s linear infinite;
}


.registration-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5cab62;
    box-shadow:
        0 0 0 7px rgba(92, 171, 98, 0.10),
        0 0 25px rgba(92, 171, 98, 0.28);
    z-index: 6;
}


.dot-one {
    top: 70px;
    right: 78px;
}


.dot-two {
    bottom: 78px;
    left: 65px;
}


.dot-three {
    top: 205px;
    right: 5px;
}


@keyframes registrationFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes registrationRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes registrationRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* ---------------------------------------------------------
   PARTICIPATION TYPES
   --------------------------------------------------------- */

.registration-types {
    background: #ffffff;
}


.section-heading.centered {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}


.registration-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 55px;
}


.registration-type-card {
    position: relative;
    min-height: 330px;
    padding: 34px 30px;
    background: #fbfdfb;
    border: 1px solid rgba(28, 82, 38, 0.09);
    border-radius: 24px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.registration-type-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(91, 168, 97, 0.07);
    transition: transform 0.5s ease;
}


.registration-type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 151, 84, 0.24);
    box-shadow: 0 25px 60px rgba(35, 82, 42, 0.10);
}


.registration-type-card:hover::before {
    transform: scale(1.5);
}


.registration-type-card.featured {
    background:
        linear-gradient(
            145deg,
            #f3faf3,
            #ffffff
        );
    border-color: rgba(78, 153, 84, 0.20);
}


.registration-type-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #83a087;
}


.registration-type-icon {
    width: 54px;
    height: 54px;
    margin: 28px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eaf6eb;
    color: #398646;
    font-size: 21px;
}


.registration-type-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
    letter-spacing: -0.03em;
    color: #173d23;
}


.registration-type-card p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.7;
    color: #718177;
}


.registration-type-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #398646;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


.registration-type-card a span {
    transition: transform 0.25s ease;
}


.registration-type-card a:hover span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   FORM SECTION
   --------------------------------------------------------- */

.registration-form-section {
    background:
        linear-gradient(
            180deg,
            #f7fbf7 0%,
            #f2f8f3 100%
        );
}


.registration-form-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
    gap: 75px;
    align-items: start;
}


.registration-form-info {
    position: sticky;
    top: 120px;
}


.registration-form-info h2 {
    margin: 18px 0 22px;
    font-size: clamp(42px, 4vw, 62px);
    line-height: 1;
    letter-spacing: -0.05em;
    color: #173f24;
}


.registration-form-info h2 span {
    display: block;
    color: #55a85b;
}


.registration-form-info > p {
    max-width: 470px;
    font-size: 16px;
    line-height: 1.75;
    color: #69796e;
}


.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}


.registration-benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}


.benefit-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3f3e5;
    color: #398646;
    font-weight: 700;
}


.registration-benefit strong,
.registration-benefit span {
    display: block;
}


.registration-benefit strong {
    margin-bottom: 4px;
    color: #234a2d;
    font-size: 14px;
}


.registration-benefit span {
    color: #7a877e;
    font-size: 13px;
    line-height: 1.5;
}


.registration-contact-box {
    margin-top: 42px;
    padding: 24px;
    border-left: 3px solid #58a65e;
    background: rgba(255, 255, 255, 0.72);
}


.registration-contact-box span {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #70a076;
}


.registration-contact-box strong {
    display: block;
    margin-bottom: 12px;
    color: #294b31;
    font-size: 14px;
}


.registration-contact-box a {
    color: #3f8d49;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* ---------------------------------------------------------
   FORM CARD
   --------------------------------------------------------- */

.registration-form-card {
    padding: 48px;
    background: #ffffff;
    border: 1px solid rgba(33, 87, 42, 0.09);
    border-radius: 28px;
    box-shadow:
        0 30px 80px rgba(35, 79, 41, 0.08);
}


.registration-form-header {
    margin-bottom: 34px;
}


.registration-form-header > span {
    display: block;
    margin-bottom: 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    color: #65a16c;
}


.registration-form-header h3 {
    margin: 0 0 9px;
    font-size: 30px;
    letter-spacing: -0.035em;
    color: #183f25;
}


.registration-form-header p {
    margin: 0;
    color: #7b877e;
    font-size: 14px;
}


.conference-registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #35533c;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce7de;
    border-radius: 12px;
    background: #fbfdfb;
    color: #274630;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.form-group input,
.form-group select {
    height: 52px;
    padding: 0 16px;
}


.form-group textarea {
    min-height: 135px;
    padding: 15px 16px;
    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a4afa7;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #62a968;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(98, 169, 104, 0.09);
}


.form-consent {
    margin-top: 3px;
}


.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}


.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: #4d9855;
}


.form-consent span {
    color: #748178;
    font-size: 12px;
    line-height: 1.6;
}


.registration-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
    border: 0;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        #55a85b,
        #286c37
    );
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(54, 119, 61, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.registration-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(54, 119, 61, 0.24);
}


.registration-submit span {
    font-size: 18px;
}


.form-note {
    margin: 0;
    text-align: center;
    color: #9aa59d;
    font-size: 11px;
}


/* ---------------------------------------------------------
   WHY PARTICIPATE
   --------------------------------------------------------- */

.registration-why {
    background: #ffffff;
}


.registration-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}


.registration-why-card {
    padding: 30px;
    border-top: 1px solid #dce8de;
    transition: transform 0.3s ease;
}


.registration-why-card:hover {
    transform: translateY(-6px);
}


.registration-why-card > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #6da274;
}


.registration-why-card h3 {
    margin: 22px 0 10px;
    font-size: 20px;
    color: #1d4628;
}


.registration-why-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #78857c;
}


/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

.registration-final {
    padding-top: 0;
    background: #ffffff;
}


.registration-final-box {
    position: relative;
    overflow: hidden;
    padding: 65px 70px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(117, 181, 123, 0.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );
    border: 1px solid rgba(70, 137, 77, 0.12);
}


.registration-final-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    bottom: -170px;
    border: 1px solid rgba(70, 137, 77, 0.10);
    border-radius: 50%;
}


.registration-final-box > div {
    position: relative;
    z-index: 2;
}


.registration-final-box h2 {
    max-width: 700px;
    margin: 15px 0;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: #174326;
}


.registration-final-box h2 span {
    color: #55a85b;
}


.registration-final-box p {
    margin: 0;
    color: #6e7e73;
    font-size: 16px;
    line-height: 1.6;
}


.registration-final-box > .primary-button {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 1100px) {

    .registration-hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .registration-hero {
        min-height: auto;
    }

    .registration-hero-visual {
        min-height: 360px;
    }

    .registration-orbit-system {
        width: 340px;
        height: 340px;
    }

    .ring-one {
        width: 200px;
        height: 200px;
    }

    .ring-two {
        width: 275px;
        height: 275px;
    }

    .ring-three {
        width: 340px;
        height: 340px;
    }

    .registration-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-form-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .registration-form-info {
        position: static;
    }

    .registration-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .registration-hero-content h1 {
        font-size: 48px;
    }

    .registration-hero-content p {
        font-size: 15px;
    }

    .registration-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .registration-hero-actions a {
        justify-content: center;
    }

    .registration-hero-visual {
        min-height: 300px;
    }

    .registration-orbit-system {
        width: 290px;
        height: 290px;
    }

    .registration-core {
        width: 130px;
        height: 130px;
    }

    .registration-core strong {
        font-size: 22px;
    }

    .ring-one {
        width: 170px;
        height: 170px;
    }

    .ring-two {
        width: 235px;
        height: 235px;
    }

    .ring-three {
        width: 290px;
        height: 290px;
    }

    .registration-type-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .registration-form-info h2 {
        font-size: 42px;
    }

    .registration-why-grid {
        grid-template-columns: 1fr;
    }

    .registration-final-box {
        padding: 40px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .registration-final-box h2 {
        font-size: 38px;
    }

}
/* =========================================================
   CONTACT PAGE
   International Plant Science Conference 2026
   ========================================================= */


/* =========================================================
   CONTACT HERO
   ========================================================= */

.contact-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(92, 168, 98, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(180, 215, 185, 0.16),
            transparent 35%
        ),
        #f8fcf8;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-glow-one {
    width: 600px;
    height: 600px;
    right: -220px;
    top: -180px;
    background: radial-gradient(
        circle,
        rgba(91, 169, 97, 0.13),
        transparent 70%
    );
}

.contact-glow-two {
    width: 500px;
    height: 500px;
    left: -250px;
    bottom: -260px;
    background: radial-gradient(
        circle,
        rgba(71, 142, 79, 0.10),
        transparent 70%
    );
}

.contact-orbit {
    position: absolute;
    border: 1px solid rgba(67, 132, 74, 0.07);
    border-radius: 50%;
}

.contact-orbit-one {
    width: 720px;
    height: 720px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-orbit-two {
    width: 520px;
    height: 520px;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
}


.contact-hero-container {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    align-items: center;
    gap: 60px;
}


.contact-hero-content {
    max-width: 720px;
}


.contact-hero-content h1 {
    margin: 20px 0 24px;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #143c22;
}

.contact-hero-content h1 span {
    display: block;
    color: #55a85b;
}


.contact-hero-content p {
    max-width: 650px;
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.75;
    color: #66766b;
}


.contact-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   CONTACT HERO GLOBE
   ========================================================= */

.contact-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}


.contact-globe {
    position: relative;
    width: 430px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: contactFloat 7s ease-in-out infinite;
}


.contact-globe-core {
    position: relative;
    z-index: 5;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #edf8ef 72%
        );

    border: 1px solid rgba(65, 132, 72, 0.17);

    box-shadow:
        0 30px 70px rgba(42, 92, 49, 0.12),
        inset 0 0 35px rgba(88, 163, 95, 0.08);
}


.contact-globe-core span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #719478;
}


.contact-globe-core strong {
    margin-top: 7px;
    font-size: 27px;
    color: #20582d;
    letter-spacing: -0.03em;
}


.contact-globe-core small {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #719478;
}


.contact-globe-ring {
    position: absolute;
    border: 1px solid rgba(68, 137, 75, 0.13);
    border-radius: 50%;
}


.ring-a {
    width: 250px;
    height: 250px;
    animation: contactRotate 18s linear infinite;
}


.ring-b {
    width: 350px;
    height: 350px;
    border-style: dashed;
    animation: contactRotateReverse 26s linear infinite;
}


.ring-c {
    width: 430px;
    height: 430px;
    border-color: rgba(68, 137, 75, 0.07);
    animation: contactRotate 35s linear infinite;
}


.contact-dot {
    position: absolute;
    z-index: 8;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #59a960;

    box-shadow:
        0 0 0 7px rgba(89, 169, 96, 0.10),
        0 0 25px rgba(89, 169, 96, 0.25);
}


.contact-dot-a {
    top: 58px;
    right: 82px;
}


.contact-dot-b {
    left: 45px;
    bottom: 90px;
}


.contact-dot-c {
    right: 10px;
    top: 205px;
}


@keyframes contactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


@keyframes contactRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes contactRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   CONTACT OPTIONS
   ========================================================= */

.contact-options {
    background: #ffffff;
}


.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}


.contact-option-card {
    position: relative;
    padding: 32px 28px;
    min-height: 300px;
    overflow: hidden;

    background: #fbfdfb;
    border: 1px solid rgba(32, 83, 41, 0.09);
    border-radius: 23px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.contact-option-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(86, 164, 93, 0.07);
    transition: transform 0.5s ease;
}


.contact-option-card:hover {
    transform: translateY(-8px);
    border-color: rgba(73, 148, 81, 0.20);
    box-shadow:
        0 25px 60px rgba(37, 82, 43, 0.10);
}


.contact-option-card:hover::before {
    transform: scale(1.5);
}


.contact-option-icon {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 15px;
    background: #e9f6ea;

    color: #398747;
    font-size: 20px;
    font-weight: 700;
}


.contact-option-card > span {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 9px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    color: #72a077;
}


.contact-option-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.03em;

    color: #1d4728;
}


.contact-option-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 22px;

    font-size: 13px;
    line-height: 1.7;
    color: #748078;
}


.contact-option-card a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #3f8f49;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   CONTACT MAIN
   ========================================================= */

.contact-main {
    background:
        linear-gradient(
            180deg,
            #f7fbf7,
            #f2f8f3
        );
}


.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(550px, 1.25fr);
    gap: 75px;
    align-items: start;
}


.contact-information {
    padding-top: 10px;
}


.contact-information h2 {
    margin: 18px 0 22px;

    font-size: clamp(42px, 4vw, 62px);
    line-height: 1;
    letter-spacing: -0.05em;

    color: #173f24;
}


.contact-information h2 span {
    display: block;
    color: #55a85b;
}


.contact-information > p {
    max-width: 480px;

    margin: 0;

    font-size: 16px;
    line-height: 1.75;

    color: #6d7b71;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 42px;
}


.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


.contact-detail-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;
    background: #e5f3e7;

    color: #398646;
    font-size: 16px;
    font-weight: 700;
}


.contact-detail span {
    display: block;
    margin-bottom: 5px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;

    color: #78a07d;
}


.contact-detail a,
.contact-detail strong {
    display: block;

    color: #294d32;
    font-size: 14px;
    line-height: 1.5;
}


.contact-detail a {
    text-decoration: none;
}


.contact-detail a:hover {
    color: #4b9b55;
}


.contact-note {
    margin-top: 45px;
    padding: 24px;

    border-left: 3px solid #57a25e;

    background: rgba(255, 255, 255, 0.75);
}


.contact-note span {
    display: block;
    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;

    color: #6e9c75;
}


.contact-note strong {
    color: #294d32;
    font-size: 15px;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-card {
    padding: 48px;

    background: #ffffff;

    border: 1px solid rgba(32, 83, 41, 0.09);
    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(35, 79, 41, 0.08);
}


.contact-form-header {
    margin-bottom: 32px;
}


.contact-form-header > span {
    display: block;
    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;

    color: #68a06e;
}


.contact-form-header h3 {
    margin: 0 0 8px;

    font-size: 30px;
    letter-spacing: -0.035em;

    color: #183f25;
}


.contact-form-header p {
    margin: 0;

    font-size: 14px;
    color: #7a867e;
}


.conference-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   CONTACT FAQ
   ========================================================= */

.contact-faq {
    background: #ffffff;
}


.contact-faq-grid {
    max-width: 900px;
    margin: 48px auto 0;

    display: flex;
    flex-direction: column;
    gap: 12px;
}


.contact-faq-item {
    border: 1px solid #dfe9e1;
    border-radius: 15px;
    background: #fbfdfb;
    overflow: hidden;
}


.contact-faq-item summary {
    padding: 21px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    list-style: none;

    color: #234a2d;
    font-size: 15px;
    font-weight: 700;
}


.contact-faq-item summary::-webkit-details-marker {
    display: none;
}


.contact-faq-item summary span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f4e9;
    color: #398646;

    font-size: 17px;

    transition: transform 0.25s ease;
}


.contact-faq-item[open] summary span {
    transform: rotate(45deg);
}


.contact-faq-item p {
    margin: 0;
    padding: 0 24px 23px;

    color: #738078;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.contact-final {
    padding-top: 0;
    background: #ffffff;
}


.contact-final-box {
    position: relative;
    overflow: hidden;

    padding: 65px 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(112, 177, 119, 0.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border: 1px solid rgba(70, 137, 77, 0.12);
}


.contact-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -130px;
    bottom: -190px;

    border: 1px solid rgba(70, 137, 77, 0.10);

    border-radius: 50%;
}


.contact-final-box > div {
    position: relative;
    z-index: 2;
}


.contact-final-box h2 {
    max-width: 700px;

    margin: 15px 0;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.03;
    letter-spacing: -0.045em;

    color: #174326;
}


.contact-final-box h2 span {
    color: #55a85b;
}


.contact-final-box p {
    margin: 0;

    max-width: 650px;

    color: #6e7e73;
    font-size: 16px;
    line-height: 1.6;
}


.contact-final-actions {
    position: relative;
    z-index: 3;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1100px) {

    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .contact-hero {
        min-height: auto;
    }

    .contact-hero-visual {
        min-height: 350px;
    }

    .contact-globe {
        width: 340px;
        height: 340px;
    }

    .ring-a {
        width: 205px;
        height: 205px;
    }

    .ring-b {
        width: 275px;
        height: 275px;
    }

    .ring-c {
        width: 340px;
        height: 340px;
    }

    .contact-option-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


@media (max-width: 700px) {

    .contact-hero-content h1 {
        font-size: 48px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }

    .contact-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero-actions a {
        justify-content: center;
    }

    .contact-hero-visual {
        min-height: 290px;
    }

    .contact-globe {
        width: 285px;
        height: 285px;
    }

    .contact-globe-core {
        width: 125px;
        height: 125px;
    }

    .contact-globe-core strong {
        font-size: 21px;
    }

    .ring-a {
        width: 165px;
        height: 165px;
    }

    .ring-b {
        width: 230px;
        height: 230px;
    }

    .ring-c {
        width: 285px;
        height: 285px;
    }

    .contact-option-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .contact-information h2 {
        font-size: 42px;
    }

    .contact-final-box {
        padding: 40px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-final-box h2 {
        font-size: 38px;
    }

    .contact-final-actions {
        width: 100%;
    }

}
/* =========================================================
   BROCHURE PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   BROCHURE HERO
========================================================= */

.brochure-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(91, 169, 97, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(180, 215, 185, 0.14),
            transparent 34%
        ),
        #f9fcf8;
}

.brochure-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.brochure-glow {
    position: absolute;
    border-radius: 50%;
}

.brochure-glow-one {
    width: 600px;
    height: 600px;
    right: -230px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(91, 169, 97, 0.14),
            transparent 70%
        );
}

.brochure-glow-two {
    width: 500px;
    height: 500px;
    left: -250px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(71, 142, 79, 0.09),
            transparent 70%
        );
}

.brochure-orbit {
    position: absolute;
    border: 1px solid rgba(67, 132, 74, 0.07);
    border-radius: 50%;
}

.brochure-orbit-one {
    width: 700px;
    height: 700px;
    right: -260px;
    top: 50%;
    transform: translateY(-50%);
}

.brochure-orbit-two {
    width: 470px;
    height: 470px;
    right: -145px;
    top: 50%;
    transform: translateY(-50%);
}


.brochure-hero-container {
    position: relative;
    z-index: 2;

    min-height: 680px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}


.brochure-hero-content {
    max-width: 720px;
}


.brochure-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.97;

    letter-spacing: -0.055em;
}


.brochure-hero-content h1 span {
    display: block;
    color: #55a85b;
}


.brochure-hero-content p {
    max-width: 640px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;
    line-height: 1.75;
}


.brochure-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   BROCHURE COVER
========================================================= */

.brochure-hero-visual {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.brochure-cover {
    position: relative;

    width: 310px;
    height: 420px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 8px 20px 20px 8px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f0f8f0 52%,
            #dfeede 100%
        );

    border: 1px solid rgba(60, 125, 67, 0.16);

    box-shadow:
        -18px 25px 45px rgba(29, 72, 36, 0.10),
        0 35px 75px rgba(36, 82, 42, 0.13);

    transform:
        perspective(1000px)
        rotateY(-8deg)
        rotateX(2deg);

    animation:
        brochureCoverFloat 6s ease-in-out infinite;
}


.brochure-cover::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 7px;

    border-radius: 8px 0 0 8px;

    background:
        linear-gradient(
            180deg,
            #2f783c,
            #72b878
        );
}


.brochure-cover::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid
        rgba(61, 132, 69, 0.11);

    border-radius: 50%;
}


.brochure-cover-top {
    display: flex;
    justify-content: space-between;

    color: #5d8463;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
}


.brochure-cover-center {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.brochure-cover-center::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border:
        1px solid
        rgba(68, 140, 75, 0.13);

    border-radius: 50%;
}


.brochure-cover-center small {
    position: relative;
    z-index: 2;

    color: #6d8f72;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;
}


.brochure-cover-center strong {
    position: relative;
    z-index: 2;

    color: #235b2e;

    font-size: 38px;
    line-height: 0.88;
    letter-spacing: -0.06em;
}


.brochure-cover-bottom {
    display: flex;
    justify-content: space-between;

    color: #6c9071;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.08em;
}


@keyframes brochureCoverFloat {

    0%,
    100% {
        transform:
            perspective(1000px)
            rotateY(-8deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(-5deg)
            rotateX(2deg)
            translateY(-12px);
    }

}


/* =========================================================
   BROCHURE INTRO
========================================================= */

.brochure-intro {
    background: #ffffff;
}


.brochure-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}


.brochure-intro-grid h2 {
    margin: 15px 0 0;

    color: #173f24;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}


.brochure-intro-grid h2 span {
    display: block;
    color: #55a85b;
}


.brochure-intro-grid .large-text {
    margin: 0 0 25px;

    color: #284d31;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.55;
}


.brochure-intro-grid p:not(.large-text) {
    margin: 0;

    color: #718078;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.brochure-highlights {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}


.brochure-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}


.brochure-highlight-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.9);

    border:
        1px solid
        rgba(45, 100, 52, 0.10);

    border-radius: 24px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.brochure-highlight-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(84, 163, 91, 0.07);

    transition:
        transform 0.5s ease;
}


.brochure-highlight-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(70, 143, 77, 0.22);

    box-shadow:
        0 25px 60px
        rgba(36, 82, 42, 0.09);
}


.brochure-highlight-card:hover::before {
    transform: scale(1.5);
}


.brochure-highlight-card > span {
    position: relative;
    z-index: 2;

    color: #76a27b;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}


.brochure-highlight-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    margin: 28px 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e8f5e9;

    color: #398646;

    font-size: 20px;
    font-weight: 700;
}


.brochure-highlight-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #1b4527;

    font-size: 21px;
    line-height: 1.15;

    letter-spacing: -0.025em;
}


.brochure-highlight-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #748078;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   SCIENTIFIC FOCUS
========================================================= */

.brochure-focus {
    background: #ffffff;
}


.brochure-focus-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(450px, 1.2fr);

    gap: 90px;

    align-items: center;
}


.brochure-focus-content h2 {
    margin: 18px 0 23px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}


.brochure-focus-content h2 span {
    display: block;
    color: #55a85b;
}


.brochure-focus-content p {
    max-width: 520px;

    margin: 0;

    color: #707d74;

    font-size: 16px;
    line-height: 1.8;
}


.brochure-focus-content .primary-button {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 30px;
}


.brochure-focus-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.brochure-focus-item {
    min-height: 75px;

    padding: 18px 20px;

    display: flex;
    align-items: center;

    gap: 15px;

    border:
        1px solid
        rgba(49, 104, 55, 0.10);

    border-radius: 15px;

    background: #fafdf9;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.brochure-focus-item:hover {
    transform: translateX(5px);

    background: #f0f8f0;

    border-color:
        rgba(74, 146, 81, 0.18);
}


.brochure-focus-item span {
    flex: 0 0 27px;

    color: #72a078;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
}


.brochure-focus-item strong {
    color: #31573a;

    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   PARTICIPATION
========================================================= */

.brochure-participation {
    background:
        linear-gradient(
            180deg,
            #f5faf4,
            #fbfdfb
        );
}


.brochure-participation-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}


.brochure-participation-card {
    padding: 30px;

    background: #ffffff;

    border:
        1px solid
        rgba(38, 91, 45, 0.09);

    border-radius: 22px;

    box-shadow:
        0 12px 35px
        rgba(35, 78, 41, 0.035);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.brochure-participation-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px
        rgba(35, 78, 41, 0.09);
}


.brochure-participation-card strong {
    display: block;

    margin-bottom: 12px;

    color: #214b2c;

    font-size: 20px;
}


.brochure-participation-card p {
    margin: 0 0 20px;

    color: #768178;

    font-size: 13px;
    line-height: 1.7;
}


.brochure-participation-card a {
    color: #3e8d49;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   DOWNLOAD BROCHURE
========================================================= */

.brochure-download {
    background: #ffffff;
}


.brochure-download-box {
    position: relative;

    overflow: hidden;

    padding: 70px;

    display: grid;

    grid-template-columns:
        280px
        minmax(0, 1fr);

    align-items: center;

    gap: 70px;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(103, 174, 109, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #eef8ef,
            #fbfdfb
        );

    border:
        1px solid
        rgba(67, 135, 74, 0.12);
}


.brochure-download-box::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -190px;
    bottom: -250px;

    border:
        1px solid
        rgba(72, 143, 79, 0.09);

    border-radius: 50%;
}


.brochure-download-visual {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
}


.brochure-mini-cover {
    width: 190px;
    height: 255px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    border-radius: 5px 14px 14px 5px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e4f1e5
        );

    border:
        1px solid
        rgba(58, 126, 65, 0.16);

    box-shadow:
        -12px 15px 35px
        rgba(31, 75, 37, 0.10),
        0 20px 45px
        rgba(31, 75, 37, 0.08);

    transform:
        perspective(800px)
        rotateY(-8deg);
}


.brochure-mini-cover span {
    margin-bottom: 15px;

    color: #6c9271;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}


.brochure-mini-cover strong {
    color: #265d30;

    font-size: 29px;
    line-height: 0.9;

    letter-spacing: -0.06em;
}


.brochure-mini-cover small {
    margin-top: 12px;

    color: #719277;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.18em;
}


.brochure-download-content {
    position: relative;
    z-index: 2;
}


.brochure-download-content h2 {
    margin: 17px 0 20px;

    color: #173f24;

    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1;

    letter-spacing: -0.05em;
}


.brochure-download-content h2 span {
    display: block;
    color: #55a85b;
}


.brochure-download-content p {
    max-width: 650px;

    margin: 0;

    color: #6e7d73;

    font-size: 16px;
    line-height: 1.8;
}


.brochure-download-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.brochure-download-actions .primary-button,
.brochure-download-actions .secondary-button {
    display: inline-flex;

    align-items: center;
    gap: 10px;
}


.brochure-download-note {
    display: block;

    margin-top: 14px;

    color: #92a097;

    font-size: 10px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.brochure-final {
    padding-top: 0;

    background: #ffffff;
}


.brochure-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}


.brochure-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}


.brochure-final-box > div {
    position: relative;
    z-index: 2;
}


.brochure-final-box h2 {
    max-width: 720px;

    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}


.brochure-final-box h2 span {
    color: #55a85b;
}


.brochure-final-box p {
    max-width: 650px;

    margin: 0;

    color: #6e7e73;

    font-size: 16px;
    line-height: 1.65;
}


.brochure-final-actions {
    position: relative;
    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


.brochure-final-actions .primary-button,
.brochure-final-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .brochure-hero-container {
        grid-template-columns: 1fr;
        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .brochure-hero {
        min-height: auto;
    }

    .brochure-hero-visual {
        min-height: 450px;
    }

    .brochure-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brochure-participation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brochure-focus-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brochure-download-box {
        grid-template-columns: 220px 1fr;
        gap: 45px;
        padding: 55px;
    }

}


@media (max-width: 750px) {

    .brochure-hero-content h1 {
        font-size: 48px;
    }

    .brochure-hero-content p {
        font-size: 15px;
    }

    .brochure-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .brochure-hero-actions a {
        justify-content: center;
    }

    .brochure-hero-visual {
        min-height: 390px;
    }

    .brochure-cover {
        width: 260px;
        height: 355px;
    }

    .brochure-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brochure-highlight-grid {
        grid-template-columns: 1fr;
    }

    .brochure-focus-list {
        grid-template-columns: 1fr;
    }

    .brochure-participation-grid {
        grid-template-columns: 1fr;
    }

    .brochure-download-box {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 35px;
        text-align: center;
    }

    .brochure-download-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-download-actions {
        justify-content: center;
    }

    .brochure-final-box {
        padding: 40px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .brochure-cover {
        width: 235px;
        height: 325px;
    }

    .brochure-cover-center strong {
        font-size: 31px;
    }

    .brochure-download-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .brochure-download-actions a {
        justify-content: center;
    }

    .brochure-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .brochure-final-actions a {
        justify-content: center;
    }

}
/* =========================================================
   ABSTRACT SUBMISSION PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   ABSTRACT HERO
========================================================= */

.abstract-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(91, 169, 97, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}


.abstract-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}


.abstract-glow {
    position: absolute;
    border-radius: 50%;
}


.abstract-glow-one {
    width: 650px;
    height: 650px;
    right: -250px;
    top: -200px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}


.abstract-glow-two {
    width: 500px;
    height: 500px;
    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}


.abstract-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(65, 132, 73, 0.07);
}


.abstract-orbit-one {
    width: 730px;
    height: 730px;

    right: -270px;
    top: 50%;

    transform: translateY(-50%);
}


.abstract-orbit-two {
    width: 490px;
    height: 490px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);
}


.abstract-hero-container {
    position: relative;
    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}


.abstract-hero-content {
    max-width: 720px;
}


.abstract-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.97;

    letter-spacing: -0.055em;
}


.abstract-hero-content h1 span {
    display: block;
    color: #55a85b;
}


.abstract-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;
    line-height: 1.75;
}


.abstract-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


.abstract-hero-meta {
    margin-top: 42px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;
}


.abstract-hero-meta > div:not(.abstract-meta-divider) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.abstract-hero-meta strong {
    color: #285331;
    font-size: 13px;
}


.abstract-hero-meta span {
    color: #7b887f;
    font-size: 11px;
}


.abstract-meta-divider {
    width: 1px;
    height: 34px;
    background: #d5e3d7;
}


/* =========================================================
   ABSTRACT PAPER VISUAL
========================================================= */

.abstract-hero-visual {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.abstract-paper {
    position: relative;

    width: 330px;
    height: 440px;

    padding: 28px 30px;

    display: flex;
    flex-direction: column;

    border-radius: 7px 18px 18px 7px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1f8f1
        );

    border:
        1px solid
        rgba(59, 125, 66, 0.14);

    box-shadow:
        -20px 28px 55px rgba(31, 75, 37, 0.10),
        0 35px 80px rgba(31, 75, 37, 0.12);

    transform:
        perspective(1000px)
        rotateY(-9deg)
        rotateX(2deg);

    animation:
        abstractPaperFloat 6s ease-in-out infinite;
}


.abstract-paper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 7px;

    border-radius: 7px 0 0 7px;

    background:
        linear-gradient(
            180deg,
            #31793e,
            #71b877
        );
}


.abstract-paper::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid
        rgba(69, 141, 76, 0.10);

    border-radius: 50%;
}


.abstract-paper-header {
    display: flex;
    justify-content: space-between;

    color: #6c9071;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.abstract-paper-line {
    height: 5px;

    margin-top: 16px;

    border-radius: 10px;

    background: #dcebdd;
}


.abstract-paper-line.line-long {
    width: 82%;
}


.abstract-paper-line.line-medium {
    width: 62%;
}


.abstract-paper-line.line-short {
    width: 42%;
}


.abstract-paper-title {
    position: relative;

    margin-top: 50px;

    padding: 20px 0;

    text-align: center;
}


.abstract-paper-title::before {
    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border:
        1px solid
        rgba(69, 142, 76, 0.10);

    border-radius: 50%;
}


.abstract-paper-title span,
.abstract-paper-title strong {
    position: relative;
    z-index: 2;

    display: block;
}


.abstract-paper-title span {
    margin-bottom: 6px;

    color: #759378;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.20em;
}


.abstract-paper-title strong {
    color: #245b2f;

    font-size: 28px;

    letter-spacing: -0.04em;
}


.abstract-paper-lines {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.abstract-paper-lines div {
    height: 5px;

    border-radius: 10px;

    background: #e0ece1;
}


.abstract-paper-lines div:nth-child(1) {
    width: 90%;
}


.abstract-paper-lines div:nth-child(2) {
    width: 95%;
}


.abstract-paper-lines div:nth-child(3) {
    width: 80%;
}


.abstract-paper-lines div:nth-child(4) {
    width: 66%;
}


.abstract-paper-footer {
    margin-top: auto;

    padding-top: 18px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid #e0eae1;

    color: #769278;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


@keyframes abstractPaperFloat {

    0%,
    100% {
        transform:
            perspective(1000px)
            rotateY(-9deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(-6deg)
            rotateX(2deg)
            translateY(-12px);
    }

}


/* =========================================================
   INTRO
========================================================= */

.abstract-intro {
    background: #ffffff;
}


.abstract-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}


.abstract-intro-grid h2 {
    margin: 15px 0 0;

    color: #173f24;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}


.abstract-intro-grid h2 span {
    display: block;
    color: #55a85b;
}


.abstract-large-text {
    margin: 0 0 25px;

    color: #284d31;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.55;
}


.abstract-intro-grid p:not(.abstract-large-text) {
    margin: 0;

    color: #718078;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   GUIDELINES
========================================================= */

.abstract-guidelines {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}


.abstract-guideline-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}


.abstract-guideline-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        rgba(42, 96, 49, 0.09);

    border-radius: 23px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.abstract-guideline-card::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(83, 163, 90, 0.07);

    transition:
        transform 0.5s ease;
}


.abstract-guideline-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(70, 143, 77, 0.21);

    box-shadow:
        0 25px 60px
        rgba(36, 82, 42, 0.09);
}


.abstract-guideline-card:hover::before {
    transform: scale(1.5);
}


.abstract-guideline-card > span {
    position: relative;
    z-index: 2;

    color: #75a07b;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.13em;
}


.abstract-guideline-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    margin: 28px 0 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e8f5e9;

    color: #398646;

    font-size: 19px;
    font-weight: 700;
}


.abstract-guideline-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #1b4527;

    font-size: 21px;
}


.abstract-guideline-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #748078;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   ABSTRACT FORMAT
========================================================= */

.abstract-format {
    background: #ffffff;
}


.abstract-format-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(400px, 1.15fr);

    gap: 90px;

    align-items: center;
}


.abstract-format-content h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}


.abstract-format-content h2 span {
    display: block;
    color: #55a85b;
}


.abstract-format-content > p {
    max-width: 520px;

    margin: 0;

    color: #707d74;

    font-size: 16px;
    line-height: 1.8;
}


.abstract-format-points {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}


.abstract-format-points > div {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 50px;

    padding: 10px 15px;

    border:
        1px solid
        rgba(52, 108, 59, 0.08);

    border-radius: 12px;

    background: #fafdf9;
}


.abstract-format-points span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f3e8;

    color: #4d9655;

    font-size: 9px;
    font-weight: 700;
}


.abstract-format-points strong {
    color: #355a3c;

    font-size: 13px;
}


/* FORMAT CARD */

.abstract-format-card {
    position: relative;

    padding: 35px;

    min-height: 430px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #f1f8f1,
            #ffffff
        );

    border:
        1px solid
        rgba(61, 126, 67, 0.13);

    box-shadow:
        0 25px 65px
        rgba(35, 82, 42, 0.08);

    transform:
        perspective(900px)
        rotateY(-3deg);
}


.abstract-format-card-top {
    display: flex;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid #dce9dd;

    color: #709477;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.abstract-format-card-body {
    padding-top: 35px;
}


.format-heading {
    width: 70%;
    height: 13px;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #cfe2d1;
}


.format-line {
    width: 95%;
    height: 5px;

    margin-bottom: 9px;

    border-radius: 10px;

    background: #dceadd;
}


.format-line.short {
    width: 65%;
}


.format-section {
    margin-top: 34px;
}


.format-section > span {
    display: block;

    margin-bottom: 12px;

    color: #5e8665;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.format-section div {
    width: 92%;
    height: 5px;

    margin-bottom: 8px;

    border-radius: 10px;

    background: #dceadd;
}


.format-section div:last-child {
    width: 75%;
}


/* =========================================================
   RESEARCH AREAS
========================================================= */

.abstract-research {
    background:
        linear-gradient(
            180deg,
            #f5faf4,
            #fbfdfb
        );
}


.abstract-research-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 50px;
}


.abstract-research-grid > div {
    min-height: 70px;

    padding: 17px 20px;

    display: flex;
    align-items: center;

    border:
        1px solid
        rgba(48, 105, 55, 0.09);

    border-radius: 14px;

    background: #ffffff;

    color: #345a3c;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.abstract-research-grid > div:hover {
    transform: translateY(-4px);

    background: #f0f8f0;

    border-color:
        rgba(73, 147, 80, 0.18);
}


/* =========================================================
   SUBMISSION FORM
========================================================= */

.abstract-form-section {
    background:
        linear-gradient(
            180deg,
            #f7fbf7,
            #f1f8f2
        );
}


.abstract-form-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(570px, 1.28fr);

    gap: 75px;

    align-items: start;
}


.abstract-form-info {
    padding-top: 10px;

    position: sticky;
    top: 120px;
}


.abstract-form-info h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 4vw, 62px);
    line-height: 1;

    letter-spacing: -0.05em;
}


.abstract-form-info h2 span {
    display: block;
    color: #55a85b;
}


.abstract-form-info > p {
    max-width: 470px;

    margin: 0;

    color: #6d7b71;

    font-size: 16px;
    line-height: 1.75;
}


.abstract-form-benefits {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 16px;
}


.abstract-form-benefits > div {
    display: flex;
    align-items: center;

    gap: 12px;
}


.abstract-form-benefits span {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e2f2e4;

    color: #398646;

    font-size: 12px;
    font-weight: 700;
}


.abstract-form-benefits strong {
    color: #345a3c;

    font-size: 13px;
}


.abstract-form-note {
    margin-top: 40px;

    padding: 22px;

    border-left: 3px solid #56a15d;

    background:
        rgba(255, 255, 255, 0.75);
}


.abstract-form-note span {
    display: block;

    margin-bottom: 7px;

    color: #70a077;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.abstract-form-note p {
    margin: 0;

    color: #758179;

    font-size: 12px;
    line-height: 1.6;
}


/* FORM CARD */

.abstract-form-card {
    padding: 48px;

    background: #ffffff;

    border:
        1px solid
        rgba(32, 83, 41, 0.09);

    border-radius: 28px;

    box-shadow:
        0 30px 80px
        rgba(35, 79, 41, 0.08);
}


.abstract-form-header {
    margin-bottom: 32px;
}


.abstract-form-header > span {
    display: block;

    margin-bottom: 8px;

    color: #68a06e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.17em;
}


.abstract-form-header h3 {
    margin: 0 0 8px;

    color: #183f25;

    font-size: 30px;

    letter-spacing: -0.035em;
}


.abstract-form-header p {
    margin: 0;

    color: #7a867e;

    font-size: 13px;
}


.conference-abstract-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   FILE UPLOAD
========================================================= */

.conference-abstract-form input[type="file"] {
    width: 100%;

    box-sizing: border-box;

    padding: 13px;

    border:
        1px dashed
        #cbdccc;

    border-radius: 12px;

    background: #fafdfb;

    color: #718078;

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;
}


.conference-abstract-form input[type="file"]:hover {
    border-color: #63a269;
}


.abstract-file-note {
    margin-top: -2px;

    color: #96a29a;

    font-size: 10px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.abstract-submit {
    width: 100%;
    min-height: 56px;

    margin-top: 8px;

    border: 0;
    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #55a85b,
            #286c37
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 15px 30px
        rgba(54, 119, 61, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.abstract-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 38px
        rgba(54, 119, 61, 0.24);
}


.abstract-submit span {
    font-size: 18px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.abstract-final {
    padding-top: 0;

    background: #ffffff;
}


.abstract-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}


.abstract-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}


.abstract-final-box > div {
    position: relative;
    z-index: 2;
}


.abstract-final-box h2 {
    max-width: 700px;

    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}


.abstract-final-box h2 span {
    color: #55a85b;
}


.abstract-final-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 16px;
    line-height: 1.65;
}


.abstract-final-actions {
    position: relative;
    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


.abstract-final-actions .primary-button,
.abstract-final-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .abstract-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }


    .abstract-hero {
        min-height: auto;
    }


    .abstract-hero-visual {
        min-height: 440px;
    }


    .abstract-guideline-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .abstract-format-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .abstract-research-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .abstract-form-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .abstract-form-info {
        position: static;
    }

}


@media (max-width: 750px) {

    .abstract-hero-content h1 {
        font-size: 48px;
    }


    .abstract-hero-content p {
        font-size: 15px;
    }


    .abstract-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .abstract-hero-actions a {
        justify-content: center;
    }


    .abstract-hero-meta {
        gap: 15px;
    }


    .abstract-meta-divider {
        display: none;
    }


    .abstract-hero-visual {
        min-height: 380px;
    }


    .abstract-paper {
        width: 270px;
        height: 370px;
    }


    .abstract-guideline-grid {
        grid-template-columns: 1fr;
    }


    .abstract-research-grid {
        grid-template-columns: 1fr;
    }


    .abstract-form-card {
        padding: 28px 20px;

        border-radius: 20px;
    }


    .abstract-form-info h2 {
        font-size: 42px;
    }


    .abstract-final-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }


    .abstract-final-box h2 {
        font-size: 38px;
    }

}


@media (max-width: 480px) {

    .abstract-paper {
        width: 240px;
        height: 330px;

        padding: 22px;
    }


    .abstract-paper-title strong {
        font-size: 24px;
    }


    .abstract-final-actions {
        width: 100%;

        flex-direction: column;
    }


    .abstract-final-actions a {
        justify-content: center;
    }

}
/* =========================================================
   SPEAKERS PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   SPEAKERS HERO
========================================================= */

.speakers-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(91, 169, 97, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}

.speakers-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.speakers-glow {
    position: absolute;
    border-radius: 50%;
}

.speakers-glow-one {
    width: 650px;
    height: 650px;
    right: -250px;
    top: -200px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}

.speakers-glow-two {
    width: 500px;
    height: 500px;
    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}

.speakers-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(65, 132, 73, 0.07);
}

.speakers-orbit-one {
    width: 730px;
    height: 730px;
    right: -270px;
    top: 50%;
    transform: translateY(-50%);
}

.speakers-orbit-two {
    width: 490px;
    height: 490px;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.speakers-hero-container {
    position: relative;
    z-index: 2;

    min-height: 690px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}

.speakers-hero-content {
    max-width: 720px;
}

.speakers-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.97;

    letter-spacing: -0.055em;
}

.speakers-hero-content h1 span {
    display: block;
    color: #55a85b;
}

.speakers-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;
    line-height: 1.75;
}

.speakers-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   HERO ORBIT SYSTEM
========================================================= */

.speakers-hero-visual {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-orbit-system {
    position: relative;

    width: 430px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation:
        speakerFloat 7s ease-in-out infinite;
}

.speaker-orbit-core {
    position: relative;
    z-index: 5;

    width: 165px;
    height: 165px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #eaf6eb 75%
        );

    border:
        1px solid
        rgba(62, 132, 69, 0.15);

    box-shadow:
        0 30px 70px
        rgba(38, 87, 44, 0.12),
        inset 0 0 35px
        rgba(84, 163, 91, 0.07);
}

.speaker-orbit-core span {
    color: #709276;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.speaker-orbit-core strong {
    margin-top: 8px;

    color: #245c2f;

    font-size: 30px;
    line-height: 0.9;

    letter-spacing: -0.05em;
}

.speaker-orbit-core small {
    margin-top: 6px;

    color: #709276;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.speaker-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.12);
}

.speaker-ring-one {
    width: 240px;
    height: 240px;

    animation:
        speakerRotate 18s linear infinite;
}

.speaker-ring-two {
    width: 340px;
    height: 340px;

    border-style: dashed;

    animation:
        speakerRotateReverse 26s linear infinite;
}

.speaker-ring-three {
    width: 430px;
    height: 430px;

    border-color:
        rgba(67, 137, 74, 0.07);

    animation:
        speakerRotate 34s linear infinite;
}

.speaker-orbit-dot {
    position: absolute;
    z-index: 8;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #59a960;

    box-shadow:
        0 0 0 7px
        rgba(89, 169, 96, 0.10),
        0 0 25px
        rgba(89, 169, 96, 0.24);
}

.speaker-dot-one {
    top: 54px;
    right: 84px;
}

.speaker-dot-two {
    left: 37px;
    bottom: 82px;
}

.speaker-dot-three {
    right: 0;
    top: 210px;
}

@keyframes speakerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes speakerRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes speakerRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   INTRO
========================================================= */

.speakers-intro {
    background: #ffffff;
}

.speakers-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}

.speakers-intro-grid h2 {
    margin: 15px 0 0;

    color: #173f24;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}

.speakers-intro-grid h2 span {
    display: block;
    color: #55a85b;
}

.speakers-large-text {
    margin: 0 0 25px;

    color: #284d31;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.55;
}

.speakers-intro-grid p:not(.speakers-large-text) {
    margin: 0;

    color: #718078;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SPEAKER CARDS
========================================================= */

.speakers-list {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}

.speaker-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 52px;
}

.speaker-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        rgba(42, 96, 49, 0.09);

    border-radius: 24px;

    box-shadow:
        0 12px 40px
        rgba(35, 80, 41, 0.045);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.speaker-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(70, 143, 77, 0.20);

    box-shadow:
        0 28px 65px
        rgba(35, 80, 41, 0.11);
}

.speaker-photo {
    position: relative;

    height: 300px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            #f3f9f3,
            #dcecdc
        );
}

.speaker-photo::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: 50%;
    bottom: -125px;

    transform: translateX(-50%);

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.11);
}

.speaker-photo::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: 50%;
    top: 55px;

    transform: translateX(-50%);

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.08);
}

.speaker-photo-placeholder {
    position: absolute;
    z-index: 2;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-photo-placeholder span {
    width: 115px;
    height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.70);

    border:
        1px solid
        rgba(63, 131, 70, 0.13);

    color: #6c9271;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;

    box-shadow:
        0 15px 40px
        rgba(35, 80, 41, 0.07);
}

.speaker-number {
    position: absolute;
    z-index: 5;

    top: 18px;
    right: 18px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.85);

    color: #5c8963;

    font-size: 9px;
    font-weight: 700;

    box-shadow:
        0 7px 20px
        rgba(35, 80, 41, 0.08);
}

.speaker-info {
    padding: 27px 28px 30px;
}

.speaker-role {
    display: block;

    margin-bottom: 9px;

    color: #70a077;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.speaker-info h3 {
    margin: 0 0 7px;

    color: #1c4527;

    font-size: 23px;

    letter-spacing: -0.03em;
}

.speaker-info p {
    margin: 0 0 12px;

    color: #748078;

    font-size: 13px;
}

.speaker-info small {
    display: inline-block;

    padding: 7px 11px;

    border-radius: 20px;

    background: #edf7ee;

    color: #5d8864;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   SCIENTIFIC COMMITTEE
========================================================= */

.scientific-committee {
    background: #ffffff;
}

.committee-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(450px, 1.2fr);

    gap: 90px;

    align-items: center;
}

.committee-content h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}

.committee-content h2 span {
    display: block;
    color: #55a85b;
}

.committee-content p {
    max-width: 520px;

    margin: 0;

    color: #707d74;

    font-size: 16px;
    line-height: 1.8;
}

.committee-content .primary-button {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 30px;
}

.committee-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.committee-member {
    display: flex;
    align-items: center;

    gap: 17px;

    padding: 19px 21px;

    border:
        1px solid
        rgba(46, 101, 53, 0.09);

    border-radius: 17px;

    background: #fafdf9;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.committee-member:hover {
    transform: translateX(6px);

    background: #f0f8f0;

    border-color:
        rgba(71, 143, 78, 0.18);
}

.committee-avatar {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #e6f3e8;

    color: #3c8847;

    font-size: 10px;
    font-weight: 700;
}

.committee-member > div:last-child {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.committee-member span {
    color: #74a07a;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.committee-member strong {
    color: #31573a;

    font-size: 14px;
}

.committee-member small {
    color: #829087;

    font-size: 11px;
}


/* =========================================================
   TENTATIVE PROGRAM
========================================================= */

.tentative-program {
    background:
        linear-gradient(
            180deg,
            #f5faf4,
            #fbfdfb
        );
}

.program-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: grid;

    grid-template-columns:
        280px
        minmax(0, 1fr);

    align-items: center;

    gap: 75px;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(103, 174, 109, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #fbfdfb
        );

    border:
        1px solid
        rgba(67, 135, 74, 0.12);
}

.program-box::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -190px;
    bottom: -250px;

    border:
        1px solid
        rgba(72, 143, 79, 0.09);

    border-radius: 50%;
}


/* PROGRAM DOCUMENT */

.program-document {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
}

.program-document-page {
    position: relative;

    width: 205px;
    height: 285px;

    padding: 20px;

    display: flex;
    flex-direction: column;

    border-radius: 5px 14px 14px 5px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e5f1e6
        );

    border:
        1px solid
        rgba(58, 126, 65, 0.15);

    box-shadow:
        -14px 20px 40px
        rgba(31, 75, 37, 0.10),
        0 25px 55px
        rgba(31, 75, 37, 0.08);

    transform:
        perspective(800px)
        rotateY(-8deg);

    transition:
        transform 0.4s ease;
}

.program-document-page:hover {
    transform:
        perspective(800px)
        rotateY(-3deg)
        translateY(-5px);
}

.program-document-page::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 6px;

    border-radius: 5px 0 0 5px;

    background:
        linear-gradient(
            180deg,
            #327a3f,
            #71b877
        );
}

.program-page-top {
    display: flex;
    justify-content: space-between;

    color: #6d9272;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.program-page-title {
    margin-top: 45px;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
}

.program-page-title span {
    color: #759478;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.program-page-title strong {
    color: #285d31;

    font-size: 21px;
    line-height: 0.92;

    letter-spacing: -0.05em;
}

.program-page-lines {
    margin-top: 27px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.program-page-lines div {
    height: 4px;

    border-radius: 10px;

    background: #dbe9dc;
}

.program-page-lines div:nth-child(1) {
    width: 95%;
}

.program-page-lines div:nth-child(2) {
    width: 80%;
}

.program-page-lines div:nth-child(3) {
    width: 91%;
}

.program-page-lines div:nth-child(4) {
    width: 65%;
}

.program-page-footer {
    margin-top: auto;

    padding-top: 12px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid #dce8dd;

    color: #769278;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 0.11em;
}


/* PROGRAM CONTENT */

.program-content {
    position: relative;
    z-index: 2;
}

.program-content h2 {
    margin: 17px 0 20px;

    color: #173f24;

    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1;

    letter-spacing: -0.05em;
}

.program-content h2 span {
    display: block;
    color: #55a85b;
}

.program-content > p {
    max-width: 650px;

    margin: 0;

    color: #6e7d73;

    font-size: 16px;
    line-height: 1.8;
}

.program-notice {
    margin-top: 25px;

    padding: 18px 20px;

    border-left: 3px solid #59a160;

    background:
        rgba(255, 255, 255, 0.65);
}

.program-notice span {
    display: block;

    margin-bottom: 6px;

    color: #70a077;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.program-notice p {
    margin: 0;

    color: #758179;

    font-size: 12px;
    line-height: 1.6;
}

.program-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.program-actions .primary-button,
.program-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}

.program-file-note {
    display: block;

    margin-top: 13px;

    color: #8c9990;

    font-size: 9px;
}


/* =========================================================
   SPEAKER CTA
========================================================= */

.speaker-cta {
    padding-top: 0;

    background: #ffffff;
}

.speaker-cta-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}

.speaker-cta-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}

.speaker-cta-box > div {
    position: relative;
    z-index: 2;
}

.speaker-cta-box h2 {
    max-width: 700px;

    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}

.speaker-cta-box h2 span {
    color: #55a85b;
}

.speaker-cta-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 16px;
    line-height: 1.65;
}

.speaker-cta-actions {
    position: relative;
    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}

.speaker-cta-actions .primary-button,
.speaker-cta-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .speakers-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .speakers-hero {
        min-height: auto;
    }

    .speakers-hero-visual {
        min-height: 440px;
    }

    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .committee-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .program-box {
        grid-template-columns: 220px 1fr;

        gap: 50px;

        padding: 55px;
    }

}


@media (max-width: 750px) {

    .speakers-hero-content h1 {
        font-size: 48px;
    }

    .speakers-hero-content p {
        font-size: 15px;
    }

    .speakers-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .speakers-hero-actions a {
        justify-content: center;
    }

    .speaker-orbit-system {
        width: 300px;
        height: 300px;
    }

    .speaker-orbit-core {
        width: 125px;
        height: 125px;
    }

    .speaker-orbit-core strong {
        font-size: 23px;
    }

    .speaker-ring-one {
        width: 175px;
        height: 175px;
    }

    .speaker-ring-two {
        width: 240px;
        height: 240px;
    }

    .speaker-ring-three {
        width: 300px;
        height: 300px;
    }

    .speaker-dot-one {
        top: 38px;
        right: 55px;
    }

    .speaker-dot-two {
        left: 20px;
        bottom: 55px;
    }

    .speaker-dot-three {
        right: -5px;
        top: 145px;
    }

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .speaker-photo {
        height: 280px;
    }

    .program-box {
        grid-template-columns: 1fr;

        padding: 40px 25px;

        gap: 35px;

        text-align: center;
    }

    .program-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .program-notice {
        text-align: left;
    }

    .program-actions {
        justify-content: center;
    }

    .speaker-cta-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .speaker-cta-box h2 {
        font-size: 38px;
    }

}


@media (max-width: 480px) {

    .speaker-photo {
        height: 250px;
    }

    .speaker-info {
        padding: 24px 22px 27px;
    }

    .program-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .program-actions a {
        justify-content: center;
    }

    .speaker-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .speaker-cta-actions a {
        justify-content: center;
    }

}
/* =========================================================
   SPONSORSHIP PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   SPONSOR HERO
========================================================= */

.sponsor-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(91, 169, 97, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}

.sponsor-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sponsor-glow {
    position: absolute;
    border-radius: 50%;
}

.sponsor-glow-one {
    width: 650px;
    height: 650px;
    right: -250px;
    top: -200px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}

.sponsor-glow-two {
    width: 500px;
    height: 500px;
    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}

.sponsor-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(65, 132, 73, 0.07);
}

.sponsor-orbit-one {
    width: 730px;
    height: 730px;

    right: -270px;
    top: 50%;

    transform: translateY(-50%);
}

.sponsor-orbit-two {
    width: 490px;
    height: 490px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);
}

.sponsor-hero-container {
    position: relative;
    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}

.sponsor-hero-content {
    max-width: 720px;
}

.sponsor-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(48px, 5.8vw, 80px);
    line-height: 0.97;

    letter-spacing: -0.055em;
}

.sponsor-hero-content h1 span {
    display: block;
    color: #55a85b;
}

.sponsor-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;
    line-height: 1.75;
}

.sponsor-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sponsor-hero-meta {
    margin-top: 42px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;
}

.sponsor-hero-meta > div:not(.sponsor-meta-divider) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sponsor-hero-meta strong {
    color: #285331;
    font-size: 13px;
}

.sponsor-hero-meta span {
    color: #7b887f;
    font-size: 11px;
}

.sponsor-meta-divider {
    width: 1px;
    height: 34px;
    background: #d5e3d7;
}


/* =========================================================
   SPONSOR NETWORK VISUAL
========================================================= */

.sponsor-hero-visual {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-network {
    position: relative;

    width: 430px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation:
        sponsorFloat 7s ease-in-out infinite;
}

.sponsor-network-core {
    position: relative;
    z-index: 5;

    width: 170px;
    height: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #eaf6eb 75%
        );

    border:
        1px solid
        rgba(62, 132, 69, 0.15);

    box-shadow:
        0 30px 70px
        rgba(38, 87, 44, 0.12),
        inset 0 0 35px
        rgba(84, 163, 91, 0.07);
}

.sponsor-network-core span {
    color: #709276;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.sponsor-network-core strong {
    margin-top: 8px;

    color: #245c2f;

    font-size: 29px;
    line-height: 0.9;

    letter-spacing: -0.05em;
}

.sponsor-network-core small {
    margin-top: 7px;

    color: #709276;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.sponsor-network-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.12);
}

.sponsor-network-ring.ring-one {
    width: 245px;
    height: 245px;

    animation:
        sponsorRotate 18s linear infinite;
}

.sponsor-network-ring.ring-two {
    width: 345px;
    height: 345px;

    border-style: dashed;

    animation:
        sponsorRotateReverse 25s linear infinite;
}

.sponsor-network-ring.ring-three {
    width: 430px;
    height: 430px;

    border-color:
        rgba(67, 137, 74, 0.07);

    animation:
        sponsorRotate 34s linear infinite;
}

.sponsor-node {
    position: absolute;
    z-index: 8;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #59a960;

    box-shadow:
        0 0 0 7px
        rgba(89, 169, 96, 0.10),
        0 0 25px
        rgba(89, 169, 96, 0.24);
}

.sponsor-node.node-one {
    top: 49px;
    right: 82px;
}

.sponsor-node.node-two {
    left: 40px;
    bottom: 76px;
}

.sponsor-node.node-three {
    right: 1px;
    top: 205px;
}

.sponsor-node.node-four {
    left: 83px;
    top: 28px;
}

@keyframes sponsorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes sponsorRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes sponsorRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   SPONSOR INTRO
========================================================= */

.sponsor-intro {
    background: #ffffff;
}

.sponsor-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}

.sponsor-intro-grid h2 {
    margin: 15px 0 0;

    color: #173f24;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}

.sponsor-intro-grid h2 span {
    display: block;
    color: #55a85b;
}

.sponsor-large-text {
    margin: 0 0 25px;

    color: #284d31;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.55;
}

.sponsor-intro-grid p:not(.sponsor-large-text) {
    margin: 0;

    color: #718078;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BENEFITS
========================================================= */

.sponsor-benefits {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}

.sponsor-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}

.sponsor-benefit-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        rgba(42, 96, 49, 0.09);

    border-radius: 23px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.sponsor-benefit-card::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(83, 163, 90, 0.07);

    transition:
        transform 0.5s ease;
}

.sponsor-benefit-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(70, 143, 77, 0.21);

    box-shadow:
        0 25px 60px
        rgba(36, 82, 42, 0.09);
}

.sponsor-benefit-card:hover::before {
    transform: scale(1.5);
}

.sponsor-benefit-card > span {
    position: relative;
    z-index: 2;

    color: #75a07b;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.sponsor-benefit-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    margin: 28px 0 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e8f5e9;

    color: #398646;

    font-size: 19px;
    font-weight: 700;
}

.sponsor-benefit-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #1b4527;

    font-size: 21px;
}

.sponsor-benefit-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #748078;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   SPONSORSHIP PACKAGES
========================================================= */

.sponsor-packages {
    background: #ffffff;
}

.sponsor-package-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 52px;

    align-items: stretch;
}

.sponsor-package-card {
    position: relative;

    padding: 32px 28px;

    display: flex;
    flex-direction: column;

    min-height: 450px;

    background: #fbfdfb;

    border:
        1px solid
        rgba(43, 98, 50, 0.10);

    border-radius: 22px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.sponsor-package-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(70, 143, 77, 0.20);

    box-shadow:
        0 25px 60px
        rgba(35, 80, 41, 0.09);
}

.sponsor-package-card.featured {
    background:
        linear-gradient(
            145deg,
            #f0f9f1,
            #ffffff
        );

    border-color:
        rgba(71, 145, 78, 0.22);

    box-shadow:
        0 20px 50px
        rgba(45, 101, 52, 0.08);
}

.package-badge {
    position: absolute;

    top: 17px;
    right: 17px;

    padding: 7px 10px;

    border-radius: 20px;

    background: #e3f2e5;

    color: #428a4c;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.sponsor-package-top {
    padding-bottom: 20px;

    border-bottom:
        1px solid
        #e0eae1;
}

.sponsor-package-top span {
    display: block;

    margin-bottom: 9px;

    color: #70a077;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.sponsor-package-top strong {
    color: #214b2c;

    font-size: 28px;

    letter-spacing: -0.035em;
}

.sponsor-package-card > p {
    margin: 23px 0;

    color: #748078;

    font-size: 13px;
    line-height: 1.7;
}

.sponsor-package-card ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 13px;
}

.sponsor-package-card li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #52695a;

    font-size: 12px;
    line-height: 1.45;
}

.sponsor-package-card li span {
    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f4e9;

    color: #3d8b48;

    font-size: 9px;
    font-weight: 700;
}

.sponsor-package-card > a {
    margin-top: auto;
    padding-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #3e8d49;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   EXHIBITION
========================================================= */

.sponsor-exhibition {
    background:
        linear-gradient(
            180deg,
            #f5faf4,
            #fbfdfb
        );
}

.sponsor-exhibition-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(380px, 1.1fr);

    gap: 90px;

    align-items: center;
}

.sponsor-exhibition-content h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);
    line-height: 0.98;

    letter-spacing: -0.05em;
}

.sponsor-exhibition-content h2 span {
    display: block;
    color: #55a85b;
}

.sponsor-exhibition-content > p {
    max-width: 520px;

    margin: 0;

    color: #707d74;

    font-size: 16px;
    line-height: 1.8;
}

.exhibition-points {
    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 13px;
}

.exhibition-points > div {
    display: flex;

    align-items: center;

    gap: 12px;
}

.exhibition-points span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f3e7;

    color: #398646;

    font-size: 10px;
    font-weight: 700;
}

.exhibition-points strong {
    color: #365b3e;

    font-size: 13px;
}

.sponsor-exhibition-content .primary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 32px;
}


/* EXHIBITION VISUAL */

.exhibition-visual {
    display: flex;
    justify-content: center;
}

.exhibition-display {
    position: relative;

    width: 390px;
    min-height: 350px;

    padding: 25px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e7f2e8
        );

    border:
        1px solid
        rgba(60, 126, 67, 0.13);

    box-shadow:
        0 30px 70px
        rgba(35, 82, 42, 0.10);

    transform:
        perspective(900px)
        rotateY(-4deg);

    transition:
        transform 0.4s ease;
}

.exhibition-display:hover {
    transform:
        perspective(900px)
        rotateY(0deg)
        translateY(-5px);
}

.display-header {
    display: flex;
    justify-content: space-between;

    color: #6d9272;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.display-screen {
    position: relative;

    height: 220px;

    margin-top: 25px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 17px;

    background:
        radial-gradient(
            circle,
            #eef8ef,
            #dcebdd
        );

    border:
        1px solid
        rgba(61, 128, 68, 0.09);
}

.display-circle {
    width: 95px;
    height: 95px;

    margin-bottom: 20px;

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.18);

    box-shadow:
        0 0 0 18px
        rgba(83, 163, 90, 0.05),
        0 0 0 38px
        rgba(83, 163, 90, 0.035);
}

.display-line {
    width: 150px;
    height: 5px;

    margin-bottom: 8px;

    border-radius: 10px;

    background: #c9dfcb;
}

.display-line.medium {
    width: 120px;
}

.display-line.short {
    width: 80px;
}

.display-base {
    padding-top: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #6e9173;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.display-base strong {
    color: #315f38;

    font-size: 10px;
}


/* =========================================================
   CUSTOM PARTNERSHIP
========================================================= */

.sponsor-custom {
    background: #ffffff;
}

.sponsor-custom-box {
    position: relative;

    overflow: hidden;

    padding: 60px 65px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(105, 175, 111, 0.17),
            transparent 35%
        ),
        #f2f9f3;

    border:
        1px solid
        rgba(67, 135, 74, 0.11);
}

.sponsor-custom-box::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -130px;
    bottom: -190px;

    border:
        1px solid
        rgba(70, 140, 77, 0.08);

    border-radius: 50%;
}

.sponsor-custom-box > div {
    position: relative;
    z-index: 2;
}

.sponsor-custom-box h2 {
    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1;

    letter-spacing: -0.045em;
}

.sponsor-custom-box h2 span {
    color: #55a85b;
}

.sponsor-custom-box p {
    max-width: 650px;

    margin: 0;

    color: #6e7e73;

    font-size: 15px;
    line-height: 1.7;
}

.sponsor-custom-box > .primary-button {
    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.sponsor-final {
    padding-top: 0;

    background: #ffffff;
}

.sponsor-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}

.sponsor-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}

.sponsor-final-box > div {
    position: relative;
    z-index: 2;
}

.sponsor-final-box h2 {
    max-width: 720px;

    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}

.sponsor-final-box h2 span {
    color: #55a85b;
}

.sponsor-final-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 16px;
    line-height: 1.65;
}

.sponsor-final-actions {
    position: relative;
    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}

.sponsor-final-actions .primary-button,
.sponsor-final-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .sponsor-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .sponsor-hero {
        min-height: auto;
    }

    .sponsor-hero-visual {
        min-height: 440px;
    }

    .sponsor-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-exhibition-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 750px) {

    .sponsor-hero-content h1 {
        font-size: 48px;
    }

    .sponsor-hero-content p {
        font-size: 15px;
    }

    .sponsor-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .sponsor-hero-actions a {
        justify-content: center;
    }

    .sponsor-hero-meta {
        gap: 15px;
    }

    .sponsor-meta-divider {
        display: none;
    }

    .sponsor-network {
        width: 300px;
        height: 300px;
    }

    .sponsor-network-core {
        width: 125px;
        height: 125px;
    }

    .sponsor-network-core strong {
        font-size: 22px;
    }

    .sponsor-network-ring.ring-one {
        width: 175px;
        height: 175px;
    }

    .sponsor-network-ring.ring-two {
        width: 240px;
        height: 240px;
    }

    .sponsor-network-ring.ring-three {
        width: 300px;
        height: 300px;
    }

    .sponsor-node.node-one {
        top: 38px;
        right: 55px;
    }

    .sponsor-node.node-two {
        left: 20px;
        bottom: 55px;
    }

    .sponsor-node.node-three {
        right: -5px;
        top: 145px;
    }

    .sponsor-node.node-four {
        left: 54px;
        top: 20px;
    }

    .sponsor-benefit-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-package-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-package-card {
        min-height: auto;
    }

    .exhibition-display {
        width: 100%;
        max-width: 390px;
    }

    .sponsor-custom-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .sponsor-custom-box > .primary-button {
        width: 100%;
        justify-content: center;
    }

    .sponsor-final-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .sponsor-final-box h2 {
        font-size: 38px;
    }

}


@media (max-width: 480px) {

    .sponsor-package-card {
        padding: 28px 22px;
    }

    .exhibition-display {
        min-height: 310px;
        padding: 20px;
    }

    .display-screen {
        height: 190px;
    }

    .sponsor-final-actions {
        width: 100%;

        flex-direction: column;
    }

    .sponsor-final-actions a {
        justify-content: center;
    }

}
/* =========================================================
   GUIDELINES PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   GUIDELINES HERO
========================================================= */

.guidelines-hero {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(91, 169, 97, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}

.guidelines-hero-bg {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.guidelines-glow {
    position: absolute;

    border-radius: 50%;
}

.guidelines-glow-one {
    width: 650px;
    height: 650px;

    right: -250px;
    top: -200px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}

.guidelines-glow-two {
    width: 500px;
    height: 500px;

    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}

.guidelines-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(65, 132, 73, 0.07);
}

.guidelines-orbit-one {
    width: 730px;
    height: 730px;

    right: -270px;
    top: 50%;

    transform: translateY(-50%);
}

.guidelines-orbit-two {
    width: 490px;
    height: 490px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);
}

.guidelines-hero-container {
    position: relative;
    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}

.guidelines-hero-content {
    max-width: 720px;
}

.guidelines-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.97;

    letter-spacing: -0.055em;
}

.guidelines-hero-content h1 span {
    display: block;

    color: #55a85b;
}

.guidelines-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;

    line-height: 1.75;
}

.guidelines-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   GUIDELINE DOCUMENT
========================================================= */

.guidelines-hero-visual {
    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.guideline-document {
    position: relative;

    width: 330px;
    height: 440px;

    padding: 28px 30px;

    display: flex;
    flex-direction: column;

    border-radius:
        7px 18px 18px 7px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf7ee
        );

    border:
        1px solid
        rgba(59, 125, 66, 0.14);

    box-shadow:
        -20px 28px 55px
        rgba(31, 75, 37, 0.10),
        0 35px 80px
        rgba(31, 75, 37, 0.11);

    transform:
        perspective(1000px)
        rotateY(-9deg)
        rotateX(2deg);

    animation:
        guidelineDocumentFloat 6s ease-in-out infinite;
}

.guideline-document::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 7px;

    border-radius:
        7px 0 0 7px;

    background:
        linear-gradient(
            180deg,
            #31793e,
            #71b877
        );
}

.guideline-document::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid
        rgba(69, 141, 76, 0.10);

    border-radius: 50%;
}

.guideline-document-header {
    display: flex;

    justify-content: space-between;

    color: #6d9272;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.guideline-document-title {
    margin-top: 62px;

    text-align: center;
}

.guideline-document-title span {
    display: block;

    margin-bottom: 7px;

    color: #769378;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.guideline-document-title strong {
    display: block;

    color: #285d31;

    font-size: 30px;

    line-height: 0.95;

    letter-spacing: -0.05em;
}

.guideline-document-lines {
    margin-top: 38px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.guideline-document-lines div {
    height: 5px;

    border-radius: 10px;

    background: #dcebdd;
}

.guideline-document-lines div:nth-child(1) {
    width: 92%;
}

.guideline-document-lines div:nth-child(2) {
    width: 78%;
}

.guideline-document-lines div:nth-child(3) {
    width: 88%;
}

.guideline-document-lines div:nth-child(4) {
    width: 63%;
}

.guideline-document-sections {
    margin-top: 35px;

    display: flex;

    gap: 8px;
}

.guideline-document-sections span {
    width: 38px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #e6f3e8;

    color: #54835b;

    font-size: 7px;
    font-weight: 700;
}

.guideline-document-footer {
    margin-top: auto;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        #dce8dd;

    color: #769278;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

@keyframes guidelineDocumentFloat {

    0%,
    100% {
        transform:
            perspective(1000px)
            rotateY(-9deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(-6deg)
            rotateX(2deg)
            translateY(-12px);
    }

}


/* =========================================================
   QUICK NAVIGATION
========================================================= */

.guidelines-nav {
    padding-top: 65px;

    background: #ffffff;
}

.guidelines-nav-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.guidelines-nav-grid a {
    min-height: 145px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    text-decoration: none;

    border:
        1px solid
        rgba(45, 101, 52, 0.09);

    border-radius: 18px;

    background: #fafdf9;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.guidelines-nav-grid a:hover {
    transform: translateY(-6px);

    background: #f1f8f1;

    border-color:
        rgba(70, 143, 77, 0.19);

    box-shadow:
        0 18px 45px
        rgba(36, 82, 42, 0.08);
}

.guidelines-nav-grid a span {
    color: #75a07b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.guidelines-nav-grid a strong {
    color: #315a39;

    font-size: 15px;
}

.guidelines-nav-grid a small {
    color: #819087;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   AUTHOR GUIDELINES
========================================================= */

.author-guidelines {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}

.guidelines-section-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.78fr)
        minmax(450px, 1.22fr);

    gap: 90px;

    align-items: start;
}

.guidelines-section-intro {
    position: sticky;

    top: 120px;
}

.guidelines-section-intro h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.guidelines-section-intro h2 span {
    display: block;

    color: #55a85b;
}

.guidelines-section-intro p {
    max-width: 450px;

    margin: 0;

    color: #707d74;

    font-size: 16px;

    line-height: 1.8;
}

.guidelines-content-cards {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.guidelines-content-cards article {
    position: relative;

    min-height: 245px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid
        rgba(44, 99, 51, 0.09);

    border-radius: 21px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.guidelines-content-cards article:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 55px
        rgba(35, 80, 41, 0.08);
}

.guidelines-content-cards article > span {
    color: #75a07b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.guidelines-content-cards article div {
    margin-top: 35px;
}

.guidelines-content-cards h3 {
    margin: 0 0 12px;

    color: #214c2c;

    font-size: 19px;
}

.guidelines-content-cards p {
    margin: 0;

    color: #758179;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   ABSTRACT GUIDELINES
========================================================= */

.abstract-guidelines-page {
    background: #ffffff;
}

.abstract-guideline-layout {
    margin-top: 52px;

    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(400px, 1.2fr);

    gap: 70px;

    align-items: start;
}

.abstract-structure-card {
    padding: 30px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #f0f8f1,
            #ffffff
        );

    border:
        1px solid
        rgba(61, 126, 67, 0.13);

    box-shadow:
        0 25px 65px
        rgba(35, 82, 42, 0.07);
}

.abstract-structure-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        #dce9dd;

    color: #6f9374;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.abstract-structure-list {
    padding-top: 22px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.abstract-structure-list > div {
    min-height: 54px;

    padding: 10px 12px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid
        rgba(50, 108, 57, 0.06);
}

.abstract-structure-list span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f3e7;

    color: #428a4d;

    font-size: 8px;
    font-weight: 700;
}

.abstract-structure-list strong {
    color: #3a5e41;

    font-size: 12px;
}

.abstract-guideline-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.guideline-detail {
    min-height: 190px;

    padding: 26px;

    border:
        1px solid
        rgba(45, 101, 52, 0.09);

    border-radius: 20px;

    background: #fbfdfb;
}

.guideline-detail > span {
    color: #71a078;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.guideline-detail p {
    margin: 30px 0 0;

    color: #718078;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   PRESENTATION GUIDELINES
========================================================= */

.presentation-guidelines {
    background:
        linear-gradient(
            180deg,
            #f5faf4,
            #fbfdfb
        );
}

.presentation-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 1fr)
        minmax(350px, 0.85fr);

    gap: 90px;

    align-items: center;
}

.presentation-content h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.presentation-content h2 span {
    display: block;

    color: #55a85b;
}

.presentation-content > p {
    max-width: 520px;

    margin: 0;

    color: #707d74;

    font-size: 16px;

    line-height: 1.8;
}

.presentation-points {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.presentation-points > div {
    display: flex;

    align-items: center;

    gap: 12px;
}

.presentation-points span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f3e7;

    color: #398646;

    font-size: 10px;
    font-weight: 700;
}

.presentation-points strong {
    color: #365b3e;

    font-size: 13px;
}

.presentation-card {
    position: relative;

    padding: 25px;

    min-height: 390px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e7f2e8
        );

    border:
        1px solid
        rgba(60, 126, 67, 0.13);

    box-shadow:
        0 30px 70px
        rgba(35, 82, 42, 0.09);

    transform:
        perspective(900px)
        rotateY(-4deg);
}

.presentation-card-header {
    display: flex;

    justify-content: space-between;

    color: #6d9272;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.presentation-screen {
    height: 240px;

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        radial-gradient(
            circle,
            #eef8ef,
            #dcebdd
        );

    border:
        1px solid
        rgba(61, 128, 68, 0.09);
}

.presentation-circle {
    width: 90px;
    height: 90px;

    margin-bottom: 22px;

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.18);

    box-shadow:
        0 0 0 18px
        rgba(83, 163, 90, 0.05),
        0 0 0 38px
        rgba(83, 163, 90, 0.035);
}

.presentation-line {
    width: 155px;
    height: 5px;

    margin-bottom: 8px;

    border-radius: 10px;

    background: #c9dfcb;
}

.presentation-line.medium {
    width: 120px;
}

.presentation-line.short {
    width: 80px;
}

.presentation-card-footer {
    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    color: #6e9173;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.presentation-card-footer strong {
    color: #315f38;
}


/* =========================================================
   POSTER GUIDELINES
========================================================= */

.poster-guidelines {
    background: #ffffff;
}

.poster-layout {
    display: grid;

    grid-template-columns:
        minmax(350px, 0.85fr)
        minmax(300px, 1.15fr);

    gap: 90px;

    align-items: center;
}

.poster-visual {
    display: flex;

    justify-content: center;
}

.poster-sheet {
    width: 390px;
    min-height: 450px;

    padding: 25px;

    border-radius: 6px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eef7ef
        );

    border:
        1px solid
        rgba(57, 121, 64, 0.13);

    box-shadow:
        0 30px 70px
        rgba(35, 82, 42, 0.09);

    transform:
        perspective(900px)
        rotateY(5deg);

    transition:
        transform 0.4s ease;
}

.poster-sheet:hover {
    transform:
        perspective(900px)
        rotateY(0deg)
        translateY(-5px);
}

.poster-sheet-header {
    display: flex;

    justify-content: space-between;

    color: #709377;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.poster-sheet-title {
    margin-top: 35px;

    padding: 15px;

    text-align: center;

    border-radius: 10px;

    background: #e4f1e5;

    color: #35613d;

    font-size: 11px;
    font-weight: 700;
}

.poster-sheet-columns {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        1fr 1.3fr 1fr;

    gap: 12px;
}

.poster-sheet-columns > div:first-child,
.poster-sheet-columns > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.poster-sheet-columns > div:first-child span,
.poster-sheet-columns > div:last-child span {
    height: 6px;

    border-radius: 10px;

    background: #d9e8da;
}

.poster-sheet-columns > div:first-child span:nth-child(2),
.poster-sheet-columns > div:last-child span:nth-child(2) {
    width: 80%;
}

.poster-sheet-columns > div:first-child span:nth-child(3),
.poster-sheet-columns > div:last-child span:nth-child(3) {
    width: 65%;
}

.poster-chart {
    height: 170px;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    gap: 8px;

    padding: 15px;

    border-radius: 12px;

    background: #e8f3e9;
}

.poster-chart div {
    width: 18px;

    border-radius: 5px 5px 0 0;

    background: #80b686;
}

.poster-chart div:nth-child(1) {
    height: 45px;
}

.poster-chart div:nth-child(2) {
    height: 80px;
}

.poster-chart div:nth-child(3) {
    height: 115px;
}

.poster-chart div:nth-child(4) {
    height: 65px;
}

.poster-sheet-footer {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 9px;
}

.poster-sheet-footer span {
    width: 90%;
    height: 5px;

    border-radius: 10px;

    background: #dbe9dc;
}

.poster-sheet-footer span:nth-child(2) {
    width: 75%;
}

.poster-sheet-footer span:nth-child(3) {
    width: 55%;
}

.poster-content h2 {
    margin: 18px 0 22px;

    color: #173f24;

    font-size: clamp(42px, 5vw, 67px);

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.poster-content h2 span {
    display: block;

    color: #55a85b;
}

.poster-content > p {
    max-width: 520px;

    margin: 0;

    color: #707d74;

    font-size: 16px;

    line-height: 1.8;
}

.poster-points {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.poster-points > div {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 50px;

    padding: 9px 13px;

    border:
        1px solid
        rgba(50, 108, 57, 0.08);

    border-radius: 12px;

    background: #fafdf9;
}

.poster-points span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f3e8;

    color: #4d9655;

    font-size: 8px;
    font-weight: 700;
}

.poster-points strong {
    color: #355a3c;

    font-size: 13px;
}


/* =========================================================
   CHECKLIST
========================================================= */

.guidelines-checklist {
    background:
        linear-gradient(
            180deg,
            #f5faf4,
            #fbfdfb
        );
}

.checklist-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;

    margin-top: 50px;
}

.checklist-grid > div {
    min-height: 80px;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    border:
        1px solid
        rgba(47, 104, 54, 0.09);

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.checklist-grid > div:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(35, 80, 41, 0.07);
}

.checklist-grid span {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f3e7;

    color: #428b4d;

    font-size: 8px;
    font-weight: 700;
}

.checklist-grid strong {
    color: #385d40;

    font-size: 12px;
}


/* =========================================================
   IMPORTANT NOTES
========================================================= */

.guidelines-notes {
    background: #ffffff;
}

.guidelines-notes-box {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.75fr)
        minmax(350px, 1.25fr);

    gap: 70px;

    padding: 55px 60px;

    border-radius: 27px;

    background:
        linear-gradient(
            135deg,
            #f0f8f1,
            #fbfdfb
        );

    border:
        1px solid
        rgba(61, 126, 67, 0.11);
}

.guidelines-notes-box h2 {
    margin: 15px 0 0;

    color: #1a4626;

    font-size: clamp(30px, 3vw, 44px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.guidelines-notes-box > div:last-child {
    padding-left: 30px;

    border-left:
        2px solid
        #6aaa71;
}

.guidelines-notes-box p {
    margin: 0 0 15px;

    color: #6f7d74;

    font-size: 14px;

    line-height: 1.75;
}

.guidelines-notes-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.guidelines-final {
    padding-top: 0;

    background: #ffffff;
}

.guidelines-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}

.guidelines-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}

.guidelines-final-box > div {
    position: relative;

    z-index: 2;
}

.guidelines-final-box h2 {
    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.02;

    letter-spacing: -0.045em;
}

.guidelines-final-box h2 span {
    color: #55a85b;
}

.guidelines-final-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 16px;

    line-height: 1.65;
}

.guidelines-final-actions {
    position: relative;

    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}

.guidelines-final-actions .primary-button,
.guidelines-final-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .guidelines-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .guidelines-hero {
        min-height: auto;
    }

    .guidelines-hero-visual {
        min-height: 440px;
    }

    .guidelines-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guidelines-section-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .guidelines-section-intro {
        position: static;
    }

    .presentation-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .poster-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .abstract-guideline-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .guidelines-notes-box {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


@media (max-width: 750px) {

    .guidelines-hero-content h1 {
        font-size: 48px;
    }

    .guidelines-hero-content p {
        font-size: 15px;
    }

    .guidelines-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .guidelines-hero-actions a {
        justify-content: center;
    }

    .guideline-document {
        width: 275px;
        height: 380px;
    }

    .guidelines-nav-grid {
        grid-template-columns: 1fr;
    }

    .guidelines-content-cards {
        grid-template-columns: 1fr;
    }

    .abstract-guideline-details {
        grid-template-columns: 1fr;
    }

    .poster-sheet {
        width: 100%;
        max-width: 390px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .guidelines-notes-box {
        padding: 40px 28px;
    }

    .guidelines-notes-box > div:last-child {
        padding-left: 20px;
    }

    .guidelines-final-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .guidelines-final-box h2 {
        font-size: 38px;
    }

}


@media (max-width: 480px) {

    .guideline-document {
        width: 245px;
        height: 340px;

        padding: 22px;
    }

    .guideline-document-title {
        margin-top: 45px;
    }

    .guideline-document-title strong {
        font-size: 25px;
    }

    .presentation-card {
        min-height: 330px;

        padding: 20px;
    }

    .presentation-screen {
        height: 200px;
    }

    .poster-sheet {
        min-height: 350px;

        padding: 20px;
    }

    .poster-chart {
        height: 135px;
    }

    .guidelines-final-actions {
        width: 100%;

        flex-direction: column;
    }

    .guidelines-final-actions a {
        justify-content: center;
    }

}
/* =========================================================
   FAQ PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   FAQ HERO
========================================================= */

.faq-hero {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(91, 169, 97, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}

.faq-hero-bg {
    position: absolute;
    inset: 0;

    overflow: hidden;
    pointer-events: none;
}

.faq-glow {
    position: absolute;
    border-radius: 50%;
}

.faq-glow-one {
    width: 650px;
    height: 650px;

    right: -250px;
    top: -200px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}

.faq-glow-two {
    width: 500px;
    height: 500px;

    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}

.faq-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(65, 132, 73, 0.07);
}

.faq-orbit-one {
    width: 730px;
    height: 730px;

    right: -270px;
    top: 50%;

    transform: translateY(-50%);
}

.faq-orbit-two {
    width: 490px;
    height: 490px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);
}

.faq-hero-container {
    position: relative;
    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}

.faq-hero-content {
    max-width: 720px;
}

.faq-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.97;

    letter-spacing: -0.055em;
}

.faq-hero-content h1 span {
    display: block;

    color: #55a85b;
}

.faq-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;

    line-height: 1.75;
}

.faq-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   FAQ ORBIT VISUAL
========================================================= */

.faq-hero-visual {
    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.faq-question-orbit {
    position: relative;

    width: 430px;
    height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;

    animation:
        faqFloat 7s ease-in-out infinite;
}

.faq-question-core {
    position: relative;
    z-index: 5;

    width: 170px;
    height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #eaf6eb 75%
        );

    border:
        1px solid
        rgba(62, 132, 69, 0.15);

    box-shadow:
        0 30px 70px
        rgba(38, 87, 44, 0.12),
        inset 0 0 35px
        rgba(84, 163, 91, 0.07);
}

.faq-question-core span {
    color: #709276;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.faq-question-core strong {
    margin-top: 4px;

    color: #3f9149;

    font-size: 65px;

    line-height: 0.9;

    font-weight: 500;

    letter-spacing: -0.08em;
}

.faq-question-core small {
    margin-top: 8px;

    color: #709276;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.faq-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.12);
}

.faq-ring-one {
    width: 245px;
    height: 245px;

    animation:
        faqRotate 18s linear infinite;
}

.faq-ring-two {
    width: 345px;
    height: 345px;

    border-style: dashed;

    animation:
        faqRotateReverse 25s linear infinite;
}

.faq-ring-three {
    width: 430px;
    height: 430px;

    border-color:
        rgba(67, 137, 74, 0.07);

    animation:
        faqRotate 34s linear infinite;
}

.faq-dot {
    position: absolute;
    z-index: 8;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #59a960;

    box-shadow:
        0 0 0 7px
        rgba(89, 169, 96, 0.10),
        0 0 25px
        rgba(89, 169, 96, 0.24);
}

.faq-dot-one {
    top: 49px;
    right: 82px;
}

.faq-dot-two {
    left: 40px;
    bottom: 76px;
}

.faq-dot-three {
    right: 1px;
    top: 205px;
}

@keyframes faqFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes faqRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes faqRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}

.faq-category {
    margin-bottom: 80px;
}

.faq-category:last-of-type {
    margin-bottom: 0;
}

.faq-category-heading {
    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 20px;

    align-items: start;

    margin-bottom: 28px;
}

.faq-category-heading > span {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e5f3e7;

    color: #428b4d;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.faq-category-heading small {
    display: block;

    margin-bottom: 7px;

    color: #70a077;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.faq-category-heading h2 {
    margin: 0;

    color: #1a4526;

    font-size: clamp(29px, 3vw, 42px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}


/* =========================================================
   ACCORDION
========================================================= */

.faq-accordion {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.faq-accordion details {
    overflow: hidden;

    border:
        1px solid
        rgba(44, 99, 51, 0.09);

    border-radius: 17px;

    background: #ffffff;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-accordion details:hover {
    border-color:
        rgba(70, 143, 77, 0.17);
}

.faq-accordion details[open] {
    border-color:
        rgba(70, 143, 77, 0.20);

    box-shadow:
        0 16px 40px
        rgba(35, 80, 41, 0.06);
}

.faq-accordion summary {
    position: relative;

    min-height: 72px;

    padding: 22px 65px 22px 25px;

    display: flex;

    align-items: center;

    color: #31573a;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;

    cursor: pointer;

    list-style: none;

    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::marker {
    display: none;
}

.faq-accordion details[open] summary {
    color: #285f32;

    background:
        linear-gradient(
            90deg,
            #f5faf5,
            #ffffff
        );
}

.faq-plus {
    position: absolute;

    right: 22px;
    top: 50%;

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background: #e8f4e9;

    color: #4b9654;

    font-size: 18px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.faq-accordion details[open] .faq-plus {
    transform:
        translateY(-50%)
        rotate(45deg);

    background: #dceede;

    color: #347b3f;
}

.faq-answer {
    padding:
        0 65px 25px 25px;

    background: #ffffff;
}

.faq-answer p {
    max-width: 850px;

    margin: 0;

    color: #718078;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   FAQ CONTACT BOX
========================================================= */

.faq-contact-box {
    position: relative;

    overflow: hidden;

    margin-top: 30px;

    padding: 60px 65px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}

.faq-contact-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}

.faq-contact-box > div {
    position: relative;
    z-index: 2;
}

.faq-contact-box h2 {
    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1;

    letter-spacing: -0.045em;
}

.faq-contact-box h2 span {
    color: #55a85b;
}

.faq-contact-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 15px;

    line-height: 1.7;
}

.faq-contact-box > .primary-button {
    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .faq-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .faq-hero {
        min-height: auto;
    }

    .faq-hero-visual {
        min-height: 440px;
    }

}


@media (max-width: 750px) {

    .faq-hero-content h1 {
        font-size: 48px;
    }

    .faq-hero-content p {
        font-size: 15px;
    }

    .faq-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .faq-hero-actions a {
        justify-content: center;
    }

    .faq-question-orbit {
        width: 300px;
        height: 300px;
    }

    .faq-question-core {
        width: 125px;
        height: 125px;
    }

    .faq-question-core strong {
        font-size: 48px;
    }

    .faq-ring-one {
        width: 175px;
        height: 175px;
    }

    .faq-ring-two {
        width: 240px;
        height: 240px;
    }

    .faq-ring-three {
        width: 300px;
        height: 300px;
    }

    .faq-dot-one {
        top: 38px;
        right: 55px;
    }

    .faq-dot-two {
        left: 20px;
        bottom: 55px;
    }

    .faq-dot-three {
        right: -5px;
        top: 145px;
    }

    .faq-category {
        margin-bottom: 60px;
    }

    .faq-category-heading {
        grid-template-columns: 50px 1fr;

        gap: 15px;
    }

    .faq-category-heading > span {
        width: 43px;
        height: 43px;

        border-radius: 13px;
    }

    .faq-category-heading h2 {
        font-size: 28px;
    }

    .faq-accordion summary {
        min-height: 66px;

        padding:
            19px 57px 19px 20px;

        font-size: 13px;
    }

    .faq-plus {
        right: 17px;

        width: 28px;
        height: 28px;
    }

    .faq-answer {
        padding:
            0 50px 22px 20px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    .faq-contact-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .faq-contact-box > .primary-button {
        width: 100%;

        justify-content: center;
    }

}


@media (max-width: 480px) {

    .faq-question-orbit {
        width: 260px;
        height: 260px;
    }

    .faq-question-core {
        width: 110px;
        height: 110px;
    }

    .faq-question-core strong {
        font-size: 42px;
    }

    .faq-ring-one {
        width: 150px;
        height: 150px;
    }

    .faq-ring-two {
        width: 205px;
        height: 205px;
    }

    .faq-ring-three {
        width: 260px;
        height: 260px;
    }

    .faq-category-heading {
        grid-template-columns: 1fr;
    }

    .faq-category-heading > span {
        width: 40px;
        height: 40px;
    }

    .faq-accordion summary {
        padding-right: 52px;
    }

    .faq-contact-box h2 {
        font-size: 38px;
    }

}
/* =========================================================
   TERMS & POLICIES PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   TERMS HERO
========================================================= */

.terms-hero {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 42%,
            rgba(91, 169, 97, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}

.terms-hero-bg {
    position: absolute;
    inset: 0;

    overflow: hidden;
    pointer-events: none;
}

.terms-glow {
    position: absolute;
    border-radius: 50%;
}

.terms-glow-one {
    width: 650px;
    height: 650px;

    right: -250px;
    top: -200px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}

.terms-glow-two {
    width: 500px;
    height: 500px;

    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}

.terms-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(65, 132, 73, 0.07);
}

.terms-orbit-one {
    width: 730px;
    height: 730px;

    right: -270px;
    top: 50%;

    transform: translateY(-50%);
}

.terms-orbit-two {
    width: 490px;
    height: 490px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);
}

.terms-hero-container {
    position: relative;
    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}

.terms-hero-content {
    max-width: 720px;
}

.terms-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(48px, 5.8vw, 80px);

    line-height: 0.97;

    letter-spacing: -0.055em;
}

.terms-hero-content h1 span {
    display: block;

    color: #55a85b;
}

.terms-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;

    line-height: 1.75;
}

.terms-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   TERMS DOCUMENT VISUAL
========================================================= */

.terms-hero-visual {
    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.terms-document {
    position: relative;

    width: 330px;
    height: 440px;

    padding: 28px 30px;

    display: flex;
    flex-direction: column;

    border-radius:
        7px 18px 18px 7px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf7ee
        );

    border:
        1px solid
        rgba(59, 125, 66, 0.14);

    box-shadow:
        -20px 28px 55px
        rgba(31, 75, 37, 0.10),
        0 35px 80px
        rgba(31, 75, 37, 0.11);

    transform:
        perspective(1000px)
        rotateY(-9deg)
        rotateX(2deg);

    animation:
        termsDocumentFloat 6s ease-in-out infinite;
}

.terms-document::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 7px;

    border-radius:
        7px 0 0 7px;

    background:
        linear-gradient(
            180deg,
            #31793e,
            #71b877
        );
}

.terms-document::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid
        rgba(69, 141, 76, 0.10);

    border-radius: 50%;
}

.terms-document-header {
    display: flex;

    justify-content: space-between;

    color: #6d9272;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.terms-document-icon {
    width: 64px;
    height: 64px;

    margin: 55px auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #e4f2e6;

    border:
        1px solid
        rgba(63, 133, 70, 0.12);

    color: #3f8c49;

    font-size: 28px;

    box-shadow:
        0 15px 35px
        rgba(43, 96, 50, 0.08);
}

.terms-document-title {
    text-align: center;
}

.terms-document-title span {
    display: block;

    margin-bottom: 6px;

    color: #769378;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.terms-document-title strong {
    display: block;

    color: #285d31;

    font-size: 28px;

    line-height: 0.95;

    letter-spacing: -0.05em;
}

.terms-document-lines {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 9px;
}

.terms-document-lines div {
    height: 5px;

    border-radius: 10px;

    background: #dcebdd;
}

.terms-document-lines div:nth-child(1) {
    width: 94%;
}

.terms-document-lines div:nth-child(2) {
    width: 79%;
}

.terms-document-lines div:nth-child(3) {
    width: 88%;
}

.terms-document-lines div:nth-child(4) {
    width: 62%;
}

.terms-document-footer {
    margin-top: auto;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        #dce8dd;

    color: #769278;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

@keyframes termsDocumentFloat {

    0%,
    100% {
        transform:
            perspective(1000px)
            rotateY(-9deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(-6deg)
            rotateX(2deg)
            translateY(-12px);
    }

}


/* =========================================================
   POLICY NAVIGATION
========================================================= */

.terms-nav {
    padding-top: 65px;

    background: #ffffff;
}

.terms-nav-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 10px;
}

.terms-nav-grid a {
    min-height: 135px;

    padding: 21px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    text-decoration: none;

    border:
        1px solid
        rgba(45, 101, 52, 0.09);

    border-radius: 17px;

    background: #fafdf9;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.terms-nav-grid a:hover {
    transform: translateY(-6px);

    background: #f1f8f1;

    border-color:
        rgba(70, 143, 77, 0.19);

    box-shadow:
        0 18px 40px
        rgba(36, 82, 42, 0.08);
}

.terms-nav-grid a span {
    color: #75a07b;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.terms-nav-grid a strong {
    color: #315a39;

    font-size: 14px;
}

.terms-nav-grid a small {
    color: #819087;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   TERMS CONTENT
========================================================= */

.terms-content {
    background:
        linear-gradient(
            180deg,
            #f6faf5,
            #fbfdfb
        );
}

.terms-policy-section {
    position: relative;

    display: grid;

    grid-template-columns: 75px 1fr;

    gap: 30px;

    padding: 50px 0;

    border-bottom:
        1px solid
        rgba(49, 104, 56, 0.10);
}

.terms-policy-section:first-child {
    padding-top: 0;
}

.terms-policy-number {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e5f3e7;

    color: #428b4d;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.terms-policy-body {
    max-width: 900px;
}

.terms-policy-body h2 {
    margin: 15px 0 20px;

    color: #1a4526;

    font-size: clamp(29px, 3vw, 42px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.terms-policy-body > p {
    max-width: 850px;

    margin: 0 0 22px;

    color: #6f7d74;

    font-size: 14px;

    line-height: 1.85;
}

.terms-policy-body ul {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 12px;

    list-style: none;
}

.terms-policy-body li {
    position: relative;

    padding-left: 28px;

    color: #53695a;

    font-size: 13px;

    line-height: 1.7;
}

.terms-policy-body li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f2e6;

    color: #3e8c49;

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   REFUND POLICY
========================================================= */

.refund-policy {
    padding-top: 55px;
}

.refund-notice {
    margin: 0 0 25px;

    padding: 20px 22px;

    border-left:
        3px solid
        #5ba362;

    border-radius:
        0 14px 14px 0;

    background:
        #eef8ef;
}

.refund-notice strong {
    display: block;

    margin-bottom: 7px;

    color: #3c7f45;

    font-size: 12px;
}

.refund-notice p {
    margin: 0;

    color: #65756a;

    font-size: 12px;

    line-height: 1.7;
}

.terms-important-note {
    margin-top: 25px !important;

    padding: 18px 20px;

    border-radius: 13px;

    background: #ffffff;

    border:
        1px solid
        rgba(55, 112, 62, 0.10);
}

.terms-important-note strong {
    color: #466c4d;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.terms-final {
    background: #ffffff;
}

.terms-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}

.terms-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}

.terms-final-box > div {
    position: relative;
    z-index: 2;
}

.terms-final-box h2 {
    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.02;

    letter-spacing: -0.045em;
}

.terms-final-box h2 span {
    color: #55a85b;
}

.terms-final-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 16px;

    line-height: 1.65;
}

.terms-final-actions {
    position: relative;
    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}

.terms-final-actions .primary-button,
.terms-final-actions .secondary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .terms-nav-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 1100px) {

    .terms-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .terms-hero {
        min-height: auto;
    }

    .terms-hero-visual {
        min-height: 440px;
    }

}


@media (max-width: 750px) {

    .terms-hero-content h1 {
        font-size: 48px;
    }

    .terms-hero-content p {
        font-size: 15px;
    }

    .terms-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .terms-hero-actions a {
        justify-content: center;
    }

    .terms-document {
        width: 275px;
        height: 380px;
    }

    .terms-nav-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .terms-policy-section {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 42px 0;
    }

    .terms-policy-number {
        width: 44px;
        height: 44px;

        border-radius: 13px;
    }

    .terms-policy-body h2 {
        font-size: 30px;
    }

    .terms-final-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .terms-final-box h2 {
        font-size: 38px;
    }

}


@media (max-width: 480px) {

    .terms-document {
        width: 245px;
        height: 340px;

        padding: 22px;
    }

    .terms-document-icon {
        width: 54px;
        height: 54px;

        margin-top: 40px;

        font-size: 23px;
    }

    .terms-document-title strong {
        font-size: 24px;
    }

    .terms-nav-grid {
        grid-template-columns: 1fr;
    }

    .terms-policy-body > p {
        font-size: 13px;
    }

    .terms-policy-body li {
        font-size: 12px;
    }

    .terms-final-actions {
        width: 100%;

        flex-direction: column;
    }

    .terms-final-actions a {
        justify-content: center;
    }

}
/* =========================================================
   SPEAKERS — TENTATIVE PROGRAM PDF CARD
========================================================= */

.speakers-program-card {
    position: relative;

    width: 100%;
    max-width: 390px;

    padding: 30px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(91, 169, 97, 0.16),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #eef8ef
        );

    border:
        1px solid
        rgba(55, 120, 63, 0.13);

    box-shadow:
        0 28px 70px
        rgba(35, 82, 42, 0.10);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.speakers-program-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 35px 85px
        rgba(35, 82, 42, 0.14);
}


.speakers-program-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border:
        1px solid
        rgba(73, 143, 80, 0.10);

    border-radius: 50%;

    pointer-events: none;
}


/* TOP */

.speakers-program-card-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.speakers-program-label {
    color: #6f9674;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.speakers-program-number {
    color: #78a17c;

    font-size: 9px;
    font-weight: 700;
}


/* PDF ICON */

.speakers-program-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius:
        8px 8px 12px 12px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e1f0e3
        );

    border:
        1px solid
        rgba(54, 119, 61, 0.12);

    color: #428a4c;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.08em;

    box-shadow:
        0 12px 28px
        rgba(38, 87, 44, 0.08);
}

.speakers-program-icon::before {
    content: "";

    position: absolute;

    top: -1px;
    right: -1px;

    width: 16px;
    height: 16px;

    border-left:
        1px solid
        rgba(54, 119, 61, 0.10);

    border-bottom:
        1px solid
        rgba(54, 119, 61, 0.10);

    background: #f5fbf5;

    clip-path:
        polygon(
            0 0,
            100% 100%,
            0 100%
        );
}


/* CONTENT */

.speakers-program-content {
    position: relative;
    z-index: 2;
}

.speakers-program-content h3 {
    margin: 0 0 12px;

    color: #234f2c;

    font-size: 25px;

    line-height: 1.05;

    letter-spacing: -0.035em;
}

.speakers-program-content p {
    margin: 0;

    color: #718078;

    font-size: 12px;

    line-height: 1.75;
}


/* ACTIONS */

.speakers-program-actions {
    position: relative;
    z-index: 3;

    margin-top: 27px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.speakers-program-view,
.speakers-program-download {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding: 10px 15px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.speakers-program-view {
    background:
        linear-gradient(
            135deg,
            #408b49,
            #62ad69
        );

    color: #ffffff;

    box-shadow:
        0 10px 22px
        rgba(63, 141, 73, 0.18);
}

.speakers-program-view:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 28px
        rgba(63, 141, 73, 0.25);
}

.speakers-program-download {
    background: #ffffff;

    color: #3e7246;

    border:
        1px solid
        rgba(58, 121, 65, 0.12);
}

.speakers-program-download:hover {
    transform: translateY(-2px);

    background: #f1f8f2;
}


/* MOBILE */

@media (max-width: 750px) {

    .speakers-program-card {
        max-width: 100%;

        padding: 25px;
    }

}

@media (max-width: 480px) {

    .speakers-program-actions {
        flex-direction: column;
    }

    .speakers-program-view,
    .speakers-program-download {
        width: 100%;
    }

}
/* =========================================================
   SPONSORSHIP GUIDELINES PAGE
   International Plant Science Conference 2026
========================================================= */


/* =========================================================
   SPONSORSHIP HERO
========================================================= */

.sponsor-hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 38%,
            rgba(91, 169, 97, 0.16),
            transparent 33%
        ),
        radial-gradient(
            circle at 10% 88%,
            rgba(178, 215, 183, 0.15),
            transparent 35%
        ),
        #f9fcf8;
}

.sponsor-hero-bg {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.sponsor-glow {
    position: absolute;

    border-radius: 50%;
}

.sponsor-glow-one {
    width: 650px;
    height: 650px;

    right: -250px;
    top: -210px;

    background:
        radial-gradient(
            circle,
            rgba(89, 166, 96, 0.14),
            transparent 70%
        );
}

.sponsor-glow-two {
    width: 520px;
    height: 520px;

    left: -280px;
    bottom: -280px;

    background:
        radial-gradient(
            circle,
            rgba(73, 143, 80, 0.10),
            transparent 70%
        );
}

.sponsor-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(65, 132, 73, 0.07);
}

.sponsor-orbit-one {
    width: 730px;
    height: 730px;

    right: -270px;
    top: 50%;

    transform: translateY(-50%);
}

.sponsor-orbit-two {
    width: 490px;
    height: 490px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);
}

.sponsor-hero-container {
    position: relative;
    z-index: 2;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.78fr);

    align-items: center;

    gap: 70px;
}

.sponsor-hero-content {
    max-width: 720px;
}

.sponsor-hero-content h1 {
    margin: 20px 0 25px;

    color: #143c22;

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.97;

    letter-spacing: -0.055em;
}

.sponsor-hero-content h1 span {
    display: block;

    color: #55a85b;
}

.sponsor-hero-content p {
    max-width: 650px;

    margin: 0 0 34px;

    color: #68776d;

    font-size: 18px;

    line-height: 1.75;
}

.sponsor-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.sponsor-hero-visual {
    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.sponsor-network {
    position: relative;

    width: 430px;
    height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;

    animation:
        sponsorFloat 7s ease-in-out infinite;
}

.sponsor-network-core {
    position: relative;
    z-index: 5;

    width: 170px;
    height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #e9f5ea 75%
        );

    border:
        1px solid
        rgba(62, 132, 69, 0.15);

    box-shadow:
        0 30px 70px
        rgba(38, 87, 44, 0.12),
        inset 0 0 35px
        rgba(84, 163, 91, 0.07);
}

.sponsor-network-core span {
    color: #719477;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.sponsor-network-core strong {
    margin: 7px 0;

    color: #3f9149;

    font-size: 52px;

    line-height: 0.9;

    letter-spacing: -0.07em;
}

.sponsor-network-core small {
    color: #719477;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.sponsor-network-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(67, 137, 74, 0.12);
}

.sponsor-network-ring.ring-one {
    width: 245px;
    height: 245px;

    animation:
        sponsorRotate 18s linear infinite;
}

.sponsor-network-ring.ring-two {
    width: 345px;
    height: 345px;

    border-style: dashed;

    animation:
        sponsorRotateReverse 26s linear infinite;
}

.sponsor-network-ring.ring-three {
    width: 430px;
    height: 430px;

    border-color:
        rgba(67, 137, 74, 0.07);

    animation:
        sponsorRotate 35s linear infinite;
}

.network-dot {
    position: absolute;
    z-index: 8;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #59a960;

    box-shadow:
        0 0 0 7px
        rgba(89, 169, 96, 0.10),
        0 0 25px
        rgba(89, 169, 96, 0.24);
}

.dot-one {
    top: 48px;
    right: 82px;
}

.dot-two {
    left: 39px;
    bottom: 77px;
}

.dot-three {
    right: 1px;
    top: 205px;
}

.dot-four {
    left: 96px;
    top: 17px;
}

@keyframes sponsorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes sponsorRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes sponsorRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   SPONSOR INTRO
========================================================= */

.sponsor-intro {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fbf8
        );
}

.sponsor-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-top: 55px;
}

.sponsor-benefit-card {
    position: relative;

    min-height: 300px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid
        rgba(48, 105, 55, 0.09);

    border-radius: 20px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.sponsor-benefit-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(70, 143, 77, 0.18);

    box-shadow:
        0 22px 50px
        rgba(35, 82, 42, 0.08);
}

.sponsor-benefit-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: #8aaa8d;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.sponsor-benefit-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 16px;

    background: #e8f4e9;

    color: #478e50;

    font-size: 23px;
}

.sponsor-benefit-card h3 {
    margin: 0 0 12px;

    color: #315a38;

    font-size: 19px;

    letter-spacing: -0.02em;
}

.sponsor-benefit-card p {
    margin: 0;

    color: #718078;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   OPPORTUNITIES
========================================================= */

.sponsor-opportunities {
    background:
        #f7faf7;
}

.sponsor-opportunity-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

    margin-top: 50px;
}

.sponsor-opportunity-card {
    position: relative;

    padding: 36px;

    overflow: hidden;

    border:
        1px solid
        rgba(47, 103, 54, 0.09);

    border-radius: 22px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sponsor-opportunity-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 55px
        rgba(35, 82, 42, 0.08);
}

.sponsor-opportunity-card.featured {
    border-color:
        rgba(73, 143, 80, 0.22);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(96, 170, 103, 0.10),
            transparent 35%
        ),
        #ffffff;
}

.opportunity-badge {
    position: absolute;

    top: 20px;
    right: 22px;

    padding: 6px 10px;

    border-radius: 100px;

    background: #e5f3e7;

    color: #438a4d;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.opportunity-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.opportunity-top span {
    color: #7da481;

    font-size: 9px;
    font-weight: 700;
}

.opportunity-top strong {
    color: #79a07d;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.sponsor-opportunity-card h3 {
    margin: 0 0 13px;

    color: #234f2c;

    font-size: 27px;

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.sponsor-opportunity-card > p {
    margin: 0 0 25px;

    color: #718078;

    font-size: 12px;

    line-height: 1.8;
}

.sponsor-opportunity-card ul {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 11px;

    list-style: none;
}

.sponsor-opportunity-card li {
    position: relative;

    padding-left: 25px;

    color: #52685a;

    font-size: 11px;

    line-height: 1.6;
}

.sponsor-opportunity-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    width: 17px;
    height: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f3e8;

    color: #408b49;

    font-size: 7px;
    font-weight: 700;
}


/* =========================================================
   VISIBILITY
========================================================= */

.sponsor-visibility {
    background: #ffffff;
}

.sponsor-visibility-grid {
    display: grid;

    grid-template-columns:
        1fr 0.82fr;

    align-items: center;

    gap: 90px;
}

.sponsor-visibility-content h2 {
    max-width: 650px;

    margin: 17px 0 22px;

    color: #1b4826;

    font-size: clamp(38px, 4.3vw, 58px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.sponsor-visibility-content h2 span {
    color: #55a85b;
}

.sponsor-visibility-content > p {
    max-width: 630px;

    margin: 0 0 35px;

    color: #6e7c73;

    font-size: 14px;

    line-height: 1.8;
}

.sponsor-visibility-list {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.sponsor-visibility-list > div {
    display: grid;

    grid-template-columns: 35px 1fr;

    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    border-radius: 13px;

    background: #f6faf6;

    border:
        1px solid
        rgba(50, 108, 57, 0.07);
}

.sponsor-visibility-list span {
    color: #76a07b;

    font-size: 8px;
    font-weight: 700;
}

.sponsor-visibility-list strong {
    color: #46634c;

    font-size: 12px;
}


/* VISIBILITY CARD */

.sponsor-visibility-card {
    position: relative;

    min-height: 410px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(117, 186, 123, 0.20),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #edf8ee,
            #f9fcf9
        );

    border:
        1px solid
        rgba(61, 129, 68, 0.12);

    box-shadow:
        0 30px 65px
        rgba(37, 86, 44, 0.09);
}

.sponsor-visibility-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -150px;

    border:
        1px solid
        rgba(65, 132, 73, 0.10);

    border-radius: 50%;
}

.visibility-card-header {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    color: #719477;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.visibility-card-main {
    position: relative;
    z-index: 2;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.visibility-logo {
    width: 190px;
    height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #e2f1e4
        );

    border:
        1px solid
        rgba(60, 130, 67, 0.13);

    box-shadow:
        0 25px 55px
        rgba(39, 87, 45, 0.09);
}

.visibility-logo span {
    color: #7c9d81;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.visibility-logo strong {
    margin-top: 5px;

    color: #40894a;

    font-size: 29px;

    letter-spacing: -0.04em;
}

.visibility-card-main p {
    max-width: 280px;

    margin: 22px 0 0;

    color: #5f7464;

    font-size: 12px;

    line-height: 1.6;
}

.visibility-card-footer {
    position: relative;
    z-index: 2;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(65, 132, 73, 0.10);

    color: #78977c;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* =========================================================
   PARTNERSHIP PROCESS
========================================================= */

.sponsor-process {
    background:
        linear-gradient(
            180deg,
            #f6faf6,
            #fbfdfb
        );
}

.sponsor-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-top: 50px;
}

.sponsor-process-step {
    position: relative;

    padding: 30px;

    border-radius: 20px;

    background: #ffffff;

    border:
        1px solid
        rgba(47, 103, 54, 0.09);
}

.sponsor-process-step > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 28px;

    border-radius: 13px;

    background: #e6f3e7;

    color: #438b4d;

    font-size: 8px;
    font-weight: 700;
}

.sponsor-process-step h3 {
    margin: 0 0 11px;

    color: #315a38;

    font-size: 20px;
}

.sponsor-process-step p {
    margin: 0;

    color: #718078;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   GUIDELINES
========================================================= */

.sponsor-guidelines {
    background: #ffffff;
}

.sponsor-guidelines-box {
    padding: 60px 65px;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 70px;

    align-items: center;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(104, 177, 111, 0.17),
            transparent 35%
        ),
        #eff8f0;

    border:
        1px solid
        rgba(60, 127, 67, 0.11);
}

.sponsor-guidelines-box h2 {
    margin: 16px 0 20px;

    color: #1b4826;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.sponsor-guidelines-box h2 span {
    color: #55a85b;
}

.sponsor-guidelines-box > div > p {
    max-width: 530px;

    margin: 0;

    color: #6d7e72;

    font-size: 13px;

    line-height: 1.8;
}

.sponsor-guidelines-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.sponsor-guidelines-list > div {
    display: grid;

    grid-template-columns: 25px 1fr;

    gap: 12px;

    padding: 15px;

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid
        rgba(61, 127, 68, 0.08);
}

.sponsor-guidelines-list span {
    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dceede;

    color: #3d8647;

    font-size: 8px;
    font-weight: 700;
}

.sponsor-guidelines-list p {
    margin: 0;

    color: #617267;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   FINAL CTA
========================================================= */

.sponsor-final {
    background: #ffffff;
}

.sponsor-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 178, 116, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #edf8ee,
            #f8fcf8
        );

    border:
        1px solid
        rgba(68, 137, 75, 0.12);
}

.sponsor-final-box::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    bottom: -190px;

    border:
        1px solid
        rgba(68, 137, 75, 0.09);

    border-radius: 50%;
}

.sponsor-final-box > div {
    position: relative;
    z-index: 2;
}

.sponsor-final-box h2 {
    margin: 15px 0;

    color: #174326;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -0.045em;
}

.sponsor-final-box h2 span {
    color: #55a85b;
}

.sponsor-final-box p {
    max-width: 620px;

    margin: 0;

    color: #6e7e73;

    font-size: 15px;

    line-height: 1.7;
}

.sponsor-final-actions {
    position: relative;
    z-index: 3;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}

.sponsor-final-actions a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .sponsor-benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sponsor-process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 1100px) {

    .sponsor-hero-container {
        grid-template-columns: 1fr;

        gap: 20px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .sponsor-hero {
        min-height: auto;
    }

    .sponsor-hero-visual {
        min-height: 440px;
    }

    .sponsor-visibility-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .sponsor-guidelines-box {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


@media (max-width: 750px) {

    .sponsor-hero-content h1 {
        font-size: 48px;
    }

    .sponsor-hero-content p {
        font-size: 15px;
    }

    .sponsor-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .sponsor-hero-actions a {
        justify-content: center;
    }

    .sponsor-network {
        width: 300px;
        height: 300px;
    }

    .sponsor-network-core {
        width: 125px;
        height: 125px;
    }

    .sponsor-network-core strong {
        font-size: 40px;
    }

    .sponsor-network-ring.ring-one {
        width: 175px;
        height: 175px;
    }

    .sponsor-network-ring.ring-two {
        width: 240px;
        height: 240px;
    }

    .sponsor-network-ring.ring-three {
        width: 300px;
        height: 300px;
    }

    .sponsor-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-opportunity-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-process-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-opportunity-card {
        padding: 28px;
    }

    .sponsor-guidelines-box {
        padding: 40px 28px;
    }

    .sponsor-final-box {
        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
    }

    .sponsor-final-actions {
        width: 100%;

        flex-direction: column;
    }

    .sponsor-final-actions a {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .sponsor-network {
        width: 260px;
        height: 260px;
    }

    .sponsor-network-core {
        width: 110px;
        height: 110px;
    }

    .sponsor-network-core strong {
        font-size: 34px;
    }

    .sponsor-network-ring.ring-one {
        width: 150px;
        height: 150px;
    }

    .sponsor-network-ring.ring-two {
        width: 205px;
        height: 205px;
    }

    .sponsor-network-ring.ring-three {
        width: 260px;
        height: 260px;
    }

    .sponsor-visibility-card {
        min-height: 360px;

        padding: 24px;
    }

    .visibility-logo {
        width: 150px;
        height: 150px;
    }

    .visibility-logo strong {
        font-size: 24px;
    }

    .sponsor-guidelines-box h2 {
        font-size: 38px;
    }

    .sponsor-final-box h2 {
        font-size: 38px;
    }

}
/* =========================================================
   PREMIUM 3D LETTER-ROLL NAVIGATION
========================================================= */

.premium-nav-header {
    position: relative;
    z-index: 9999;

    width: 100%;

    padding: 18px 0;

    background: transparent;
}


/* MAIN SHELL */

.premium-nav-shell {
    width: min(1360px, calc(100% - 48px));

    min-height: 70px;

    margin: 0 auto;

    padding: 0 18px 0 24px;

    display: flex;

    align-items: center;

    gap: 28px;

    border:
        1px solid
        rgba(46, 103, 54, 0.10);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 14px 45px
        rgba(29, 75, 36, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* =========================================================
   LOGO
========================================================= */

.premium-site-logo {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    width: 180px;

    text-decoration: none;
}

.premium-site-logo img {
    display: block;

    width: auto;
    max-width: 165px;

    max-height: 48px;

    object-fit: contain;
}


/* =========================================================
   MAIN NAV
========================================================= */

.premium-main-nav {
    flex: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 4px;
}


/* =========================================================
   NAV LINK
========================================================= */

.premium-nav-link {
    position: relative;

    height: 42px;

    padding: 0 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;

    color: #294a31;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.01em;

    text-decoration: none;

    cursor: pointer;

    white-space: nowrap;
}


/* =========================================================
   LETTER ROLL WINDOW
========================================================= */

.nav-roll-text {
    position: relative;

    display: block;

    height: 17px;

    overflow: hidden;

    perspective: 500px;
}


.nav-roll-track {
    display: flex;

    flex-direction: column;

    height: 34px;

    transform:
        translateY(0);

    transition:
        transform 0.42s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}


/* WORD */

.nav-word {
    height: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform-origin: center center;

    backface-visibility: hidden;

    transition:
        transform 0.42s ease,
        opacity 0.42s ease;
}


/* HOVER ROLL */

.premium-nav-link:hover
.nav-roll-track {

    transform:
        translateY(-17px);

}


.premium-nav-link:hover
.nav-word:first-child {

    transform:
        rotateX(-90deg);

    opacity: 0;
}


.premium-nav-link:hover
.nav-word-copy {

    transform:
        rotateX(0deg);

}


/* ACTIVE */

.premium-nav-link.is-active {
    color: #3d8c47;
}


/* ACTIVE DOT */

.premium-nav-link.is-active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 1px;

    width: 4px;
    height: 4px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background: #4fa557;

    box-shadow:
        0 0 12px
        rgba(79, 165, 87, 0.55);
}


/* =========================================================
   PROGRAM DROPDOWN
========================================================= */

.premium-nav-dropdown {
    position: relative;

    height: 42px;

    display: flex;

    align-items: center;
}


.premium-nav-dropdown-trigger {

    gap: 7px;

    padding-right: 10px;
}


.nav-chevron {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    color: #729178;

    font-size: 10px;

    transition:
        transform 0.3s ease;

}


.premium-nav-dropdown:hover
.nav-chevron {

    transform:
        rotate(180deg);

}


/* =========================================================
   DROPDOWN PANEL
========================================================= */

.premium-dropdown-panel {

    position: absolute;

    top: calc(100% + 15px);

    left: 50%;

    width: 340px;

    padding: 9px;

    transform:
        translateX(-50%)
        translateY(8px)
        scale(0.97);

    transform-origin: top center;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    border:
        1px solid
        rgba(50, 109, 57, 0.11);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    box-shadow:
        0 25px 70px
        rgba(29, 75, 36, 0.14);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.3s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );

}


.premium-nav-dropdown:hover
.premium-dropdown-panel,

.premium-nav-dropdown.is-open
.premium-dropdown-panel {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0)
        scale(1);

}


/* DROPDOWN INNER */

.dropdown-panel-inner {
    padding: 14px;
}


/* HEADING */

.dropdown-heading {

    padding: 7px 10px 14px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(49, 108, 56, 0.08);

}


.dropdown-heading span {

    color: #83a088;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.16em;

}


.dropdown-heading strong {

    color: #214c2a;

    font-size: 17px;

    font-weight: 700;

}


/* DROPDOWN ITEMS */

.dropdown-item {

    min-height: 60px;

    padding: 10px;

    display: grid;

    grid-template-columns:
        27px 1fr 20px;

    align-items: center;

    gap: 10px;

    border-radius: 12px;

    color: inherit;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.dropdown-item:hover {

    background:
        #f0f8f1;

    transform:
        translateX(4px);

}


.dropdown-item-number {

    color: #8baa8e;

    font-size: 7px;

    font-weight: 700;

}


.dropdown-item-content {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.dropdown-item-content strong {

    color: #315c38;

    font-size: 11px;

}


.dropdown-item-content small {

    color: #8a998e;

    font-size: 8px;

}


.dropdown-arrow {

    color: #4c9655;

    font-size: 13px;

    transition:
        transform 0.25s ease;

}


.dropdown-item:hover
.dropdown-arrow {

    transform:
        translate(2px, -2px);

}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.premium-register-button {

    flex-shrink: 0;

    min-height: 44px;

    padding: 0 24px;
    min-width: 165px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #398b45,
            #62aa68
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 9px 24px
        rgba(59, 139, 69, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.premium-register-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(59, 139, 69, 0.28);

}


.register-arrow {

    font-size: 13px;

    transition:
        transform 0.25s ease;

}


.premium-register-button:hover
.register-arrow {

    transform:
        translate(2px, -2px);

}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.premium-mobile-toggle {

    display: none;

    width: 43px;
    height: 43px;

    padding: 0;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 6px;

    border:
        1px solid
        rgba(47, 105, 55, 0.12);

    border-radius: 12px;

    background: #ffffff;

    cursor: pointer;

}


.premium-mobile-toggle span {

    display: block;

    width: 18px;
    height: 1px;

    background: #315d38;

    transition:
        transform 0.3s ease;

}


.premium-mobile-toggle.is-open
span:first-child {

    transform:
        translateY(3.5px)
        rotate(45deg);

}


.premium-mobile-toggle.is-open
span:last-child {

    transform:
        translateY(-3.5px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.premium-mobile-menu {

    display: none;

    position: fixed;

    z-index: 9998;

    top: 105px;

    left: 24px;
    right: 24px;

    max-height:
        calc(100vh - 125px);

    overflow-y: auto;

    padding: 12px;

    border:
        1px solid
        rgba(47, 105, 55, 0.10);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 25px 70px
        rgba(29, 75, 36, 0.14);

}


.premium-mobile-menu.is-open {

    display: block;

}


.premium-mobile-menu-inner {

    display: flex;

    flex-direction: column;

}


.premium-mobile-menu-inner > a,
.mobile-program-trigger {

    width: 100%;

    min-height: 53px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 0;

    border-bottom:
        1px solid
        rgba(49, 108, 56, 0.07);

    background: transparent;

    color: #315a38;

    font-family: inherit;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    text-align: left;

}


.mobile-program-links {

    display: none;

    padding: 4px 10px 10px;

}


.mobile-program-links.is-open {

    display: flex;

    flex-direction: column;

}


.mobile-program-links a {

    padding: 12px 15px;

    color: #718178;

    font-size: 11px;

    text-decoration: none;

}


.mobile-program-links a:hover {

    color: #428c4c;

}


.mobile-register-button {

    margin-top: 12px;

    border-radius: 13px !important;

    justify-content: center !important;

    background:
        linear-gradient(
            135deg,
            #398b45,
            #62aa68
        ) !important;

    color: #ffffff !important;

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 1100px) {

    .premium-nav-shell {

        width:
            min(
                100% - 30px,
                900px
            );

    }

    .premium-main-nav {

        gap: 0;

    }

    .premium-nav-link {

        padding: 0 8px;

        font-size: 10px;

    }

    .premium-site-logo {

        width: 145px;

    }

    .premium-site-logo img {

        max-width: 140px;

    }

    .premium-register-button {

        padding: 0 13px;

    }

}


@media (max-width: 900px) {

    .premium-main-nav,
    .premium-register-button {

        display: none;

    }

    .premium-nav-shell {

        min-height: 64px;

        justify-content: space-between;

    }

    .premium-mobile-toggle {

        display: flex;

    }

    .premium-mobile-menu {

        display: none;

    }

    .premium-mobile-menu.is-open {

        display: block;

    }

}


@media (max-width: 500px) {

    .premium-nav-header {

        padding: 10px 0;

    }

    .premium-nav-shell {

        width:
            calc(100% - 20px);

        padding:
            0 10px 0 16px;

        border-radius: 17px;

    }

    .premium-site-logo {

        width: 130px;

    }

    .premium-site-logo img {

        max-width: 125px;

        max-height: 40px;

    }

    .premium-mobile-menu {

        top: 84px;

        left: 10px;
        right: 10px;

        border-radius: 18px;

    }

}
/* =========================================================
   INTERACTIVE RESEARCH MAP
   30 TOPICS + SUBTOPIC SYSTEM
========================================================= */

.research-map {
    position: relative;

    width: 100%;
    height: 720px;

    overflow: visible;

    perspective: 1400px;
}


/* =========================================================
   ORBIT RINGS
========================================================= */

.research-map-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(66, 143, 76, 0.12);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}


.orbit-large {
    width: 96%;
    height: 96%;
}


.orbit-medium {
    width: 72%;
    height: 72%;
}


.orbit-small {
    width: 47%;
    height: 47%;
}


/* subtle orbit glow */

.research-map-orbit::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    box-shadow:
        0 0 70px rgba(75, 157, 83, 0.035);

    pointer-events: none;
}


/* =========================================================
   SVG CONNECTION LAYER
========================================================= */

.research-map-lines {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    overflow: visible;

    pointer-events: none;
}


.research-main-lines line,
.research-sub-lines line {
    stroke: rgba(67, 142, 76, 0.16);

    stroke-width: 1;

    vector-effect: non-scaling-stroke;

    transition:
        stroke 0.35s ease,
        opacity 0.35s ease;
}


.research-sub-lines line {
    stroke: rgba(67, 142, 76, 0.28);

    stroke-dasharray: 4 5;

    opacity: 0;
}


.research-map.has-subtopics
.research-sub-lines line {
    opacity: 1;
}


/* =========================================================
   CENTER PLANT SCIENCE
========================================================= */

.research-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 145px;
    height: 145px;

    transform:
        translate(-50%, -50%);

    z-index: 20;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    border: 1px solid rgba(73, 145, 80, 0.18);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,1),
            rgba(247,252,247,0.98) 55%,
            rgba(233,244,234,0.92)
        );

    color: #1f5a2d;

    box-shadow:
        0 20px 55px rgba(47, 107, 54, 0.12),
        inset 0 0 25px rgba(77, 151, 83, 0.04);

    cursor: default;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.research-center::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px solid rgba(72, 147, 79, 0.10);

    border-radius: 50%;
}


.research-center::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: 17px;
    right: 27px;

    border-radius: 50%;

    background: #55a85e;

    box-shadow:
        0 0 16px rgba(85, 168, 94, 0.42);

    animation:
        researchPulse 2.8s ease-in-out infinite;
}


.research-center-small {
    position: relative;

    z-index: 2;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: #718a75;
}


.research-center strong {
    position: relative;

    z-index: 2;

    font-size: 20px;

    line-height: 1;

    letter-spacing: 0.02em;

    color: #236332;
}


@keyframes researchPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.75;
    }

    50% {
        transform: scale(1.45);

        opacity: 1;
    }

}


/* =========================================================
   30 MAIN TOPIC BUBBLES
========================================================= */

.research-topic {
    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 94px;
    height: 94px;

    padding: 12px;

    border:
        1px solid
        rgba(70, 143, 76, 0.16);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #397244;

    font-family: inherit;

    font-size: 9px;

    font-weight: 600;

    line-height: 1.25;

    text-align: center;

    cursor: pointer;

    box-shadow:
        0 14px 38px rgba(41, 96, 47, 0.08);

    transform:
        translate(-50%, -50%);

    transition:
        transform 0.38s
            cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}


/* tiny inner circle */

.research-topic::before {
    content: "";

    position: absolute;

    inset: 5px;

    border:
        1px solid
        rgba(70, 143, 76, 0.07);

    border-radius: 50%;

    pointer-events: none;
}


/* hover */

.research-topic:hover {
    z-index: 30;

    transform:
        translate(-50%, -50%)
        scale(1.12)
        translateZ(20px);

    background:
        rgba(249, 255, 250, 0.98);

    border-color:
        rgba(67, 145, 75, 0.34);

    color: #246331;

    box-shadow:
        0 20px 50px rgba(45, 110, 52, 0.15),
        0 0 30px rgba(79, 157, 84, 0.07);
}


/* selected */

.research-topic.is-active {
    z-index: 50;

    transform:
        translate(-50%, -50%)
        scale(1.16);

    background:
        linear-gradient(
            145deg,
            #f7fcf7,
            #e8f5e9
        );

    border-color:
        rgba(57, 139, 67, 0.48);

    color: #205d2c;

    box-shadow:
        0 22px 55px rgba(45, 111, 53, 0.18),
        0 0 0 8px rgba(76, 155, 82, 0.055);
}


/* =========================================================
   30 BUBBLE POSITIONS
   3 ORBITAL RINGS
========================================================= */


/* -------------------------
   RING 1 — INNER
-------------------------- */

.topic-01 {
    top: 25%;
    left: 50%;
}

.topic-02 {
    top: 31%;
    left: 68%;
}

.topic-03 {
    top: 50%;
    left: 76%;
}

.topic-04 {
    top: 69%;
    left: 68%;
}

.topic-05 {
    top: 75%;
    left: 50%;
}

.topic-06 {
    top: 69%;
    left: 32%;
}

.topic-07 {
    top: 50%;
    left: 24%;
}

.topic-08 {
    top: 31%;
    left: 32%;
}


/* -------------------------
   RING 2 — MIDDLE
-------------------------- */

.topic-09 {
    top: 14%;
    left: 38%;
}

.topic-10 {
    top: 14%;
    left: 62%;
}

.topic-11 {
    top: 24%;
    left: 82%;
}

.topic-12 {
    top: 40%;
    left: 89%;
}

.topic-13 {
    top: 60%;
    left: 89%;
}

.topic-14 {
    top: 76%;
    left: 82%;
}

.topic-15 {
    top: 86%;
    left: 62%;
}

.topic-16 {
    top: 86%;
    left: 38%;
}

.topic-17 {
    top: 76%;
    left: 18%;
}

.topic-18 {
    top: 60%;
    left: 11%;
}

.topic-19 {
    top: 40%;
    left: 11%;
}

.topic-20 {
    top: 24%;
    left: 18%;
}


/* -------------------------
   RING 3 — OUTER
-------------------------- */

.topic-21 {
    top: 7%;
    left: 27%;
}

.topic-22 {
    top: 7%;
    left: 50%;
}

.topic-23 {
    top: 7%;
    left: 73%;
}

.topic-24 {
    top: 22%;
    left: 93%;
}

.topic-25 {
    top: 42%;
    left: 97%;
}

.topic-26 {
    top: 63%;
    left: 97%;
}

.topic-27 {
    top: 83%;
    left: 90%;
}

.topic-28 {
    top: 94%;
    left: 73%;
}

.topic-29 {
    top: 94%;
    left: 27%;
}

.topic-30 {
    top: 83%;
    left: 10%;
}


/* =========================================================
   SUBTOPIC CONTAINER
========================================================= */

.research-subtopics {
    position: absolute;

    inset: 0;

    z-index: 40;

    pointer-events: none;
}


.research-subtopic {
    position: absolute;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 74px;
    height: 74px;

    padding: 9px;

    border:
        1px solid
        rgba(74, 151, 82, 0.22);

    border-radius: 50%;

    background:
        rgba(250, 255, 250, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #4b7952;

    font-size: 8px;

    font-weight: 600;

    line-height: 1.2;

    text-align: center;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.35);

    box-shadow:
        0 14px 35px
        rgba(49, 108, 56, 0.10);

    pointer-events: auto;

    animation:
        researchSubtopicIn
        0.55s
        cubic-bezier(0.16, 1, 0.3, 1)
        forwards;
}


@keyframes researchSubtopicIn {

    0% {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(0.35);
    }

    70% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.06);
    }

    100% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


/* =========================================================
   MAP STATUS
========================================================= */

.research-map-status {
    position: absolute;

    left: 50%;
    bottom: 2%;

    z-index: 60;

    display: flex;

    align-items: center;

    gap: 7px;

    transform:
        translateX(-50%);

    padding:
        7px 12px;

    border:
        1px solid
        rgba(61, 132, 69, 0.10);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #78907c;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.03em;

    white-space: nowrap;
}


.research-map-status-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #4da156;

    box-shadow:
        0 0 8px
        rgba(77, 161, 86, 0.45);
}


/* =========================================================
   ACTIVE MAP STATE
========================================================= */

.research-map.has-subtopics
.research-map-status-dot {
    animation:
        researchPulse 1.5s ease-in-out infinite;
}


.research-map.has-subtopics
.research-map-status-text {
    color: #4a7f51;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .research-map {
        height: 650px;
    }

    .research-topic {
        width: 82px;
        height: 82px;

        font-size: 8px;
    }

    .research-center {
        width: 130px;
        height: 130px;
    }

    .research-center strong {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .research-map {
        height: 650px;

        margin-top: 20px;
    }

    .research-topic {
        width: 68px;
        height: 68px;

        padding: 8px;

        font-size: 7px;
    }

    .research-center {
        width: 112px;
        height: 112px;
    }

    .research-center strong {
        font-size: 16px;
    }

    .research-center-small {
        font-size: 6px;
    }

    .research-map-orbit {
        opacity: 0.65;
    }

    .research-subtopic {
        width: 58px;
        height: 58px;

        font-size: 6.5px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .research-map {
        height: 560px;
    }

    .research-topic {
        width: 59px;
        height: 59px;

        padding: 6px;

        font-size: 6px;
    }

    .research-center {
        width: 96px;
        height: 96px;
    }

    .research-center strong {
        font-size: 14px;
    }

    .research-center-small {
        font-size: 5px;
    }

    .research-subtopic {
        width: 52px;
        height: 52px;

        padding: 6px;

        font-size: 5.5px;
    }

    .research-map-status {
        bottom: 0;

        font-size: 7px;
    }

}


/* =========================================================
   REDUCE MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .research-center::after,
    .research-subtopic,
    .research-map-status-dot {
        animation: none !important;
    }

    .research-topic,
    .research-center {
        transition: none !important;
    }

}
/* =========================================================
   RESEARCH MAP — CENTERED BELOW HERO CONTENT
========================================================= */

.research-hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}


/* LEFT / TEXT CONTENT */

.research-hero-content {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}


/* RESEARCH VISUAL */

.research-hero-visual {
    width: 100% !important;
    max-width: 1250px !important;

    margin: 55px auto 0 !important;

    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    position: relative !important;

    grid-column: 1 / -1 !important;
}


/* MAP ITSELF */

.research-map {
    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    height: 720px !important;
}


/* KEEP CENTER REALLY CENTER */

.research-center {
    left: 50% !important;
    top: 50% !important;
}


/* =========================================================
   REMOVE OLD RIGHT-COLUMN FEEL
========================================================= */

.research-hero-container > .research-hero-visual {
    align-self: center !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1201px) {

    .research-hero-visual {
        min-height: 720px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .research-hero-visual {
        margin-top: 45px !important;
    }

    .research-map {
        max-width: 1000px !important;
        height: 650px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .research-hero-visual {
        margin-top: 35px !important;
    }

    .research-map {
        width: 100% !important;
        height: 650px !important;
    }

}
/* =========================================================
   RESEARCH MAP — INITIAL LOAD ANIMATION
========================================================= */

.research-map {
    opacity: 0;
    animation: researchMapReveal 0.9s ease-out 0.15s forwards;
}

.research-center {
    opacity: 0;
    animation: researchCenterReveal 0.7s ease-out 0.55s forwards;
}

.research-topic {
    opacity: 0;
    animation: researchBubbleReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* stagger the 30 bubbles */

.topic-01 { animation-delay: 0.20s; }
.topic-02 { animation-delay: 0.24s; }
.topic-03 { animation-delay: 0.28s; }
.topic-04 { animation-delay: 0.32s; }
.topic-05 { animation-delay: 0.36s; }
.topic-06 { animation-delay: 0.40s; }
.topic-07 { animation-delay: 0.44s; }
.topic-08 { animation-delay: 0.48s; }

.topic-09 { animation-delay: 0.52s; }
.topic-10 { animation-delay: 0.56s; }
.topic-11 { animation-delay: 0.60s; }
.topic-12 { animation-delay: 0.64s; }
.topic-13 { animation-delay: 0.68s; }
.topic-14 { animation-delay: 0.72s; }
.topic-15 { animation-delay: 0.76s; }
.topic-16 { animation-delay: 0.80s; }

.topic-17 { animation-delay: 0.84s; }
.topic-18 { animation-delay: 0.88s; }
.topic-19 { animation-delay: 0.92s; }
.topic-20 { animation-delay: 0.96s; }
.topic-21 { animation-delay: 1.00s; }
.topic-22 { animation-delay: 1.04s; }
.topic-23 { animation-delay: 1.08s; }
.topic-24 { animation-delay: 1.12s; }

.topic-25 { animation-delay: 1.16s; }
.topic-26 { animation-delay: 1.20s; }
.topic-27 { animation-delay: 1.24s; }
.topic-28 { animation-delay: 1.28s; }
.topic-29 { animation-delay: 1.32s; }
.topic-30 { animation-delay: 1.36s; }


@keyframes researchMapReveal {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes researchCenterReveal {

    from {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0.72);
    }

    to {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1);
    }

}


@keyframes researchBubbleReveal {

    from {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(0.55);
    }

    to {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1);
    }

}
/* =========================================================
   RESEARCH MAP — FIT ALL 30 BUBBLES IN FIRST VIEW
========================================================= */

.research-hero-visual {
    margin-top: 35px !important;
    width: 100% !important;
    max-width: 1150px !important;
}

.research-map {
    width: 100% !important;
    max-width: 1150px !important;
    height: 560px !important;
    margin: 0 auto !important;
}


/* Make the bubbles slightly more compact */

.research-topic {
    width: 76px !important;
    height: 76px !important;
    font-size: 8px !important;
    padding: 9px !important;
}


/* Center */

.research-center {
    width: 120px !important;
    height: 120px !important;
}

.research-center strong {
    font-size: 17px !important;
}


/* Smaller orbit system */

.orbit-large {
    width: 91% !important;
    height: 91% !important;
}

.orbit-medium {
    width: 69% !important;
    height: 69% !important;
}

.orbit-small {
    width: 45% !important;
    height: 45% !important;
}


/* Hero should not create unnecessary giant empty space */

.research-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 50px !important;
}


/* =========================================================
   DESKTOP — KEEP ALL 30 INSIDE
========================================================= */

@media (min-width: 1201px) {

    .research-hero-visual {
        margin-top: 30px !important;
    }

    .research-map {
        height: 560px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .research-map {
        height: 600px !important;
    }

    .research-topic {
        width: 70px !important;
        height: 70px !important;
        font-size: 7px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .research-hero-visual {
        margin-top: 25px !important;
    }

    .research-map {
        height: 600px !important;
    }

    .research-topic {
        width: 62px !important;
        height: 62px !important;
        font-size: 6px !important;
    }

}
/* =========================================================
   SUBTOPIC CONNECTION ANIMATION
========================================================= */

.research-sub-lines line {
    opacity: 0;
    stroke-dasharray: 6 6;
    stroke-dashoffset: 30;

    animation:
        researchLineReveal
        0.55s
        ease-out
        forwards;
}

@keyframes researchLineReveal {

    from {
        opacity: 0;
        stroke-dashoffset: 30;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }

}


/* active topic comes above everything */

.research-topic.is-active {
    z-index: 100 !important;
}


/* child bubbles above main map */

.research-subtopic {
    z-index: 110;
}
/* =========================================================
   RESEARCH MAP — ZOOM ON CLICK
========================================================= */

.research-map {
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}


/* All bubbles become slightly muted when one is selected */

.research-map.topic-focused .research-topic {
    opacity: 0.32;
    filter: blur(0.3px);
    transform:
        translate(-50%, -50%)
        scale(0.92);
    transition:
        opacity 0.45s ease,
        filter 0.45s ease,
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}


/* Selected bubble */

.research-map.topic-focused
.research-topic.is-active {
    opacity: 1;
    filter: none;

    z-index: 200;

    transform:
        translate(-50%, -50%)
        scale(2.05);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf7eb
        );

    border-color:
        rgba(55, 137, 64, 0.48);

    box-shadow:
        0 25px 70px
        rgba(43, 108, 51, 0.20),
        0 0 0 12px
        rgba(76, 155, 82, 0.07);

    font-size: 9px;
}


/* =========================================================
   SUBTOPICS — BIGGER WHEN FOCUSED
========================================================= */

.research-map.topic-focused
.research-subtopic {

    width: 88px;
    height: 88px;

    padding: 10px;

    font-size: 8px;

    box-shadow:
        0 18px 45px
        rgba(47, 109, 54, 0.14);

}


/* =========================================================
   FOCUS BACKDROP
========================================================= */

.research-map::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 5;

    border-radius: 40px;

    background:
        radial-gradient(
            circle at center,
            rgba(235, 248, 236, 0.20),
            transparent 52%
        );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.5s ease;

}


.research-map.topic-focused::before {
    opacity: 1;
}


/* =========================================================
   CENTER REMAINS BEHIND FOCUS
========================================================= */

.research-map.topic-focused
.research-center {

    opacity: 0.22;

    transform:
        translate(-50%, -50%)
        scale(0.78);

    transition:
        opacity 0.45s ease,
        transform 0.55s ease;

}


/* =========================================================
   STATUS
========================================================= */

.research-map.topic-focused
.research-map-status {

    opacity: 0.85;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .research-map.topic-focused
    .research-topic.is-active {

        transform:
            translate(-50%, -50%)
            scale(1.55);

    }

    .research-map.topic-focused
    .research-topic {

        opacity: 0.25;

    }

    .research-map.topic-focused
    .research-subtopic {

        width: 70px;
        height: 70px;

        font-size: 6.5px;

    }

}
/* =========================================================
   GREEN OUTLINE — RESEARCH BUBBLES
========================================================= */

.research-topic {
    border: 1.5px solid rgba(61, 145, 70, 0.55) !important;
}

.research-topic::before {
    border: 1px solid rgba(61, 145, 70, 0.16) !important;
}


/* Hover */

.research-topic:hover {
    border-color: #4c9f55 !important;

    box-shadow:
        0 18px 45px rgba(45, 110, 52, 0.14),
        0 0 18px rgba(76, 159, 85, 0.12);
}


/* Selected / Zoomed */

.research-topic.is-active {
    border: 2px solid #398b45 !important;

    box-shadow:
        0 25px 70px rgba(43, 108, 51, 0.20),
        0 0 0 10px rgba(76, 155, 82, 0.08),
        0 0 28px rgba(76, 155, 82, 0.18);
}


/* Subtopic bubbles */

.research-subtopic {
    border: 1.5px solid rgba(61, 145, 70, 0.45) !important;
}

.research-subtopic:hover {
    border-color: #398b45 !important;
}
/* =========================================================
   30 RESEARCH TOPICS — COMPACT ACCORDION
========================================================= */

.research-topics-section {
    width: 100%;
    padding: 90px 20px 110px;
    background: #f7fbf6;
}

.research-topics-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* Heading */

.research-topics-heading {
    text-align: center;
    margin-bottom: 45px;
}

.research-topics-heading span {
    display: block;
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.18em;

    color: #398b45;
}

.research-topics-heading h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 0.98;

    font-weight: 700;

    color: #123f27;
}

.research-topics-heading h2 strong {
    color: #55a95c;
    font-weight: 700;
}


/* =========================================================
   GRID
========================================================= */

.research-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.research-accordion-item {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* =========================================================
   ACCORDION ITEM
========================================================= */

.research-accordion-item {
    background: #ffffff;

    border: 1px solid #dcebdd;

    border-radius: 5px;

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.research-accordion-item:hover {
    border-color: #9ccba0;

    box-shadow:
        0 8px 25px
        rgba(45, 105, 52, 0.07);
}


/* =========================================================
   BUTTON
========================================================= */

.research-accordion-button {
    width: 100%;

    min-height: 58px;

    padding: 0 16px;

    border: 0;

    background: #ffffff;

    display: grid;

    grid-template-columns:
        34px 1fr 24px;

    align-items: center;

    gap: 8px;

    cursor: pointer;

    text-align: left;
}


/* Number */

.research-number {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;

    color: #4da456;
}


/* Title */

.research-title {
    font-size: 13px;

    line-height: 1.3;

    font-weight: 650;

    color: #174b2a;
}


/* Arrow */

.research-arrow {
    width: 22px;
    height: 22px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;

    line-height: 1;

    color: #398b45;

    background: #eef7ee;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* =========================================================
   OPEN STATE
========================================================= */

.research-accordion-item.active {
    border-color: #73b879;

    box-shadow:
        0 10px 30px
        rgba(55, 120, 61, 0.10);
}

.research-accordion-item.active
.research-accordion-button {
    background: #f5faf5;
}

.research-accordion-item.active
.research-arrow {
    transform: rotate(45deg);

    background: #398b45;

    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.research-accordion-content {
    max-height: 0;

    overflow: hidden;

    padding: 0 16px;

    background: #f8fcf8;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.research-accordion-item.active
.research-accordion-content {
    max-height: 300px;

    padding:
        4px 16px 14px;
}


/* Subtopics */

.research-accordion-content a {
    display: block;

    padding: 7px 0;

    border-bottom: 1px solid #e4eee4;

    font-size: 11px;

    color: #52705a;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.research-accordion-content a:last-child {
    border-bottom: 0;
}

.research-accordion-content a::before {
    content: "•";

    margin-right: 8px;

    color: #55a95c;
}

.research-accordion-content a:hover {
    color: #247235;

    padding-left: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .research-accordion {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .research-topics-section {
        padding:
            65px 14px 80px;
    }

    .research-accordion {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .research-topics-heading {
        margin-bottom: 30px;
    }

    .research-accordion-button {
        min-height: 54px;

        padding:
            0 13px;
    }

    .research-title {
        font-size: 12px;
    }

}
/* =========================================================
   FINAL OVERRIDE — RESEARCH ACCORDION 3 COLUMN
========================================================= */

.research-accordion {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.research-accordion-item {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    grid-column: auto !important;
    box-sizing: border-box !important;
}

/* Button must stay inside its own box */
.research-accordion-button {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Expanded content stays inside the same box */
.research-accordion-content {
    width: 100% !important;
    box-sizing: border-box !important;
}


/* TABLET */
@media (max-width: 900px) {

    .research-accordion {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* MOBILE */
@media (max-width: 600px) {

    .research-accordion {
        grid-template-columns: 1fr !important;
    }

}
/* =========================================
   HERO — CENTERED TEXT AFTER VISUAL REMOVAL
   ========================================= */

.hero-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.hero-content {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero-content h1 {
    max-width: 1050px !important;
    margin: 0 auto 28px !important;
    text-align: center !important;
}

.hero-content p {
    max-width: 800px !important;
    margin: 0 auto 30px !important;
    text-align: center !important;
}

.hero-content .hero-actions,
.hero-content .button-group {
    justify-content: center !important;
}
/* =========================================
   HERO - CLEAN CENTERED LAYOUT
   ========================================= */

.hero-visual {
    display: none !important;
}

.hero-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
}

.hero-content {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Main heading */
.hero-content h2,
.hero-content h1 {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto 28px !important;
    text-align: center !important;
    font-size: clamp(48px, 5.2vw, 78px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
}

/* IMPORTANT:
   Don't let the existing span force
   separate lines.
*/
.hero-content h2 span,
.hero-content h1 span {
    display: inline !important;
    width: auto !important;
}

/* Description */
.hero-content p {
    max-width: 780px !important;
    margin: 0 auto 32px !important;
    text-align: center !important;
}

/* Buttons */
.hero-content .hero-actions,
.hero-content .button-group,
.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
}

/* Bottom information */
.hero-content .hero-meta,
.hero-content .hero-stats {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* =========================================
   RESEARCH ACCORDION - FIX GRID HEIGHT
   ========================================= */

.research-accordion {
    align-items: start !important;
}

.research-accordion-item {
    align-self: start !important;
    height: fit-content !important;
    min-height: 0 !important;
}

/* Closed cards stay compact */
.research-accordion-item:not(.active) {
    height: auto !important;
}

/* Only the clicked card expands */
.research-accordion-item.active {
    height: auto !important;
}

/* Hidden subtopics must stay hidden */
.research-accordion-content {
    display: none;
}

/* Show subtopics only for clicked card */
.research-accordion-item.active .research-accordion-content {
    display: block;
}
/* =========================================================
   CINEMATIC 3D HERO EFFECTS — PHASE 1
   ========================================================= */

.innovation-section {
    perspective: 1200px;
}

/* Subtle depth on the video */

.innovation-video video {
    transform: scale(1.04);
    transform-origin: center center;
    animation: heroVideoDrift 18s ease-in-out infinite alternate;
}

@keyframes heroVideoDrift {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.07) translate3d(-0.4%, -0.3%, 0);
    }

    100% {
        transform: scale(1.04) translate3d(0.4%, 0.3%, 0);
    }
}


/* Cinematic light movement */

.innovation-section::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;

    width: 55%;
    height: 160%;

    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            105deg,
            transparent 0%,
            rgba(180, 255, 190, 0.045) 45%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(180, 255, 190, 0.025) 55%,
            transparent 100%
        );

    transform: rotate(8deg) translateX(-100%);
    animation: cinematicLight 12s ease-in-out infinite;
}

@keyframes cinematicLight {
    0% {
        transform: rotate(8deg) translateX(-100%);
    }

    45%,
    100% {
        transform: rotate(8deg) translateX(250%);
    }
}


/* Floating glow */

.innovation-section::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -130px;
    top: -160px;

    z-index: 2;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(120, 220, 130, 0.12) 0%,
            rgba(120, 220, 130, 0.045) 35%,
            transparent 70%
        );

    filter: blur(8px);

    animation:
        floatingGlow 8s ease-in-out infinite alternate;
}

@keyframes floatingGlow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-45px, 35px, 0) scale(1.15);
    }
}


/* Text depth */

.innovation-content {
    position: relative;
    z-index: 5;

    transform:
        translateZ(30px);

    animation:
        heroContentEnter 1.1s
        cubic-bezier(.16,1,.3,1)
        both;
}

@keyframes heroContentEnter {
    from {
        opacity: 0;
        transform:
            translate3d(0, 35px, 30px);
    }

    to {
        opacity: 1;
        transform:
            translate3d(0, 0, 30px);
    }
}


/* Eyebrow */

.innovation-content .section-eyebrow {
    animation:
        eyebrowReveal 0.8s
        0.15s
        ease-out
        both;
}

@keyframes eyebrowReveal {
    from {
        opacity: 0;
        letter-spacing: 0.35em;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        letter-spacing: 0.16em;
        transform: translateY(0);
    }
}


/* Heading */

.innovation-content h2 {
    text-shadow:
        0 8px 35px rgba(0, 0, 0, 0.25);
}


/* Button floating effect */

.innovation-content .primary-button {
    position: relative;
    z-index: 6;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.innovation-content .primary-button:hover {
    transform:
        translateY(-4px)
        scale(1.025);

    box-shadow:
        0 14px 35px
        rgba(55, 150, 70, 0.32);
}


/* Accessibility / mobile performance */

@media (max-width: 768px) {

    .innovation-video video {
        animation: none;
        transform: scale(1.03);
    }

    .innovation-section::before {
        animation-duration: 16s;
    }

    .innovation-section::after {
        width: 280px;
        height: 280px;
    }

}


/* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {

    .innovation-video video,
    .innovation-section::before,
    .innovation-section::after,
    .innovation-content,
    .innovation-content .section-eyebrow {
        animation: none !important;
    }

}
/* Transparent video background for existing hero */
.hero {
    position: relative;
    overflow: hidden;
    height: 770px;
    min-height: 770px;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    opacity: 0.25;
}

.hero-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 75, 38, 0.18);
    z-index: 1;
    pointer-events: none;
}

/* Keep existing hero content above video */
.hero > *:not(.hero-video-bg) {
    position: relative;
    z-index: 2;
}
.site-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}
/* HEADER LOGO SIZE FIX */
.premium-site-logo .site-logo {
width: 180px !important;
    height: 90px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}

.premium-site-logo {
    display: flex !important;
    align-items: center !important;
    width: 90px !important;
    height: 90px !important;
}
/* PlantCon 2026 brand beside logo */

.premium-site-logo {
    display: flex !important;
    align-items: center !important;
    gap: 1px !important;
    text-decoration: none !important;
}

.plantcon-brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #173d24;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .plantcon-brand {
        font-size: 17px;
    }
}
/* =========================================
   HERO GLASS BUTTONS
   ========================================= */

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 169px;
    height: 58px;
    padding: 0 29px;

    border-radius: 14px;

    color: #ffffff !important;
    text-decoration: none !important;

    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.42);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-btn span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

/* Hover */
.hero-btn:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.24);

    border-color: rgba(255, 255, 255, 0.70);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-btn:hover span {
    transform: translate(3px, -2px);
}

/* Registration slightly stronger glass */
.hero-btn-register {
    background: rgba(58, 143, 75, 0.38);
    border-color: rgba(190, 255, 198, 0.55);
}

.hero-btn-register:hover {
    background: rgba(58, 143, 75, 0.55);
}

/* Mobile */
@media (max-width: 600px) {

    .hero-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-btn {
        min-width: 110px;
        padding: 0 16px;
    }
}
/* =========================================
   PREMIUM 3D HERO MOTION
   ========================================= */

/* Hero content perspective */
.hero-content {
    perspective: 1200px;
}

/* Label */
.hero-label {
    animation: heroLabelIn 1s ease-out both;
    transform-origin: center;
}

/* Main heading */
.hero-title {
    animation: heroTitleIn 1.1s cubic-bezier(.16, 1, .3, 1) both;
    transform-origin: center bottom;
    text-shadow:
        0 2px 0 rgba(255,255,255,0.20),
        0 8px 25px rgba(0,0,0,0.12);
}

/* Green highlighted word */
.hero-title span {
    display: inline-block;
    animation: heroGreenFloat 3s ease-in-out infinite;
}

/* Description */
.hero-description {
    animation: heroDescriptionIn 1s ease-out 0.25s both;
}

/* Buttons container */
.hero-actions {
    perspective: 1000px;
    animation: heroButtonsIn 1s ease-out 0.4s both;
}

/* Individual glass buttons */
.hero-btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;

    animation: heroButtonFloat 4s ease-in-out infinite;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Stagger the 3 buttons */
.hero-btn:nth-child(1) {
    animation-delay: 0s;
}

.hero-btn:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-btn:nth-child(3) {
    animation-delay: 0.5s;
}

/* Moving glass shine */
.hero-btn::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -60%;

    width: 45%;
    height: 300%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.30),
        transparent
    );

    transform: rotate(20deg);
    animation: buttonShine 4s ease-in-out infinite;

    pointer-events: none;
}

/* Keep text above shine */
.hero-btn span,
.hero-btn {
    isolation: isolate;
}

/* Hover 3D */
.hero-btn:hover {
    transform:
        translateY(-7px)
        rotateX(5deg)
        rotateY(-3deg)
        scale(1.04);

    box-shadow:
        0 18px 40px rgba(20,80,40,0.22),
        inset 0 1px 0 rgba(255,255,255,0.45);
}

/* Arrow movement */
.hero-btn:hover span {
    transform: translate3d(5px, -3px, 15px);
}


/* =========================================
   KEYFRAMES
   ========================================= */

@keyframes heroLabelIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(25deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform:
            translateY(45px)
            rotateX(18deg)
            scale(0.96);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            rotateX(0)
            scale(1);
        filter: blur(0);
    }
}

@keyframes heroDescriptionIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsIn {
    from {
        opacity: 0;
        transform:
            translateY(35px)
            rotateX(12deg);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            rotateX(0);
    }
}

@keyframes heroButtonFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }

    50% {
        transform: translateY(-4px) rotateX(1.5deg);
    }
}

@keyframes heroGreenFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes buttonShine {
    0% {
        left: -70%;
    }

    45%, 100% {
        left: 140%;
    }
}


/* =========================================
   ACCESSIBILITY
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-label,
    .hero-title,
    .hero-title span,
    .hero-description,
    .hero-actions,
    .hero-btn,
    .hero-btn::before {
        animation: none !important;
        transition: none !important;
    }
}
.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 24px 0 20px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;
    min-width: 180px;

    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.72);

    border-radius: 14px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 24px rgba(20, 60, 35, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);

    color: #123d25;
    
    font-size: 16px;
    font-weight: 700;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.hero-meta-item:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.58);

    box-shadow:
        0 12px 30px rgba(20, 60, 35, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-meta-icon {
    color: #2d8a48;
    font-size: 17px;
}

.hero-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(20, 70, 40, 0.25);
}
/* Align conference label with hero heading */
.hero-content {
    text-align: center;
}

.hero-label {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;

    text-align: left;
    padding-left: 2px;

    box-sizing: border-box;
}
/* =========================================
   CONFERENCE COUNTDOWN
   ========================================= */

.conference-countdown {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);

    width: 260px;
    padding: 22px 20px;

    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 15px 40px rgba(20, 70, 40, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    z-index: 5;

    animation: countdownFloat 4s ease-in-out infinite;
}

.countdown-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-bottom: 16px;

    color: #123d25;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.countdown-calendar {
    font-size: 16px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.countdown-box {
    padding: 10px 4px;

    text-align: center;

    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.countdown-box span {
    display: block;

    color: #123d25;

    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;

    font-variant-numeric: tabular-nums;
}

.countdown-box small {
    display: block;

    margin-top: 5px;

    color: rgba(18, 61, 37, 0.7);

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

@keyframes countdownFloat {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 5px));
    }
}

/* Mobile */
@media (max-width: 900px) {
    .conference-countdown {
        position: relative;
        right: auto;
        top: auto;
        transform: none;

        margin: 25px auto 0;
    }

    @keyframes countdownFloat {
        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-4px);
        }
    }
}
/* =========================================
   IMPORTANT DEADLINES PANEL
   ========================================= */

.deadline-panel {
    position: absolute;

    left: 3%;
    top: 50%;
    transform: translateY(-50%);

    width: 275px;

    padding: 25px 22px;

    background: rgba(255, 255, 255, 0.24);

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 24px;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 20px 50px rgba(15, 65, 35, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);

    z-index: 5;

    color: #123d25;
}


/* TITLE */

.deadline-title {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #123d25;
}

.deadline-title-icon {
    font-size: 20px;
}


/* SMALL GREEN LINE */

.deadline-line {
    width: 52px;
    height: 2px;

    margin: 15px auto 23px;

    background: #4d9f5b;

    border-radius: 10px;
}


/* DEADLINE ITEM */

.deadline-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


/* ICON CIRCLE */

.deadline-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.58);

    border: 1px solid rgba(255, 255, 255, 0.7);

    font-size: 23px;

    box-shadow:
        0 8px 20px rgba(20, 70, 35, 0.08);
}


/* CONTENT */

.deadline-content {
    padding-top: 2px;
}


.deadline-label {
    color: #123d25;

    font-size: 11px;

    line-height: 1.45;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* DATE */

.deadline-date {
    margin-top: 10px;

    color: #2d8242;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 0.3px;
}


/* TIME */

.deadline-time {
    display: inline-block;

    margin-top: 8px;

    padding: 6px 9px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.55);

    color: #285f38;

    font-size: 10px;

    font-weight: 700;
}


/* DIVIDER */

.deadline-divider {
    height: 1px;

    margin: 27px 0;

    background: rgba(18, 61, 37, 0.13);
}


/* HOVER EFFECT */

.deadline-item {
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.deadline-item:hover {
    transform: translateX(5px);
}


/* =========================================
   KEEP HERO CONTENT ABOVE PANELS
   ========================================= */

.hero-content {
    position: relative;
    z-index: 6;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 1200px) {

    .deadline-panel {
        left: 2%;
        width: 240px;
    }

}

@media (max-width: 900px) {

    .deadline-panel {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        width: min(90%, 360px);

        margin: 25px auto 0;
    }

}
/* =========================================================
   FINAL HERO POSITION FIX
   ========================================================= */

.hero.research-video-hero {
    position: relative !important;
    overflow: hidden !important;
    min-height: 770px !important;
}

/* Main hero content - EXACT CENTER */
.hero.research-video-hero .hero-content {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    width: min(800px, 55vw) !important;
    max-width: 800px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    z-index: 10 !important;
}

/* Keep heading centered */
.hero.research-video-hero .hero-title {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Description centered */
.hero.research-video-hero .hero-description {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Meta: date + location centered */
.hero.research-video-hero .hero-meta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Buttons centered */
.hero.research-video-hero .hero-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 14px !important;
}

/* =========================================================
   LEFT - IMPORTANT DEADLINES
   ========================================================= */

.hero.research-video-hero .deadline-panel {
    position: absolute !important;

    left: 40px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: 235px !important;
    margin: 0 !important;

    z-index: 12 !important;
}

/* =========================================================
   RIGHT - CONFERENCE COUNTDOWN
   ========================================================= */

.hero.research-video-hero .conference-countdown {
    position: absolute !important;

    right: 40px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    width: 235px !important;
    margin: 0 !important;

    z-index: 12 !important;
}

/* =========================================================
   DESKTOP - Keep everything balanced
   ========================================================= */

@media (min-width: 1200px) {

    .hero.research-video-hero .hero-content {
        width: 780px !important;
    }

    .hero.research-video-hero .deadline-panel {
        left: 40px !important;
    }

    .hero.research-video-hero .conference-countdown {
        right: 40px !important;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) and (min-width: 901px) {

    .hero.research-video-hero .hero-content {
        width: 58vw !important;
    }

    .hero.research-video-hero .deadline-panel {
        left: 20px !important;
        width: 210px !important;
    }

    .hero.research-video-hero .conference-countdown {
        right: 20px !important;
        width: 210px !important;
    }
}


/* =========================================================
   TABLET / SMALL SCREEN
   ========================================================= */

@media (max-width: 900px) {

    .hero.research-video-hero {
        min-height: 900px !important;
    }

    .hero.research-video-hero .hero-content {
        position: relative !important;

        left: auto !important;
        top: auto !important;

        transform: none !important;

        width: 90% !important;
        max-width: 700px !important;

        margin: 0 auto !important;

        padding-top: 80px !important;
    }

    .hero.research-video-hero .deadline-panel {
        position: relative !important;

        left: auto !important;
        top: auto !important;

        transform: none !important;

        width: min(90%, 350px) !important;

        margin: 35px auto 0 !important;
    }

    .hero.research-video-hero .conference-countdown {
        position: relative !important;

        right: auto !important;
        top: auto !important;

        transform: none !important;

        width: min(90%, 350px) !important;

        margin: 25px auto 50px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hero.research-video-hero {
        min-height: 1050px !important;
    }

    .hero.research-video-hero .hero-content {
        width: 92% !important;
        padding-top: 55px !important;
    }

    .hero.research-video-hero .hero-title {
        font-size: clamp(38px, 9vw, 58px) !important;
        line-height: 1.05 !important;
    }

    .hero.research-video-hero .hero-actions {
        flex-wrap: wrap !important;
    }

    .hero.research-video-hero .hero-btn {
        min-width: 125px !important;
    }

    .hero.research-video-hero .hero-meta {
        flex-wrap: wrap !important;
    }
}
/* =========================================================
   PLANTCON HERO — FINAL 3 COLUMN LAYOUT
   ========================================================= */

.hero.research-video-hero {
    position: relative !important;
    overflow: hidden !important;
}

/* MAIN HERO CONTAINER */
.hero.research-video-hero .hero-container {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: 1400px !important;

    height: 770px !important;

    margin: 0 auto !important;
    padding: 0 !important;
}


/* =========================================================
   CENTER CONTENT
   ========================================================= */

.hero.research-video-hero .hero-container .hero-content {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    right: auto !important;
    bottom: auto !important;

    transform: translate(-50%, -50%) !important;

    width: 700px !important;
    max-width: 52% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    z-index: 10 !important;
}


/* LABEL */
.hero.research-video-hero .hero-label {
    text-align: center !important;
}


/* TITLE */
.hero.research-video-hero .hero-title {
    width: 100% !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}


/* DESCRIPTION */
.hero.research-video-hero .hero-description {
    width: 100% !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}


/* DATE + LOCATION */
.hero.research-video-hero .hero-meta {
    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* BUTTONS */
.hero.research-video-hero .hero-actions {
    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    gap: 14px !important;
}


/* =========================================================
   LEFT DEADLINES
   ========================================================= */

.hero.research-video-hero .deadline-panel {
    position: absolute !important;

    left: 20px !important;
    right: auto !important;

    top: 50% !important;
    bottom: auto !important;

    transform: translateY(-50%) !important;

    width: 235px !important;

    margin: 0 !important;

    z-index: 20 !important;
}


/* =========================================================
   RIGHT COUNTDOWN
   ========================================================= */

.hero.research-video-hero .conference-countdown {
    position: absolute !important;

    right: 20px !important;
    left: auto !important;

    top: 50% !important;
    bottom: auto !important;

    transform: translateY(-50%) !important;

    width: 235px !important;

    margin: 0 !important;

    z-index: 20 !important;
}


/* =========================================================
   LARGE SCREEN
   ========================================================= */

@media (min-width: 1400px) {

    .hero.research-video-hero .hero-container {
        max-width: 1500px !important;
    }

    .hero.research-video-hero .deadline-panel {
        left: 0 !important;
    }

    .hero.research-video-hero .conference-countdown {
        right: 0 !important;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) and (min-width: 701px) {

    .hero.research-video-hero .hero-content {
        width: 55% !important;
        max-width: 55% !important;
    }

    .hero.research-video-hero .deadline-panel {
        left: 10px !important;
        width: 190px !important;
    }

    .hero.research-video-hero .conference-countdown {
        right: 10px !important;
        width: 190px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .hero.research-video-hero .hero-container {
        height: auto !important;
        min-height: 1100px !important;
    }

    .hero.research-video-hero .hero-content {
        position: relative !important;

        left: auto !important;
        top: auto !important;

        transform: none !important;

        width: 90% !important;
        max-width: 700px !important;

        margin: 0 auto !important;

        padding-top: 70px !important;
    }

    .hero.research-video-hero .deadline-panel {
        position: relative !important;

        left: auto !important;
        top: auto !important;

        transform: none !important;

        width: 90% !important;
        max-width: 350px !important;

        margin: 35px auto !important;
    }

    .hero.research-video-hero .conference-countdown {
        position: relative !important;

        right: auto !important;
        top: auto !important;

        transform: none !important;

        width: 90% !important;
        max-width: 350px !important;

        margin: 25px auto 50px !important;
    }
}
.hero.research-video-hero .hero-title {
    width: 850px !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;

    white-space: nowrap !important;
    text-align: center !important;
}

.hero.research-video-hero .hero-title br {
    display: block !important;
}
/* =========================================================
   FINAL HERO LAYOUT
   Left Deadlines + Center Content + Right Countdown
   ========================================================= */

.hero.research-video-hero {
    position: relative !important;
    overflow: hidden !important;
}

/* MAIN CENTER CONTENT */
.hero.research-video-hero .hero-container {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero.research-video-hero .hero-content {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    width: 760px !important;
    max-width: 760px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    z-index: 10 !important;
}

/* EYEBROW */
.hero.research-video-hero .hero-label {
    text-align: center !important;
    margin-bottom: 25px !important;
}

/* MAIN TITLE */
.hero.research-video-hero .hero-title {
    width: 900px !important;
    max-width: none !important;

    margin: 0 auto 25px auto !important;

    text-align: center !important;

    white-space: nowrap !important;

    font-size: 64px !important;
    line-height: 1.08 !important;
}

/* FORCE EXACTLY TWO LINES */
.hero.research-video-hero .hero-title br {
    display: block !important;
}

/* DESCRIPTION */
.hero.research-video-hero .hero-description {
    width: 700px !important;
    max-width: 700px !important;

    margin: 0 auto 30px auto !important;

    text-align: center !important;

    font-size: 16px !important;
    line-height: 1.7 !important;
}

/* DATE + LOCATION */
.hero.research-video-hero .hero-meta {
    justify-content: center !important;

    margin: 0 auto 24px auto !important;
}

/* BUTTONS */
.hero.research-video-hero .hero-actions {
    justify-content: center !important;

    margin: 0 auto !important;
}


/* =========================================================
   LEFT DEADLINE PANEL
   ========================================================= */

.hero.research-video-hero .deadline-panel {
    position: absolute !important;

    left: 35px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;

    z-index: 20 !important;
}


/* =========================================================
   RIGHT COUNTDOWN
   ========================================================= */

.hero.research-video-hero .conference-countdown {
    position: absolute !important;

    right: 35px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;

    z-index: 20 !important;
}


/* =========================================================
   MAKE CENTER CONTENT STAY ABOVE VIDEO
   ========================================================= */

.hero.research-video-hero .hero-content,
.hero.research-video-hero .deadline-panel,
.hero.research-video-hero .conference-countdown {
    isolation: isolate;
}


/* =========================================================
   DESKTOP SCREEN
   ========================================================= */

@media (min-width: 1200px) {

    .hero.research-video-hero .hero-title {
        font-size: 64px !important;
    }

}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1199px) {

    .hero.research-video-hero .hero-title {
        font-size: 54px !important;
        width: 760px !important;
    }

    .hero.research-video-hero .hero-description {
        width: 600px !important;
    }

}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero.research-video-hero .hero-content {
        position: relative !important;

        left: auto !important;
        top: auto !important;

        transform: none !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 120px 25px 60px !important;
    }

    .hero.research-video-hero .hero-title {
        width: 100% !important;
        max-width: 100% !important;

        white-space: normal !important;

        font-size: 44px !important;
    }

    .hero.research-video-hero .hero-description {
        width: 100% !important;
        max-width: 600px !important;
    }

    .hero.research-video-hero .deadline-panel,
    .hero.research-video-hero .conference-countdown {
        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;

        margin: 20px auto !important;
    }

}
/* =====================================================
   HERO - PERFECT CENTER ALIGNMENT
   INTERNATIONAL CONFERENCE ON ABOVE TITLE
   ===================================================== */

.hero.research-video-hero .hero-content {
    text-align: center !important;
}

/* Conference label */
.hero.research-video-hero .hero-label {
    display: block !important;

    width: 100% !important;

    text-align: center !important;

    margin: 0 0 18px 0 !important;

    padding: 0 !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;

    color: #286b3b !important;

    line-height: 1.2 !important;
}

/* Small green line beside label */
.hero.research-video-hero .hero-label::before {
    content: "" !important;

    display: inline-block !important;

    width: 28px !important;
    height: 1px !important;

    background: #5cad63 !important;

    vertical-align: middle !important;

    margin-right: 12px !important;
}

.hero.research-video-hero .hero-label::after {
    content: "" !important;

    display: inline-block !important;

    width: 28px !important;
    height: 1px !important;

    background: #5cad63 !important;

    vertical-align: middle !important;

    margin-left: 12px !important;
}

/* Main heading */
.hero.research-video-hero .hero-title {
    margin-top: 0 !important;
    margin-bottom: 25px !important;

    text-align: center !important;

    width: 900px !important;
    max-width: 900px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    white-space: nowrap !important;

    font-size: 64px !important;
    line-height: 1.08 !important;
}

/* Plant Science green */
.hero.research-video-hero .hero-title span {
    color: #5cad63 !important;
}
/* =====================================================
   HERO LABEL ALIGNMENT WITH DESCRIPTION
   ===================================================== */

.hero.research-video-hero .hero-label {
    width: 700px !important;
    max-width: 700px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: left !important;

    padding: 0 !important;
    margin-bottom: 18px !important;
}

/* Keep the starting line aligned with description */
.hero.research-video-hero .hero-label::before {
    margin-left: 0 !important;
    margin-right: 12px !important;
}

/* Remove right-side line so it looks cleaner */
.hero.research-video-hero .hero-label::after {
    display: none !important;
}

/* Match description width exactly */
.hero.research-video-hero .hero-description {
    width: 700px !important;
    max-width: 700px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}
/* =========================================
   HERO LABEL + TITLE PERFECT LEFT ALIGNMENT
   ========================================= */

@media (min-width: 1001px) {

    .hero-content {
        transform: translateX(-45px);
    }

    .hero-label {
        text-indent: 45px !important;
        text-align: center !important;
    }

}
/* =========================================
   HERO HEADING - PERFECT ALIGNMENT
   ========================================= */

.hero-heading-wrap {
    width: min(760px, 100%);
    margin: 0 auto;
}

.hero-heading-wrap .hero-label {
    width: 100%;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    text-align: left !important;
    transform: none !important;
    text-indent: 0 !important;
}

.hero-heading-wrap .hero-title {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}

/* Left decorative line */
.hero-heading-wrap .hero-label-line {
    width: 28px;
    height: 2px;
    background: #3f9b50;
    flex-shrink: 0;
}

/* Right decorative line */
.hero-heading-wrap .hero-label-line:last-child {
    flex: 0 0 28px;
}

/* Desktop positioning */
@media (min-width: 1001px) {
    .hero-heading-wrap {
        transform: translateX(-45px);
    }
}

/* Mobile */
@media (max-width: 1000px) {
    .hero-heading-wrap {
        width: 100%;
        transform: none;
    }

    .hero-heading-wrap .hero-title {
        text-align: center !important;
    }

    .hero-heading-wrap .hero-label {
        justify-content: center;
    }
}
@media (min-width: 1001px) {

    .hero-heading-wrap .hero-label {
        transform: translateX(30px) !important;
    }

}
/* =========================================================
   HERO TEXT CONTRAST & VISIBILITY FIX
   ========================================================= */

/* 1. Small Top Eyebrow Text (INTERNATIONAL CONFERENCE ON) */
.hero-content span, 
.hero-eyebrow {
    color: #15803d !important; /* Dark Green */
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
}

/* 2. Main Heading (Advancing Plant Science...) */
.hero-content h1, 
.hero-title {
    color: #0a2918 !important; /* Very dark rich green */
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 15px 0 !important;
}

/* "Plant Science" Highlight Color Adjustment for Better Contrast */
.hero-content h1 span, 
.hero-title .highlight {
    color: #16a34a !important; /* Slightly deeper green for contrast */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
}

/* 3. Subtitle Paragraph (Main problem area fixed here) */
.hero-content p, 
.hero-description {
    color: #1e3a2b !important; /* Dark greyish-green instead of light grey */
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    max-width: 720px !important;
    margin: 18px auto 25px !important;
    text-align: center !important;
    filter: none !important;
    opacity: 1 !important;
}
/* =========================================================
   HERO TEXT CONTRAST & PLANT SCIENCE HEADING FIX
   ========================================================= */

/* 1. Small Eyebrow Tag ONLY (INTERNATIONAL CONFERENCE ON) */
.hero-eyebrow,
.hero-content > span:first-child {
    color: #15803d !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
}

/* 2. Main Heading Base (Advancing...) */
.hero-content h1, 
.hero-title {
    color: #0a2918 !important; /* Rich dark green */
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 15px 0 !important;
}

/* 3. FIX: "Plant Science" inside H1 (Bada, Bold & Pop Green) */
.hero-content h1 span, 
.hero-title span,
.hero-title .highlight {
    font-size: inherit !important; /* Bada font size inherit karega */
    font-weight: 800 !important;
    color: #16a34a !important;     /* Bright vibrant green */
    display: inline !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6) !important;
}

/* 4. Subtitle Paragraph (Crisp & Readable) */
.hero-content p, 
.hero-description {
    color: #1e3a2b !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    max-width: 720px !important;
    margin: 18px auto 25px !important;
    text-align: center !important;
    filter: none !important;
    opacity: 1 !important;
}
/* =========================================================
   HERO HEADING BALANCING & ALIGNMENT FIX
   ========================================================= */

/* 1. Main Hero Content Container */
.hero-content {
    text-align: center !important;
    max-width: 820px !important;
    margin: 0 auto !important;
}

/* 2. Top Eyebrow Tag */
.hero-eyebrow,
.hero-content > span:first-child {
    color: #15803d !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 6px !important;
}

/* 3. Balanced Main Heading */
.hero-content h1, 
.hero-title {
    color: #0a2918 !important;
    font-size: 48px !important; /* Slightly tuned for perfect multi-line balance */
    font-weight: 800 !important;
    line-height: 1.18 !important;
    margin: 10px auto 18px !important;
    text-align: center !important;
    text-wrap: balance !important; /* Automatically balances line lengths */
    max-width: 760px !important;  /* Prevents heading from stretching too far right */
}

/* 4. "Plant Science" Accent */
.hero-content h1 span, 
.hero-title span,
.hero-title .highlight {
    font-size: inherit !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    display: inline !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6) !important;
}

/* 5. Balanced Subtitle Paragraph */
.hero-content p, 
.hero-description {
    color: #1e3a2b !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    max-width: 660px !important;
    margin: 0 auto 25px !important;
    text-align: center !important;
    text-wrap: balance !important;
}
/* =========================================================
   HERO HEADING LEFT BALANCING FIX
   ========================================================= */

/* 1. Main Hero Content Container (Shifted Slightly Left) */
.hero-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    
    /* Text ko thoda left shift karne ke liye magic property: */
    transform: translateX(-20px) !important; 
}

/* 2. Top Eyebrow Tag */
.hero-eyebrow,
.hero-content > span:first-child {
    color: #15803d !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 6px !important;
}

/* 3. Main Heading */
.hero-content h1, 
.hero-title {
    color: #0a2918 !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    margin: 10px auto 18px !important;
    text-align: center !important;
    text-wrap: balance !important;
}

/* 4. "Plant Science" Green Accent */
.hero-content h1 span, 
.hero-title span,
.hero-title .highlight {
    font-size: inherit !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    display: inline !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6) !important;
}

/* 5. Subtitle Paragraph */
.hero-content p, 
.hero-description {
    color: #1e3a2b !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    max-width: 660px !important;
    margin: 0 auto 25px !important;
    text-align: center !important;
    text-wrap: balance !important;
}

/* Mobile par centered hi rakhega taaki display na bigde */
@media (max-width: 900px) {
    .hero-content {
        transform: none !important;
    }
}
/* =========================================================
   HERO HEADING TRUE CENTER BALANCE FIX
   ========================================================= */

/* 1. Main Hero Content Container (Exact Center Between Side Cards) */
.hero-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    transform: none !important; /* Left shift completely removed */
    position: relative !important;
    z-index: 5 !important;
}

/* 2. Top Eyebrow Tag */
.hero-eyebrow,
.hero-content > span:first-child {
    color: #15803d !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 6px !important;
}

/* 3. Centered Main Heading */
.hero-content h1, 
.hero-title {
    color: #0a2918 !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    margin: 10px auto 18px !important;
    text-align: center !important;
    text-wrap: balance !important;
}

/* 4. "Plant Science" Green Accent */
.hero-content h1 span, 
.hero-title span,
.hero-title .highlight {
    font-size: inherit !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    display: inline !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6) !important;
}

/* 5. Centered Subtitle Paragraph */
.hero-content p, 
.hero-description {
    color: #1e3a2b !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    max-width: 660px !important;
    margin: 0 auto 25px !important;
    text-align: center !important;
    text-wrap: balance !important;
}
/* FINAL HERO LEFT SHIFT */
@media (min-width: 701px) {
    .hero.research-video-hero .hero-container {
        position: relative !important;
    }

    .hero.research-video-hero .hero-heading-wrap {
        position: relative !important;
        left: -100px !important;
    }
}
/* =========================================================
   COMPACT HORIZONTAL CATEGORY PILLS
   ========================================================= */

.research-areas-section {
    padding: 50px 0 60px !important;
}

.research-compact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    margin-top: 30px !important;
}

.research-pill-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #ffffff !important;
    border: 1.5px solid #e1ece5 !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(10, 40, 25, 0.02) !important;
}

.research-pill-card:hover {
    transform: translateY(-3px) !important;
    border-color: #16a34a !important;
    background: #f0fdf4 !important;
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.12) !important;
}

.pill-number {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    margin-right: 14px !important;
    min-width: 22px !important;
}

.pill-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0a2918 !important;
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.pill-action {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #f0fdf4 !important;
    color: #16a34a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border: 1px solid rgba(22, 163, 74, 0.2) !important;
    transition: all 0.2s ease !important;
}

.research-pill-card:hover .pill-action {
    background: #16a34a !important;
    color: #ffffff !important;
    border-color: #16a34a !important;
}

@media (max-width: 992px) {
    .research-compact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .research-compact-grid {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================================
   ENLARGED COUNTDOWN BOX & BIGGER TIMER NUMBERS
   ========================================================= */

/* 1. Main Outer Box (Width aur Height Badhayi Gayi Hai) */
.conference-countdown {
    width: 250px !important;              /* Box ki width badhane ke liye ise badlein (Pehle 210px tha) */
    min-height: 460px !important;         /* Box ki height badhane ke liye ise badlein (Pehle 410px tha) */
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(14px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 22px !important;
    padding: 26px 20px !important;        /* Inside spacing badhayi hai */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 10px 35px rgba(10, 40, 25, 0.08) !important;
    box-sizing: border-box !important;
}

/* 2. Top Heading */
.countdown-heading {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 12px !important;          /* Font size thoda bada kiya */
    font-weight: 800 !important;
    color: #0a2918 !important;
    letter-spacing: 1px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
}

.countdown-calendar {
    font-size: 18px !important;
}

/* 3. 2x2 Grid Layout */
.countdown-timer {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;                 /* Boxes ke beech ka gap badhaya */
    margin: auto 0 !important;
}

/* 4. Timer Cards Inside Grid */
.countdown-box {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(22, 163, 74, 0.3) !important;
    border-radius: 16px !important;
    padding: 20px 10px !important;        /* Timer box ka inner padding badhaya */
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(10, 40, 25, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Bigger Digits (Numbers) */
.countdown-box span {
    display: block !important;
    font-size: 32px !important;          /* Numbers ko bada aur prominent kiya (Pehle 26px tha) */
    font-weight: 800 !important;
    color: #0a2918 !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

/* Labels (Days, Hours, Min, Sec) */
.countdown-box small {
    display: block !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
/* =========================================================
   HERO ACTION BUTTONS (BROCHURE, ABSTRACT, REGISTRATION)
   ========================================================= */

/* 1. Buttons Container Alignment & Spacing */
.hero-buttons,
.msg-hero-buttons,
.hero-action-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;            /* Buttons ke beech ka space */
    margin-top: 25px !important;
    flex-wrap: wrap !important;
}

/* 2. Individual Buttons (Bigger, Wider & Prominent) */
.hero-buttons a,
.msg-hero-buttons a,
.hero-action-buttons a {
    min-width: 145px !important;     /* Buttons ki width badhane ke liye */
    padding: 14px 28px !important;   /* Top-bottom & left-right padding badhayi */
    font-size: 15px !important;      /* Text size bada aur clear */
    font-weight: 750 !important;
    border-radius: 14px !important;  /* Smooth rounded corners */
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(10, 40, 25, 0.08) !important;
}

/* 3. Hover Popping Effect */
.hero-buttons a:hover,
.msg-hero-buttons a:hover,
.hero-action-buttons a:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.22) !important;
}
/* =========================================================
   NEW MODERN PROGRAM CARDS DESIGN
   ========================================================= */

.programs-section {
    padding: 60px 0 80px !important;
}

.programs-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-top: 35px !important;
}

/* Modern Card Container */
.modern-program-card {
    background: #ffffff !important;
    border: 1.5px solid #e2ece5 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-shadow: 0 4px 18px rgba(10, 40, 25, 0.03) !important;
}

.modern-program-card:hover {
    transform: translateY(-8px) !important;
    border-color: #16a34a !important;
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.14) !important;
}

/* Image Wrapper & Zoom Effect */
.program-image-wrap {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    background: #e8f3ec !important;
}

.program-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.modern-program-card:hover .program-image-wrap img {
    transform: scale(1.08) !important;
}

/* Image Top Floating Badge */
.program-badge {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    background: rgba(10, 41, 24, 0.82) !important;
    backdrop-filter: blur(8px) !important;
    color: #4ade80 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    letter-spacing: 0.8px !important;
    border: 1px solid rgba(74, 222, 128, 0.3) !important;
}

/* Card Body Content */
.program-card-body {
    padding: 22px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.program-category {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #16a34a !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

.program-card-body h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0a2918 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.program-card-body p {
    font-size: 14px !important;
    color: #4a5e52 !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
    flex-grow: 1 !important;
}

/* Arrow Action Link */
.program-link {
    font-size: 13.5px !important;
    font-weight: 750 !important;
    color: #16a34a !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: color 0.2s ease !important;
}

.program-link span {
    transition: transform 0.2s ease !important;
}

.modern-program-card:hover .program-link {
    color: #15803d !important;
}

.modern-program-card:hover .program-link span {
    transform: translateX(5px) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================================
   ABOUT HERO CONTAINER LAYOUT & MARGIN FIX
   ========================================================= */

/* 1. Global Container Alignment Safeguard */
.about-hero .container,
.about-hero-container {
    max-width: 1240px !important;    /* Standard Page Margin Grid */
    width: 90% !important;           /* Edge se space banaye rakhega */
    margin: 0 auto !important;       /* Exactly Center Alignment */
    padding: 0 20px !important;
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 40px !important;
    align-items: center !important;
}

/* 2. Text Wrapper Spacing */
.about-hero-content {
    padding-left: 10px !important;   /* Screen edge se proper breathing space */
    max-width: 620px !important;
}
/* =========================================================
   BOTTOM CTA & ABSTRACT DETAILS BLOCK STYLING
   ========================================================= */

.category-bottom-cta {
    padding: 20px 0 90px !important;
}

.cta-inner-card {
    background: linear-gradient(135deg, #0a2918 0%, #15803d 100%) !important;
    border-radius: 28px !important;
    padding: 50px 45px !important;
    color: #ffffff !important;
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 40px !important;
    align-items: center !important;
    box-shadow: 0 20px 50px rgba(10, 41, 24, 0.25) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.cta-content h2 {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin: 14px 0 12px !important;
    line-height: 1.15 !important;
}

.cta-content h2 span {
    color: #4ade80 !important;
}

.cta-content p {
    color: #e2f0e8 !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.cta-highlights {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 12px 18px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.cta-badge .icon {
    font-size: 20px !important;
}

.cta-badge strong {
    display: block !important;
    font-size: 13.5px !important;
    color: #ffffff !important;
}

.cta-badge small {
    display: block !important;
    font-size: 11.5px !important;
    color: #a7f3d0 !important;
}

/* Actions Box Right Side */
.cta-actions-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 20px !important;
    padding: 30px 25px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.deadline-pill {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    border: 1px solid #fecaca !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.cta-btn {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
}

.primary-btn {
    background: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3) !important;
}

.primary-btn:hover {
    background: #15803d !important;
    transform: translateY(-2px) !important;
}

.secondary-btn {
    background: #f0fdf4 !important;
    color: #15803d !important;
    border: 1.5px solid rgba(22, 163, 74, 0.25) !important;
}

.secondary-btn:hover {
    background: #dcfce7 !important;
}

.cta-help-text {
    font-size: 12.5px !important;
    color: #4a5e52 !important;
    margin: 12px 0 0 !important;
}

.cta-help-text a {
    color: #16a34a !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-inner-card {
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
    }
}
/* =========================================================
   REFUND POLICY SECTION STYLING
   ========================================================= */

.refund-policy-section {
    padding: 20px 0 80px !important;
}

.refund-policy-card {
    background: #ffffff !important;
    border: 1.5px solid var(--border-light) !important;
    border-radius: 22px !important;
    padding: 38px 40px !important;
    box-shadow: 0 10px 35px rgba(10, 40, 25, 0.04) !important;
    max-width: 920px !important;
    margin: 0 auto !important;
}

.refund-header {
    border-bottom: 1.5px solid #edf5f0 !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
}

.refund-header h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--brand-dark) !important;
    margin: 8px 0 4px 0 !important;
}

.refund-header p {
    font-size: 13.5px !important;
    color: #4a5e52 !important;
    margin: 0 !important;
}

.refund-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;
}

.refund-item {
    display: flex !important;
    gap: 16px !important;
    background: #f8fbf9 !important;
    padding: 18px !important;
    border-radius: 16px !important;
    border: 1px solid #e2ede6 !important;
    align-items: flex-start !important;
}

.refund-icon {
    font-size: 14px !important;
    font-weight: 900 !important;
    color: var(--brand-green) !important;
    background: #e0f2e8 !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(22, 163, 74, 0.2) !important;
    white-space: nowrap !important;
}

.refund-info h4 {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--brand-dark) !important;
    margin: 0 0 4px 0 !important;
}

.refund-info p {
    font-size: 12.5px !important;
    color: #4a5e52 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.refund-footer-note {
    margin-top: 25px !important;
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #991b1b !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    font-size: 12.5px !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .refund-grid {
        grid-template-columns: 1fr !important;
    }
    .refund-policy-card {
        padding: 25px 20px !important;
    }
}
/* =========================================================
   STICKY NAVBAR ON SCROLL
========================================================= */
.site-header.premium-nav-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Saare elements ke upar rahe */
    background: rgba(255, 255, 255, 0.92); /* Halki si transparency */
    backdrop-filter: blur(12px); /* Modern glass-blur effect */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); /* Scroll karte waqt halki shadow */
    transition: all 0.3s ease-in-out;
}
/* FIX LOGO SIZE ONLY */
.premium-site-logo img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    object-fit: contain !important;
}
/* Uiverse Button Style - Solid & Clean */
.uiverse-btn {
    padding: 14px 32px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    border: 0 !important;
    background-color: #ffffff !important; /* Fully solid white, no transparency */
    color: #082114 !important;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.5s ease !important;
    opacity: 1 !important; /* Removes any unwanted transparency */
}

.uiverse-btn:hover {
    letter-spacing: 3px !important;
    background-color: #16a34a !important; /* Plant Theme Green */
    color: #ffffff !important;
    box-shadow: rgba(22, 163, 74, 0.45) 0px 7px 29px 0px !important;
}

.uiverse-btn:active {
    letter-spacing: 3px !important;
    background-color: #15803d !important;
    color: #ffffff !important;
    box-shadow: rgba(22, 163, 74, 0) 0px 0px 0px 0px !important;
    transform: translateY(6px) !important;
    transition: 100ms !important;
}
/* Uiverse Button Style - Strictly Solid & Visible */
.uiverse-btn {
    padding: 14px 32px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    border: 0 !important;
    background-color: #ffffff !important; /* Solid White Background */
    color: #082114 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.5s ease !important;
    opacity: 1 !important;
    backdrop-filter: none !important; /* Removes any glassmorphism transparency */
}

.uiverse-btn:hover {
    letter-spacing: 3px !important;
    background-color: #16a34a !important; /* Plant Theme Green */
    color: #ffffff !important;
    box-shadow: 0 7px 29px rgba(22, 163, 74, 0.5) !important;
}

.uiverse-btn:active {
    letter-spacing: 3px !important;
    background-color: #15803d !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: translateY(4px) !important;
    transition: 100ms !important;
}
/* Improved Modern Event Info Pills / Badges */
.hero-meta-pills-wrap {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 20px 0 !important;
    flex-wrap: wrap !important;
}

.event-info-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(22, 163, 74, 0.25) !important;
    padding: 10px 22px !important;
    border-radius: 999px !important;
    font-size: 13.5px !important;
    font-weight: 750 !important;
    color: #082114 !important;
    box-shadow: 0 8px 25px rgba(10, 40, 25, 0.06) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.event-info-pill:hover {
    transform: translateY(-4px) !important;
    border-color: #16a34a !important;
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.18) !important;
}

.event-info-pill i {
    color: #16a34a !important;
    font-size: 15px !important;
}
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group .input {
    width: 100%;
    border: solid 1.5px rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    background: #ffffff;
    padding: 1rem;
    font-size: 1rem;
    color: #082114;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

.input-group .user-label {
    position: absolute;
    left: 15px;
    top: 0;
    color: #4a5e52;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
    background: transparent;
}

.input-group .input:focus, 
.input-group .input:valid {
    outline: none;
    border: 1.5px solid #16a34a;
}

.input-group .input:focus ~ .user-label, 
.input-group .input:valid ~ .user-label {
    transform: translateY(-50%) scale(0.85);
    background-color: #ffffff;
    padding: 0 0.4em;
    color: #16a34a;
    font-weight: 700;
}
.input-group .input:focus, 
.input-group .input:valid {
    outline: none;
    border: 1.5px solid #16a34a !important;
}

.input-group .input:focus ~ .user-label, 
.input-group .input:valid ~ .user-label {
    transform: translateY(-50%) scale(0.85) !important;
    background-color: #ffffff !important;
    padding: 0 0.4em !important;
    color: #16a34a !important;
    font-weight: 700 !important;
    top: 0 !important;
}
.input-group {
    position: relative;
    margin-bottom: 5px;
}

.input-group .input {
    width: 100%;
    border: solid 1.5px rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    background: #ffffff;
    padding: 18px 15px 10px 15px !important; /* Upar padding thodi zyada taaki label jagah le sake */
    font-size: 0.95rem;
    color: #082114;
    outline: none;
}

.input-group .user-label {
    position: absolute;
    left: 15px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #4a5e52;
    pointer-events: none;
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
    background: transparent;
    font-size: 0.95rem;
    margin: 0;
}

/* Jab input focus ho ya text bhara ho, tab label upar float karega */
.input-group .input:focus, 
.input-group .input:valid {
    outline: none;
    border: 1.5px solid #16a34a !important;
}

.input-group .input:focus ~ .user-label, 
.input-group .input:valid ~ .user-label {
    top: 6px !important;
    transform: translateY(0) scale(0.8) !important;
    background-color: #ffffff !important;
    padding: 0 4px !important;
    color: #16a34a !important;
    font-weight: 700 !important;
}
.input-group {
    position: relative;
    margin-bottom: 5px;
}

.input-group .input {
    width: 100%;
    border: solid 1.5px rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    background: #ffffff;
    padding: 18px 15px 10px 15px !important;
    font-size: 0.95rem;
    color: #082114;
    outline: none;
}

.input-group .user-label {
    position: absolute;
    left: 15px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #4a5e52;
    pointer-events: none;
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
    background: transparent;
    font-size: 0.95rem;
    margin: 0;
}

.input-group .input:focus, 
.input-group .input:valid {
    outline: none;
    border: 1.5px solid #16a34a !important;
}

.input-group .input:focus ~ .user-label, 
.input-group .input:valid ~ .user-label {
    top: 6px !important;
    transform: translateY(0) scale(0.8) !important;
    background-color: #ffffff !important;
    padding: 0 4px !important;
    color: #16a34a !important;
    font-weight: 700 !important;
}
/* =========================================================
   MOBILE OVERLAP FIX FOR PLANT CONFERENCE SITE
   ========================================================= */

@media (max-width: 992px) {
    /* Container padding fix */
    .container, .submission-layout, .abstract-split-grid {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    /* Cards stacking fix to prevent overlap */
    .abstract-split-grid, 
    .submission-layout, 
    .brochure-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* Absolute or floating cards adjustment for mobile */
    .form-card, .guideline-card, 
    .abstract-form-card, .abstract-guidelines-card, 
    .preview-card, .form-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* Hero section padding fix for mobile */
    .abstract-top-section, .brochure-hero {
        padding: 30px 15px 40px !important;
    }
}
/* =========================================================
   ULTIMATE MOBILE OVERLAP & STACKING FIX FOR PLANT 2027
   ========================================================= */

@media screen and (max-width: 992px) {
    /* Hero section ko column mein convert karein */
    .hero-section, 
    .home-hero-container, 
    section.hero, 
    .site-hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        padding: 20px 15px !important;
        position: relative !important;
    }

    /* Left Deadlines aur Right Timer boxes ko mobile par static stack karein */
    .important-deadlines-box, 
    .deadlines-sidebar, 
    .conference-timer-box, 
    .timer-sidebar,
    [class*="deadline"],
    [class*="timer"] {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }

    /* Center text aur heading ko mobile par proper space dein */
    .hero-center-content, 
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 5 !important;
        text-align: center !important;
    }

    /* Font sizes mobile par adjust karna taki overflow na ho */
    .hero-center-content h1, 
    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
}
/* =========================================================
   MOBILE VIEW FIX: HIDE SIDE BOXES & FIX NAVBAR
   ========================================================= */

@media screen and (max-width: 992px) {
    
    /* 1. Mobile screen par Deadlines aur Timer boxes ko hide karna */
    .important-deadlines-box, 
    .deadlines-sidebar, 
    .conference-timer-box, 
    .timer-sidebar {
        display: none !important;
    }

    /* 2. Mobile Navbar & Header Fix */
    .site-header.premium-nav-header,
    .premium-nav-shell {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Logo size adjustment for mobile */
    .premium-site-logo img, 
    .site-logo {
        max-height: 38px !important;
        width: auto !important;
    }

    /* Desktop nav ko hide karein taaki overlap na ho */
    .premium-main-nav {
        display: none !important;
    }

    /* Mobile Toggle Button ko properly align karein */
    .premium-mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 28px !important;
        height: 20px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10002 !important;
    }

    .premium-mobile-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2.5px !important;
        background-color: #15803d !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Mobile Menu Dropdown Panel styling */
    .premium-mobile-menu {
        display: none; /* JS ya existing class se toggle hoga */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(8, 33, 20, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 10001 !important;
        padding: 80px 20px 30px !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
    }

    .premium-mobile-menu.is-active,
    .premium-mobile-menu[style*="block"] {
        display: block !important;
    }

    .premium-mobile-menu-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .premium-mobile-menu-inner a,
    .mobile-program-trigger {
        color: #ffffff !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        padding: 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: transparent !important;
        border-top: none;
        border-left: none;
        border-right: none;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mobile-register-button {
        background: #15803d !important;
        color: #ffffff !important;
        padding: 14px !important;
        border-radius: 12px !important;
        margin-top: 15px !important;
        justify-content: center !important;
        border: none !important;
    }
}
/* =========================================
   MOBILE RESPONSIVE FIX
   DESKTOP WILL NOT BE AFFECTED
========================================= */

@media screen and (max-width: 768px) {

    /* GLOBAL */
    body {
        overflow-x: hidden;
    }

    /* ================= HERO SECTION ================= */

    .hero,
    .hero-container {
        width: 100%;
        min-height: auto;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 25px !important;
        padding: 30px 18px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        order: 1;
    }

    /* DEADLINE PANEL */
    .deadline-panel {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        order: 2;
    }

    /* DEADLINE ITEMS */
    .deadline-item {
        width: 100% !important;
    }

    /* COUNTDOWN */
    .conference-countdown {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        order: 3;
    }

    .countdown-timer {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .countdown-box {
        width: 100% !important;
        min-width: 0 !important;
        padding: 22px 10px !important;
    }


    /* ================= ABOUT SECTION ================= */

    .about-section,
    .about-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 25px !important;
        padding: 45px 18px !important;
    }

    .about-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.8 !important;
    }

    .about-image,
    .about-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .about-image img,
    .about-img img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
        display: block !important;
    }

}


/* EXTRA SMALL MOBILE */
@media screen and (max-width: 480px) {

    .hero-container,
    .about-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .countdown-box {
        padding: 18px 8px !important;
    }

}
/* ================================
   MOBILE NAVIGATION
================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1f4d35;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {

    .site-header {
        padding: 10px 12px;
    }

    .header-container {
        width: 100%;
        padding: 0 12px;
    }

    .logo {
        font-size: 1.15rem;
        white-space: nowrap;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        z-index: 1002;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 18px;
        padding: 12px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-nav ul li {
        width: 100%;
        list-style: none;
    }

    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 13px 15px;
        font-size: 15px;
        text-align: left;
        border-radius: 10px;
    }

    .main-nav ul li a:hover {
        background: #f1f7f2;
    }

    .dropdown-content {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        background: #f6f8f6;
        border-radius: 10px;
        margin-top: 4px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-register-btn {
        display: none;
    }
}
/* =========================================================
   DEDICATED MOBILE VERSION FIX (Plant 2027)
   ========================================================= */

@media screen and (max-width: 992px) {
    
    /* 1. Hide Both Side Boxes / Tables on Mobile (Correct Class Names) */
    .deadline-panel, 
    .conference-countdown,
    .important-deadlines-box, 
    .deadlines-sidebar, 
    .conference-timer-box, 
    .timer-sidebar {
        display: none !important;
    }

    /* 2. Fix Header & Plant 2027 Logo on Mobile */
    .site-header.premium-nav-header,
    .premium-nav-shell {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .premium-site-logo {
        display: flex !important;
        align-items: center !important;
    }

    .premium-site-logo img, 
    .site-logo {
        max-height: 38px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    /* Hide Desktop Navigation on Mobile */
    .premium-main-nav {
        display: none !important;
    }

    /* 3. Enable Clickable Menu Toggle Button */
    .premium-mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 28px !important;
        height: 20px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10002 !important;
    }

    .premium-mobile-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2.5px !important;
        background-color: #15803d !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Mobile Menu Fullscreen Overlay Panel */
    .premium-mobile-menu {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(8, 33, 20, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 10001 !important;
        padding: 80px 20px 30px !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
    }

    .premium-mobile-menu.is-active,
    .premium-mobile-menu.is-open {
        display: block !important;
    }

    .premium-mobile-menu-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .premium-mobile-menu-inner a,
    .mobile-program-trigger {
        color: #ffffff !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        padding: 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: transparent !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .mobile-register-button {
        background: #15803d !important;
        color: #ffffff !important;
        padding: 14px !important;
        border-radius: 12px !important;
        margin-top: 15px !important;
        justify-content: center !important;
        border: none !important;
    }
}
/* =========================================================
   PLANT 2027 — WORLD CLASS SPEAKERS
   Committee section replacement only
========================================================= */

.plant-speakers-section {
    padding: 88px 0;
    background: #eef8f1;
    overflow: hidden;
}

.plant-speakers-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.plant-speakers-heading {
    text-align: center;
    margin-bottom: 48px;
}

.plant-speakers-heading .speaker-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #15803d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.plant-speakers-heading h2 {
    margin: 0;
    color: #082114;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.plant-speakers-heading h2 span {
    color: #16a34a;
}

.plant-speakers-heading p {
    max-width: 680px;
    margin: 14px auto 0;
    color: #607268;
    font-size: 15px;
    line-height: 1.7;
}

/* SPEAKER GRID */

.plant-speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1050px;
    margin: 0 auto;
}

/* SPEAKER CARD */

.plant-speaker-card {
    position: relative;
    min-height: 370px;
    overflow: hidden;
    border-radius: 0;
    background: #16a34a;
    box-shadow: 0 18px 42px rgba(13,70,39,.10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.plant-speaker-card:nth-child(2) {
    background: #4f46b5;
}

.plant-speaker-card:nth-child(3) {
    background: #f8d766;
}

.plant-speaker-card:nth-child(4) {
    background: #ec0b76;
}

.plant-speaker-card:nth-child(5) {
    background: #45cdb3;
}

.plant-speaker-card:nth-child(6) {
    background: #13a9dc;
}

.plant-speaker-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 55px rgba(13,70,39,.17);
}

/* decorative circle */

.plant-speaker-card::before {
    content: "";
    position: absolute;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    left: 50%;
    top: 38px;
    transform: translateX(-50%);
}

.plant-speaker-card::after {
    content: "";
    position: absolute;
    width: 275px;
    height: 275px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    left: 50%;
    top: 23px;
    transform: translateX(-50%);
}

/* PHOTO */

.plant-speaker-photo {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    margin: 52px auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,.15);
    border: 3px solid rgba(255,255,255,.75);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.plant-speaker-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.plant-speaker-card:hover .plant-speaker-photo img {
    transform: scale(1.06);
}

/* NAME */

.plant-speaker-info {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 15px 25px;
}

.plant-speaker-name {
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    color: #10251a;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.plant-speaker-role {
    display: table;
    margin: 5px auto 0;
    padding: 3px 12px;
    background: #fff;
    color: #31533e;
    font-size: 12px;
    line-height: 1.3;
}

/* MOBILE */

@media (max-width: 950px) {
    .plant-speakers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .plant-speakers-section {
        padding: 65px 0;
    }

    .plant-speakers-wrap {
        width: min(94%, 560px);
    }

    .plant-speakers-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 20px;
    }

    .plant-speaker-card {
        min-height: 360px;
    }

    .plant-speaker-photo {
        width: 180px;
        height: 180px;
    }
}

/* =========================================================
   PLANT 2027 — CLEAN PREMIUM HERO
   Single source of truth — replaces all previous hero overrides.
   ========================================================= */

.hero.research-video-hero{
    position:relative !important;
    min-height:780px !important;
    height:780px !important;
    overflow:hidden !important;
    isolation:isolate !important;
    display:flex !important;
    align-items:center !important;
    background:#082817 !important;
}

.hero.research-video-hero .hero-image-bg{
    position:absolute !important;
    inset:0 !important;
    z-index:0 !important;
    overflow:hidden !important;
}

.hero.research-video-hero .hero-banner-image{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
    transform:scale(1.04) !important;
    animation:plantHeroZoom 18s ease-in-out infinite alternate !important;
    transform-origin:center center !important;
    will-change:transform;
}

.hero.research-video-hero .hero-image-bg::after{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
    pointer-events:none !important;
    background:
        linear-gradient(
            90deg,
            rgba(4,38,20,.72) 0%,
            rgba(4,55,27,.42) 45%,
            rgba(3,34,17,.48) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3,27,14,.18) 0%,
            rgba(3,27,14,.08) 48%,
            rgba(3,27,14,.48) 100%
        ) !important;
}

/* HERO CONTAINER */
.hero.research-video-hero .hero-container{
    position:relative !important;
    z-index:4 !important;
    width:min(1320px,calc(100% - 70px)) !important;
    max-width:1320px !important;
    min-height:780px !important;
    margin:0 auto !important;
    padding:60px 0 105px !important;
    display:flex !important;
    align-items:center !important;
}

/* TWO-COLUMN LAYOUT */
.hero.research-video-hero .plant-hero-layout{
    position:relative !important;
    z-index:5 !important;
    width:100% !important;
    min-height:590px !important;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 360px !important;
    align-items:center !important;
    column-gap:56px !important;
    margin:0 !important;
    padding:0 !important;
}

/* LEFT CONTENT */
.hero.research-video-hero .plant-hero-layout > .hero-content{
    position:relative !important;
    grid-column:1 !important;
    grid-row:1 !important;
    width:100% !important;
    max-width:680px !important;
    margin:0 !important;
    padding:0 !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    text-align:left !important;
    z-index:6 !important;
    filter:drop-shadow(0 12px 28px rgba(0,0,0,.10));
}

/* EYEBROW */
.hero.research-video-hero .plant-hero-layout .hero-label{
    display:inline-flex !important;
    align-items:center !important;
    width:auto !important;
    margin:0 0 18px !important;
    padding:8px 15px !important;
    color:#e4f8e8 !important;
    font-size:10px !important;
    font-weight:900 !important;
    letter-spacing:2px !important;
    line-height:1 !important;
    text-align:left !important;
    white-space:nowrap !important;
    background:rgba(5,40,22,.30) !important;
    border:1px solid rgba(200,240,210,.28) !important;
    border-radius:999px !important;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    text-shadow:0 2px 12px rgba(0,0,0,.55) !important;
}

.hero.research-video-hero .plant-hero-layout .hero-label::before{
    display:none !important;
}

/* TITLE */
.hero.research-video-hero .plant-hero-layout .hero-title{
    width:100% !important;
    max-width:680px !important;
    margin:0 0 21px !important;
    padding:0 !important;
    color:#ffffff !important;
    font-size:clamp(46px,4.4vw,58px) !important;
    line-height:1.01 !important;
    letter-spacing:-2.5px !important;
    font-weight:900 !important;
    text-align:left !important;
    white-space:normal !important;
    text-shadow:0 5px 25px rgba(0,0,0,.58) !important;
}

.hero.research-video-hero .plant-hero-layout .hero-title-first-line{
    display:block !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    line-height:1 !important;
    text-align:left !important;
    white-space:nowrap !important;
    color:#ffffff !important;
}

.hero.research-video-hero .plant-hero-layout .hero-title-second-line{
    display:block !important;
    width:max-content !important;
    max-width:none !important;
    margin:8px 0 0 !important;
    padding:0 !important;
    line-height:1 !important;
    text-align:left !important;
    white-space:nowrap !important;
    font-size:52px !important;
    letter-spacing:-2.1px !important;
    color:#63d579 !important;
}

.hero.research-video-hero .plant-hero-layout .hero-accent{
    color:#63d579 !important;
    font-weight:900 !important;
}

/* DESCRIPTION */
.hero.research-video-hero .plant-hero-layout .hero-description{
    width:100% !important;
    max-width:610px !important;
    margin:0 0 22px !important;
    color:rgba(255,255,255,.92) !important;
    font-size:14px !important;
    line-height:1.7 !important;
    font-weight:400 !important;
    text-align:left !important;
    text-shadow:0 2px 12px rgba(0,0,0,.52) !important;
}

/* DATE + LOCATION
   Tight spacing; no centering; no inline-style dependency. */
.hero.research-video-hero .plant-hero-layout .hero-meta{
    display:block !important;
    width:100% !important;
    margin:0 0 24px !important;
    padding:0 !important;
    text-align:left !important;
    order:3 !important;
}

.hero.research-video-hero .plant-hero-layout .hero-meta-pills-wrap{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex-wrap:nowrap !important;
    width:max-content !important;
    max-width:100% !important;
    gap:0 !important;
    margin:0 !important;
    padding:9px 16px !important;
    border:1px solid rgba(105,215,127,.42) !important;
    border-radius:999px !important;
    background:rgba(5,30,18,.72) !important;
    backdrop-filter:blur(10px) !important;
    -webkit-backdrop-filter:blur(10px) !important;
    box-shadow:0 10px 30px rgba(0,0,0,.24) !important;
}

.hero.research-video-hero .plant-hero-layout .event-info-pill{
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
    width:auto !important;
    min-height:0 !important;
    margin:0 !important;
    padding:0 !important;
    color:#ffffff !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    font-size:11px !important;
    font-weight:850 !important;
    letter-spacing:.85px !important;
    line-height:1.3 !important;
    white-space:nowrap !important;
    text-shadow:0 2px 10px rgba(0,0,0,.5) !important;
}

.hero.research-video-hero .plant-hero-layout .event-info-pill span{
    display:inline-block !important;
    color:#ffffff !important;
}

.hero.research-video-hero .plant-hero-layout .event-info-pill i{
    color:#4ade80 !important;
    font-size:13px !important;
    flex:0 0 auto;
}

/* Only a small separator between date and location. */
.hero.research-video-hero .plant-hero-layout .event-info-pill + .event-info-pill{
    position:relative !important;
    margin-left:17px !important;
    padding-left:17px !important;
}

.hero.research-video-hero .plant-hero-layout .event-info-pill + .event-info-pill::before{
    content:"" !important;
    position:absolute !important;
    left:0 !important;
    top:50% !important;
    width:1px !important;
    height:16px !important;
    transform:translateY(-50%) !important;
    background:rgba(255,255,255,.42) !important;
}

/* BUTTONS */
.hero.research-video-hero .plant-hero-layout .hero-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex-wrap:wrap !important;
    gap:10px !important;
    margin:0 !important;
    padding:0 !important;
    order:4 !important;
}

.hero.research-video-hero .plant-hero-layout .hero-actions .uiverse-btn{
    position:relative !important;
    overflow:hidden !important;
    min-width:133px !important;
    height:42px !important;
    padding:0 20px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:6px !important;
    font-size:11px !important;
    font-weight:900 !important;
    letter-spacing:.7px !important;
    box-shadow:0 12px 28px rgba(0,0,0,.18) !important;
    transition:transform .28s ease,box-shadow .28s ease,filter .28s ease !important;
}

.hero.research-video-hero .plant-hero-layout .hero-actions .uiverse-btn::before{
    content:"" !important;
    position:absolute !important;
    top:0 !important;
    left:-120% !important;
    width:70% !important;
    height:100% !important;
    background:linear-gradient(100deg,transparent,rgba(255,255,255,.26),transparent) !important;
    transform:skewX(-18deg) !important;
    transition:left .65s ease !important;
    pointer-events:none !important;
}

.hero.research-video-hero .plant-hero-layout .hero-actions .uiverse-btn:hover{
    transform:translateY(-3px) !important;
    box-shadow:0 18px 34px rgba(0,0,0,.22) !important;
    filter:saturate(1.04);
}

.hero.research-video-hero .plant-hero-layout .hero-actions .uiverse-btn:hover::before{
    left:125% !important;
}

/* EARLY BIRD CARD */
.hero.research-video-hero .plant-earlybird-card{
    position:relative !important;
    grid-column:2 !important;
    grid-row:1 !important;
    z-index:7 !important;
    width:100% !important;
    max-width:360px !important;
    margin:0 !important;
    padding:26px 28px !important;
    border:4px solid rgba(255,255,255,.95) !important;
    border-radius:28px !important;
    background:linear-gradient(0deg,#ffffff 0%,#f5faf6 100%) !important;
    box-shadow:0 30px 55px rgba(11,78,39,.30),0 12px 28px rgba(0,0,0,.16) !important;
    overflow:hidden !important;
}

.hero.research-video-hero .plant-earlybird-card::before{
    content:"" !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:6px !important;
    background:linear-gradient(90deg,#0f5f31,#16a34a,#55c76b) !important;
}

.hero.research-video-hero .plant-earlybird-card::after{
    content:"" !important;
    position:absolute !important;
    width:190px !important;
    height:190px !important;
    right:-90px !important;
    top:-90px !important;
    border-radius:50% !important;
    border:35px solid rgba(22,163,74,.07) !important;
    pointer-events:none !important;
}

.hero.research-video-hero .earlybird-top,
.hero.research-video-hero .earlybird-deadline,
.hero.research-video-hero .earlybird-form,
.hero.research-video-hero .earlybird-note{
    position:relative !important;
    z-index:2 !important;
}

.hero.research-video-hero .earlybird-top{
    margin-bottom:20px !important;
}

.hero.research-video-hero .earlybird-badge{
    display:inline-block !important;
    padding:6px 11px !important;
    margin-bottom:11px !important;
    border-radius:7px !important;
    background:#e5f7e9 !important;
    color:#12813b !important;
    font-size:10px !important;
    font-weight:900 !important;
    letter-spacing:1.5px !important;
}

.hero.research-video-hero .earlybird-top h2{
    margin:0 0 6px !important;
    color:#082114 !important;
    font-size:30px !important;
    line-height:1.05 !important;
    font-weight:900 !important;
    letter-spacing:-1px !important;
}

.hero.research-video-hero .earlybird-top p{
    margin:0 !important;
    color:#66776d !important;
    font-size:13px !important;
    line-height:1.5 !important;
}

.hero.research-video-hero .earlybird-deadline{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:10px !important;
    margin-bottom:16px !important;
    padding:12px 13px !important;
    border-radius:12px !important;
    background:#edf8f0 !important;
    border-left:4px solid #16a34a !important;
}

.hero.research-video-hero .earlybird-deadline span{
    color:#53705d !important;
    font-size:9px !important;
    font-weight:900 !important;
    letter-spacing:1px !important;
}

.hero.research-video-hero .earlybird-deadline strong{
    color:#12813b !important;
    font-size:11px !important;
    font-weight:900 !important;
    white-space:nowrap !important;
}

.hero.research-video-hero .earlybird-field{
    margin-bottom:10px !important;
}

.hero.research-video-hero .earlybird-field input,
.hero.research-video-hero .earlybird-field select{
    width:100% !important;
    height:46px !important;
    padding:0 13px !important;
    border:1px solid #dfe8e1 !important;
    border-radius:16px !important;
    background:#ffffff !important;
    color:#183124 !important;
    box-shadow:0 8px 16px rgba(34,105,57,.07) !important;
    font-family:inherit !important;
    font-size:13px !important;
    outline:none !important;
    transition:border-color .2s ease,box-shadow .2s ease !important;
}

.hero.research-video-hero .earlybird-field input::placeholder{
    color:#9aa69f !important;
}

.hero.research-video-hero .earlybird-field input:focus,
.hero.research-video-hero .earlybird-field select:focus{
    border-color:#35a957 !important;
    box-shadow:0 0 0 3px rgba(22,163,74,.10) !important;
}

.hero.research-video-hero .earlybird-submit{
    width:100% !important;
    min-height:48px !important;
    margin-top:4px !important;
    border:0 !important;
    border-radius:18px !important;
    background:linear-gradient(45deg,#0f873f 0%,#2fbd58 100%) !important;
    color:#ffffff !important;
    font-family:inherit !important;
    font-size:12px !important;
    font-weight:900 !important;
    cursor:pointer !important;
    box-shadow:0 18px 18px -12px rgba(15,95,49,.55) !important;
    transition:transform .25s ease,box-shadow .25s ease !important;
}

.hero.research-video-hero .earlybird-submit span{
    margin-left:7px !important;
    font-size:15px !important;
}

.hero.research-video-hero .earlybird-submit:hover{
    transform:translateY(-3px) !important;
    box-shadow:0 17px 32px rgba(15,95,49,.27) !important;
}

.hero.research-video-hero .earlybird-note{
    margin-top:13px !important;
    color:#89968e !important;
    font-size:10px !important;
    line-height:1.5 !important;
    text-align:center !important;
}

/* CURVED WHITE TRANSITION */
.hero.research-video-hero::after{
    content:"" !important;
    position:absolute !important;
    left:-5% !important;
    bottom:-150px !important;
    width:110% !important;
    height:245px !important;
    z-index:10 !important;
    background:#ffffff !important;
    border-radius:50% 50% 0 0 / 100% 100% 0 0 !important;
    pointer-events:none !important;
}

@keyframes plantHeroZoom{
    from{transform:scale(1.04);}
    to{transform:scale(1.075);}
}

/* TABLET */
@media (max-width:1100px){
    .hero.research-video-hero .plant-hero-layout{
        grid-template-columns:minmax(0,1fr) 340px !important;
        column-gap:34px !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-title{
        font-size:43px !important;
        letter-spacing:-1.6px !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-title-second-line{
        font-size:43px !important;
        letter-spacing:-1.6px !important;
        white-space:nowrap !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-description{
        max-width:540px !important;
        font-size:13px !important;
    }

    .hero.research-video-hero .plant-earlybird-card{
        padding:23px 24px !important;
    }
}

/* STACKED TABLET / MOBILE */
@media (max-width:900px){
    .hero.research-video-hero{
        height:auto !important;
        min-height:0 !important;
    }

    .hero.research-video-hero .hero-container{
        min-height:0 !important;
        width:min(94%,700px) !important;
        padding:70px 0 115px !important;
    }

    .hero.research-video-hero .plant-hero-layout{
        min-height:0 !important;
        grid-template-columns:1fr !important;
        row-gap:36px !important;
        align-items:start !important;
    }

    .hero.research-video-hero .plant-hero-layout > .hero-content{
        grid-column:1 !important;
        grid-row:1 !important;
        max-width:100% !important;
        align-items:center !important;
        text-align:center !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-label{
        text-align:center !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-title{
        max-width:700px !important;
        font-size:clamp(40px,8vw,58px) !important;
        text-align:center !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-title-first-line,
    .hero.research-video-hero .plant-hero-layout .hero-title-second-line{
        text-align:center !important;
        white-space:normal !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-description{
        max-width:600px !important;
        text-align:center !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-meta{
        display:flex !important;
        justify-content:center !important;
        width:100% !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-meta-pills-wrap{
        width:auto !important;
        max-width:100% !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        border-radius:16px !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-actions{
        justify-content:center !important;
    }

    .hero.research-video-hero .plant-earlybird-card{
        grid-column:1 !important;
        grid-row:2 !important;
        width:min(100%,390px) !important;
        max-width:390px !important;
        margin:0 auto !important;
    }

    .hero.research-video-hero::after{
        bottom:-165px !important;
    }
}

/* SMALL MOBILE */
@media (max-width:560px){
    .hero.research-video-hero .hero-container{
        width:min(92%,560px) !important;
        padding:55px 0 110px !important;
    }

    .hero.research-video-hero .plant-hero-layout{
        row-gap:30px !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-title{
        font-size:clamp(38px,10.5vw,54px) !important;
        letter-spacing:-1.5px !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-description{
        font-size:14px !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-meta-pills-wrap{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:7px !important;
        padding:11px 14px !important;
    }

    .hero.research-video-hero .plant-hero-layout .event-info-pill + .event-info-pill{
        margin-left:0 !important;
        padding-left:0 !important;
    }

    .hero.research-video-hero .plant-hero-layout .event-info-pill + .event-info-pill::before{
        display:none !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-actions .uiverse-btn{
        min-width:128px !important;
    }

    .hero.research-video-hero .plant-earlybird-card{
        padding:22px !important;
    }

    .hero.research-video-hero .earlybird-top h2{
        font-size:27px !important;
    }
}

@media (prefers-reduced-motion:reduce){
    .hero.research-video-hero .hero-banner-image{
        animation:none !important;
    }

    .hero.research-video-hero .plant-hero-layout .hero-actions .uiverse-btn::before{
        display:none !important;
    }
}
/* =========================================================
   HERO FIX — left content vertically aligned with the form card
   ========================================================= */
@media (min-width: 901px) {

    .hero.research-video-hero .plant-hero-layout {
        align-items: center !important;
    }

    /* purane top/left/transform rules ko reset karo */
    .hero.research-video-hero .plant-hero-layout > .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 680px !important;
        align-self: center !important;
    }

    /* eyebrow pill ka extra left gap hatao */
    .hero.research-video-hero .plant-hero-layout .hero-label {
        text-indent: 0 !important;
        transform: none !important;
        margin: 0 0 18px !important;
    }

    .hero.research-video-hero .plant-earlybird-card {
        align-self: center !important;
        transform: none !important;
        margin: 0 !important;
    }
}