:root {
    /* Color Palette */
    --brand-primary: #005bbd;
    --brand-secondary: #003f8a;
    --brand-dark: #0f1e3a;
    --text-main: #1a1a1a;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --link-color: #005bbd;
    --link-hover: #004fc4;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    --gradient-accent: linear-gradient(90deg, var(--brand-primary) 0%, #004fc4 100%);
    
    /* Spacing & Layout */
    --container-width: 1280px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 40px -10px rgba(0, 64, 138, 0.12);
    --shadow-hover: 0 20px 40px -5px rgba(0, 64, 138, 0.18);
    
    /* Typography Fallbacks */
    --font-display: 'Cinzel', serif; /* Horta approximation */
    --font-sub: 'Syne', sans-serif; /* Formula Bold approximation */
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--brand-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.font-sub {
    font-family: var(--font-sub);
    color: var(--brand-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.text-center { text-align: center; }

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 40px;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 64, 138, 0.30);
}

.btn-primary:hover {
    background: var(--link-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 64, 138, 0.40);
}

.btn-secondary {
    background: #ffffff;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

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

/* 1. Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
    background: var(--brand-primary); /* Fallback */
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 0;
    background: rgba(0, 91, 189, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 640px) {
    .header .logo-img { height: 65px; }
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-primary);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

/* User custom dropdown styles */
.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1100;
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: block;
}

.dropdown:hover .submenu {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 40, 90, 0.15);
    padding: 15px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    list-style: none;
    border: 1px solid #eef3f9;
}

.has-dropdown.open .dropdown-menu,
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #1a1a1a !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f4f8fb;
    color: var(--brand-primary) !important;
    padding-left: 28px;
}

.products-dropdown {
    min-width: 300px;
}

.nav-link {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    position: relative;
    white-space: nowrap;
    padding: 8px 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(0, 91, 189, 0.25);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(0, 64, 138, 0.08);
}

.header-search-toggle i {
    font-size: 0.95rem;
}

.header-search-toggle:hover {
    background: #f0f7ff;
    border-color: rgba(0, 79, 196, 0.55);
    box-shadow: 0 10px 24px rgba(0, 64, 138, 0.18);
    transform: translateY(-1px) scale(1.03);
}

.header-search-bar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.header-search-input {
    width: 0;
    opacity: 0;
    padding: 0;
    margin-left: 8px;
    border-radius: 999px;
    border: 1px solid rgba(0, 91, 189, 0.25);
    background: #ffffff;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: all 0.28s ease;
    box-shadow: 0 10px 22px rgba(0, 64, 138, 0.16);
}

.header-search.active .header-search-bar {
    pointer-events: auto;
}

.header-search.active .header-search-input {
    width: 200px;
    opacity: 1;
    padding: 8px 14px;
}

