:root {
    /* Professional Palette */
    --bg-color: #f8fafc;
    /* Crisp, cool white/grey - not warm/yellow */
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    /* Slate 900 - Very dark, professional */
    --text-secondary: #475569;
    /* Slate 600 */
    --accent-color: #f59e0b;
    /* Solar Orange - ONLY for graphics/buttons */
    --accent-hover: #d97706;
    --secondary-color: #10b981;
    /* Emerald */
    --border-color: #e2e8f0;

    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 8px;
    /* Slightly tighter radius for professional feel */
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    /* Tighten headings for modern feel */
}

.section-padding {
    padding: 120px 5%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.scroll-card img {
    height: 220px;
    /* Increased from 180px */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-netcc-badge {
    height: 40px;
    width: auto;
    margin-left: 15px;
}

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

.nav-links a:not(.btn-primary) {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary {
    padding: 12px 28px;
    background: var(--text-primary);
    /* Dark button for professional look */
    color: #fff;
    border-radius: 8px;
    /* Rounded rect, not pill */
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #1e293b;
    /* Slightly lighter slate */
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-primary.large,
.btn-outline.large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.btn-outline {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

/* Hero */
.hero {
    padding: 160px 5% 100px;
    text-align: center;
    background: #fff;
    /* Clean white bg */
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-highlight {
    color: var(--text-primary);
    /* CHANGED: No longer yellow text */
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    /* Underline effect instead */
    background: var(--accent-color);
    opacity: 0.3;
    z-index: -1;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Product Grid */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

/* Product Header with Toggle */
.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
}

.product-header .section-title {
    margin-bottom: 0;
}

.section-note {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 8px;
    opacity: 0.7;
}

/* Modern Category Toggle */
.category-toggle {
    position: relative;
    display: inline-flex;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 5px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.toggle-btn {
    position: relative;
    z-index: 2;
    min-width: 140px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.toggle-btn:hover {
    color: var(--text-primary);
}

.toggle-btn.active {
    color: white;
}

.toggle-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    border-radius: 50px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-indicator.right {
    left: calc(50%);
}

/* No products message */
.no-products {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    /* Tighter gap */
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    /* Subtle lift */
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
    /* Keep border neutral */
}

.product-image-box {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
    /* Subtle highlight */
}

.product-image-box img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: 240px;
    /* Fixed height for uniformity */
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.02);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--text-primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brand {
    color: var(--text-secondary);
    /* CHANGED: Grey instead of yellow */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.key-specs {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.key-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.key-specs li span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.full-width {
    width: 100%;
}

/* Modal */

/* Infinite Marquee Styles */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* Fade mask on sides for premium look */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 50s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Base Scroll Card */
.scroll-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
}

/* Article Rotator Specifics */
.article-rotator-container {
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.rotator-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.rotator-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}

.rotator-card:not(.active) {
    transform: scale(0.95);
}

.rotator-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.rotator-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rotator-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.rotator-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Shift by half, which is the exact length of the original set */
}

/* Update scroll card for marquee context */
.scroll-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.scroll-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 15px 0;
}

.scroll-card .btn-outline {
    margin-top: 10px;
}

.scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Article Scroll Card Specifics */
.article-card {
    flex: 0 0 380px;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.article-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
    filter: none;
    border-radius: 0;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scroll-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.scroll-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.btn-text {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.btn-text:hover {
    gap: 10px;
}

/* Article Scroll Card Specifics */


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-secondary);
    transition: 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th,
td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--text-secondary);
}

td {
    color: var(--text-primary);
}

td:first-child {
    font-weight: 600;
    background-color: #fcfcfc;
}

/* Footer */
footer {
    background: #fff;
    padding: 60px 5%;
    border-top: 1px solid var(--border-color);
    margin-top: 100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Disclaimers Section */
.disclaimers {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.disclaimers-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disclaimer-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.fine-print {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-bottom {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-accreditation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.netcc-badge {
    height: 50px;
    width: auto;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 25px;
    }
}

/* Detail Modal Styles */
.detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.detail-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.detail-title-block h2 {
    margin: 5px 0 10px;
    font-size: 2rem;
}


.minimal-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.minimal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.insight-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.minimal-card:hover .insight-image img {
    transform: scale(1.08);
}

.insight-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    display: block;
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-primary);
}

/* Placeholder Cards */
.insight-card.placeholder,
.minimal-card.placeholder {
    background: #f8fafc;
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    opacity: 0.7;
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
    flex-direction: column;
}

.insight-card.placeholder h3,
.minimal-card.placeholder h3 {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.minimal-card .btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: auto;
}



.detail-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.detail-footer {
    display: flex;
    justify-content: flex-end;
}


/* Premium & Glassmorphism Utilities */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.text-highlight-premium {
    color: #fff;
    position: relative;
    z-index: 1;
}

.text-highlight-premium::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.8;
    z-index: -1;
    transform: skewX(-10deg);
}

.premium-btn {
    background: var(--accent-color);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.premium-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.premium-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.premium-outline:hover {
    background: white;
    color: var(--text-primary);
}

.premium-btn-white {
    background: white !important;
    color: var(--text-primary) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.premium-btn-white:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.names-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .names-row {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.padding-y {
    padding: 100px 0;
}

.bg-light {
    background: #fcfcfc;
}

.how-it-works .section-header {
    margin-bottom: 80px;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
    gap: 20px;
}

/* Connecting Line */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-marker {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 90px;
    height: 90px;
    background: #f25526;
    /* User's orange color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(242, 85, 38, 0.3);
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-icon-badge {
    position: absolute;
    right: -10px;
    bottom: 5px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid #f25526;
    color: #f25526;
    box-shadow: var(--shadow-sm);
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Responsive Steps */
@media (max-width: 992px) {
    .steps-timeline {
        flex-direction: column;
        gap: 50px;
    }

    .steps-timeline::before {
        width: 2px;
        height: auto;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .step-marker {
        margin-bottom: 20px;
    }
}

/* Blog Article Styling */
.blog-post-page {
    max-width: 740px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-weight: 500;
}

.back-link:hover {
    color: var(--accent-color);
    transform: translateX(-4px);
}

.article-title {
    font-size: 2.75rem;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.blog-meta {
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.blog-image-wrapper {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #334155;
    /* Slate 700 - slightly darker for readability */
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-primary);
    background: #fff;
}

.intro {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 40px;
}

/* Data Tables */
.data-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.data-table th,
.data-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.data-table th {
    background: #f8fafc;
    font-weight: 600;
    color: var(--text-secondary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Math Breakdown Card */
.math-breakdown {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 40px 0;
}

.math-breakdown h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    margin-top: 0;
}

.math-breakdown p {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Article Footer & Call to Action */
.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);

    /* Flexbox Fix for Layout Bug */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    /* Space between text and button */
}

.article-footer p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.article-footer .small-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .section-padding {
        padding: 100px 5%;
    }
}

/* INSIGHTS GRID FIX */
.insights-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    margin-top: 50px !important;
}

@media (max-width: 900px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .insights-grid {
        grid-template-columns: 1fr !important;
    }
}