/* Minimal Comparison Page Styling - Clean and Professional */

:root {
    --brand-navy: #000080;
    --primary-navy: #000080;
    --primary-accent: #000080;
    --secondary-accent: #d3d3ff;
    --light-bg: #ffffff;
    --text-gray: #64748b;
    --border-color: rgba(0, 0, 128, 0.1);
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

/* Typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-subtitle,
.feature-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Base Sections */
.content-section {
    padding: 60px 0;
}

/* Modern Hero Section - Light Gradient Design */
.supply-hero {
    background: linear-gradient(to bottom, #ffffff, #d3d3ff);
    padding: 60px 0 60px;
    margin-top: 74px;
    position: relative;
    overflow: hidden;
}





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

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 128, 0.1);
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.12) 0%, rgba(211, 211, 255, 0.08) 100%);
}

.hero-badge i {
    color: #000080;
    font-size: 16px;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description strong {
    color: #1a1a2e;
    font-weight: 700;
}

.hero-link {
    color: #000080;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.hero-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000080, #000060);
    transition: width 0.3s ease;
}

.hero-link:hover {
    color: #00d2ff;
}

.hero-link:hover::after {
    width: 100%;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
}

.hero-btn-wrapper {
    margin-top: 12px;
    padding: 8px;
}

.hero-btn-wrapper .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    color: #000080;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 128, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 128, 0.1);
}

.hero-btn-wrapper .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 128, 0.2);
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    color: white;
    border-color: #000080;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 128, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 128, 0.3);
    background: linear-gradient(135deg, #000060 0%, #000040 100%);
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-subtitle {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.hero-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 128, 255, 0.15);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 128, 255, 0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .hero-image {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-decoration {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-enter {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Hero Badge */
.header-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.header-badge i {
    margin-right: 10px;
    color: var(--brand-accent);
    font-size: 16px;
}

.hero-btn-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-left: 15px;
    font-weight: 500;
}

/* Buttons */
.btn-primary-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 128, 0.2);
    gap: 12px;
}

.btn-primary-blue:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 128, 0.3);
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a 0%, var(--brand-navy) 100%);
}

/* Overview Section - Modern Design */
.rocketslide-overview {

    position: relative;
    overflow: hidden;
}





.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.overview-visual {
    position: relative;
}

.overview-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 128, 255, 0.15);
    transition: transform 0.3s ease;
}

.overview-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.15);
}