/* 2. Hero Section with Slider */
.hero-split-slider {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 50px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-split-slider::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 91, 189, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 0 40px;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.hero-slide {
    display: none;
    opacity: 0;
    width: 100%;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-split-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-split-visual {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-split-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: 32px;
    box-shadow: 0 25px 60px -15px rgba(0, 40, 90, 0.2);
    object-fit: contain;
    background: #ffffff;
    padding: 15px;
    transition: transform 0.5s ease;
}

.hero-split-img:hover {
    transform: scale(1.02);
}

/* Slide Entry Animations */
.hero-slide.active .hero-subtitle { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.hero-slide.active h1 { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.hero-slide.active .hero-lead { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }
.hero-slide.active .hero-actions { animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0; }
.hero-slide.active .hero-split-visual { animation: fadeInScale 1s ease 0.3s forwards; opacity: 0; }

.hero-split-content h1 {
    font-size: 4rem;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-weight: 900;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-sub);
    color: var(--brand-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-lead {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

.btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 180px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.hero-split-img {
    width: auto;
    max-width: 100%;
    max-height: 520px;
    border-radius: 32px;
    box-shadow: 0 30px 60px -12px rgba(0, 40, 90, 0.2);
    object-fit: contain;
    background: #ffffff;
    padding: 20px;
}

/* Slider Nav Controls */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.hero-slider-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(0, 91, 189, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    color: var(--brand-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
    background: var(--brand-primary);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 91, 189, 0.2);
}

.hero-slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

.hero-slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--brand-primary);
}

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1200px) {
    .hero-slider-nav { left: 20px; right: 20px; }
}

@media (max-width: 992px) {
    .hero-split-slider { padding: 50px 0 80px; min-height: auto; }
    .hero-split-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-split-content h1 { font-size: 3rem; }
    .hero-lead { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-split-visual { order: -1; }
    .hero-slider-nav { display: none; }
}

@media (max-width: 640px) {
    .hero-split-content h1 { font-size: 2.4rem; }
    .hero-lead { font-size: 1.1rem; }
}

.home-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
}
.hero-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.home-hero .hero-center h1 {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 14px;
}
.home-hero .hero-center p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.hero-note {
    background: #ffffff;
    padding: 14px 0;
    border-top: 1px solid #eef3f9;
    border-bottom: 1px solid #eef3f9;
}
.hero-note-text {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
}

.about-intro {
    background: #ffffff;
    padding: 48px 0 30px;
}
.about-intro-text {
    max-width: 980px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 0.6s ease forwards;
}
.divider {
    width: 80px;
    height: 3px;
    background: var(--brand-primary);
    margin: 18px auto 0;
    border-radius: 2px;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* 3. Conditions Section */
.conditions-section {
    padding: 100px 0;
    background: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tile-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f4f8;
}

.tile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.tile-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tile-body {
    padding: 24px 20px;
    flex-grow: 1;
}

.tile-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.tile-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-search-bar {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        transform: none;
        z-index: 1200;
    }
    .header-search-input {
        width: 100%;
        margin-left: 0;
    }
}

.nav-menu .btn-primary {
    padding: 10px 20px;
    font-size: 0.8rem;
    border-radius: 30px;
    margin-left: 10px;
}

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--header-text);
    background: rgba(0, 91, 189, 0.08);
    border: 1px solid rgba(0, 91, 189, 0.22);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    place-items: center;
}

/* Premium Mobile Menu Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 50, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.menu-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f4f8;
    background: #f8fbff;
}

.menu-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: 1px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-primary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px 25px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f8fbff;
}

.mobile-nav-link:hover, 
.mobile-nav-link.active {
    color: var(--brand-primary);
}

.mobile-nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-has-dropdown.active > .mobile-nav-link i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0 0 10px 20px;
    margin: 0;
    display: none;
    border-left: 2px solid #eef3f9;
}

.mobile-has-dropdown.active .mobile-submenu {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-submenu li a:hover {
    color: var(--brand-primary);
}

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

@media (max-width: 992px) {
    body {
        margin-top: 0 !important;
        padding-top: 65px !important;
    }

    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 65px !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        background: #f1f2f4 !important;
        z-index: 9999 !important;
        border-bottom: 1px solid #d1d9e6 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
        line-height: normal !important;
    }

    .header::before,
    .header::after {
        display: none !important;
    }

    /* Reset all possible spacing issues inside header */
    .header *, .header div, .header .container, .header .row, .header [class*="col-"] {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        line-height: normal !important;
    }

    .header .container.nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 !important;
        height: 65px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .header .logo {
        position: relative !important;
        z-index: 2 !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header .logo-img {
        height: 55px !important;
        width: auto !important;
        display: block !important;
        margin: 0 !important;
        box-shadow: none !important;
        background: none !important;
    }

    .mobile-toggle {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 45px !important;
        height: 45px !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: #ffffff !important;
        border: 1px solid #d1d9e6 !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 100000 !important;
        transition: all 0.3s ease !important;
    }

    .mobile-toggle span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #d16ba5 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }

    .mobile-toggle:hover {
        background: #ffffff !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
    }

    /* Active Animation for Hamburger */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
    }

    .nav-menu {
        display: none !important;
    }
}

