/* ============================================
   SoftiCation Cloud Solutions - Theme Styles
   Professional & Modern Design
   ============================================ */

/* --- CSS Variables --- */
:root {
    --brand: #393285;
    --brand-rgb: 57, 50, 133;
    --accent: #ff6b35;
    --accent-rgb: 255, 107, 53;
    --dark: #1a1a2e;
    --dark-mid: #16213e;
    --text-primary: #1e1e2d;
    --text-secondary: #555;
    --text-muted: #888;
    --text-body: #444;
    --bg-light: #f7f7fb;
    --bg-white: #ffffff;
    --border-light: #e8e8f0;
    --card-shadow: 0 4px 24px rgba(57, 50, 133, 0.07);
    --card-shadow-hover: 0 12px 40px rgba(57, 50, 133, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    /* Platform accent colors */
    --aws: #FF9900;
    --aws-rgb: 255, 153, 0;
    --azure: #0078D4;
    --azure-rgb: 0, 120, 212;
    --gcp: #34A853;
    --gcp-rgb: 52, 168, 83;
    --vps: #7c3aed;
    --vps-rgb: 124, 58, 237;
}

/* --- Animations --- */
@keyframes cs-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes cs-fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes cs-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes cs-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
@keyframes cs-borderGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
@keyframes cs-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ============================================
   BASE & COMMON
   ============================================ */
.cs-section {
    padding: 100px 0;
}
.cs-section-light { background: var(--bg-light); }
.cs-section-white { background: var(--bg-white); }
.cs-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.cs-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--brand-rgb), 0.06);
    color: var(--brand);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border: 1px solid rgba(var(--brand-rgb), 0.1);
}
.cs-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cs-section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}
.cs-brand-text {
    color: var(--brand);
}
.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.cs-hero {
    background: var(--bg-white);
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
}
.cs-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.03), rgba(var(--brand-rgb), 0.08));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}
.cs-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.cs-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cs-hero-content {
    animation: cs-fadeInUp 0.8s ease-out;
}
.cs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(var(--brand-rgb), 0.06);
    border: 1px solid rgba(var(--brand-rgb), 0.12);
    color: var(--brand);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.cs-hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: cs-pulse 2s infinite;
}
.cs-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}
.cs-hero-title-accent {
    background: linear-gradient(135deg, var(--brand), #5a4fcf, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cs-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}
.cs-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.cs-btn-primary {
    background: var(--brand);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.cs-btn-primary:hover {
    background: #2d2768;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--brand-rgb), 0.25);
    color: #fff;
}
.cs-btn-outline {
    background: transparent;
    color: var(--brand);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(var(--brand-rgb), 0.2);
    transition: var(--transition);
    cursor: pointer;
}
.cs-btn-outline:hover {
    background: rgba(var(--brand-rgb), 0.04);
    border-color: var(--brand);
    color: var(--brand);
}

/* Hero Platform Showcase */
.cs-hero-visual {
    position: relative;
    animation: cs-fadeInUp 0.8s ease-out 0.2s both;
}
.cs-platform-showcase {
    position: relative;
}
.cs-platform-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid var(--border-light);
    padding: 28px;
    box-shadow: 0 12px 40px rgba(var(--brand-rgb), 0.06);
    display: none;
}
.cs-platform-card.active {
    display: block;
    animation: cs-fadeInUp 0.5s ease-out;
}
.cs-platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}
.cs-platform-logo {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}
.cs-platform-logo.aws { background: var(--aws); }
.cs-platform-logo.azure { background: var(--azure); }
.cs-platform-logo.gcp { background: var(--gcp); }
.cs-platform-logo.vps { background: var(--vps); }
.cs-platform-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2px;
}
.cs-platform-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}
.cs-platform-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.cs-platform-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
}
.cs-platform-feat i {
    color: var(--brand);
    font-size: 13px;
}
.cs-platform-metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-bottom: 18px;
}
.cs-platform-metric-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand);
    display: block;
}
.cs-platform-metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cs-contact-now-btn {
    width: 100%;
    padding: 12px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.cs-contact-now-btn:hover {
    background: #2d2768;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.2);
}

/* Platform Navigation */
.cs-platform-nav {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}
.cs-nav-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.cs-nav-indicator .indicator-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(var(--brand-rgb), 0.06);
    color: var(--brand);
    transition: var(--transition);
}
.cs-nav-indicator.active {
    border-color: var(--brand);
    background: rgba(var(--brand-rgb), 0.04);
    color: var(--brand);
}
.cs-nav-indicator.active .indicator-icon {
    background: var(--brand);
    color: #fff;
}

