
/* Global Font Family */
* {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
}

/* Server Sales Section */
.server-sales-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.server-sales-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(103, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(46, 213, 115, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.server-sales-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.server-sales-header {
    text-align: center;
    margin-bottom: 50px;
}

.server-sales-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.server-sales-header .section-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.server-sales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.server-sales-item {
    background: rgba(42, 42, 42, 0.9);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.server-sales-item:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 126, 234, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(42, 42, 42, 0.95);
}

.server-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.server-sales-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.server-sales-item p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.server-sales-features {
    background: rgba(42, 42, 42, 0.7);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1rem;
    text-align: left;
    justify-content: flex-start;
}

.feature-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #2ed573 0%, #1e90ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.server-sales-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
}

.server-sales-cta .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    display: inline-block;
}

.server-sales-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(103, 126, 234, 0.4);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .server-sales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .server-sales-item {
        padding: 30px 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .server-sales-section {
        padding: 60px 0;
    }
    
    .server-sales-content {
        padding: 0 15px;
    }
    
    .server-sales-header .section-title {
        font-size: 2rem;
    }
    
    .server-sales-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .server-sales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .server-sales-item {
        padding: 25px 20px;
    }
    
    .server-icon {
        width: 60px;
        height: 60px;
    }
    
    .server-sales-item h3 {
        font-size: 1.3rem;
    }
    
    .server-sales-item p {
        font-size: 0.9rem;
    }
    
    .server-sales-features {
        padding: 25px 20px;
        margin-bottom: 35px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .server-sales-cta .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Calculator Section Styles */
.calculator-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calculator-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.calculator-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 32px;
}

.calculator-form {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.calculator-result {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #444;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #ffffff;
}

.result-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid #444;
    padding-top: 16px;
    margin-top: 16px;
}

.result-item strong {
    color: #3b82f6;
    font-weight: 700;
}

@media (max-width: 768px) {
    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-form {
        padding: 24px;
    }
}

/* Server Sales Redirect Section */
.server-sales-redirect {
    text-align: center;
    padding: 80px 0;
}

.sales-redirect-content {
    max-width: 600px;
    margin: 0 auto;
}

.sales-icon {
    margin-bottom: 32px;
    color: #3b82f6;
}

.sales-icon svg {
    display: block;
    margin: 0 auto;
}

.redirect-description {
    font-size: 1.1rem;
    color: #64748b;
    margin: 24px 0 40px;
    line-height: 1.6;
}

.sales-redirect-actions {
    margin-top: 40px;
}

.sales-redirect-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sales-redirect-btn:hover {
    transform: translateY(-3px);
    text-decoration: none !important;
}

.sales-redirect-btn svg {
    transition: transform 0.3s ease;
}

.sales-redirect-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .server-sales-redirect {
        padding: 60px 0;
    }
    
    .sales-redirect-content {
        padding: 0 20px;
    }
    
    .sales-redirect-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    padding: 0;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle .material-icons {
    font-size: 1.2rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(49, 95, 255, 0.1);
    color: #315FFF;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #315FFF;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-primary-large {
    background: #315FFF;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(49, 95, 255, 0.3);
    min-width: 44px;
}

.btn-primary-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-primary:hover, .btn-primary-large:hover {
    background: #2F49D0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 95, 255, 0.4);
}

.btn-primary::before, .btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before, .btn-primary-large:hover::before {
    left: 100%;
}

.btn-outline, .btn-outline-large {
    background: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    min-width: 44px;
}

.btn-outline-large {
    padding: 16px 34px;
    font-size: 1.1rem;
    font-weight: 700;
    border-width: 2px;
}

.btn-outline:hover, .btn-outline-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-layout {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 95, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(47, 73, 208, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(49, 95, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(49, 95, 255, 0.02) 80px,
            rgba(49, 95, 255, 0.02) 81px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.01) 80px,
            rgba(255, 255, 255, 0.01) 81px
        );
    animation: heroPattern 30s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes heroPattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 20%, #d6e7ff 40%, #315FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.025em;
    word-break: keep-all;
    overflow-wrap: normal;
    position: relative;
    z-index: 3;
    text-align: left;
    animation: titleGlow 4s ease-in-out infinite alternate;
    max-width: 100%;
    transform-origin: left center;
    width: fit-content;
}

@keyframes titleGlow {
    0% { 
        filter: drop-shadow(0 0 30px rgba(49, 95, 255, 0.4)) brightness(1);
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 50px rgba(49, 95, 255, 0.6)) brightness(1.05);
        transform: scale(1.01);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

/* Floating particles effect */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    margin-left: 0;
}

.hero-visual {
    position: absolute;
    height: 500px;
    width: 500px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
}

.rainbow-gradient {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(255, 0, 150, 0.3) 0%,
            rgba(255, 100, 0, 0.25) 15%,
            rgba(255, 255, 0, 0.2) 30%,
            rgba(0, 255, 100, 0.25) 45%,
            rgba(0, 150, 255, 0.3) 60%,
            rgba(150, 0, 255, 0.25) 75%,
            transparent 90%
        ),
        linear-gradient(45deg,
            rgba(255, 0, 150, 0.1) 0%,
            rgba(255, 100, 0, 0.1) 16.66%,
            rgba(255, 255, 0, 0.1) 33.33%,
            rgba(0, 255, 100, 0.1) 50%,
            rgba(0, 150, 255, 0.1) 66.66%,
            rgba(150, 0, 255, 0.1) 83.33%,
            rgba(255, 0, 150, 0.1) 100%
        );
    border-radius: 50%;
    filter: blur(40px);
    animation: rainbowPulse 8s ease-in-out infinite;
}