/* 2. Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 0% 0%, #e9f2ff 0, rgba(233, 242, 255, 0) 45%),
                radial-gradient(circle at 100% 100%, #d7e7ff 0, rgba(215, 231, 255, 0) 50%),
                linear-gradient(145deg, #ffffff 0%, #f7fbff 45%, #e4efff 100%);
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 91, 189, 0.18), rgba(0, 91, 189, 0));
    top: -120px;
    left: -80px;
}

.hero::after {
    width: 720px;
    height: 720px;
    background: radial-gradient(circle at 70% 70%, rgba(0, 91, 189, 0.16), rgba(0, 91, 189, 0));
    bottom: -260px;
    right: -140px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero.hero--image-only .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.hero.hero--image-only .hero-content {
    display: none;
}

.hero.hero--image-only {
    padding: 60px 0 0;
    min-height: auto;
}

.hero.hero--image-only::before,
.hero.hero--image-only::after {
    display: none;
}



.hero-split .hero-grid {
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 40px;
}

.hero-split.no-text .hero-grid {
    grid-template-columns: 1fr 1fr;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-subtitle {
    font-family: var(--font-sub);
    color: var(--brand-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-visual {
    position: relative;
}

.molecular-visual,
.lifestyle-visual {
    min-height: 560px;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    background: radial-gradient(closest-side, rgba(0,64,138,0.12), transparent) 20% 30%/50% 50% no-repeat,
                radial-gradient(closest-side, rgba(0,64,138,0.08), transparent) 80% 70%/40% 40% no-repeat,
                #ffffff;
}

.molecular-visual {
    background-image:
        radial-gradient(closest-side, rgba(0,64,138,0.18), transparent),
        radial-gradient(closest-side, rgba(0,64,138,0.10), transparent);
}

.lifestyle-visual {
    background-image:
        radial-gradient(closest-side, rgba(0,64,138,0.14), transparent),
        radial-gradient(closest-side, rgba(0,64,138,0.07), transparent);
}

/* Hero Slider Banner */
.banner-hero {
    background: #ffffff;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-slider {
    position: relative;
}
.hero-slider-track {
    position: relative;
}
.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-slide.active {
    display: block;
    opacity: 1;
}
.banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    min-height: 70vh;
}
.banner-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-brand-logo {
    max-width: 260px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}
.banner-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 28px;
}
.banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.banner-visual {
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    background:
        radial-gradient(closest-side, rgba(0,64,138,0.16), transparent) 20% 20%/40% 40% no-repeat,
        radial-gradient(closest-side, rgba(0,64,138,0.10), transparent) 80% 80%/50% 50% no-repeat,
        linear-gradient(145deg, #ffffff 0%, #f7fbff 45%, #e4efff 100%);
    min-height: 380px;
}

/* Products page redesign */
.product-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 40px 0 30px;
    border-bottom: 1px solid #eef3f9;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.product-hero .hero-desc {
    max-width: 800px;
    color: var(--text-light);
    font-size: 1.15rem;
}

.filter-bar {
    padding: 20px 0;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid #d5e2f5;
    background: #fff;
    border-radius: 30px;
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
    box-shadow: 0 5px 15px rgba(0, 91, 189, 0.2);
}

.product-group-section {
    margin-bottom: 80px;
}

.product-group-section .section-title {
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4f8;
    text-align: left;
    display: block;
}

.product-group-section .section-title::after {
    left: 0;
    transform: none;
    width: 80px;
    bottom: -2px;
}

.products-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 64, 138, 0.1);
    border-color: rgba(0, 91, 189, 0.15);
}

.product-tile-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-bottom: 1px solid #f0f4f8;
    transition: transform 0.5s ease;
}

.product-card:hover .product-tile-img {
    transform: scale(1.04);
}

.product-tile-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.15rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.product-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-card .btn-view {
    margin-top: auto;
    padding: 8px 16px;
    font-size: 0.75rem;
    border-radius: 25px;
    background: #f0f7ff;
    color: var(--brand-primary);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #d5e2f5;
}

