:root {
    --primary: #123524;
    --primary-light: #1d5238;
    --accent: #E3B044;
    --bg-main: #ffffff;
    --bg-sub: #F7F9F8;
    --text-dark: #111A15;
    --text-muted: #6B7A71;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--bg-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utility */
.section-pad {
    padding: 120px 5vw;
}

.sec-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.sec-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 176, 68, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s, background 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Agriculture Theme Hero - Optimized & Abstractive (Left-Aligned) */
.agri-hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 65px;
    /* Ensures text never overlaps the fixed navbar & logo */
    padding-bottom: 95px;
    /* Ensures clearance above the live updates ribbon */
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
}

.agri-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.agri-hero .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(8, 26, 17, 0.85) 0%, rgba(12, 38, 25, 0.58) 48%, rgba(10, 32, 21, 0.2) 100%),
        linear-gradient(180deg, rgba(10, 32, 21, 0.45) 0%, transparent 40%, rgba(10, 32, 21, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2vw 0 6vw;
    max-width: 840px;
    margin-left: 0;
    margin-right: auto;
    margin-top: 25px;
    /* Pushes content down with clean breathing room below the logo */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #F8D072;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(227, 176, 68, 0.35);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(227, 176, 68, 0.6);
    transform: translateY(-1px);
}

.hero-tag i {
    font-size: 0.75rem;
    color: var(--accent);
}

.hero-content h1 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 20px 0;
    max-width: 860px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.no-break {
    white-space: nowrap;
    display: inline-block;
}

.hero-content h1 span:not(.no-break) {
    position: relative;
    display: inline-block;
    color: #F7CB66;
    background: linear-gradient(135deg, #FFE194 0%, #E3B044 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-content h1 span:not(.no-break)::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E3B044, transparent);
    opacity: 0.7;
    border-radius: 10px;
    z-index: -1;
}

.hero-content p {
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
    font-weight: 300;
    line-height: 1.68;
    margin: 0 0 30px 0;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.2px;
}

.hero-btn {
    align-self: flex-start;
    padding: 14px 34px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 20px rgba(18, 53, 36, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-btn:hover {
    box-shadow: 0 10px 25px rgba(227, 176, 68, 0.35), 0 0 0 1px rgba(227, 176, 68, 0.4);
    transform: translateY(-2px);
}



/* NEW: Modern Floating Glass Live Ribbon */
.live-ribbon-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}

.live-ribbon-container {
    display: flex;
    align-items: center;
    pointer-events: auto;
    background: rgba(11, 34, 23, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    height: 60px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    width: 100%;
    max-width: 1300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lr-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #d49c30 100%);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0 25px;
    height: 86%;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    position: relative;
    white-space: nowrap;
    letter-spacing: 1.5px;
    border-radius: 100px;
    box-shadow: 5px 0 20px rgba(227, 176, 68, 0.2);
    margin-left: 5px;
    margin-right: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.lr-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.lr-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 180s linear infinite;
    padding-left: 20px;
}

.lr-content:hover {
    animation-play-state: paused;
}

.lr-item {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.lr-date {
    font-weight: 700;
    color: var(--accent);
    background: rgba(227, 176, 68, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-right: 12px;
}

.lr-divider {
    margin: 0 35px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 2. Editorial Minimalist Layout (Legacy & Revival) */
.ed-grid-section {
    padding: 80px 5vw 120px;
    background: var(--bg-main);
}

.ed-grid {
    display: flex;
    align-items: center;
    gap: 8vw;
}

.ed-content {
    flex: 1;
}

.ed-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.ed-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ed-image-wrap {
    flex: 1.2;
    position: relative;
}

.ed-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ed-floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ed-floating-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.ed-floating-badge p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. Hover Accordion (Our Businesses) */
.businesses-section {
    background: var(--bg-sub);
    padding-top: 120px;
}

.accordion-wrapper {
    width: 100%;
    height: 75vh;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.acc-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.acc-panel:last-child {
    border-right: none;
}

.acc-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 53, 36, 0.9) 0%, rgba(18, 53, 36, 0.4) 100%);
    transition: background 0.7s;
}

.acc-panel:hover,
.acc-panel.active {
    flex: 4;
}

.acc-panel:hover::before,
.acc-panel.active::before {
    background: linear-gradient(to top, rgba(18, 53, 36, 0.95) 0%, rgba(18, 53, 36, 0.1) 100%);
}

.acc-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc-icon {
    font-size: 2rem;
    color: var(--accent);
}

.acc-title {
    font-size: 2.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.acc-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    transition-delay: 0s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.acc-panel:hover .acc-desc,
.acc-panel.active .acc-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* 4. Sticky Scroll Parallax (Operations) */
.ops-wrapper {
    background: var(--bg-main);
    position: relative;
}

.sticky-ops-container {
    display: flex;
    gap: 4vw;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.ops-left {
    flex: 1;
    padding: 0 0 100px 0;
}

.ops-right {
    flex: 1.5;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ops-img-frame {
    width: 100%;
    height: 70vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ops-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ops-img.active {
    opacity: 1;
    z-index: 2;
}

.op-step-block {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vh 0;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.op-step-block.active {
    opacity: 1;
}

.op-num {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
}

.op-step-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.op-step-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 450px;
}

/* 5. Offset Overlay Layout (Sustainability) */
.sus-offset-section {
    padding: 120px 5vw;
    background: var(--bg-sub);
}

.sus-offset-container {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.sus-offset-img {
    width: 60%;
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.sus-offset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sus-offset-content {
    width: 50%;
    background: var(--primary);
    color: #fff;
    padding: 70px 60px;
    border-radius: 24px;
    position: absolute;
    right: 0;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(18, 53, 36, 0.3);
}

.sus-tag {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sus-offset-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.sus-offset-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sus-offset-content .btn-primary {
    background: #fff;
    color: var(--primary);
    margin-top: 15px;
}

.sus-offset-content .btn-primary:hover {
    background: var(--accent);
}

/* 6. Hover Tabs Layout (Value Section) */
.value-tabs-section {
    background: var(--primary);
    color: #fff;
    padding: 120px 5vw;
}

.value-tabs-section .sec-title {
    color: #fff;
    text-align: center;
}

.value-tabs-section .sec-desc {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.tabs-wrapper {
    display: flex;
    gap: 5vw;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tab-item {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: color 0.4s, transform 0.4s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tab-item::before {
    content: '';
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s;
    display: block;
}

.tab-item:hover,
.tab-item.active {
    color: #fff;
    transform: translateX(20px);
}

.tab-item:hover::before,
.tab-item.active::before {
    width: 40px;
}

.tabs-right {
    flex: 1.2;
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.tab-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.tab-content.active {
    opacity: 1;
    z-index: 2;
}

.tc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 53, 36, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.tc-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.tc-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 7. Portal Registration CTA Section (White Background) */
.portal-cta {
    padding: 110px 5vw;
    background: #ffffff;
    text-align: center;
    color: var(--text-dark, #111A15);
    position: relative;
    border-top: 1px solid rgba(18, 53, 36, 0.08);
}

.pcta-content {
    max-width: 820px;
    margin: 0 auto;
}

.pcta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary, #123524);
    letter-spacing: -1px;
}

.pcta-content p {
    font-size: 1.2rem;
    color: var(--text-muted, #6B7A71);
    line-height: 1.8;
    margin-bottom: 40px;
}

.pcta-content .btn-primary {
    background: var(--primary, #123524);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 38px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(18, 53, 36, 0.22);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pcta-content .btn-primary:hover {
    background: var(--accent, #E3B044);
    color: var(--primary, #123524);
    box-shadow: 0 12px 28px rgba(227, 176, 68, 0.45);
    transform: translateY(-3px);
}

.mobile-op-img {
    display: none;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media(max-width: 1024px) {
    .mobile-op-img {
        display: block;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .ed-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .ed-floating-badge {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        bottom: -40px;
    }

    .sus-offset-container {
        flex-direction: column;
    }

    .sus-offset-img {
        width: 100%;
        height: 400px;
        border-radius: 20px 20px 0 0;
    }

    .sus-offset-content {
        width: 100%;
        position: relative;
        right: auto;
        border-radius: 0 0 20px 20px;
        padding: 40px 30px;
    }

    /* Transform Accordion into simple vertical cards for mobile */
    .businesses-section {
        padding: 60px 5vw;
        background: var(--bg-sub);
    }

    .accordion-wrapper {
        flex-direction: column;
        height: auto;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        gap: 20px;
    }

    .acc-panel {
        flex: none !important;
        /* Fix for collapsing height in flex column */
        height: 300px !important;
        border-radius: 20px;
        border-right: none;
        border-bottom: none;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .acc-panel::before {
        background: linear-gradient(to top, rgba(18, 53, 36, 0.95) 0%, rgba(18, 53, 36, 0.2) 100%) !important;
    }

    .acc-content {
        bottom: 25px;
        left: 25px;
        right: 25px;
        gap: 10px;
    }

    .acc-title {
        white-space: normal;
        line-height: 1.2;
        word-break: break-word;
    }

    .acc-desc {
        opacity: 1 !important;
        transform: translateY(0) !important;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        overflow: hidden;
    }

    /* Sticky operations */
    .sticky-ops-container {
        flex-direction: column;
        padding: 0 5vw;
    }

    .ops-right {
        display: none;
    }

    .ops-left {
        padding: 50px 0;
    }

    .op-step-block {
        min-height: auto;
        opacity: 1;
        margin-bottom: 50px;
    }

    /* Transform Tabs into static visible elements or simple layout */
    .tabs-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .tabs-left {
        flex: none !important;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .tab-item {
        font-size: 1.3rem;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        text-align: center;
        justify-content: center;
    }

    .tab-item::before {
        display: none;
    }

    .tab-item:hover,
    .tab-item.active {
        transform: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .tabs-right {
        flex: none !important;
        width: 100%;
        height: 350px;
        border-radius: 20px;
    }
}

@media(max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
    }

    /* Ensure no horizontal scroll */
    .section-pad {
        padding: 60px 5vw;
    }

    .ed-grid-section {
        padding: 60px 5vw 80px;
    }

    .sus-offset-section {
        padding: 60px 5vw;
    }

    .value-tabs-section {
        padding: 60px 5vw;
    }

    .portal-cta {
        padding: 60px 5vw;
    }

    .sec-title {
        font-size: 2.2rem;
    }

    .sec-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .agri-hero {
        padding-top: 100px;
        padding-bottom: 80px;
        min-height: 560px;
    }

    .hero-content {
        padding: 0 5vw 0;
        margin-top: 15px;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .hero-tag {
        font-size: 0.72rem;
        padding: 6px 16px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 15px;
        text-align: left;
    }

    .hero-br {
        display: none;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
        text-align: left;
    }

    .hero-btn {
        align-self: flex-start;
    }

    .live-ribbon-container {
        height: 45px;
    }

    .lr-badge {
        font-size: 0.75rem;
        padding: 0 15px;
    }

    .lr-item {
        font-size: 0.85rem;
    }

    .ed-content h2 {
        font-size: 2.2rem;
    }

    .ed-image-wrap img {
        height: 300px;
        border-radius: 20px;
    }

    .ed-floating-badge {
        padding: 20px;
        bottom: -20px;
    }

    .ed-floating-badge h3 {
        font-size: 1.8rem;
    }

    .acc-panel {
        height: 280px !important;
    }

    .acc-title {
        font-size: 1.8rem;
    }

    .acc-icon {
        font-size: 1.8rem;
    }

    .op-step-block {
        margin-bottom: 40px;
    }

    .op-num {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .op-step-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .sus-offset-img {
        height: 250px;
        border-radius: 15px 15px 0 0;
    }

    .sus-offset-content {
        padding: 25px 20px;
        border-radius: 0 0 15px 15px;
    }

    .sus-offset-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .tabs-left {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tab-item {
        font-size: 1.2rem;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .tabs-right {
        height: 280px;
    }

    .tc-overlay {
        padding: 20px;
    }

    .tc-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .pcta-content h2 {
        font-size: 2.2rem;
    }

    .pcta-content .btn-primary {
        font-size: 0.95rem;
        padding: 14px 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 auto;
        white-space: normal;
        line-height: 1.4;
    }
}