.overview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image-container:hover .overview-image {
    transform: scale(1.01);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-image-container:hover .image-overlay {
    opacity: 1;
}

.visual-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.decoration-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    animation: float-dot 4s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float-dot {

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

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.overview-content {
    max-width: 600px;
}

.content-header {
    margin-bottom: 12px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.section-badge i {
    color: #000080;
    font-size: 14px;
}

.rocketslide-overview-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
    line-height: 1.2;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.overview-description strong {
    color: #1a1a2e;
    font-weight: 700;
}

.features-grid {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 128, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-1px);
    background: rgba(0, 128, 255, 0.03);
    border-color: rgba(0, 128, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon i {
    color: white;
    font-size: 16px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.5;
    color: #2d3748;
    margin: 0;
    font-weight: 500;
}

.overview-note {
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.05) 0%, rgba(211, 211, 255, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid #000080;
}

/* Modern Comparison Table Section */
.comparison-section {

    position: relative;
    overflow: hidden;
}





.comparison-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.comparison-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.comparison-header .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.comparison-header .section-badge i {
    color: #000080;
    font-size: 16px;
}

.comparison-header .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.comparison-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-wrapper {
    position: relative;
    z-index: 1;
}

.table-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 128, 255, 0.1);
    border: 1px solid rgba(0, 128, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
}

.comparison-table th {
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 12px;
    text-align: left;
    text-transform: uppercase;
}

.comparison-table th.tool-column {
    border-radius: 20px 0 0 0;
    min-width: 140px;
}

.comparison-table th.export-column {
    border-radius: 0 20px 0 0;
    min-width: 130px;
}

.comparison-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(0, 128, 255, 0.08);
    background: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover td {
    background: rgba(0, 128, 255, 0.02);
}

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

/* Featured Row */
.comparison-table tbody tr.featured-row {
    background: linear-gradient(90deg, rgba(0, 128, 255, 0.08) 0%, rgba(0, 210, 255, 0.04) 50%, rgba(0, 128, 255, 0.08) 100%);
}

.comparison-table tbody tr.featured-row td {
    background: transparent;
    font-weight: 600;
}

.comparison-table tbody tr.featured-row:hover td {
    background: linear-gradient(90deg, rgba(0, 128, 255, 0.12) 0%, rgba(0, 210, 255, 0.06) 50%, rgba(0, 128, 255, 0.12) 100%);
}

/* Tool Cell */
.tool-cell {
    position: relative;
}

.tool-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.tool-badge i {
    font-size: 10px;
}

.tool-link {
    color: #000080;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.tool-link:hover {
    color: #00d2ff;
    text-decoration: underline;
}

/* Rating Cell */
.rating-cell {
    text-align: center;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
}

.rating i {
    font-size: 12px;
}

.rating-cell.excellent .rating i.fas {
    color: #22c55e;
}

.rating-cell.good .rating i.fas {
    color: #22c55e;
}

.rating-cell.good .rating i.far {
    color: #e5e7eb;
}

.rating-cell.moderate .rating i.fas {
    color: #f59e0b;
}

.rating-cell.moderate .rating i.far {
    color: #e5e7eb;
}

.rating-cell span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Speed Cell */
.speed-cell {
    text-align: center;
}

.speed-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.speed-cell.fast .speed-indicator i {
    color: #22c55e;
}

.speed-cell.moderate .speed-indicator i {
    color: #f59e0b;
}

.speed-indicator i {
    font-size: 16px;
}

.speed-indicator span {
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
}

/* Design Cell */
.design-cell {
    text-align: center;
}

.design-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.design-tag.professional {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.design-tag.modern {
    background: rgba(0, 0, 128, 0.1);
    color: #000080;
    border: 1px solid rgba(0, 0, 128, 0.2);
}

.design-tag.creative {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.design-tag.dynamic {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Custom Cell */
.custom-cell {
    text-align: center;
}

.custom-level {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.custom-level.excellent {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.custom-level.high {
    background: rgba(0, 0, 128, 0.1);
    color: #000080;
    border: 1px solid rgba(0, 0, 128, 0.2);
}

.custom-level.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.custom-level.limited {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Use Cell */
.use-cell {
    text-align: center;
}

.use-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    background: rgba(100, 116, 139, 0.1);
    color: #475569;
    border: 1px solid rgba(100, 116, 139, 0.2);
    max-width: 200px;
}

/* Export Cell */
.export-cell {
    text-align: center;
}

.export-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.format {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 128, 0.08);
    color: #000080;
    border: 1px solid rgba(0, 0, 128, 0.15);
}

.feature-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 128, 0.08);
    color: #000080;
    border: 1px solid rgba(0, 0, 128, 0.15);
}

/* RocketSlide Overview Section - Modern Design */
.rocketslide-overview-section {
    /* background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%); */

    position: relative;
    overflow: hidden;
}





.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.overview-visual {
    position: relative;
}

.overview-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 128, 255, 0.15);
    transition: transform 0.3s ease;
}

.overview-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.15);
}

.overview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image-container:hover .overview-image {
    transform: scale(1.01);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-image-container:hover .image-overlay {
    opacity: 1;
}

.visual-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    animation: float-circle 4s ease-in-out infinite;
}

.circle-1 {
    width: 16px;
    height: 16px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    opacity: 0.6;
}

.circle-2 {
    width: 12px;
    height: 12px;
    top: 65%;
    right: 12%;
    animation-delay: 1.5s;
    opacity: 0.4;
}

.circle-3 {
    width: 8px;
    height: 8px;
    bottom: 20%;
    left: 25%;
    animation-delay: 3s;
    opacity: 0.5;
}

@keyframes float-circle {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }
}

.overview-content {
    max-width: 600px;
}

.content-header {
    margin-bottom: 12px;
}

.overview-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.overview-content .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.overview-content .section-badge i {
    color: #000080;
    font-size: 16px;
}

.overview-content .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
    line-height: 1.2;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.overview-description strong {
    color: #1a1a2e;
    font-weight: 700;
}

.focus-section {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.focus-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.focus-title i {
    color: #000080;
    font-size: 20px;
}

.focus-grid {
    display: grid;
    gap: 10px;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.focus-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.focus-item:hover .focus-icon {
    transform: scale(1.1);
}

.focus-icon i {
    color: white;
    font-size: 18px;
}

.focus-text {
    flex: 1;
}

.focus-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.focus-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 16px;
}

.conclusion-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.05) 0%, rgba(211, 211, 255, 0.02) 100%);
    border: 1px solid rgba(0, 0, 128, 0.1);
    border-radius: 16px;
    border-left: 4px solid #000080;
}

