:root {
    /* Color System - Warm Minimalist */
    --bg-body: #F3F1EE;
    /* Warm light grey/beige from reference */
    --bg-surface: #FFFFFF;
    --bg-surface-alt: #E8E6E1;

    --text-primary: #1A1A1A;
    --text-secondary: #646464;
    --text-tertiary: #8D8D8D;

    --accent-color: #000000;
    /* Primary interaction color is Black */
    --brand-color: #0284c7;
    /* Keeping brand blue as secondary accent */
    --brand-orange: #FF4D00;
    /* Orange vibrant accent from reference image */

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    /* Clean sans-serif like reference */

    /* Dimensions & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    --container-width: 1320px;
    --header-height: 72px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.08);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Button & UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #333;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: transparent;
}

.btn-circle-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    transition: var(--transition-smooth);
}

.btn-circle-icon:hover {
    border-color: var(--text-primary);
    transform: rotate(45deg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    /* High opacity white for classic feel */
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Stronger definition */
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo-container:hover {
    opacity: 0.7;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    color: #000;
    line-height: 1;
    font-weight: 700;
}

.logo-part-growth {
    font-weight: 800;
    color: #000;
}

.logo-part-synth {
    font-weight: 300;
    color: #000;
    margin-left: 2px;
}

.logo-badge-ai {
    font-size: 0.65rem;
    font-weight: 800;
    background: #000;
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    position: relative;
    top: -1px;
}

/* Optional: Creative dot or accent if needed, but keeping it text-only for now as per "just the name" instruction */

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    /* Prepare for active state */
}

.nav-link:hover {
    color: var(--text-primary);
    opacity: 1;
}

.nav-link.active {
    color: var(--text-primary);
    opacity: 1;
    font-weight: 600;
    border-bottom-color: var(--text-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-cta {
    display: none;
    margin-top: 20px;
    width: 100%;
}

.desktop-only {
    display: block;
}

/* Hero Section */
/* Hero Section */
.hero {
    padding-top: 110px;
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    /* Restored standard padding for alignment */
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-grid {
        padding: 0 24px;
        text-align: center;
    }
}

.hero-content {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: left;
    margin-left: 0;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 500px;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.demo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.play-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.demo-link:hover .play-button {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Hero Visual - Bento Grid Style */
.hero-visual {
    position: relative;
    height: 600px;
}

.main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: #D9D9D9;
    /* Fallback */
    overflow: hidden;
    /* We'll use an image or gradient here */
    box-shadow: var(--shadow-float);
}

.main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    min-width: 160px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.stat-top {
    top: 40px;
    right: -40px;
    animation-delay: 0s;
}

.stat-bottom {
    bottom: 60px;
    left: -60px;
    animation-delay: 3s;
}

.stat-center-right {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

.floating-stat-card strong {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--text-primary);
}

.floating-stat-card span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Floating Action Button Accent */
.accent-fab {
    position: absolute;
    top: -20px;
    left: 40px;
    background: var(--brand-orange);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
    z-index: 10;
    transform: rotate(45deg);
}

/* Hero Tags Interactive */
/* Hero Tags - Creative Square Buttons */
/* Hero Tags - Minimalist Text Tabs */
/* Hero Tags - Minimalist Text Tabs */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    width: 100%;
    max-width: 600px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
}

.tag-item {
    cursor: pointer;
    padding: 8px 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
    display: inline-block;
    position: relative;
    box-shadow: none;
    min-height: auto;
    line-height: 1.6;
}

.tag-item:hover {
    color: var(--text-primary);
    transform: none;
    box-shadow: none;
    background: transparent;
}

.tag-item.active {
    background: transparent;
    color: var(--text-primary);
    border: none;
    box-shadow: none;
    transform: none;
}

/* Active Indicator - Underline style */
.tag-item::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    display: block;
}

.tag-item.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.tag-item:hover::after {
    transform: scaleX(1);
    opacity: 0.5;
}

/* Sections General */
.section {
    padding: 120px 0;
}

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

.section-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--text-primary);
}

.section-title {
    font-size: 3rem;
    max-width: 600px;
}