/* Hero Stats Strip */
.cs-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.cs-hero-stat {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}
.cs-hero-stat:last-child { border-right: none; }
.cs-hero-stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand);
    display: block;
    line-height: 1.2;
}
.cs-hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================================
   OVERVIEW SECTION (Why Choose)
   ============================================ */
.cs-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cs-overview-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cs-overview-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cs-overview-card:hover::before { transform: scaleX(1); }
.cs-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(var(--brand-rgb), 0.08);
    border-color: rgba(var(--brand-rgb), 0.15);
}
.cs-overview-icon {
    width: 56px; height: 56px;
    background: rgba(var(--brand-rgb), 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.cs-overview-card:hover .cs-overview-icon {
    background: var(--brand);
    color: #fff;
    transform: scale(1.05);
}
.cs-overview-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.cs-overview-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}


/* ============================================
   CORE SERVICES SECTION
   ============================================ */
.cs-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cs-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cs-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cs-service-card:hover::before { transform: scaleX(1); }
.cs-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(var(--brand-rgb), 0.08);
    border-color: rgba(var(--brand-rgb), 0.15);
}
.cs-service-icon {
    width: 52px; height: 52px;
    background: rgba(var(--brand-rgb), 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand);
    margin-bottom: 18px;
    transition: var(--transition);
}
.cs-service-card:hover .cs-service-icon {
    background: var(--brand);
    color: #fff;
}
.cs-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.cs-service-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.cs-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.cs-service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-body);
    font-weight: 500;
    padding: 4px 0;
}
.cs-service-features li i {
    color: var(--brand);
    font-size: 11px;
}
.cs-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: var(--transition);
}
.cs-service-link:hover {
    gap: 10px;
    color: var(--accent);
}

/* ============================================
   PLATFORM SECTIONS (AWS / Azure / GCP / VPS)
   ============================================ */
.cs-platform-section { position: relative; }
.cs-platform-section.cs-aws-section { --plat-color: var(--aws); --plat-rgb: var(--aws-rgb); }
.cs-platform-section.cs-azure-section { --plat-color: var(--azure); --plat-rgb: var(--azure-rgb); }
.cs-platform-section.cs-gcp-section { --plat-color: var(--gcp); --plat-rgb: var(--gcp-rgb); }
.cs-platform-section.cs-vps-section { --plat-color: var(--vps); --plat-rgb: var(--vps-rgb); }

.cs-platform-section .cs-section-badge {
    background: rgba(var(--plat-rgb), 0.06);
    color: var(--plat-color);
    border-color: rgba(var(--plat-rgb), 0.12);
}
.cs-platform-section .cs-section-title span {
    color: var(--plat-color);
}

.cs-plat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cs-plat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cs-plat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--plat-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cs-plat-card:hover::before { transform: scaleX(1); }
.cs-plat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(var(--plat-rgb), 0.08);
    border-color: rgba(var(--plat-rgb), 0.2);
}
.cs-plat-card-icon {
    width: 48px; height: 48px;
    background: rgba(var(--plat-rgb), 0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--plat-color);
    margin-bottom: 16px;
    transition: var(--transition);
}
.cs-plat-card:hover .cs-plat-card-icon {
    background: var(--plat-color);
    color: #fff;
}
.cs-plat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.cs-plat-card > p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.cs-plat-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cs-plat-card ul li {
    font-size: 0.82rem;
    color: var(--text-body);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.cs-plat-card ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--plat-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   ADDITIONAL SERVICES
   ============================================ */
.cs-additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cs-additional-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 30px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cs-additional-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cs-additional-card:hover::after { transform: scaleX(1); }
.cs-additional-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--brand-rgb), 0.08);
}
.cs-additional-icon {
    width: 56px; height: 56px;
    background: rgba(var(--brand-rgb), 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand);
    margin-bottom: 20px;
    transition: var(--transition);
}
.cs-additional-card:hover .cs-additional-icon {
    background: var(--brand);
    color: #fff;
}
.cs-additional-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.cs-additional-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.cs-additional-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cs-additional-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 500;
    padding: 5px 0;
}
.cs-additional-card ul li i {
    color: var(--brand);
    font-size: 11px;
}