.conclusion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conclusion-icon i {
    color: white;
    font-size: 18px;
}

.conclusion-text {
    flex: 1;
}

.conclusion-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.conclusion-text strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Key Features Section - Modern Design */
.pros-cons-section {
    background: linear-gradient(to bottom, #fff 1%, #fff 3%, #d3d3ff 10%, #fff 56%, #fff);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}





.features-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.features-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.features-header .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.features-header .section-badge i {
    color: #000080;
    font-size: 16px;
}

.features-header .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000080, #000060);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

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

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(2deg);
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    padding-top: 8px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.feature-content strong {
    color: #1a1a2e;
    font-weight: 700;
}

.feature-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.highlight-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    color: #0066cc;
    border: 1px solid rgba(0, 128, 255, 0.15);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 210, 255, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.1);
}

/* Use Cases Section - Modern Design */
.use-cases-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}





.use-cases-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.use-cases-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.use-cases-header .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.use-cases-header .section-badge i {
    color: #000080;
    font-size: 16px;
}

.use-cases-header .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.use-cases-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000080, #000060);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.use-case-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.use-case-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover .image-overlay {
    opacity: 1;
}

.use-case-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
}

.use-case-icon i {
    color: white;
    font-size: 16px;
}

.use-case-content {
    padding: 20px;
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4a5568;
    transition: transform 0.3s ease;
}

.list-item:hover {
    transform: translateX(5px);
    color: #000080;
}

.list-item i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.1) 0%, rgba(211, 211, 255, 0.05) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000080;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.decision-section .premium-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decision-section .premium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.decision-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 128, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.decision-icon-wrapper i {
    font-size: 24px;
    color: var(--primary-navy);
}

.decision-section .premium-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* Blue check lists */
.blue-check-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.blue-check-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.blue-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-accent));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.2);
}

/* Pros and Cons Section */
.pros-cons-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}





.pros-cons-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pros-cons-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.pros-cons-header .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.pros-cons-header .section-badge i {
    color: #000080;
    font-size: 16px;
}

.pros-cons-header .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pros-cons-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.pros-card,
.cons-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pros-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cons-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pros-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

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

.cons-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

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

.card-header {
    padding: 20px 20px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 128, 255, 0.08);
}

.pros-icon,
.cons-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform 0.3s ease;
}

.pros-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.cons-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pros-card:hover .pros-icon {
    transform: scale(1.05) rotate(2deg);
}

.cons-card:hover .cons-icon {
    transform: scale(1.05) rotate(-2deg);
}

.pros-icon i,
.cons-icon i {
    color: white;
    font-size: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.pros-card .card-title {
    color: #16a34a;
}

.cons-card .card-title {
    color: #d97706;
}

.card-content {
    padding: 16px 24px 24px;
}

.pros-list,
.cons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 128, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pros-card .list-item:hover {
    background: rgba(34, 197, 94, 0.03);
    border-color: rgba(34, 197, 94, 0.1);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.05);
}

.cons-card .list-item:hover {
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.1);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.05);
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pros-card .item-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #16a34a;
}

.cons-card .item-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #d97706;
}

.pros-card .list-item:hover .item-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    transform: scale(1.05);
}

.cons-card .list-item:hover .item-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    transform: scale(1.05);
}

.item-icon i {
    font-size: 16px;
}

.item-text {
    flex: 1;
}

.item-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pros-card .item-text h4 {
    color: #16a34a;
}

.cons-card .item-text h4 {
    color: #d97706;
}

.item-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Decision Section - Modern Design */
.decision-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}





.decision-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.decision-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.decision-header .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.decision-header .section-badge i {
    color: #000080;
    font-size: 16px;
}

.decision-header .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.decision-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.decision-link {
    color: #000080;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.decision-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000080, #aeb5ff);
    transition: width 0.3s ease;
}

.decision-link:hover {
    color: #00d2ff;
}

.decision-link:hover::after {
    width: 100%;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.decision-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.decision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000080, #aeb5ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.decision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

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

.decision-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.decision-card:hover .decision-icon {
    transform: scale(1.05) rotate(2deg);
}

.decision-icon i {
    color: white;
    font-size: 20px;
}

.decision-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.decision-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.decision-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    flex: 1;
}

