:root {
    --bg-color: #ffffff;
    --text-dark: #111111;
    --text-body: #444444; 
    --card-bg: #FAF7EF; 
    --brand-gold: #B97B16; 
    --brand-yellow: #F8AE1B; 
    --brand-yellow-hover: #e09d17;
    --link-blue: #4a7ab5; 
    --shadow: 0 12px 28px rgba(0, 0, 0, 0.08); 
    --error-red: #d93025;
    --hex-stroke: #E6DBBF; 
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative; 
    width: 100%;
}

/* Subtle Bee Hive Background */
.bg-hex-cluster {
    position: fixed; 
    bottom: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

/* Floating Bee Animation */
.animated-bee {
    position: fixed;
    top: 20%;
    right: 5%;
    font-size: 32px;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: fly 25s linear infinite;
}

@keyframes fly {
    0%   { transform: translate(0, 0) scaleX(1); }
    20%  { transform: translate(-20vw, 50px) scaleX(1); }
    25%  { transform: translate(-20vw, 50px) scaleX(-1); } 
    45%  { transform: translate(10vw, -30px) scaleX(-1); }
    50%  { transform: translate(10vw, -30px) scaleX(1); } 
    75%  { transform: translate(-10vw, 80px) scaleX(1); }
    80%  { transform: translate(-10vw, 80px) scaleX(-1); } 
    100% { transform: translate(0, 0) scaleX(-1); }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    vertical-align: middle;
}

.logo-container .sb-logo {
    height: 100px;
    width: auto;
}

.logo-container .edalive-logo {
    height: 20px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--brand-gold);
}

.cta-btn-small {
    background-color: var(--brand-yellow);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.cta-btn-small:hover {
    background-color: var(--brand-yellow-hover);
}

/* Mobile Menu Burger Icon */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Burger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
    gap: 40px;
}

.hero-content {
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: 'Arvo', serif;
    font-size: 44px; 
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p.hero-subtext {
    font-size: 17px;
    color: var(--text-body);
    margin: 0 auto 32px auto;
    max-width: 800px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--brand-yellow);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(242, 156, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-yellow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 2px solid #eaeaea;
}

.btn-secondary:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

/* Section Grouping Layout */
.feature-group-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.group-platform {
    padding: 60px 20px 40px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(250,247,239,0.4) 100%);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.group-integrity {
    padding: 40px 20px 80px;
    width: 100%;
    background: linear-gradient(180deg, rgba(250,247,239,0.4) 0%, rgba(255,255,255,1) 100%);
}

.features-container, .download-container, .container, .filter-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Group Headers */
.group-header {
    text-align: center;
    margin-bottom: 48px;
}

.group-header h2 {
    font-family: 'Arvo', serif;
    font-size: 34px;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    position: relative;
    display: inline-block;
}

.group-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--brand-yellow);
    border-radius: 2px;
}

.group-header p {
    font-size: 16px;
    color: var(--text-body);
    max-width: 600px;
    margin: 16px auto 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.group-integrity .feature-card {
    border-left: 4px solid var(--brand-gold);
    background-color: #ffffff;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: row; 
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card.full-width {
    grid-column: 1 / -1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Hexagon Icon Implementation */
.hex-icon-wrapper {
    flex-shrink: 0;
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.15));
    margin-top: 4px;
}

.hex-shape {
    width: 72px;
    height: 62px;
    background-color: var(--brand-yellow);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-integrity .hex-shape {
    background-color: var(--brand-gold);
}

.group-integrity .hex-shape svg {
    fill: #ffffff;
}

.hex-shape svg {
    width: 26px;
    height: 26px;
    fill: #111111;
}

/* Feature Card Typography */
.card-content {
    flex: 1;
}

.card-content h3 {
    font-family: 'Arvo', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-gold);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.group-integrity .card-content h3 {
    color: var(--text-dark);
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-body);
    margin: 0 0 16px 0;
    line-height: 1.6;
}

/* --- PERFECT HEXAGON BULLETS --- */
.card-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 14.5px;
    color: var(--text-body);
}

.card-content ul li {
    position: relative;
    padding-left: 26px; 
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-content ul li:last-child {
    margin-bottom: 0;
}

.card-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px; 
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F8AE1B' d='M6 2 L18 2 L24 12 L18 22 L6 22 L0 12 Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.card-content ul li:hover::before {
    transform: scale(1.15);
    filter: brightness(0.85); 
}

.group-integrity .card-content ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23B97B16' d='M6 2 L18 2 L24 12 L18 22 L6 22 L0 12 Z'/%3E%3C/svg%3E");
}

.group-integrity .card-content ul li:hover::before {
    filter: brightness(0.3);
}

.card-content strong {
    color: var(--brand-gold);
    font-weight: 700;
}

.group-integrity .card-content strong {
    color: var(--text-dark);
}

.two-column-list {
    column-count: 2;
    column-gap: 40px;
}

/* Footer */
footer {
    width: 100%;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--brand-yellow);
}

.copyright {
    font-size: 12px;
    color: #666666;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Download Center Specific Styles */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #eaeaea;
    border-radius: 6px;
    padding: 8px 16px; 
    font-size: 13px; 
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    border-color: var(--brand-yellow);
    color: var(--text-dark);
}

.filter-btn.active {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: #ffffff;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
}