/* ============================================
   SUCCESS STORIES (Testimonials)
   ============================================ */
.cs-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cs-story-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cs-story-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cs-story-card:hover::before { transform: scaleX(1); }
.cs-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--brand-rgb), 0.08);
    border-color: rgba(var(--brand-rgb), 0.12);
}
.cs-story-quote-icon {
    font-size: 2.4rem;
    color: rgba(var(--brand-rgb), 0.06);
    margin-bottom: 12px;
    line-height: 1;
}
.cs-story-stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.cs-story-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 22px;
}
.cs-story-author {
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}
.cs-story-author h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2px;
}
.cs-story-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.cs-faq-wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}
.cs-faq-sidebar {
    position: sticky;
    top: 100px;
}
.cs-faq-sidebar h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.cs-faq-sidebar p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.cs-faq-sidebar-cta {
    background: rgba(var(--brand-rgb), 0.03);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(var(--brand-rgb), 0.08);
}
.cs-faq-sidebar-cta p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.cs-faq-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cs-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.cs-faq-item {
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.cs-faq-item.active {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(var(--brand-rgb), 0.08);
}
.cs-faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    transition: var(--transition);
}
.cs-faq-question:hover {
    background: rgba(var(--brand-rgb), 0.02);
}
.cs-faq-q-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(var(--brand-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--brand);
    flex-shrink: 0;
    transition: var(--transition);
}
.cs-faq-item.active .cs-faq-q-icon {
    background: var(--brand);
    color: #fff;
}
.cs-faq-q-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}
.cs-faq-toggle {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.cs-faq-item.active .cs-faq-toggle {
    transform: rotate(180deg);
}
.cs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}
.cs-faq-item.active .cs-faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}
.cs-faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.cs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.cs-contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.cs-contact-info > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.cs-contact-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.cs-contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cs-contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(var(--brand-rgb), 0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand);
    flex-shrink: 0;
}
.cs-contact-detail-item span {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
}
.cs-contact-form {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--card-shadow);
}
.cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cs-form-group {
    margin-bottom: 16px;
}
.cs-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.cs-form-group input,
.cs-form-group select,
.cs-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #fff;
    color: var(--text-primary);
}
.cs-form-group input:focus,
.cs-form-group select:focus,
.cs-form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.08);
    outline: none;
}
.cs-form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.cs-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}
.cs-checkbox-label input { width: auto; margin-top: 2px; }
.cs-btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 8px;
}
.cs-btn-submit:hover {
    background: #2d2768;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(var(--brand-rgb), 0.2);
}
.cs-consultation-cta {
    text-align: center;
    margin-top: 40px;
}
.cs-consultation-cta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

/* ============================================
   CONTACT MODAL — PREMIUM SPLIT LAYOUT
   ============================================ */