.product-card:hover .btn-view {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

@media (max-width: 992px) {
    .products-tiles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .product-hero h1 { font-size: 2.5rem; }
    .product-group-section .section-title { font-size: 1.8rem; }
    .products-tiles-grid { grid-template-columns: 1fr; }
}
.prod-hero {
    background: linear-gradient(180deg, #F4F8FB 0%, #EAF3F8 100%);
    padding: 80px 0;
}
.prod-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.prod-hero-media { display:grid; place-items:center; }
.prod-hero-img {
    width: 100%;
    max-width: 680px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    transition: transform .2s ease;
}
.prod-hero-img:hover { transform: scale(1.02); }
.prod-title { font-size: 2.4rem; color: #0A2E4D; margin-bottom: 8px; }
.prod-tagline { color: #174A7C; font-weight: 600; margin-bottom: 10px; }
.prod-desc { color: #3a4a5b; font-size: 1.05rem; line-height: 1.7; margin-bottom: 18px; }
.prod-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.prod-actions .btn { border-radius: 30px; margin-right: 0; }

.prod-benefits {
    background: #ffffff;
    padding: 60px 0;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.benefit-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.benefit-icon { font-size: 1.8rem; color: var(--brand-primary); margin-bottom: 10px; }
.benefit-title { font-size: 1.1rem; margin-bottom: 6px; }
.benefit-desc { color: var(--text-light); }

.how-works { background: #f7fbff; padding: 60px 0; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.how-img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-soft); }
.how-step + .how-step { margin-top: 12px; }
.how-step h5 { margin-bottom: 6px; color: #0A2E4D; }
.how-step p { color: var(--text-light); }

.prod-highlights { background: #ffffff; padding: 60px 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.highlight-stat {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
    text-align: center;
}
.highlight-stat .stat-number { font-size: 2rem; color: #2EC4B6; font-weight: 700; }
.highlight-stat .stat-text { color: var(--text-light); margin-top: 6px; }

.prod-cta { background: linear-gradient(180deg, #EAF3F8 0%, #F4F8FB 100%); padding: 60px 0; text-align: center; }
.prod-cta-inner h3 { margin-bottom: 12px; color: #0A2E4D; }
.prod-cta-actions .btn { border-radius: 30px; margin: 6px; }

@media (max-width: 1024px) {
    .prod-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .how-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .benefit-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
}
.hero-slider-nav {
    position: absolute;
    inset: 50% 40px auto 40px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.hero-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    color: var(--brand-primary);
}
.hero-slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d5e2f5;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.hero-slider-dot.active {
    width: 28px;
    background: var(--brand-primary);
}

.about-hero {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.hero-img-main {
    width: 100%;
    max-width: 1600px;
    height: auto;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    display: block;
}

/* 3. About Section */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Section Typography & Titles */
.section-title {
    font-size: 3.2rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
    font-family: var(--font-display);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    font-family: var(--font-sub);
    color: var(--brand-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* 4. Products Section */
.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 24px;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.product-hero {
    background: #ffffff;
    padding: 120px 0 28px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-media {
    display: grid;
    gap: 16px;
}

.product-main-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
    display: block;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.product-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.product-main-info {
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef3f9;
}

.product-title {
    font-size: 2.4rem;
    margin: 10px 0 6px;
}

.product-subtitle {
    display: block;
    margin-bottom: 14px;
}

.product-intro {
    color: var(--text-light);
    margin-bottom: 18px;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 8px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.highlight-icon {
    color: var(--brand-primary);
    margin-top: 2px;
}

.product-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-benefits {
    background: var(--bg-light);
}

.benefits-header {
    margin-bottom: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef3f9;
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.product-specs {
    background: #ffffff;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.spec-row {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef3f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-usage {
    background: var(--bg-light);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.usage-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef3f9;
}

.usage-item p {
    color: var(--text-light);
    margin-top: 6px;
}

.product-compliance {
    background: #ffffff;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.compliance-block p {
    color: var(--text-light);
}

.standards-section {
    background: #ffffff;
}

.standards-section.section-padding {
    padding: 70px 0;
}

.quality-hero {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    text-align: center;
}

.quality-hero h1 {
    color: var(--brand-primary);
}

.quality-boxes {
    display: flex;
    gap: 24px;
    margin: 28px auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .quality-hero {
        padding: 105px 0 40px;
    }
    .standards-section.section-padding {
        padding: 60px 0;
    }
}

.quality-card {
    background: #ffffff;
    border: 1px solid #eef3f9;
    border-radius: 16px;
    padding: 34px 30px;
    box-shadow: var(--shadow-soft);
    width: 320px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 91, 189, 0.25);
}

.quality-card h3 {
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.quality-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.cert-card {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #eef3f9;
    padding: 26px 22px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 91, 189, 0.25);
}

.cert-icon {
    font-size: 2rem;
    color: rgba(15, 30, 58, 0.45);
    margin-bottom: 12px;
}

.cert-title {
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 1.1rem;
}

.process-section {
    background: var(--bg-light);
}

.process-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.process-step {
    width: 220px;
    margin: 0 auto;
}

.research-hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.research-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(237, 136, 73, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.research-hero .hero-grid {
    position: relative;
    z-index: 1;
}

.scientific-visual {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.scientific-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(168, 3, 3, 0.08);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

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

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .data-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pub-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .process-container {
        flex-direction: column;
        align-items: center;
    }
    .data-grid {
        grid-template-columns: 1fr;
    }
}

/* 5. Features */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.feature-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: 0.3s;
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--brand-primary);
}

/* 6. Impact / Statistics */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F4F8FB 0%, #EAF2F8 100%);
    position: relative;
    overflow: hidden;
}

.recovery-section {
    background: #f4f7fb;
    padding: 80px 0;
    text-align: center;
}

.recovery-section .section-subtitle {
    color: #7aa6c8;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: var(--font-sub);
}

.recovery-section .section-title {
    font-size: 36px;
    color: #1d3c8c;
    margin-bottom: 50px;
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recovery-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
}

.recovery-card .tag {
    font-size: 12px;
    background: #eef3ff;
    padding: 5px 12px;
    border-radius: 20px;
    color: #3b5ed7;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-sub);
}

.recovery-card h3 {
    font-size: 40px;
    color: #1d3c8c;
    margin-bottom: 5px;
    line-height: 1;
}

.recovery-card .small-text {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.recovery-card .line {
    width: 40px;
    height: 3px;
    background: #5ec1e5;
    margin: 15px 0;
}

.recovery-card .desc {
    font-size: 14px;
    color: #777;
    margin: 0;
}

@media (max-width: 768px) {
    .recovery-grid {
        grid-template-columns: 1fr;
    }
    .recovery-section .section-title {
        font-size: 28px;
    }
}

.impact-separator {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 5;
}

.hero-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 5;
}

.outcomes-header {
    text-align: center;
    margin-bottom: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
}

.outcomes-dashboard .stat-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 26px 26px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef3f9;
    display: grid;
    gap: 14px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
    width: auto;
}
.outcomes-dashboard .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-meta {
    display: flex;
    justify-content: center;
}

.stat-tag {
    font-size: 0.8rem;
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,64,138,0.06);
    color: var(--brand-primary);
}

.stat-main {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.7rem;
    color: #2EC4B6;
    line-height: 1;
}

.stat-caption {
    font-family: var(--font-sub);
    color: var(--text-main);
    font-size: 0.95rem;
}
.stat-icon-wrap { display:flex; justify-content:center; }
.stat-icon { color: var(--brand-primary); font-size: 1.4rem; }

.stat-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stat-bar {
    flex: 0 0 60px;
    height: 4px;
    background: var(--brand-secondary);
    border-radius: 999px;
}

.stat-label {
    font-family: var(--font-sub);
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .impact-grid { grid-template-columns: 1fr; }
}

/* 7. Testimonials */
.testimonials-section {
    background: var(--bg-white);
}

.testimonial-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 20px;
    scrollbar-width: none;
}

.testimonial-card {
    min-width: 450px;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--brand-primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-display);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin: 20px 0 30px;
    position: relative;
    z-index: 1;
}

.client-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--brand-primary);
    font-family: var(--font-sub);
    font-size: 0.85rem;
}

/* 8. CTA */
.cta-section {
    background: var(--brand-primary);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    padding: 20px 50px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--link-hover);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 9. Footer */
.footer {
    background: #0f1e3a;
    color: #e3e7f2;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.logo-img {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c3c9dd;
    font-family: var(--font-sub);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--link-color);
    padding-left: 5px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.footer-contact-link:hover {
    padding-left: 0;
}

.footer-contact-link i {
    margin-top: 2px;
    width: 18px;
    text-align: center;
}

.footer .logo-img {
    height: 55px;
    width: auto;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-sub);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

/* Blog */
.blog-hero .hero-center { text-align: center; padding: 120px 0 60px; }
.blog-hero .hero-title { font-size: 3rem; margin-bottom: 10px; }
.blog-hero .hero-desc { max-width: 700px; margin: 0 auto; color: var(--text-light); }

/* 4. Pathway Section */
.pathway-section {
    padding: 100px 0;
    background: #f8fbff;
}

.tile-colored {
    background: #ffffff;
    border: 1px solid #edf4fb;
}

.tile-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 91, 189, 0.2);
}

.pathway-section .tile-card {
    text-align: center;
    padding: 40px 24px;
    transition: all 0.3s ease;
}

.pathway-section .tile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pathway-section .tile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pathway-section .tile-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--brand-primary);
}

.pathway-section .tile-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.patent-banner {
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}
.patent-content {
    max-width: 700px;
}
.patent-content h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 8px;
}
.patent-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.quorogel-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 450px;
    position: relative;
    background-color: var(--brand-primary);
}
.quorogel-banner .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 0.5s ease both;
}
.quorogel-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
@media (max-width: 640px) {
    .quorogel-banner .patent-content h2 { font-size: 2rem; }
}
/* 8. Products Showcase Section */
.home-products {
    background: #f8fbff;
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-tile {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #edf4fb;
}

.product-tile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.product-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.product-tile h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.product-tile p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tile-actions {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .product-grid { grid-template-columns: 1fr; }
}
.btn-sm { padding: 10px 18px; font-size: 0.8rem; }

/* 5. Features Section */
.features-points {
    background: #ffffff;
    padding: 80px 0;
}

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

.feature-item {
    background: #f8fbff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #edf4fb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 24px;
    display: inline-block;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-family: var(--font-display);
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* 7. Technologies Section */
.tech-section {
    background: #ffffff;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f4f8;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-body {
    padding: 30px;
}

.blog-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.blog-body p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* 9. Resources Section */
.resources-cards {
    background: #ffffff;
    padding: 100px 0;
}

.resources-controls {
    padding: 22px 0;
    background: #ffffff;
    border-bottom: 1px solid #eef3f9;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: inherit;
    border: 1px solid #f0f4f8;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.resource-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #f0f7ff;
    color: var(--brand-primary);
    font-size: 2rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: var(--brand-primary);
    color: #ffffff;
}

.resource-card h4 {
    font-size: 1.3rem;
    color: var(--brand-dark);
    font-family: var(--font-display);
}

.resource-card .download {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--brand-primary);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.resource-card:hover .download {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .featured-card { grid-template-columns: 1fr; }
    .product-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .usage-grid { grid-template-columns: 1fr 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .product-hero { padding: 105px 0 22px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .usage-grid { grid-template-columns: 1fr; }
    
    /* Product images responsive */
    .product-main-img {
        max-width: 100%;
        height: 300px;
    }
    .product-gallery {
        max-width: 100%;
    }
    .product-thumb {
        height: 80px;
    }
}

@media (max-width: 640px) {
    .resource-card { padding: 30px 20px; }
}

/* 10. Contact Section Enhancements */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: var(--shadow-hover);
    border: 1px solid #f0f4f8;
    padding: 60px;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-card { padding: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .contact-card { padding: 30px 20px; border-radius: 20px; }
}
.form-header h2 { font-size: 1.6rem; margin-bottom: 8px; }
.form-header p { color: var(--text-light); margin-bottom: 20px; }
.form-box { display: grid; gap: 14px; }
.form-group { display: grid; gap: 8px; }
.form-label {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
}
.form-control {
    height: 48px;
    border-radius: 14px;
    border: 1.5px solid #e0e6ef;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control::placeholder { color: #9aa8bb; }
.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(0, 64, 138, 0.18);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.btn-block { width: 100%; }

.contact-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    background: #f5f8ff;
    padding: 10px;
    border-radius: 24px;
}

.contact-tab {
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: transparent;
    color: var(--brand-primary);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    text-align: center;
    width: 100%;
}

.contact-tab.active {
    background: #005bbd;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 91, 189, 0.35);
    transform: translateY(-1px);
}

.contact-form-panel {
    display: none;
}

.contact-form-panel.active {
    display: grid;
}

@media (max-width: 480px) {
    .contact-tabs {
        grid-template-columns: 1fr;
    }
}

.contact-info .info-card {
    background: #f7fbff;
    border: 1px solid #eef3f9;
    border-radius: 16px;
    padding: 20px;
}
.contact-info .info-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.location-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,64,138,0.12);
    color: var(--brand-primary);
}
.location-details { display: grid; gap: 8px; }
.location-details li { list-style: none; color: var(--text-light); }
.location-details i { color: var(--brand-primary); margin-right: 8px; }
.location-details .contact-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}
.location-details .contact-link:hover {
    color: var(--brand-primary);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 60px auto 0;
}
.faq-section .section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--brand-primary);
}
.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid #e0e6ef;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -16px rgba(0,0,0,0.08);
}
.faq-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-soft);
}
.faq-summary {
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
details[open] .faq-toggle {
    transform: rotate(45deg);
    background: var(--brand-primary);
    color: #ffffff;
}
.faq-content {
    padding: 0 24px 20px;
    color: var(--text-light);
    border-top: 1px solid transparent;
}
details[open] .faq-content {
    border-top-color: #eef3f9;
    padding-top: 16px;
}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .nav-menu .has-dropdown .dropdown {
        position: static;
        margin-top: 6px;
        box-shadow: none;
        border: none;
        padding: 6px 0;
        width: 100%;
        display: none;
    }
    .nav-menu .has-dropdown.open .dropdown { display: block; }
}
/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .molecular-visual, .lifestyle-visual { min-height: 320px; }
    .banner-grid { grid-template-columns: 1fr; text-align: center; }
    .banner-actions { justify-content: center; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { margin: 0 auto 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .features-grid, .impact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero.hero--image-only { padding: 90px 0 24px; }
    .hero-slider { padding-left: 0; padding-right: 0; }
    .hero-img-main { width: 100%; border-radius: 0; display: block; }
    .section-title { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 300px; }
    .mega-nav { display: none; }
    .banner-title { font-size: 2.4rem; }
}

/* Modern Responsive Utilities & Global Fixes */
:root {
    --section-spacing: 100px;
}

@media (max-width: 1200px) {
    :root { --section-spacing: 80px; }
    .container { max-width: 960px; }
    .hero-content h1 { font-size: 3.8rem; }
}

@media (max-width: 992px) {
    :root { --section-spacing: 70px; }
    .container { max-width: 720px; }
    .section-padding { padding: var(--section-spacing) 0; }
    .section-title { font-size: 2.8rem; }
    .section-label { font-size: 0.9rem; letter-spacing: 1.5px; }
    
    /* Layout stacks */
    .hero-grid, .banner-grid, .about-grid, .product-hero-grid, .contact-grid, .philosophy-grid, 
    .resource-grid, .recovery-grid, .cards-grid, .product-grid, .blog-grid, .feature-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .recovery-card { text-align: center; }
    .recovery-card .line { margin: 15px auto; }
    
    .hero-actions, .banner-actions, .prod-actions, .product-cta-row {
        justify-content: center;
    }
    
    .hero-desc, .banner-subtitle, .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .about-img { height: 400px; }
}

@media (max-width: 768px) {
    :root { --section-spacing: 60px; }
    .container { max-width: 100%; padding: 0 20px; }
    .section-title { font-size: 2.4rem; }
    .section-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .hero-content h1 { font-size: 2.8rem; }
    
    /* Grid adjustments */
    .products-grid, .features-grid, .impact-grid, .data-grid, .product-highlights, .highlights-grid, 
    .cards-grid, .product-grid, .blog-grid, .resource-grid, .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-item, .benefit-card, .feature-item, .tile-card, .product-tile, .blog-card, .resource-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-main-info { padding: 20px; }
    .contact-card { padding: 30px 20px; }
}

@media (max-width: 576px) {
    :root { --section-spacing: 50px; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .btn { width: 100%; padding: 14px 24px; }
    .hero-actions, .banner-actions { flex-direction: column; width: 100%; }
    
    .header .logo-img { height: 45px !important; }
    .mobile-toggle { width: 36px !important; height: 36px !important; }
    
    .resource-card { padding: 25px 15px; }
    .resource-icon { width: 50px; height: 50px; font-size: 1.5rem; }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Categories Section Styles */
.categories-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 91, 189, 0.1) 0%, rgba(0, 63, 138, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.4rem;
    color: var(--brand-primary);
    margin: 0;
    font-family: var(--font-display);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 91, 189, 0.1);
    color: var(--brand-primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    background: var(--brand-primary);
    color: white;
    transform: translateX(5px);
}

/* Newsletter / CTA Section */
.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form-center {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-form-center .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form-center {
        flex-direction: column;
    }
    
    .newsletter-form-center .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
}