.filter-btn.shake {
    animation: shake 0.4s ease-in-out;
    border-color: var(--error-red);
    color: var(--error-red);
    background: rgba(217, 48, 37, 0.05);
}

.download-container {
    padding: 0 20px 40px; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 24px; 
}

.group-card {
    background: var(--card-bg); 
    border-radius: 12px; 
    padding: 28px 24px; 
    box-shadow: var(--shadow); 
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease forwards;
    position: relative;
    transition: transform 0.2s ease; 
}

.group-card:hover {
    transform: translateY(-4px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.group-card h2 {
    font-family: 'Arvo', serif;
    font-size: 24px; 
    font-weight: 700;
    color: var(--brand-gold);
    margin: 0 0 20px 0; 
}

ul.list-ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0; 
    flex-grow: 1;
}

li.list-li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: normal;
}

li.list-li:before {
    display: none;
}

li.list-li:hover {
    background-color: transparent;
    transform: none;
}

li.list-li:last-child {
    border-bottom: none;
}

.file-name {
    font-size: 14px; 
    color: var(--text-body);
}

a.download-btn {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px; 
    font-weight: 600;
    border-bottom: 2px solid var(--link-blue); 
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    margin-left: 10px;
}

a.download-btn:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}

a.group-download {
    background: var(--brand-yellow);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 15px; 
    font-weight: 700;
    padding: 14px 20px; 
    border-radius: 4px;
    transition: background 0.2s ease;
    width: 100%;
    display: block;
    box-shadow: 0 4px 12px rgba(242, 156, 0, 0.3);
}

a.group-download:hover {
    background: var(--brand-yellow-hover);
    box-shadow: 0 6px 16px rgba(242, 156, 0, 0.4);
}

/* RESPONSIVE STYLES (TABLET & MOBILE) */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 36px;
    }
    .two-column-list {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 20px 0 40px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        display: flex; 
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 10px;
        font-size: 18px;
    }

    .cta-btn-small {
        display: inline-block;
        margin-top: 10px;
    }

    .hero {
        flex-direction: column;
        margin: 40px auto;
    }
    .hero-content {
        padding: 10px;
    }
    .hero-btns {
        flex-direction: column;
    }
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .card-content ul {
        text-align: left;
        display: inline-block;
    }
    .bg-hex-cluster {
        display: none;
    }
    .animated-bee {
        display: none;
    }
}

/* --- HERO PARAGRAPH & CAROUSEL STYLES --- */

.hero-paragraph {
    font-size: 18px;
    line-height: 1.2;
    color: var(--text-body);
    max-width: 850px;
    margin: 0 auto 32px auto;
    text-align: center;
}

.hero-paragraph-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            color: var(--text-body);
            max-width: 950px;
            margin: 0 auto 32px auto;
            text-align: center;
            line-height: 1.4;
        }

        .hero-feature-item {
            align-items: center;
            gap: 8px;
        }

        /* SVG Gold Checkmark Icon */
        .hero-check-icon {
            color: var(--brand-gold);
            font-weight: 700;
            font-size: 26px;
        }

		.hero-paragraph-features a {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.hero-paragraph-features a:hover {
    border-color: var(--brand-gold);
}

        @media (max-width: 768px) {
            .hero-paragraph-features {
                flex-direction: column;
                text-align: left;
                align-items: flex-start;
                gap: 16px;
                padding: 0 10px;
            }
        }

/* Interactive Platform Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    background-color: var(--card-bg);
    border: 1px solid var(--hex-stroke);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-track {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none; /* Removes the black bullet points */
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden; /* Completely hides inactive slides */
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible; /* Shows active slide */
    z-index: 2;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF7EF 0%, #E6DBBF 100%);
    color: var(--brand-gold);
    font-family: 'Arvo', serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

.slide-content span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-body);
    font-weight: 400;
    margin-top: 12px;
    max-width: 550px;
}

/* Carousel Control Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--hex-stroke);
    color: var(--text-dark);
    font-size: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.carousel-btn:hover {
    background-color: var(--brand-yellow);
    color: #ffffff;
    border-color: var(--brand-yellow);
}

.prev-btn { left: 20px; }
    
.next-btn { right: 20px; }

/* Carousel Navigation Dots */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--hex-stroke);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.carousel-indicator.active {
    background-color: var(--brand-yellow);
}

/* Override global list styling for the carousel */
.carousel-slide::before {
    display: none !important;
}
.carousel-slide {
    padding-left: 0 !important;
}

/* --- CAROUSEL IMAGES --- */
.carousel-img {
    width: 550px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --- UTILITY CLASSES REPLACING INLINE STYLES --- */
.sf-inline-link {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
}
.sf-inline-link:hover {
    text-decoration: underline;
}

.sf-dark-link {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
}

.footer-copyright-link {
    color: inherit;
    text-decoration: underline;
}

/* --- FOOTER SPECIFIC OVERRIDES --- */
/* Reset footer link specific styles to override aggressive mobile nav rules */
footer .footer-links a {
    display: inline-block !important; 
    padding: 0 !important; 
    font-size: 14px !important; 
}

/* Ensure the footer logo scales correctly */
footer .footer-logo a {
    display: inline-block !important;
    padding: 0 !important;
}

.footer-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
	vertical-align: middle;
}

.footer-logo .f-edalive-logo {
    height: 18px;
    width: auto;
    max-width: 100%;
}


@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}