.decision-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.indicator-dot.important {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.indicator-dot.moderate {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.indicator-text {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.decision-footer {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05) 0%, rgba(0, 210, 255, 0.02) 100%);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon i {
    color: white;
    font-size: 18px;
}

.footer-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.footer-content strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Why RocketSlide Section - Modern Design */
.why-rocketslide-section {
    /* background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7ff 100%); */
    position: relative;
    overflow: hidden;
}





.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    /* align-items: start; */
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    align-items: center;
}

.why-content {
    max-width: 600px;
}

.content-header {
    margin-bottom: 12px;
}

.why-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.08) 0%, rgba(211, 211, 255, 0.05) 100%);
    color: #000080;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 128, 0.15);
    transition: all 0.3s ease;
}

.why-content .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.1);
}

.why-content .section-badge i {
    color: #000080;
    font-size: 16px;
}

.why-content .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
    line-height: 1.2;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.point-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.point-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.point-item:hover .point-icon {
    transform: scale(1.1);
}

.point-icon i {
    color: white;
    font-size: 18px;
}

.point-text {
    flex: 1;
}

.point-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.3;
}

.point-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.approach-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.05) 0%, rgba(211, 211, 255, 0.02) 100%);
    border: 1px solid rgba(0, 0, 128, 0.1);
    border-radius: 16px;
    border-left: 4px solid #000080;
}

.approach-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    color: white;
    font-size: 18px;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.approach-text strong {
    color: #1a1a2e;
    font-weight: 700;
}

.why-visual {
    position: relative;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000080, #aeb5ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

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

.card-header {
    padding: 20px 20px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 128, 255, 0.08);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #000080 0%, #000060 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform 0.3s ease;
}

.highlight-card:hover .card-icon {
    transform: scale(1.05) rotate(2deg);
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.card-content {
    padding: 16px 24px 24px;
    text-align: center;
}

.card-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0 0 16px 0;
}

.feature-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    color: #0066cc;
    border: 1px solid rgba(0, 128, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 210, 255, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.1);
}

