/* InzpireX - Index Page Specific Styles
   This file contains styles specific to the homepage (index.html)
   General/shared styles remain in style.css */

/* ============================================
   SECTION BACKGROUNDS - Enhanced
   ============================================ */

.section-light {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.section-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 116, 144, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.section-light::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}

/* Light section text colors */
.section-light .section-title {
    color: var(--slate-900);
}

.section-light .section-description {
    color: var(--slate-600);
}

.section-light .section-label {
    color: var(--accent-600);
}

.section-light .feature-title {
    color: var(--slate-900);
}

.section-light .feature-content p {
    color: var(--slate-600);
}

.section-gray {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.section-gray::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(14, 116, 144, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Gray section text colors */
.section-gray .section-title {
    color: white;
}

.section-gray .section-description {
    color: var(--slate-400);
}

.section-gray .section-label {
    color: var(--accent-400);
}

.section-gray .feature-title {
    color: white;
}

.section-gray .feature-content p {
    color: var(--slate-400);
}

.section-dark {
    background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 50%, #134e4a 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 212, 191, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Dark section text colors */
.section-dark .section-title {
    color: white;
}

.section-dark .section-description {
    color: var(--slate-300);
}

.section-dark .section-label {
    color: var(--accent-400);
}

/* Ensure content stays above decorative elements */
.section-light .container,
.section-gray .container,
.section-dark .container {
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ============================================
   HERO SECTION - Homepage Only
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 1rem auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
    padding-left: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 212, 191, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-400);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(45, 212, 191, 0.1);
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--slate-400);
    font-size: 1.1875rem;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual/Image Section */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 1;
    max-width: 550px;
    margin-left: 0;
    margin-right: auto;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(45, 212, 191, 0.2);
    border: 1px solid rgba(45, 212, 191, 0.3);
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-placeholder img.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Cards - Homepage Hero Only */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.floating-card-icon.blue {
    background: rgba(14, 116, 144, 0.15);
    color: var(--primary-600);
}

.floating-card-icon.teal {
    background: rgba(45, 212, 191, 0.15);
    color: var(--accent-500);
}

.floating-card-text {
    font-size: 0.8125rem;
}

.floating-card-title {
    font-weight: 600;
    color: var(--slate-900);
    line-height: 1.2;
}

.floating-card-subtitle {
    color: var(--slate-500);
    font-size: 0.75rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 1rem 3rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ============================================
   OUR SERVICES SECTION - Light Background
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Center the last two cards on desktop */
@media (min-width: 1025px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }
    
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .services-grid .service-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    
    .services-grid .service-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(35, 178, 218, 0.6);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 12px 40px rgba(45, 212, 191, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 212, 191, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(14, 116, 144, 0.15));
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(45, 212, 191, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-title {
    font-size: 1.375rem;
    color: var(--slate-900);
    margin-bottom: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.9375rem;
    }
    
    .services-grid .service-card:nth-child(5) {
        max-width: none;
    }
}

/* ============================================
   GENERAL CARDS - Light Sections
   ============================================ */

.section-light .cards-grid {
    margin-top: 0;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 12px 40px rgba(45, 212, 191, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 212, 191, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-100), var(--slate-200));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.card-title {
    font-size: 1.375rem;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   DARK SECTION CARDS (section-gray)
   ============================================ */

.section-gray .card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

.section-gray .card::before {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
}

.section-gray .card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(45, 212, 191, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-gray .card-icon {
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(14, 116, 144, 0.2));
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(45, 212, 191, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-gray .card-title {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-gray .card-description {
    color: var(--slate-300);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* ============================================
   FEATURE SECTIONS - Homepage Only
   ============================================ */

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 540px;
}

.feature-title {
    margin-bottom: 1.5rem;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Light section feature styles */
.section-light .feature-title {
    color: var(--slate-900);
}

.section-light .feature-content p {
    color: var(--slate-600);
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.7;
}

.section-light .feature-list {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.section-light .feature-list li {
    color: var(--slate-800);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
}

.section-light .feature-list li:hover {
    background: rgba(255, 255, 255, 0.7);
}

.section-light .feature-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Gray/Dark section feature styles */
.section-gray .feature-title {
    color: white;
}

.section-gray .feature-content p {
    color: var(--slate-400);
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.7;
}

.section-gray .feature-list {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-gray .feature-list li {
    color: var(--slate-300);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
}

.section-gray .feature-list li:hover {
    background: rgba(255, 255, 255, 0.08);
}

.section-gray .feature-list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Common feature list styles */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(45, 212, 191, 0.35);
}

.feature-image-container {
    position: relative;
}

.feature-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(45, 212, 191, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(45, 212, 191, 0.1);
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.feature-image:hover img {
    transform: scale(1.03);
}

/* Feature Grid Responsive */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-grid.reverse {
        direction: ltr;
    }
    
    .feature-content {
        max-width: 100%;
    }
    
    .feature-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .feature-grid {
        gap: 2rem;
    }
    
    .feature-title {
        margin-bottom: 1rem;
    }
    
    .feature-list {
        margin-top: 1rem;
        padding: 0.25rem;
    }
    
    .feature-list li {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }
}

/* ============================================
   FEATURED KITS SECTION - Dark Background
   ============================================ */

.section-dark .kit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-dark .kit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(45, 212, 191, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-dark .kit-title {
    color: white;
}

.section-dark .kit-description {
    color: var(--slate-400);
}

.section-dark .kit-badge {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.25), rgba(45, 212, 191, 0.2));
    color: var(--accent-400);
    border-color: rgba(45, 212, 191, 0.4);
}

/* General kit card styles */
.kit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    position: relative;
}

.kit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.kit-card:hover {
    transform: translateY(-6px);
}

.kit-card:hover::before {
    opacity: 1;
}

.kit-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.3));
    position: relative;
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.kit-card:hover .kit-image img {
    transform: scale(1.08);
}

.kit-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.kit-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(45, 212, 191, 0.15));
    color: var(--accent-600);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 1rem;
    align-self: flex-start;
    border: 1px solid rgba(45, 212, 191, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kit-title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    color: var(--slate-900);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.kit-description {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.7;
    font-weight: 500;
}

/* Kit Cards Responsive */
@media (max-width: 640px) {
    .kit-content {
        padding: 1.25rem;
    }
    
    .kit-title {
        font-size: 1.125rem;
    }
    
    .kit-description {
        font-size: 0.9375rem;
    }
}

/* ============================================
   CTA SECTION - Homepage Only
   ============================================ */

.cta-section {
    text-align: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #0e7490 0%, #0f172a 50%, #115e59 100%);
    border-radius: var(--radius-2xl);
    margin: 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 212, 191, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%232dd4bf' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-description {
    color: var(--slate-300);
    font-size: 1.1875rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CTA Responsive */
@media (max-width: 640px) {
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
        border-radius: var(--radius-xl);
    }
    
    .cta-title {
        margin-bottom: 0.75rem;
    }
    
    .cta-description {
        font-size: 1.0625rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   SECTION SPACING - Homepage Specific
   ============================================ */

.section {
    padding: 6rem 1.5rem;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 1rem;
    }
}

/* ============================================
   CARDS GRID - Homepage Specific Adjustments
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   HOMEPAGE SPECIFIC ANIMATIONS
   ============================================ */

/* Stagger animations for cards */
.cards-grid .card:nth-child(1),
.services-grid .service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.cards-grid .card:nth-child(2),
.services-grid .service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.cards-grid .card:nth-child(3),
.services-grid .service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.services-grid .service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.services-grid .service-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* ============================================
   HOMEPAGE UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* View All Buttons */
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-400);
    border: 2px solid var(--accent-400);
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--accent-500);
    color: white;
    border-color: var(--accent-500);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(45, 212, 191, 0.3),
        0 0 0 1px rgba(45, 212, 191, 0.1);
}

/* ============================================
   LOADING STATES - Homepage
   ============================================ */

.hero-image-placeholder.loading {
    background: linear-gradient(
        135deg,
        var(--slate-200) 0%,
        var(--slate-300) 50%,
        var(--slate-200) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.card-image.loading,
.kit-image.loading,
.feature-image.loading {
    background: linear-gradient(
        90deg,
        var(--slate-100) 0%,
        var(--slate-200) 50%,
        var(--slate-100) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS - Homepage
   ============================================ */

.hero-actions .btn:focus-visible,
.cta-actions .btn:focus-visible {
    outline: 3px solid var(--accent-400);
    outline-offset: 3px;
}

.card:focus-within {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

.kit-card:focus-within {
    outline: 2px solid var(--accent-500);
    outline-offset: 2px;
}

.service-card:focus-within {
    outline: 2px solid var(--accent-500);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-card {
        animation: none;
    }
    
    .card-image img,
    .kit-image img,
    .feature-image img {
        transition: none;
    }
    
    .kit-card:hover,
    .card:hover,
    .service-card:hover {
        transform: none;
    }
    
    .section-light::after {
        animation: none;
    }
}

/* ============================================
   PRINT STYLES - Homepage
   ============================================ */

@media print {
    .hero,
    .cta-section,
    .section-dark,
    .section-gray,
    .section-light {
        background: white !important;
        color: black !important;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-actions,
    .cta-actions {
        display: none;
    }
    
    .card,
    .kit-card,
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        background: white !important;
        backdrop-filter: none;
    }
    
    .card-title,
    .kit-title,
    .service-title,
    .section-title,
    .feature-title,
    .cta-title {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
    
    .card-description,
    .kit-description,
    .service-description,
    .section-description,
    .feature-list li,
    .cta-description {
        color: #333 !important;
    }
    
    .section-light::before,
    .section-light::after,
    .section-gray::before,
    .section-dark::before {
        display: none;
    }
}