/* Feature/Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-box {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

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

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Cards / Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 24px;
}

.bento-item {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-wide {
    grid-column: span 8;
}

.bento-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-quarter {
    grid-column: span 3;
}

.bento-small {
    grid-column: span 4;
}

/* Tab Buttons (Synergy Section) */
.tab-btn {
    background: none;
    border: none;
    padding-bottom: 16px;
    border-bottom: 2px solid transparent;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.tab-btn.active {
    border-bottom: 2px solid var(--text-primary);
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--bg-surface-alt);
    padding: 100px 0 40px;
    margin-top: 100px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* Split Layout Utilities */
.split-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.performance-split {
    gap: 80px;
    align-items: start;
}

.stats-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.synergy-split {
    gap: 60px;
    align-items: center;
}

.cta-split {
    gap: 40px;
    align-items: end;
}

.synergy-card-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.synergy-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .synergy-content {
        padding: 30px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --container-width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        /* Removed text-align: center to align with navbar */
    }

    .hero-content {
        /* Removed margin: 0 auto to align left */
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        /* Override inline styles */
        line-height: 1.2 !important;
        word-wrap: break-word;
        /* Ensure text breaks */
        overflow-wrap: break-word;
    }

    .hero-content p,
    .hero-actions {
        /* Removed centering margins */
        max-width: 100%;
    }

    /* Hero Tags - Grid layout persists on mobile */
    .hero-tags {
        /* Removed centering */
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }

    .tag-item {
        /* Adjust for mobile if needed, but base styles work well */
        padding: 16px;
        min-height: 70px;
        font-size: 0.85rem;
    }

    .hero-visual {
        height: 500px;
    }

    .bento-grid {
        /* Switch to 2 columns for tablet */
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-wide,
    .bento-tall,
    .bento-small,
    .bento-quarter {
        grid-column: span 2;
        /* Full width relative to the 2-col grid? No, span 2 = full width */
        grid-row: span 1;
    }

    .bento-tall {
        height: auto;
        min-height: 400px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .performance-split,
    .cta-split,
    .synergy-split {
        text-align: center;
        align-items: center;
        justify-items: center;
    }

    .cta-split {
        align-items: center;
        gap: 40px;
    }

    .cta-split div:last-child {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        gap: 20px;
    }

    .nav.nav-open {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .mobile-cta {
        display: inline-flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero */
    .hero {
        padding-top: 120px;
    }

    .hero-grid {
        text-align: center;
        padding: 0 20px;
        /* Force padding back on mobile */
    }

    .hero-content {
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-tags {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        /* Smaller for mobile to prevent overflow */
        line-height: 1.2 !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        height: 400px;
        overflow: hidden;
        /* Prevent floating cards from overflowing horizontally */
        border-radius: var(--radius-lg);
        margin-bottom: 40px;
    }

    .floating-stat-card {
        padding: 16px;
        min-width: 140px;
        animation: none;
        /* Disable complex animation on mobile */
    }

    .floating-stat-card strong {
        font-size: 1.5rem;
    }

    .stat-top {
        right: 10px;
        top: 20px;
    }

    .stat-bottom {
        left: 10px;
        bottom: 20px;
    }

    /* Adjust accent fab on mobile */
    .accent-fab {
        left: 20px;
        top: -10px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-split {
        grid-template-columns: 1fr;
    }

    .stat-box h3 {
        font-size: 3rem;
    }

    /* Components */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide,
    .bento-tall,
    .bento-small {
        grid-column: span 1;
    }

    /* Synergy Section */
    .synergy-split .split-visual {
        height: 300px;
    }

    /* CTA Section */
    .cta-split div:first-child h2 {
        font-size: 3rem !important;
        word-break: break-word;
    }

    .cta-split p {
        font-size: 1.1rem;
    }

    .cta-split .btn {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col .logo-container {
        justify-content: center;
    }

    .footer form {
        flex-direction: column;
    }

    .footer form button {
        width: 100%;
    }

    .text-center {
        flex-direction: column;
        gap: 20px;
    }
}

/* Additional enhancements for small screens */
@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-grid {
        padding: 0 16px;
    }

    .hero-tags {
        padding-left: 16px;
        margin-left: -16px;
        margin-right: -16px;
        width: auto;
        min-width: calc(100% + 32px);
    }

    .section {
        padding: 80px 0;
    }

    .cta-split div:first-child h2 {
        font-size: 3rem !important;
    }

    .container {
        padding: 0 16px;
    }

    .section-title,
    h1,
    h2 {
        word-break: break-word;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        /* Even smaller for very small screens */
    }

    .bento-item {
        padding: 24px;
    }

    .stat-box {
        padding: 24px;
    }
}

/* responsive-utils.css additions */

/* Solutions Page - Results Card */
.results-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--bg-surface-alt);
    padding: 60px;
    border-radius: var(--radius-lg);
    min-height: 500px;
}

@media (max-width: 1024px) {
    .results-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 40px;
    }

    .results-content {
        width: 100%;
    }

    .results-image-wrapper {
        width: 100% !important;
        height: 300px !important;
    }
}

.results-info-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 500;
    text-transform: uppercase;
    max-width: 600px;
}

.results-info-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Contact Page - Jumbo Text */
.display-heading-jumbo {
    font-size: 5rem;
    line-height: 1;
    margin: 0;
}

@media (max-width: 1024px) {
    .display-heading-jumbo {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .display-heading-jumbo {
        font-size: 2.5rem;
    }
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    overflow-x: auto;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        padding: 20px;
    }
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    font-size: 1rem;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

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