.highlight-block::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 210, 255, 0.2);
    filter: blur(50px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.highlight-block h5 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.highlight-block p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 19px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: var(--primary-navy);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.bottom-cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.bottom-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-white {
    background: var(--white);
    color: var(--primary-navy);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.btn-white:hover i {
    transform: translateX(3px);
}

.btn-white i {
    transition: transform 0.3s ease;
}

/* Simple Global Styles */
.hover-underline {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hover-underline:hover {
    color: var(--primary-accent);
    text-decoration: underline;
}

.btn-primary-blue {
    background: var(--primary-navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}

.btn-primary-blue:hover i {
    transform: translateX(3px);
}

.btn-primary-blue i {
    transition: transform 0.3s ease;
}

.header-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-badge i {
    color: var(--primary-accent);
}

.overview-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.overview-image-wrapper:hover {
    transform: translateY(-3px);
}

.overview-image-wrapper img {
    transition: transform 0.3s ease;
}

.overview-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-section {
        padding: 60px 0;
    }

    /* Hero Section Responsive */
    .supply-hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 13px;
        margin-left: 0;
        text-align: center;
    }

    .image-container {
        border-radius: 16px;
    }

    /* Overview Section Responsive */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .overview-visual {
        order: 1;
    }

    .overview-content {
        order: 2;
        max-width: 100%;
    }

    .overview-content .section-title {
        font-size: 32px;
        text-align: center;
    }

    .overview-description {
        font-size: 16px;
        text-align: center;
    }

    .features-grid {
        gap: 12px;
    }

    .feature-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-text {
        font-size: 15px;
    }

    /* RocketSlide Overview Section Responsive */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .overview-visual {
        order: 1;
    }

    .overview-content {
        order: 2;
        max-width: 100%;
    }

    .overview-content .section-title {
        font-size: 32px;
        text-align: center;
    }

    .overview-description {
        font-size: 16px;
        text-align: center;
    }

    .focus-section {
        padding: 20px;
    }

    .focus-title {
        font-size: 20px;
        justify-content: center;
        text-align: center;
    }

    .focus-grid {
        gap: 10px;
    }

    .focus-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
    }

    .focus-icon {
        width: 56px;
        height: 56px;
    }

    .focus-text h4 {
        font-size: 16px;
    }

    .focus-text p {
        font-size: 14px;
    }

    .conclusion-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .conclusion-icon {
        margin: 0 auto;
    }

    /* Key Features Section Responsive */
    .features-header .section-title {
        font-size: 32px;
        text-align: center;
    }

    .features-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 24px;
        text-align: center;
    }

    .feature-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-title {
        font-size: 18px;
        text-align: center;
        padding-top: 0;
    }

    .feature-content p {
        font-size: 15px;
        text-align: center;
    }

    .feature-highlights {
        justify-content: center;
    }

    /* Use Cases Section Responsive */
    .use-cases-header .section-title {
        font-size: 32px;
        text-align: center;
    }

    .use-cases-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-visual {
        height: 180px;
    }

    .use-case-icon {
        width: 44px;
        height: 44px;
        top: 16px;
        right: 16px;
    }

    .use-case-icon i {
        font-size: 16px;
    }

    .use-case-content {
        padding: 20px;
    }

    .use-case-title {
        font-size: 18px;
    }

    .list-item {
        font-size: 14px;
    }

    /* Pros & Considerations Section Responsive */
    .pros-cons-header .section-title {
        font-size: 32px;
        text-align: center;
    }

    .pros-cons-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-header {
        padding: 24px 24px 16px;
    }

    .pros-icon,
    .cons-icon {
        width: 56px;
        height: 56px;
    }

    .pros-icon i,
    .cons-icon i {
        font-size: 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-content {
        padding: 16px 24px 24px;
    }

    .list-item {
        padding: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .item-icon {
        width: 48px;
        height: 48px;
    }

    .item-icon i {
        font-size: 18px;
    }

    .item-text h4 {
        font-size: 15px;
    }

    /* Decision Section Responsive */
    .decision-header .section-title {
        font-size: 32px;
        text-align: center;
    }

    .decision-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .decision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .decision-card {
        padding: 24px;
        text-align: center;
    }

    .decision-icon {
        width: 56px;
        height: 56px;
    }

    .decision-icon i {
        font-size: 20px;
    }

    .decision-content h3 {
        font-size: 18px;
    }

    .decision-content p {
        font-size: 15px;
    }

    .indicator-text {
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }

    .footer-icon {
        margin: 0 auto;
    }

    /* Why RocketSlide Section Responsive */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .why-content {
        max-width: 100%;
        order: 2;
    }

    .why-visual {
        order: 1;
    }

    .why-content .section-title {
        font-size: 32px;
        text-align: center;
    }

    .why-description {
        font-size: 16px;
        text-align: center;
    }

    .point-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .point-icon {
        width: 56px;
        height: 56px;
    }

    .point-text h3 {
        font-size: 16px;
    }

    .point-text p {
        font-size: 14px;
    }

    .approach-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .approach-icon {
        margin: 0 auto;
    }

    .approach-text {
        text-align: center;
    }

    .card-header {
        padding: 24px 24px 16px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
    }

    .card-icon i {
        font-size: 20px;
    }

    .card-header h3 {
        font-size: 18px;
    }

    .card-content {
        padding: 16px 24px 24px;
    }

    .card-content p {
        font-size: 15px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    .use-case-card {
        flex-direction: column;
        text-align: center;
    }

    .use-case-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .decision-section .premium-card {
        flex-direction: column;
        text-align: center;
    }

    .decision-icon-wrapper {
        margin-bottom: 15px;
    }

    /* Comparison Section Responsive */
    .comparison-header .section-title {
        font-size: 32px;
        text-align: center;
    }

    .comparison-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .table-container {
        border-radius: 16px;
        overflow-x: auto;
    }

    .comparison-table {
        font-size: 14px;
        min-width: 600px;
    }

    .comparison-table th {
        padding: 16px 12px;
        font-size: 13px;
    }

    .comparison-table td {
        padding: 16px 12px;
        font-size: 13px;
    }

    .tool-link {
        font-size: 14px;
    }

    .design-tag,
    .custom-level,
    .use-tag {
        font-size: 12px;
        padding: 4px 8px;
    }

    .format {
        font-size: 11px;
        padding: 3px 6px;
    }

    .rating i {
        font-size: 10px;
    }

    .speed-indicator i {
        font-size: 14px;
    }

    .speed-indicator span {
        font-size: 12px;
    }

    .rating-cell span {
        font-size: 11px;
    }

    .btn-white,
    .btn-primary-blue {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .title-accent {
        display: inline;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .supply-hero {
        padding: 80px 0 50px;
    }

    .hero-grid {
        gap: 30px;
    }

    .comparison-table {
        min-width: 500px;
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .comparison-table th.tool-column {
        min-width: 120px;
    }

    .comparison-table th.export-column {
        min-width: 110px;
    }
}