@keyframes rainbowPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(49, 95, 255, 0.6), rgba(255, 255, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.element-3 {
    width: 25px;
    height: 25px;
    top: 80%;
    left: 30%;
    animation-delay: 2s;
}

.element-4 {
    width: 12px;
    height: 12px;
    top: 40%;
    left: 70%;
    animation-delay: 3s;
}

.element-5 {
    width: 18px;
    height: 18px;
    top: 10%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(-20px) translateX(10px) scale(1.1); }
    66% { transform: translateY(10px) translateX(-10px) scale(0.9); }
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-content {
    text-align: left;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
    padding-top: 0.1em; /* Исправляем обрезание буквы Л */
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Pricing mobile layout */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pricing-content {
        text-align: center;
    }
    .pricing-title {
        font-size: 2rem;
    }
    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .pricing-actions {
        justify-content: center;
    }
}

.pricing-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary-dark {
    background: #315FFF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #315FFF;
}

.btn-primary-dark:hover {
    background: #2F49D0;
    border-color: #2F49D0;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: #315FFF;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #315FFF;
}

.btn-outline-dark:hover {
    background: #315FFF;
    color: white;
    transform: translateY(-2px);
}

/* Calculator-style Pricing Table */
.pricing-table {
    background: transparent;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    position: relative;
}

.gpu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    display: table;
    background: #ffffff;
    min-width: 700px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.table-info {
    text-align: center;
    margin-bottom: 20px;
}

.scroll-hint {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.table-header,
.table-row {
    display: table-row;
}

.table-header {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid rgba(49, 95, 255, 0.2);
}

.table-header span:first-child {
    border-top-left-radius: 20px;
}

.table-header span:last-child {
    border-top-right-radius: 20px;
}

.table-row:last-child span:first-child {
    border-bottom-left-radius: 20px;
}

.table-row:last-child span:last-child {
    border-bottom-right-radius: 20px;
}

.table-row {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
    background: #ffffff;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.table-header span,
.table-row span {
    display: table-cell;
    padding: 20px 24px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    min-width: 120px;
    position: relative;
    font-family: 'Inter', sans-serif;
    border-right: 1px solid #e9ecef;
}

.table-header span:last-child,
.table-row span:last-child {
    border-right: none;
}

.table-header span:first-child,
.table-row span:first-child {
    text-align: left;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 160px;
    padding-left: 32px;
}

/* Calculator-style AIquarium Column */
.aiquarium-header {
    background: linear-gradient(135deg, #315FFF 0%, #4285f4 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 8px rgba(49, 95, 255, 0.3);
    border-radius: 12px 12px 0 0;
}

.aiquarium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    border-radius: 12px 12px 0 0;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.gpu-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.gpu-name::before {
    content: '';
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00ff88 0%, #00d4aa 100%);
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.gpu-price {
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Calculator-style AIquarium Price Highlighting */
.aiquarium-price {
    color: #315FFF !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 20px 24px !important;
    position: relative;
    font-family: 'Inter', sans-serif;
    border: none;
    box-shadow: none;
    overflow: visible;
}

@keyframes priceShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.competitor-price {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.table-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 24px;
    margin-bottom: 0;
    font-style: italic;
    text-align: center;
    padding: 16px 24px;
    background: #f8f9fa;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Calculator-style interactions */
.pricing-table-wrapper:hover {
    box-shadow: none;
}

/* Mobile responsiveness with calculator styling */
@media (max-width: 768px) {
    .pricing-table-wrapper {
        border-radius: 16px;
        margin: 0 -10px;
    }
    
    .gpu-table {
        min-width: 600px;
    }
    
    .table-header span,
    .table-row span {
        padding: 16px 20px;
        min-width: 100px;
        font-size: 0.85rem;
    }
    
    .table-header span:first-child,
    .table-row span:first-child {
        min-width: 140px;
        padding-left: 24px;
    }
    
    .scroll-hint {
        font-size: 0.8rem;
        display: block;
    }
    
    .aiquarium-price {
        font-size: 1rem !important;
        padding: 10px 16px !important;
    }
    
    .aiquarium-header {
        border-radius: 8px 8px 0 0;
    }
}

/* AI Compute Section */
.ai-compute-section {
    padding: 80px 0;
    background: #ffffff;
}

.compute-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.compute-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
}

.compute-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.compute-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.compute-feature p {
    color: #666;
    line-height: 1.5;
    font-size: 1rem;
    margin: 0;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #315FFF;
    margin: 2rem 0 3rem 0;
}

.section-link {
    margin-top: 3rem;
}

.section-link a {
    color: #315FFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.section-link a:hover {
    color: #2347d6;
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.enterprise-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.enterprise-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 400px;
}

.btn-contact-sales {
    display: inline-block;
    padding: 12px 24px;
    background: #315FFF;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-contact-sales:hover {
    background: #2347d6;
    transform: translateY(-1px);
}

.enterprise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.enterprise-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.enterprise-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.enterprise-feature h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.enterprise-feature p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #ffffff;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-divider-dark {
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    margin: 2rem 0 3rem 0;
}

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-column p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.solution-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.solution-link:hover {
    color: #315FFF;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: #ffffff;
}

.use-cases-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.use-cases-title em {
    font-style: italic;
    font-weight: 400;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
}

.use-cases-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-cases-list li {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Developer Section */
.developer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.developer-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.developer-layout::after {
    content: '';
    width: 2px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    justify-self: center;
}

.developer-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 400px;
}

.developer-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0;
}

.developer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.developer-feature {
    display: block;
}

.developer-feature .feature-icon {
    width: 24px;
    height: 24px;
    background: #00d4aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a2a2a;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 1rem;
}

.developer-feature h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.developer-feature p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.feature-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.feature-link:hover {
    color: #00d4aa;
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background: #ffffff;
}

.get-started-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.get-started-title em {
    font-style: italic;
    font-weight: 400;
}

.steps-list {
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.get-started-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.get-started.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #315FFF;
}

.btn-start-building {
    display: inline-block;
    padding: 12px 24px;
    background: #315FFF;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-start-building:hover {
    background: #2347d6;
    transform: translateY(-1px);
}

.docs-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.docs-link:hover {
    color: #315FFF;
}

/* Templates Section */
.templates-section {
    padding: 60px 0;
    background: #111111;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.template-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.template-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.template-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Developer Section */
.developer-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.developer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.developer-feature {
    text-align: center;
}

.developer-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #315FFF;
}

.developer-feature p {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #315FFF 0%, #2F49D0 100%);
    text-align: center;
}

.cta-actions {
    margin-top: 2rem;
}

/* Support Section */
.support-section {
    padding: 60px 0;
    background: #111111;
    text-align: center;
}

.support-section p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 95, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(47, 73, 208, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.footer-brand-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.footer-logo .logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(49, 95, 255, 0.4));
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.footer-contact {
    margin: 16px 0;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 8px 0;
    line-height: 1.4;
}

.footer-contact strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact a {
    color: #315FFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #2F49D0;
    text-decoration: underline;
}

.footer-copyright {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #315FFF, #2F49D0);
    border-radius: 1px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-section a:hover::before {
    content: '→';
    position: absolute;
    left: -8px;
    color: #315FFF;
    font-weight: bold;
}

/* Prevent phone number from wrapping in footer */
.footer-section a[href^="tel:"] {
    white-space: nowrap;
    display: inline-block;
    font-weight: 500;
    color: #315FFF;
}

.footer-section a[href^="tel:"]:hover {
    color: #2F49D0;
    text-decoration: underline;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
}

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

.nav-link.active {
    color: #315FFF;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #315FFF;
    border-radius: 1px;
}

.pricing-comparison-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-table-container {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

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

.pricing-table th,
.pricing-table td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    color: #1a1a1a;
}

.pricing-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
    position: sticky;
    top: 0;
}

.vast-column {
    background: linear-gradient(135deg, #315FFF 0%, #4A90E2 100%);
    color: white !important;
}

.featured-row {
    background: #f8f9ff;
}

.featured-row td {
    color: #1a1a1a;
}

.gpu-model {
    font-weight: 600;
    color: #1a1a1a;
}

.gpu-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gpu-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.gpu-badge.popular {
    background: #315FFF;
    color: white;
}

.gpu-badge.enterprise {
    background: #28a745;
    color: white;
}

.gpu-badge.premium {
    background: #ffc107;
    color: #000;
}

.gpu-badge.new {
    background: #dc3545;
    color: white;
}

.vast-price {
    color: #315FFF !important;
    font-weight: 600;
}

.vast-price .price-note {
    display: block;
    font-size: 0.7rem;
    color: #666;
    font-weight: normal;
}

.competitor-price {
    color: #6c757d !important;
}

.savings-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    text-align: center;
    font-style: italic;
}

.pricing-models-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
}

.pricing-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-model-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-model-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.pricing-model-card.featured {
    border-color: #315FFF;
    background: rgba(49, 95, 255, 0.1);
}

.model-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #315FFF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-model-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.model-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.model-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.model-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.model-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-from {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-discount {
    background: #00ff88;
    color: #000;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #315FFF 0%, #4A90E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.calculator-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(49, 95, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #315FFF 0%, #4A90E2 50%, #28a745 100%);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculator-form .form-group select,
.calculator-form .form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #315FFF !important;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.calculator-form .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #315FFF;
    background: white;
    box-shadow: 0 0 0 3px rgba(49, 95, 255, 0.1);
    transform: translateY(-2px);
}

.form-group select:hover,
.form-group input:hover {
    border-color: #315FFF;
    background: white;
}

.calculator-form .form-group select:hover,
.calculator-form .form-group input:hover {
    border-color: #315FFF;
}

.calculator-result {
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #315FFF 0%, #4A90E2 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(49, 95, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.calculator-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.result-item:last-child {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.result-item strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.result-item:last-child strong {
    font-size: 1.5rem;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-title {
    color: #1a1a1a !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #315FFF 0%, #2F49D0 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Pages Styles */
.product-hero {
    padding: 120px 0 80px;
}

.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #ffffff;
    border-color: #315FFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.gpu-catalog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
}

.gpu-categories {
    margin-top: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #315FFF;
    color: white;
    border-color: #315FFF;
}

.gpu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gpu-grid.hidden {
    display: none;
}

.gpu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.gpu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.gpu-card.popular {
    border-color: #00ff88;
}

.gpu-card.enterprise {
    border-color: #315FFF;
}

.gpu-card.premium {
    border-color: #ff6b6b;
}

.gpu-card.new {
    border-color: #ffa726;
}

.gpu-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.gpu-card.popular .gpu-badge {
    background: #00ff88;
    color: #000;
}

.gpu-card.enterprise .gpu-badge {
    background: #315FFF;
    color: white;
}

.gpu-card.premium .gpu-badge {
    background: #ff6b6b;
    color: white;
}

.gpu-card.new .gpu-badge {
    background: #ffa726;
    color: white;
}

.gpu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.gpu-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.gpu-price {
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
}

.gpu-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.spec-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.spec-value {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.gpu-use-cases {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.use-case {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.btn-gpu {
    width: 100%;
    padding: 12px;
    background: #315FFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.btn-gpu:hover {
    background: #2F49D0;
    transform: translateY(-2px);
}

.templates-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.templates-section .section-title {
    color: #1a1a1a !important;
}

.templates-section .section-subtitle {
    color: #666 !important;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.template-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.template-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.template-card h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.template-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.template-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: #e8f2ff;
    color: #315FFF;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.api-section {
    padding: 80px 0;
    background: #ffffff;
}

.api-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.api-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.api-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.api-features {
    margin-bottom: 2rem;
}

.api-feature {
    margin-bottom: 1.5rem;
}

.api-feature h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.api-feature p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

.api-actions {
    display: flex;
    gap: 1rem;
}

.api-code {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #2a2a2a;
    border-bottom: 1px solid #333;
}

.code-lang {
    color: #888;
    font-size: 0.9rem;
}

.copy-btn {
    background: #315FFF;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #2F49D0;
}

.code-block pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-block code {
    color: #e6e6e6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Cluster Pages Styles */
.cluster-types-section {
    padding: 80px 0;
    background: #ffffff;
}

.cluster-types-section .section-header h2 {
    color: #1a1a1a !important;
}

.cluster-types-section .section-subtitle {
    color: #666 !important;
}

.use-cases-section-clusters .section-title {
    color: #ffffff !important;
}

.cluster-pricing-section .section-title {
    color: #1a1a1a !important;
}

.cluster-pricing-section .section-subtitle {
    color: #666 !important;
}

.cluster-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cluster-type-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cluster-type-card:hover {
    background: #ffffff;
    border-color: #315FFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
}

.cluster-type-card.featured {
    border-color: #315FFF;
    background: #f0f6ff;
}

.cluster-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #315FFF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cluster-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cluster-type-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cluster-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cluster-specs {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-row span:first-child {
    color: #cbd5e1;
}

.spec-row span:last-child {
    color: #ffffff;
    font-weight: 500;
}

.cluster-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #e8f2ff;
    color: #315FFF;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cluster-pricing {
    text-align: center;
}

.cluster-pricing .price {
    color: #315FFF;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.cluster-pricing .price-note {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.use-cases-section-clusters {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
}

.use-cases-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.use-case-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.use-case-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.use-case-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.use-case-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.use-case-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.management-section {
    padding: 80px 0;
    background: #ffffff;
}

.management-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.management-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.management-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.management-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mgmt-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mgmt-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: #f0f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mgmt-text h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mgmt-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
}

.management-demo {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-window {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem;
}

.demo-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.demo-title {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-content {
    padding: 1.5rem;
}

.demo-cluster {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.demo-cluster:last-child {
    margin-bottom: 0;
}

.cluster-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cluster-status.running .status-dot {
    background: #27ca3f;
}

.cluster-status.scaling .status-dot {
    background: #ffbd2e;
}

.cluster-info {
    color: #cbd5e1;
    font-size: 0.8rem;
    margin-left: auto;
}

.cluster-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    color: #cbd5e1;
    font-size: 0.8rem;
}

.metric-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.cluster-pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #315FFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
}

.pricing-card.featured {
    border-color: #315FFF;
    background: #f0f6ff;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #315FFF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-main {
    margin-bottom: 0.5rem;
}

.price-amount {
    color: #315FFF;
    font-size: 2.5rem;
    font-weight: 700;
}

.price-period {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

.price-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 500;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.price-features li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 20px;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.btn-pricing {
    width: 100%;
    padding: 12px;
    background: #315FFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.btn-pricing:hover {
    background: #2F49D0;
    transform: translateY(-2px);
}

/* Serverless Pages Styles */
.benefits-section {
    padding: 0 0 80px 0;
    background: #000000;
}

.benefits-section .section-header h2 {
    color: #ffffff !important;
}

.how-it-works-section .section-title {
    color: #1a1a1a !important;
}

.how-it-works-section .section-subtitle {
    color: #666 !important;
}


.serverless-pricing-section .section-title {
    color: #1a1a1a !important;
}

.serverless-pricing-section .section-subtitle {
    color: #666 !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #ffffff;
    border-color: #315FFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stat-item {
    background: #e8f2ff;
    color: #315FFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.how-it-works-section {
    padding: 80px 0;
    background: #ffffff;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #111111;
    border-color: #555555;
    transform: translateY(-4px);
}

.step-content h3 {
    color: #ffffff !important;
}

.step-content p {
    color: #cccccc !important;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #315FFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.code-preview {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.code-preview code {
    color: #e6e6e6;
}

.scaling-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scaling-bar {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.scaling-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #315FFF, #00ff88);
    border-radius: 4px;
    animation: scaleUp 3s ease-in-out infinite;
}

@keyframes scaleUp {
    0%, 100% { width: 10%; }
    50% { width: 90%; }
}

.scaling-text {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.serverless-use-cases-section {
    padding: 80px 0;
    background: #000000;
}

.serverless-use-cases-section .section-title {
    color: #ffffff !important;
}

.use-cases-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.use-case-tab {
    padding: 12px 24px;
    background: #f8f9fa;
    color: #cbd5e1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.use-case-tab.active,
.use-case-tab:hover {
    background: #315FFF;
    color: white;
    border-color: #315FFF;
}

.use-case-content {
    display: block;
}

.use-case-content.hidden {
    display: none;
}

.use-case-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.use-case-info h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.use-case-info p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.use-case-features li {
    color: #cccccc;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 20px;
}

.use-case-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.use-case-metrics {
    display: flex;
    gap: 2rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    color: #315FFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.use-case-code {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.use-case-code .code-block {
    background: #1a1a1a;
}

.use-case-code .code-header {
    background: #2a2a2a;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #333333;
    font-size: 0.9rem;
}

.use-case-code .code-block pre {
    background: #1a1a1a;
    color: #e6e6e6;
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.use-case-code .code-block code {
    color: #e6e6e6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.serverless-pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-table-serverless {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.pricing-header,
.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr 2fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    align-items: center;
}

.pricing-header {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-row {
    border-bottom: 1px solid #e9ecef;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gpu-tag {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.gpu-tag.popular {
    background: #e8f5e8;
    color: #2d7d32;
}

.gpu-tag.enterprise {
    background: #e3f2fd;
    color: #1976d2;
}

.gpu-tag.premium {
    background: #fce4ec;
    color: #c2185b;
}

.price-value {
    color: #315FFF;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-notes {
    margin-top: 2rem;
    text-align: center;
}

.pricing-notes p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.integration-section {
    padding: 80px 0;
    background: #ffffff;
}

.integration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.integration-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.integration-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.integration-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.integration-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.integration-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: #f0f6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-option h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.integration-option p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
}

.integration-examples {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
}

.example-tabs {
    display: flex;
    background: #e9ecef;
    padding: 0.5rem;
    gap: 0.5rem;
}

.example-tab {
    padding: 8px 16px;
    background: transparent;
    color: #cbd5e1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.example-tab.active,
.example-tab:hover {
    background: #315FFF;
    color: white;
}

.example-content {
    padding: 1.5rem;
}

.example-content.hidden {
    display: none;
}

.example-content .code-block {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.example-content .code-block pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.example-content .code-block code {
    color: #e6e6e6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Material Icons Styling */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.feature-icon .material-icons,
.benefit-icon .material-icons,
.cluster-icon .material-icons,
.template-icon .material-icons,
.api-icon .material-icons,
.use-case-icon .material-icons,
.mgmt-icon .material-icons,
.integration-icon .material-icons {
    font-size: 2rem;
    color: inherit;
}

/* Use Cases Page Styles */
.use-cases-hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
}

.industries-section {
    padding: 80px 0;
    background: #ffffff;
}

.industries-section .section-header h2 {
    color: #1a1a1a !important;
}

.industries-section .section-subtitle {
    color: #666 !important;
}

.case-studies-section .section-title {
    color: #ffffff !important;
}

.case-studies-section .section-subtitle {
    color: #cccccc !important;
}

.solutions-section .section-title {
    color: #ffffff !important;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: #ffffff;
    border-color: #315FFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: #e8f2ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #315FFF;
}

.industry-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.industry-stats .stat {
    background: #e8f2ff;
    color: #315FFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-studies-section {
    padding: 80px 0;
    background: #000000;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-study-card.featured {
    border: 2px solid #315FFF;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.company-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #315FFF;
}

.case-study-category {
    background: #e8f2ff;
    color: #315FFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    color: #315FFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.case-study-link {
    color: #315FFF;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #2F49D0;
}

.solutions-section {
    padding: 80px 0;
    background: #ffffff;
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.solution-tab {
    padding: 12px 24px;
    background: #f8f9fa;
    color: #cbd5e1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.solution-tab.active,
.solution-tab:hover {
    background: #315FFF;
    color: white;
    border-color: #315FFF;
}

.solution-content {
    display: block;
}

.solution-content.hidden {
    display: none;
}

.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-info h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-info p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item .material-icons {
    color: #315FFF;
    font-size: 1.5rem;
}

.feature-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
}

.solution-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.price-value {
    color: #315FFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-note {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.solution-visual {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
}

.code-example,
.api-example {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    color: #e6e6e6;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-example pre,
.api-example pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-example code,
.api-example code {
    color: #e6e6e6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.render-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    color: #315FFF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.research-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.research-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.research-item .material-icons {
    color: #315FFF;
    font-size: 1.5rem;
}

.research-item span:last-child {
    color: #ffffff;
    font-weight: 500;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    color: #315FFF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.mission-section {
    padding: 80px 0;
    background: #000000;
}

.mission-section .hero-title {
    color: #ffffff !important;
}

.mission-section .hero-subtitle {
    color: #cccccc !important;
}

.mission-section .stat-number {
    color: #315FFF !important;
}

.mission-section .stat-label {
    color: #cccccc !important;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-content .mission-subtitle {
    color: #315FFF !important;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: #cccccc !important;
    line-height: 1.6;
}

.mission-stats {
    display: grid;
    gap: 2rem;
}

.mission-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.mission-stat .feature-icon-check {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
}

.mission-stat .feature-icon-check .material-icons {
    font-size: 18px;
    color: #000;
}

.mission-stat h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-stat p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.story-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-section .section-title {
    color: #1a1a1a !important;
}

.story-section .timeline-content h3 {
    color: #1a1a1a !important;
}

.story-section .timeline-content p {
    color: #666666 !important;
}

.story-section .timeline-year {
    color: #315FFF !important;
    background: #ffffff !important;
    border: 2px solid #315FFF !important;
}


.timeline {
    margin-top: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #315FFF;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: #315FFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 400px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #000000;
}

.team-section .section-title {
    color: #ffffff !important;
}

.team-section .section-subtitle {
    color: #cccccc !important;
}

.team-section .team-member h4 {
    color: #ffffff !important;
}

.team-section .team-member .role {
    color: #315FFF !important;
}

.team-section .team-member p {
    color: #cccccc !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: #2a2a2a;
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
    transform: translateY(-4px);
}

.member-photo {
    width: 80px;
    height: 80px;
    background: #315FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo .material-icons {
    color: white;
    font-size: 3rem;
}

.team-member h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #315FFF;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-links a {
    width: 40px;
    height: 40px;
    background: #e8f2ff;
    color: #315FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-links a:hover {
    background: #315FFF;
    color: white;
}

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section .section-title {
    color: #1a1a1a !important;
}

.values-section .section-subtitle {
    color: #666666 !important;
}

.values-section .value-card h4 {
    color: #1a1a1a !important;
}

.values-section .value-card p {
    color: #666666 !important;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
}

.value-icon .material-icons {
    font-size: 18px;
    color: #000;
}

.value-card h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.investors-section {
    padding: 80px 0;
    background: #000000;
}

.investors-section .section-title {
    color: #ffffff !important;
}

.investors-section .section-subtitle {
    color: #cccccc !important;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.investor-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.investor-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(49, 95, 255, 0.15);
    transform: translateY(-4px);
}

.investor-logo {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.investor-type {
    color: #666;
    font-size: 0.9rem;
}

.careers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #315FFF 0%, #2F49D0 100%);
    color: white;
    text-align: center;
}

.careers-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.careers-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: white;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.career-stat {
    text-align: center;
}

.career-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.career-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.careers-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Override button styles in careers section */
.careers-section .btn-primary-large {
    background: white;
    color: #315FFF;
    border: 2px solid white;
}

.careers-section .btn-primary-large:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #315FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.careers-section .btn-outline-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.careers-section .btn-outline-large:hover {
    background: white;
    color: #315FFF;
    border-color: white;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(49, 95, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #315FFF;
}

.highlight-item .material-icons {
    color: #315FFF;
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method .material-icons {
    color: #315FFF;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(49, 95, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Floating label styles - DISABLED */
.contact-form .form-group label {
    position: static;
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: auto;
    background: transparent;
    padding: 0;
    z-index: auto;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:focus,
.form-group textarea:not(:placeholder-shown) {
    outline: none;
    border-color: #315FFF;
}

.form-group textarea:not(:placeholder-shown) {
    outline: none;
    border-color: #315FFF;
}

/* Floating label animation - DISABLED */

.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #315FFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
}

.privacy-note .material-icons {
    font-size: 1rem;
    color: #315FFF;
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, #315FFF 0%, #4A90E2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(49, 95, 255, 0.3);
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(49, 95, 255, 0.4);
}

.btn-primary-enhanced .material-icons {
    font-size: 1.2rem;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Search Section */
.faq-search-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto;
}

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

.search-box .material-icons {
    position: absolute;
    left: 1rem;
    color: #cbd5e1;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #315FFF;
}

.faq-categories-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: white;
    color: #cbd5e1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category.active,
.faq-category:hover {
    background: #315FFF;
    color: white;
    border-color: #315FFF;
}

.faq-category .material-icons {
    font-size: 1.2rem;
}

.faq-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question .material-icons {
    color: #315FFF;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #315FFF;
    font-weight: 600;
}

.faq-support-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.support-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.support-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.support-option .material-icons {
    color: #315FFF;
    font-size: 2rem;
    flex-shrink: 0;
}

.support-option h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-option p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-section {
    margin-bottom: 2rem;
}

.mobile-nav-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.mobile-nav-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-section a:hover {
    color: #315FFF;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #315FFF;
}

.mobile-nav-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-phone-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 0;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: white;
}

.case-studies-section .section-title {
    color: #1a1a1a !important;
}

.case-studies-section .section-subtitle {
    color: #666 !important;
}

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

.case-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.case-icon {
    width: 64px;
    height: 64px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.case-icon .material-icons {
    font-size: 32px;
    color: #000;
}

.case-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 32px;
}

.case-metrics {
    display: flex;
    gap: 40px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-top: 8px;
}

/* Leasing Page Styles */

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #000000;
}

.benefits-section .section-title {
    color: #ffffff !important;
}

.benefits-section .section-subtitle {
    color: #cbd5e1 !important;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card .feature-icon-check {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card .feature-icon-check .material-icons {
    font-size: 18px;
    color: #000;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 16px;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: white;
}

.programs-section .section-title {
    color: #1a1a1a !important;
}

.programs-section .section-subtitle {
    color: #666 !important;
}

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

.program-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.program-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #10b981;
    color: white;
}

.program-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.program-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.program-features {
    margin: 24px 0;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-label {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
}

.feature-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

.program-benefits {
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.btn-program {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-program:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.calculator-section .section-title,
.calculator-section-light .section-title {
    color: #1a1a1a !important;
}

.calculator-section .section-subtitle {
    color: #cbd5e1;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.calculator-inputs {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.input-group {
    margin-bottom: 40px;
}

.input-label {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.input-display {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-value {
    color: #00ff88;
    font-weight: 700;
    font-size: 24px;
    display: block;
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.calculator-results {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.result-main {
    text-align: center;
    margin-bottom: 32px;
}

.result-main h3 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.payment-amount {
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
}

.result-details {
    margin-bottom: 32px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.detail-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 18px;
}

.calculate-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

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

.form-group-modern {
    margin-bottom: 24px;
}

.form-group-modern label {
    margin-bottom: 12px !important;
}

.custom-select {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
    position: relative;
    top: -30px;
}

.form-group input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00ff88;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

.form-group input[type="range"]::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00ff88;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

.range-value {
    display: inline-block;
    color: #00ff88;
    font-weight: 600;
    font-size: 18px;
    margin-top: 12px;
    margin-left: 8px;
}

.calculator-result {
    display: flex;
    justify-content: center;
}

.result-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.result-card h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.payment-amount {
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 32px;
    line-height: 1;
}

.payment-details {
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span:first-child {
    color: #666;
    font-size: 14px;
}

.detail-item span:last-child {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
}

.btn-calculate {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    font-size: 16px;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #000000;
}

.process-section .section-title {
    color: #ffffff !important;
}

.process-section .section-subtitle {
    color: #cbd5e1 !important;
}

.process-steps {
    margin-top: 60px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.requirements-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.requirements-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.requirements-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.requirements-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: #e2e8f0;
    padding: 4px;
    border-radius: 8px;
    width: fit-content;
}

.req-tab {
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.req-tab.active {
    background: white;
    color: #6366f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content {
    transition: all 0.3s ease;
}

.tab-content.hidden {
    display: none;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    color: #475569;
    font-size: 16px;
    position: relative;
    padding-left: 24px;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: 600;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.approval-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approval-icon {
    width: 80px;
    height: 80px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.approval-icon .material-icons {
    font-size: 40px;
    color: #000;
}

.approval-card h3 {
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.approval-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 0;
    }
    
    .footer-section a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        background-attachment: scroll;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
        padding-right: 0;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        align-self: center;
    }
    
    .hero-actions .btn-primary-large,
    .hero-actions .btn-outline-large {
        width: auto;
        max-width: 280px;
        flex: 0 1 auto;
    }
    
    .hero-visual {
        height: 200px;
        order: 1;
    }
    
    .compute-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .compute-content h2 {
        font-size: 2rem;
    }
    
    .compute-content > p {
        font-size: 1.1rem;
    }
    
    .enterprise-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .enterprise-content h2 {
        font-size: 2.5rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-cases-title {
        font-size: 2rem;
    }
    
    .developer-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .developer-layout::after {
        display: none;
    }
    
    .developer-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .developer-content h2 {
        font-size: 2.5rem;
    }
    
    .get-started-title {
        font-size: 2rem;
    }
    
    .get-started-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        overflow: visible;
    }
    
    .pricing-content {
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
        overflow: visible;
        padding: 1rem 0;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 1rem 0;
        padding: 1rem 0;
        font-family: 'Open Sans', sans-serif;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        overflow: visible;
        height: auto;
    }
    
    .feature-card {
        overflow: visible;
        height: auto;
    }
    
    /* GPU Categories Mobile */
    .category-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .gpu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gpu-card {
        padding: 20px;
    }
    
    .gpu-header h3 {
        font-size: 1.3rem;
    }
    
    .gpu-price {
        font-size: 1rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .spec-label {
        font-size: 0.8rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    /* Templates Grid Mobile */
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* API Section Mobile */
    .api-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .api-content h2 {
        font-size: 2rem;
    }
    
    .api-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .api-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .api-actions .btn-primary,
    .api-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .code-block {
        font-size: 0.8rem;
    }
    
    .code-header {
        padding: 12px 16px;
    }
    
    .code-block pre {
        padding: 16px;
        font-size: 0.75rem;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions .btn-primary-large,
    .cta-actions .btn-outline-large {
        width: 100%;
        max-width: 280px;
    }
    
    /* Cluster Types Mobile */
    .cluster-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cluster-type-card {
        padding: 24px;
    }
    
    .cluster-type-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .cluster-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cluster-specs {
        margin-bottom: 1.5rem;
    }
    
    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .spec-row span:first-child {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .spec-row span:last-child {
        font-size: 0.9rem;
    }
    
    .cluster-features {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .cluster-pricing {
        text-align: center;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .price-note {
        font-size: 0.8rem;
    }
    
    /* Use Cases Section Mobile */
    .use-cases-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-case-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 20px;
    }
    
    .use-case-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .use-case-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .use-case-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .stat {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    /* Management Section Mobile */
    .management-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .management-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .management-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mgmt-feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 16px;
    }
    
    .mgmt-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .mgmt-text p {
        font-size: 0.9rem;
    }
    
    .demo-window {
        margin-top: 2rem;
    }
    
    .demo-content {
        padding: 16px;
    }
    
    .demo-cluster {
        margin-bottom: 1rem;
        padding: 12px;
    }
    
    .cluster-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .cluster-info {
        font-size: 0.8rem;
    }
    
    .cluster-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .metric {
        justify-content: space-between;
    }
    
    .metric-label,
    .metric-value {
        font-size: 0.8rem;
    }
    
    /* Cluster Pricing Section Mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 24px;
        text-align: center;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .price-main {
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    .price-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .price-features {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .price-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .btn-pricing {
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-actions .btn-primary-large,
    .pricing-actions .btn-outline-large {
        width: 100%;
    }
    
    /* Serverless Page Mobile Styles */
    
    /* Benefits Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-card {
        padding: 24px;
    }
    
    .case-metrics {
        justify-content: center;
        gap: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .requirements-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .requirements-tabs {
        width: 100%;
        justify-content: center;
    }
    
    .approval-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .payment-amount {
        font-size: 36px;
    }
    
    .calculator-form,
    .approval-card {
        padding: 24px;
    }
    
    .benefit-card,
    .program-card {
        padding: 24px;
    }
    
    .program-header h3 {
        font-size: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .benefit-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .stat-item {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    /* How It Works Section Mobile */
    .steps-container {
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .code-preview {
        font-size: 0.8rem;
        padding: 12px;
        margin-top: 1rem;
    }
    
    .scaling-visual {
        margin-top: 1rem;
    }
    
    .scaling-bar {
        height: 6px;
        margin-bottom: 8px;
    }
    
    .scaling-text {
        font-size: 0.9rem;
    }
    
    /* Use Cases Section Mobile */
    .use-cases-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .use-case-tab {
        font-size: 0.85rem;
        padding: 8px 12px;
        flex: 1;
        min-width: 120px;
    }
    
    .use-case-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-case-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .use-case-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .use-case-features {
        margin-bottom: 1.5rem;
    }
    
    .use-case-features li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .use-case-metrics {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .metric-item {
        text-align: center;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .use-case-code {
        order: -1;
    }
    
    .code-block {
        margin-bottom: 1rem;
    }
    
    .code-block pre {
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 12px;
    }
    
    /* Serverless Pricing Table Mobile */
    .pricing-table-serverless {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 2rem;
    }
    
    .pricing-header,
    .pricing-row {
        display: flex;
        min-width: 600px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pricing-col {
        flex: 1;
        padding: 12px 8px;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .pricing-col:first-child {
        flex: 1.2;
        text-align: left;
        position: sticky;
        left: 0;
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
        z-index: 2;
    }
    
    .gpu-tag {
        display: block;
        font-size: 0.7rem;
        margin-top: 4px;
    }
    
    .price-value {
        font-weight: 600;
        color: #00ff88;
    }
    
    .pricing-notes {
        text-align: center;
    }
    
    .pricing-notes p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    /* Integration Section Mobile */
    .integration-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .integration-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .integration-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .integration-option {
        padding: 16px;
        text-align: center;
    }
    
    .integration-option h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .integration-option p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .example-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .example-tab {
        font-size: 0.85rem;
        padding: 8px 16px;
        flex: 1;
        min-width: 80px;
    }
    
    .example-content .code-block pre {
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 12px;
        overflow-x: auto;
    }
    
    .scroll-hint {
        color: #666666;
        font-size: 0.75rem;
        font-style: italic;
        display: block;
        text-align: right;
        margin-bottom: 1rem;
        animation: pulse 2s infinite;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.4;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: calc(100vw - 40px);
        display: block;
        margin: 0 -20px;
        padding: 0 20px;
        box-sizing: border-box;
        position: relative;
    }
    
    .pricing-table-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
        background: linear-gradient(to left, rgba(248, 249, 250, 0.8), transparent);
        pointer-events: none;
        z-index: 2;
    }
    
    .gpu-table {
        font-size: 0.85rem;
        min-width: 600px;
        width: 600px;
        display: block;
    }
    
    .table-header,
    .table-row {
        display: flex;
        width: 100%;
    }
    
    .table-header span,
    .table-row span {
        padding: 12px 6px;
        white-space: nowrap;
        font-size: 0.8rem;
        min-width: 120px;
        flex: 1;
        display: block;
    }
    
    .table-header span:first-child,
    .table-row span:first-child {
        min-width: 120px;
        position: sticky;
        left: 0;
        background: inherit;
        z-index: 1;
        flex-shrink: 0;
    }
}

/* Developer Section V2 */
.developer-section-v2 {
    background: #0a0a0a;
    padding: 60px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.developer-layout-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.developer-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: center;
}

.developer-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin: 0;
}

.developer-features-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.developer-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.developer-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon-check {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 24px;
}

.feature-icon-check .material-icons {
    font-size: 18px;
    color: #000;
}

.developer-feature-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.developer-feature-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    color: #00ff88;
}

.feature-cta .arrow {
    transition: transform 0.3s ease;
}

.feature-cta:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .developer-layout-v2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .developer-features-v2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .developer-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .developer-section-v2 {
        padding: 80px 0 650px 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .developer-header h2 {
        font-size: 2rem;
    }
    
    .developer-feature-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
        background-attachment: scroll;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-visual {
        height: 150px;
    }
    
    .hero-actions .btn-primary-large,
    .hero-actions .btn-outline-large {
        padding: 16px 28px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .developer-header h2 {
        font-size: 1.8rem;
    }
}

/* Support Content in Developer Section */
.support-content {
    margin-top: 40px;
    text-align: center;
}

/* Product Catalog Section */
.product-catalog-section {
    padding: 80px 0;
    background: white;
}

.product-catalog-section .section-title {
    color: #1a1a1a !important;
}

.product-catalog-section .section-subtitle {
    color: #666 !important;
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 60px 0;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.catalog-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.catalog-tab.active {
    background: white;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.catalog-tab:hover:not(.active) {
    color: #475569;
}

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

.catalog-grid.hidden {
    display: none;
}

.product-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.product-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.product-card.popular {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.product-card.premium {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card.featured .product-badge {
    background: #f59e0b;
    color: white;
}

.product-card.popular .product-badge {
    background: #10b981;
    color: white;
}

.product-card.premium .product-badge {
    background: #8b5cf6;
    color: white;
}

.product-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.product-specs {
    margin: 24px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
}

.spec-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

.product-price {
    margin: 32px 0 24px 0;
    text-align: center;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.btn-product {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.services-section .section-title {
    color: white;
}

.services-section .section-subtitle {
    color: #cbd5e1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.service-card .feature-icon-check {
    width: 32px;
    height: 32px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card .feature-icon-check .material-icons {
    font-size: 18px;
    color: #000;
}

.service-card h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 16px;
}

.support-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.support-text {
    color: #cccccc;
    font-size: 1.2rem;
    margin: 0 0 50px 0;
    max-width: 600px;
}

/* Get Started Overlay */
.get-started-overlay {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.get-started-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 100, 255, 0.3),
        0 40px 120px rgba(0, 100, 255, 0.2);
    position: relative;
}

.get-started-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.3), rgba(100, 150, 255, 0.2));
    border-radius: 26px;
    z-index: -1;
    filter: blur(8px);
}

.get-started-card h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: left;
}

.get-started-card h2 em {
    font-style: italic;
    color: #333;
}

.steps-overlay-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.step-overlay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.step-overlay-number {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #cbd5e1;
    font-size: 16px;
    flex-shrink: 0;
}

.step-overlay-content h3 {
    color: #000000;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-overlay-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.overlay-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-start-building {
    background: #315FFF;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-start-building:hover {
    background: #5855eb;
    transform: translateY(-1px);
}

.docs-link {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.docs-link:hover {
    color: #000000;
}

@media (max-width: 1024px) {
    .get-started-overlay {
        max-width: 800px;
    }
    
    .get-started-card {
        padding: 40px;
    }
    
    .get-started-card h2 {
        font-size: 2rem;
    }
}

/* Pricing Page Mobile Styles */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px 0;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    /* Main page pricing table mobile */
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .gpu-table {
        min-width: 600px;
        font-size: 0.875rem;
    }
    
    .table-header span,
    .table-row span {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    .scroll-hint {
        display: block !important;
        color: #2347d6;
        font-weight: 500;
        animation: pulse 2s infinite;
        margin-bottom: 2rem;
        margin-top: 1rem;
        text-align: right;
        position: relative;
        z-index: 1;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    .gpu-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .gpu-badge {
        font-size: 0.75rem;
        padding: 0.125rem 0.5rem;
    }
    
    /* Pricing Models Grid Mobile */
    .pricing-models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-model-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-model-card h3 {
        font-size: 1.25rem;
    }
    
    .model-features {
        font-size: 0.875rem;
    }
    
    /* Calculator Mobile */
    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-content {
        text-align: left;
    }
    
    .calculator-content h2 {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .form-group select,
    .form-group input {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .calculator-result {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    
    .result-item {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .result-item strong {
        font-size: 1rem;
    }
    
    .result-item.total strong {
        font-size: 1.25rem;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-item p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-outline-large {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* About Page Mobile Styles */
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mission-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .mission-stat {
        padding: 1.5rem;
    }
    
    .mission-stat h4 {
        font-size: 1.25rem;
    }
    
    /* Timeline Mobile */
    .timeline {
        padding-left: 0;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-year {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Team Grid Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
    }
    
    .team-member h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .member-role {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .member-bio {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .value-icon {
        margin: 0 auto 1rem;
    }
    
    .value-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .value-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Investors Grid Mobile */
    .investors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .investor-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .investor-logo {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .investor-type {
        font-size: 0.75rem;
    }
    
    /* Careers Section Mobile */
    .careers-content {
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .careers-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .careers-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .careers-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .career-stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .careers-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Contact Section Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-highlights {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
        text-align: center;
    }
    
    .contact-method h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-method p {
        font-size: 0.875rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .form-header p {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .privacy-note {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .btn-primary-enhanced {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Use Cases Page Mobile Styles */
    .page-hero {
        padding: 60px 0 40px 0;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Industries Grid Mobile */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .industry-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .industry-card p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .industry-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .industry-stats .stat {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    /* Case Studies Mobile */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-card {
        padding: 2rem 1.5rem;
    }
    
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .company-logo {
        font-size: 1.25rem;
    }
    
    .case-study-category {
        font-size: 0.75rem;
    }
    
    .case-study-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .case-study-card p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .case-study-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .metric {
        text-align: center;
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .case-study-link {
        font-size: 0.875rem;
    }
    
    /* Solutions Tabs Mobile */
    .solutions-tabs {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .solution-tab {
        padding: 1rem;
        font-size: 0.875rem;
        text-align: center;
    }
    
    /* Solution Content Mobile */
    .solution-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-info {
        text-align: center;
    }
    
    .solution-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .solution-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.875rem;
    }
    
    .solution-pricing {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 2rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
    
    .price-label,
    .price-note {
        font-size: 0.875rem;
    }
    
    /* Code Example Mobile */
    .code-example,
    .api-example {
        margin: 0 -1rem;
    }
    
    .code-example pre,
    .api-example pre {
        font-size: 0.75rem;
        padding: 1rem;
        overflow-x: auto;
    }
    
    /* Render Stats Mobile */
    .render-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* Research Examples Mobile */
    .research-examples {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .research-item {
        padding: 1rem;
        font-size: 0.875rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .get-started-overlay {
        padding: 0 16px;
    }
    
    
    .get-started-card {
        padding: 32px;
    }
    
    .get-started-card h2 {
        font-size: 1.8rem;
    }
    
    .overlay-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .btn-start-building {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .developer-section-v2 {
        padding: 60px 0;
    }
    
    .get-started-overlay {
        padding: 0 16px;
    }
    
    
    .support-title {
        font-size: 1.5rem;
    }
    
    .support-text {
        font-size: 1rem;
    }
    
    .get-started-card {
        padding: 24px;
    }
    
    .get-started-card h2 {
        font-size: 1.6rem;
    }
    
    .step-overlay-content h3 {
        font-size: 1.1rem;
    }
    
    .step-overlay-content p {
        font-size: 0.9rem;
    }
}