.cs-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(10, 8, 40, 0.75);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cs-modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.cs-modal-content {
    background: #fff;
    border-radius: 28px;
    width: 92%;
    max-width: 960px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 340px 1fr;
}
.cs-modal-overlay.active .cs-modal-content {
    transform: scale(1);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Left Info Panel - Premium Design */
.cs-modal-left {
    background: linear-gradient(160deg, var(--brand) 0%, #1a1547 50%, #0f0c2e 100%);
    color: #fff;
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.cs-modal-left::before {
    content: '';
    position: absolute;
    bottom: -100px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.cs-modal-left::after {
    content: '';
    position: absolute;
    top: -60px; left: -50px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}
.cs-modal-left-header {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}
.cs-modal-left-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cs-modal-left-header p {
    font-size: 0.92rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}
.cs-modal-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cs-modal-platform-badge i {
    font-size: 18px;
    color: #ffd700;
}
.cs-modal-platform-badge span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.cs-modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    position: relative;
    z-index: 1;
}
.cs-modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    padding: 10px 0;
    opacity: 0.95;
    font-weight: 500;
}
.cs-modal-features li i {
    font-size: 11px;
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cs-modal-trust {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.cs-modal-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    opacity: 0.75;
    margin-bottom: 8px;
    font-weight: 400;
}
.cs-modal-trust-item i {
    font-size: 13px;
    color: #ffd700;
}

/* Right Form Panel - Modern Design */
.cs-modal-right {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
    background: #fafbfc;
}
.cs-modal-header {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8ecf1;
    flex-shrink: 0;
    background: #fff;
}
.cs-modal-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.cs-modal-close {
    background: #f1f3f5;
    border: none;
    color: #6c757d;
    width: 38px; height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 15px;
}
.cs-modal-close:hover {
    background: #e9ecef;
    color: var(--brand);
    transform: rotate(90deg) scale(1.1);
}
.cs-modal-body {
    padding: 28px 32px;
    flex: 1;
}
.cs-modal-form .cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cs-modal-form .cs-form-group {
    margin-bottom: 16px;
}
.cs-modal-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.cs-modal-form input,
.cs-modal-form select,
.cs-modal-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e4e8;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--text-primary);
}
.cs-modal-form input:focus,
.cs-modal-form select:focus,
.cs-modal-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.08);
    transform: translateY(-1px);
}
.cs-modal-form input::placeholder,
.cs-modal-form textarea::placeholder {
    color: #adb5bd;
}
.cs-modal-form textarea {
    resize: vertical;
    min-height: 100px;
}
.cs-modal-form .cs-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}
.cs-modal-form input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}
.cs-modal-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf1;
}
.cs-btn-modal-cancel {
    padding: 13px 26px;
    background: #fff;
    color: var(--text-secondary);
    border: 1.5px solid #dee2e6;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.cs-btn-modal-cancel:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-1px);
}
.cs-btn-submit {
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--brand) 0%, #2d2768 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.3);
}
.cs-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .cs-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .cs-hero-visual { order: -1; }
    .cs-hero-title { font-size: 2.4rem; }
    .cs-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .cs-hero-stat:nth-child(2) { border-right: none; }
    .cs-hero-stat:nth-child(1), .cs-hero-stat:nth-child(2) { border-bottom: 1px solid var(--border-light); }
    .cs-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-services-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-plat-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-additional-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-stories-grid { grid-template-columns: 1fr 1fr; }
    .cs-faq-wrap { grid-template-columns: 1fr; gap: 30px; }
    .cs-faq-sidebar { position: static; }
    .cs-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .cs-section { padding: 70px 0; }
    .cs-section-title { font-size: 1.9rem; }
    .cs-hero { padding: 100px 0 40px; }
    .cs-hero-title { font-size: 2rem; }
    .cs-hero-subtitle { font-size: 0.95rem; }
    .cs-hero-stats { grid-template-columns: 1fr 1fr; margin-top: 40px; }
    .cs-overview-grid { grid-template-columns: 1fr; }
    .cs-services-grid { grid-template-columns: 1fr; }
    .cs-plat-grid { grid-template-columns: 1fr; }
    .cs-additional-grid { grid-template-columns: 1fr; }
    .cs-stories-grid { grid-template-columns: 1fr; }
    .cs-form-row { grid-template-columns: 1fr; }
    .cs-modal-content { width: 95%; margin: 20px; grid-template-columns: 1fr; max-height: 95vh; border-radius: 24px; }
    .cs-modal-left { padding: 32px 24px; }
    .cs-modal-left-header h3 { font-size: 1.35rem; }
    .cs-modal-features { display: none; }
    .cs-modal-trust { display: none; }
    .cs-modal-form .cs-form-row { grid-template-columns: 1fr; }
    .cs-modal-actions { flex-direction: column; }
    .cs-modal-right { max-height: none; }
    .cs-modal-header { padding: 22px 24px; }
    .cs-modal-body { padding: 24px; }
    .cs-platform-nav { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .cs-hero-title { font-size: 1.7rem; }
    .cs-hero-actions { flex-direction: column; }
    .cs-btn-primary, .cs-btn-outline { width: 100%; justify-content: center; }
    .cs-section-title { font-size: 1.6rem; }
    .cs-contact-form { padding: 24px 20px; }
}

/* ============================================
   ALIAS CLASSES (used by cloud-migration,
   cloud-consultancy, cloud-computing,
   data-analytics pages)
   ============================================ */
.cs-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}
.cs-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.cs-service-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.cs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cs-why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cs-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.cs-why-card:hover::before { transform: scaleX(1); }
.cs-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}
.cs-why-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.08), rgba(var(--brand-rgb), 0.04));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--brand);
    transition: var(--transition);
}
.cs-why-card:hover .cs-why-icon {
    background: var(--brand);
    color: #fff;
}
.cs-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.cs-why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}
.cs-why-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, var(--dark), var(--dark-mid));
    border-radius: var(--radius-lg);
}
.cs-why-stat {
    text-align: center;
    color: #fff;
}
.cs-why-stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}
.cs-why-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    display: block;
}

/* ============================================
   PROCESS / HOW WE WORK SECTION
   ============================================ */
.cs-process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
}
.cs-process-timeline::before {
    content: '';
    position: absolute;
    top: 36px; left: 8%; right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 2px;
    z-index: 0;
}
.cs-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}
.cs-process-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 12px auto 16px;
    position: relative;
    box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.3);
    transition: var(--transition);
}
.cs-process-step:hover .cs-process-num {
    transform: scale(1.15);
    background: var(--accent);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.35);
}
.cs-process-icon {
    font-size: 1.4rem;
    color: var(--brand);
    margin-bottom: 8px;
}
.cs-process-step h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.cs-process-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   SECURITY & COMPLIANCE SECTION
   ============================================ */
.cs-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cs-security-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}
.cs-security-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}
.cs-security-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-rgb), 0.04));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--brand);
    margin-bottom: 18px;
}
.cs-security-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.cs-security-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.cs-security-card ul {
    list-style: none; padding: 0; margin: 0;
}
.cs-security-card ul li {
    font-size: 0.82rem;
    color: var(--text-body);
    padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
}
.cs-security-card ul li i {
    color: var(--brand);
    font-size: 10px;
}
.cs-compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}
.cs-compliance-badge {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    transition: var(--transition);
}
.cs-compliance-badge:hover {
    border-color: var(--brand);
    box-shadow: 0 2px 12px rgba(var(--brand-rgb), 0.1);
}
.cs-compliance-badge i {
    font-size: 1.4rem;
    color: var(--brand);
}
.cs-compliance-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   COST OPTIMIZATION SECTION
   ============================================ */
.cs-cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: center;
}
.cs-cost-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cs-cost-metric {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}
.cs-cost-metric:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}
.cs-cost-metric-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    display: block;
    line-height: 1;
}
.cs-cost-metric-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}
.cs-cost-approaches h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.cs-cost-approach-item {
    display: flex; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.cs-cost-approach-item:last-child { border-bottom: none; }
.cs-cost-approach-icon {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-rgb), 0.04));
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    font-size: 1rem;
}
.cs-cost-approach-item h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.cs-cost-approach-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   SUPPORT & DISASTER RECOVERY SECTION
   ============================================ */
.cs-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.cs-support-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.cs-support-panel h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.cs-support-panel h3 i {
    color: var(--brand);
    font-size: 1.3rem;
}
.cs-support-tier {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.cs-support-tier:last-child { border-bottom: none; }
.cs-support-tier-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.cs-support-tier-detail {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.cs-dr-feature {
    display: flex; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.cs-dr-feature:last-child { border-bottom: none; }
.cs-dr-feature-icon {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-rgb), 0.04));
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
}
.cs-dr-feature h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.cs-dr-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   INDUSTRIES WE SERVE SECTION
   ============================================ */
.cs-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.cs-industry-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cs-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--brand);
}
.cs-industry-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-rgb), 0.04));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--brand);
    transition: var(--transition);
}
.cs-industry-card:hover .cs-industry-icon {
    background: var(--brand);
    color: #fff;
}
.cs-industry-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.cs-industry-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .cs-why-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-process-timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .cs-process-timeline::before { display: none; }
    .cs-security-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-cost-grid { grid-template-columns: 1fr; }
    .cs-support-grid { grid-template-columns: 1fr; }
    .cs-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-why-stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .cs-why-grid { grid-template-columns: 1fr; }
    .cs-process-timeline { grid-template-columns: repeat(2, 1fr); }
    .cs-security-grid { grid-template-columns: 1fr; }
    .cs-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-compliance-badges { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .cs-process-timeline { grid-template-columns: 1fr; }
    .cs-industries-grid { grid-template-columns: 1fr; }
    .cs-cost-metrics { grid-template-columns: 1fr; }
    .cs-why-stat-strip { grid-template-columns: 1fr; }
}
