:root {
    /* Main 3 Color Palette */
    --scikiq-green: #00FF88;
    --scikiq-red: #ff6b6b;
    --scikiq-white: #ffffff;

    /* Legacy aliases - all map to green now */
    --scikiq-blue: #00FF88;
    --scikiq-cyan: #00FF88;
    --scikiq-teal: #00FF88;

    /* Backgrounds */
    --dark-bg: #0b163f;
    --dark-secondary: #070b24;
    --dark-accent: #101a4b;
    --card-bg: rgba(255, 255, 255, 0.05);

    /* Segment colors kept for specific use cases */
    --segment-1: #FF6B35;
    --segment-2: #7B2FFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-accent) 50%, var(--dark-secondary) 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 47, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Navigation */
.navbar {
    background: var(--card-bg) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--scikiq-cyan), var(--scikiq-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand i {
    background: linear-gradient(135deg, var(--scikiq-cyan), var(--scikiq-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: var(--scikiq-cyan) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--scikiq-green) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--scikiq-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--scikiq-green);
}

.btn-scikiq {
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    color: white !important;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-scikiq:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--scikiq-cyan);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--scikiq-cyan) 50%, var(--scikiq-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-subtitle-large {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Clarity Box */
.clarity-box {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin: 3rem auto;
    max-width: 900px;
}

.clarity-box h3 {
    color: var(--scikiq-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.clarity-statement {
    font-size: 1.3rem;
    color: white;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    border-color: var(--scikiq-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.metric-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--scikiq-cyan);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    margin: 0 0.8rem;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.6);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--scikiq-cyan);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 0.8rem;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: var(--scikiq-cyan);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.trust-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--scikiq-cyan), var(--scikiq-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Problem Section */
.problem-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--scikiq-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.5);
}

.problem-item i {
    font-size: 1.5rem;
    color: #FF6B35;
    flex-shrink: 0;
}

.problem-item strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Visual Box */
.visual-box {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-chaos-visual {
    position: relative;
    width: 100%;
    height: 350px;
}

.chaos-node {
    position: absolute;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    animation: orbit 20s linear infinite;
}

.chaos-node:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.chaos-node:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: -4s;
}

.chaos-node:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: -8s;
}

.chaos-node:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: -12s;
}

.chaos-node:nth-child(5) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: -16s;
}

.chaos-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 53, 0.2);
    border: 2px dashed rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.chaos-center i {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.chaos-center span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes orbit {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -10px) scale(1.05); }
    50% { transform: translate(-10px, 10px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.05); }
}

/* Segment Cards */
.segment-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--segment-1), var(--scikiq-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.segment-1::before {
    background: linear-gradient(90deg, var(--segment-1), #FFB347);
}

.segment-2::before {
    background: linear-gradient(90deg, var(--segment-2), var(--scikiq-cyan));
}

.segment-card:hover {
    transform: translateY(-10px);
    border-color: var(--scikiq-cyan);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.3);
}

.segment-card:hover::before {
    transform: scaleX(1);
}

.segment-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.segment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.segment-1 .segment-icon {
    background: linear-gradient(135deg, var(--segment-1), #FFB347);
}

.segment-2 .segment-icon {
    background: linear-gradient(135deg, var(--segment-2), var(--scikiq-cyan));
}

.segment-title {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.segment-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.segment-profile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.segment-profile h4 {
    color: var(--scikiq-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.segment-profile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.segment-profile li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.segment-profile li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--scikiq-cyan);
}

.solution-box {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-box h4 {
    color: var(--scikiq-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.integration-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.integration-badge {
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.outcome-box {
    margin-bottom: 2rem;
}

.outcome-box h4 {
    color: var(--scikiq-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.outcome-item i {
    color: var(--scikiq-green);
    font-size: 1.1rem;
}

.btn-segment {
    background: transparent;
    color: var(--scikiq-cyan);
    border: 2px solid var(--scikiq-cyan);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-segment:hover {
    background: var(--scikiq-cyan);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* Comparison Section */
.comparison-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
}

.comparison-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-title i {
    color: var(--scikiq-cyan);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.competitor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.competitor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.scikiq-card {
    border-color: var(--scikiq-cyan);
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.competitor-header {
    margin-bottom: 1.5rem;
}

.competitor-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--scikiq-cyan);
}

.competitor-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.badge-recommended {
    display: inline-block;
    background: linear-gradient(135deg, var(--scikiq-green), #00CC70);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.competitor-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.feature-item i {
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item.highlight {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--scikiq-green);
}

.feature-item.highlight i {
    color: var(--scikiq-green);
}

.feature-item.negative i {
    color: #FF6B6B;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-indicator {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: var(--scikiq-cyan);
    font-weight: 600;
}

.scikiq-card .pricing-indicator {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--scikiq-green);
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--scikiq-cyan), var(--scikiq-purple));
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    border-color: var(--scikiq-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content h4 i {
    color: var(--scikiq-cyan);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.detail-badge {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--scikiq-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* GTM Cards */
.gtm-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.gtm-card:hover {
    transform: translateY(-10px);
    border-color: var(--scikiq-cyan);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.gtm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.gtm-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.gtm-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.partner-badge {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--scikiq-cyan);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.cta-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--scikiq-cyan), var(--scikiq-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.cta-step h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.cta-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.signal-item i {
    color: var(--scikiq-green);
}

/* Contact Form */
.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-info-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--scikiq-cyan), var(--scikiq-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--scikiq-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.2);
    color: white;
}

.contact-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-form .form-check-input:checked {
    background-color: var(--scikiq-cyan);
    border-color: var(--scikiq-cyan);
}

.contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--scikiq-blue), var(--scikiq-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.persona-box {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.persona-box strong {
    display: block;
    color: var(--scikiq-cyan);
    margin-bottom: 0.5rem;
}

.persona-box p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--scikiq-cyan), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--scikiq-cyan);
    padding-left: 5px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--scikiq-cyan);
    border-color: var(--scikiq-cyan);
    color: var(--dark-bg);
    transform: translateY(-3px);
    padding: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Credibility Badges */
.credibility-badges {
    opacity: 1;
    transform: translateY(0);
}

.badge-item {
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(24, 207, 171, 0.3);
}

/* Clients Showcase */
.clients-showcase {
    opacity: 1;
}

/* Case Study Cards */
.case-study-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.case-study-card:hover {
    border-color: var(--scikiq-cyan);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.3);
}

.case-study-featured {
    border: 3px solid rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(245, 158, 11, 0.05));
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35, #F59E0B);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.case-study-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.case-study-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-study-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-study-meta {
    color: var(--scikiq-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    margin-bottom: 1.5rem;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-study-challenge h4 i {
    color: #FF6B35;
}

.case-study-solution h4 i {
    color: var(--scikiq-cyan);
}

.case-study-results h4 i {
    color: var(--scikiq-green);
}

.case-study-challenge p,
.case-study-solution p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.result-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    opacity: 1;
    transform: scale(1);
}

.result-item:hover {
    background: rgba(0, 255, 136, 0.1);
}

.result-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--scikiq-green);
    margin-bottom: 0.5rem;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    /* CRITICAL: Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative !important;
    }

    body {
        overflow-x: hidden !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .container, .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    /* Prevent images from overflowing */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Force all rows and columns to fit */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
    .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
    .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Hero Section Responsive */
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    /* Hero main heading specific */
    h1[style*="font-size: 4.5rem"] {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        padding: 0 1rem !important;
    }

    /* Nested spans in hero heading */
    h1[style*="font-size: 4.5rem"] > span {
        display: inline !important;
        font-size: inherit !important;
    }

    /* "In 60-90 Days" span */
    h1[style*="font-size: 4.5rem"] > span[style*="font-size: 0.5em"] {
        font-size: 0.7em !important;
        display: block !important;
        margin-top: 0.5rem;
    }

    /* ALL headings - aggressive sizing */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.5rem !important; }
    h4 { font-size: 1.25rem !important; }
    h5 { font-size: 1.1rem !important; }

    /* Force all large text to scale */
    div[style*="font-size: 3rem"],
    div[style*="font-size: 3.5rem"],
    div[style*="font-size: 4rem"],
    div[style*="font-size: 4.5rem"],
    div[style*="font-size: 5rem"] {
        font-size: 1.8rem !important;
    }

    div[style*="font-size: 2.5rem"],
    div[style*="font-size: 2.8rem"] {
        font-size: 1.5rem !important;
    }

    div[style*="font-size: 2rem"],
    div[style*="font-size: 2.2rem"] {
        font-size: 1.3rem !important;
    }

    /* All cards and containers must fit */
    div[style*="padding: 4rem"],
    div[style*="padding: 3rem"],
    div[style*="padding: 2.5rem"] {
        padding: 1.5rem 1rem !important;
    }

    div[style*="border-radius: 30px"],
    div[style*="border-radius: 25px"],
    div[style*="border-radius: 20px"] {
        border-radius: 15px !important;
    }

    /* Force max-width containers to full width */
    div[style*="max-width: 1200px"],
    div[style*="max-width: 1100px"],
    div[style*="max-width: 1000px"],
    div[style*="max-width: 900px"],
    div[style*="max-width: 800px"] {
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Hero stats section */
    div[style*="display: flex"][style*="gap: 4rem"] > div > div:first-child {
        font-size: 2rem !important;
    }

    div[style*="display: flex"][style*="gap: 4rem"] {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Two option cards in hero */
    div[style*="min-width: 400px"],
    a[style*="min-width: 400px"] {
        min-width: 100% !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    a[href="#emerging-leaders"],
    a[href="#optimizers"] {
        min-width: 100% !important;
        margin-bottom: 1rem;
        flex: 1 1 100% !important;
    }

    /* ALL flex containers - force wrap and stack */
    div[style*="display: flex"],
    div[style*="display: inline-flex"] {
        flex-wrap: wrap !important;
    }

    /* Force gap adjustments */
    div[style*="gap: 4rem"],
    div[style*="gap: 3rem"],
    div[style*="gap: 2.5rem"],
    div[style*="gap: 2rem"] {
        gap: 1rem !important;
    }

    /* All grid layouts to single column */
    div[style*="display: grid"],
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Min-width elements */
    div[style*="min-width: 250px"],
    div[style*="min-width: 200px"],
    div[style*="min-width: 160px"],
    div[style*="min-width: 150px"] {
        min-width: 100% !important;
        width: 100% !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .cta-title {
        font-size: 2rem !important;
    }

    .btn-hero-primary, .btn-hero-outline {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
        padding: 1rem 2rem !important;
    }

    .trust-badges {
        gap: 1.5rem !important;
    }

    .trust-number {
        font-size: 2rem !important;
    }

    .comparison-grid {
        grid-template-columns: 1fr !important;
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
    }

    .timeline-step::after {
        display: none;
    }

    .problem-section {
        padding: 2rem !important;
    }

    .data-chaos-visual {
        height: 250px;
    }

    /* Differentiation Cards - 3 column grid */
    div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* "Sound Familiar?" problem pills */
    div[style*="display: flex; flex-wrap: wrap"][style*="gap: 1rem"] {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    /* Problem pills must be full width */
    div[style*="border: 2px solid #ff6b6b"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.8rem 1rem !important;
    }

    /* 4C Framework boxes (CONNECT, CONTROL, CURATE, CONSUME) */
    div[style*="min-width: 160px"] {
        min-width: 100% !important;
        flex: 1 1 100% !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }

    /* AI-Ready Layer cards (4 SKUs) */
    .row.g-3 > .col-lg-6,
    .row.g-4 > .col-lg-6,
    .row.g-4 > .col-lg-4,
    .row.g-3 > .col-lg-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }

    /* Infrastructure component boxes */
    div[style*="border: 2px solid rgba(0, 255, 136"] {
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }

    /* Cloud provider cards (AWS, Azure, GCP) */
    .col-md-3, .col-md-4, .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }

    /* All card-like divs */
    div[style*="border-radius: 15px"],
    div[style*="border-radius: 12px"],
    div[style*="border-radius: 10px"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* New responsive styles for badges */
    .credibility-badges {
        flex-direction: column;
        gap: 1rem !important;
    }

    .badge-item {
        width: 100%;
        justify-content: center;
    }

    .clients-showcase > div:last-child {
        flex-direction: column;
        gap: 1.5rem !important;
    }

    .clients-showcase > div:last-child > div {
        font-size: 1.1rem !important;
    }

    /* Case study cards responsive */
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }

    .case-study-icon {
        margin: 0 auto;
    }

    .result-grid {
        grid-template-columns: 1fr !important;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* Customer story cards */
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    /* Use case section cards */
    .col-lg-4 {
        margin-bottom: 1.5rem;
    }

    /* Segment headers */
    #emerging-leaders, #optimizers {
        padding: 2rem 1rem !important;
    }

    #emerging-leaders h2, #optimizers h2 {
        font-size: 2rem !important;
    }

    /* Segment solution boxes */
    div[style*="Data Hub"], div[style*="Bolt-On Intelligence"] {
        font-size: 1.5rem !important;
        padding: 1.5rem !important;
    }

    /* Feature benefit boxes */
    .col-lg-4 > div[style*="rgba(255,255,255,0.05)"] {
        padding: 1.2rem !important;
        margin-bottom: 1rem;
    }

    /* Table wrapper for horizontal scroll */
    div[style*="overflow-x: auto"] {
        margin: 0 -15px !important;
        padding: 0 15px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* ALL tables must scroll */
    table {
        display: block !important;
        width: max-content !important;
        min-width: 600px !important;
        max-width: none !important;
        overflow-x: auto !important;
        font-size: 0.8rem !important;
    }

    table thead,
    table tbody,
    table tr {
        display: table !important;
        width: 100% !important;
    }

    table th, table td {
        padding: 0.6rem 0.4rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    /* First column sticky */
    table th:first-child,
    table td:first-child {
        position: sticky !important;
        left: 0 !important;
        background: var(--dark-bg) !important;
        z-index: 2 !important;
    }

    table thead th:first-child {
        z-index: 3 !important;
    }

    /* ROI Calculator Responsive Styles */
    #contact h2 {
        font-size: 2.5rem !important;
    }

    #contact .row.g-4 {
        margin-bottom: 2rem !important;
    }

    /* Segment buttons responsive */
    #contact button {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.5rem !important;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Calculator inputs responsive */
    #calcInputs label {
        font-size: 1rem !important;
    }

    #calcInputs input[type="range"] {
        height: 6px !important;
    }

    #calcInputs span[id$="Value"] {
        font-size: 1.3rem !important;
    }

    /* Results section responsive */
    #annualSavings {
        font-size: 2.5rem !important;
    }

    #savingsPercent {
        font-size: 1rem !important;
    }

    /* CTA buttons responsive */
    #contact a[href^="mailto"] {
        font-size: 1.1rem !important;
        padding: 1.2rem 2rem !important;
        width: 100%;
        display: block !important;
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Trust reinforcement responsive */
    #contact > div > div > div:last-child {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Value props responsive */
    body > div:nth-child(3) > div > div > div:nth-child(3) {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    body > div:nth-child(3) > div > div > div:nth-child(3) > div {
        margin: 0 !important;
    }

    body > div:nth-child(3) > div > div > div:nth-child(3) > div > div:first-child {
        font-size: 2.5rem !important;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem !important;
    }

    /* Hero main heading on tablet */
    h1[style*="font-size: 4.5rem"] {
        font-size: 3rem !important;
        line-height: 1.3 !important;
    }

    /* "In 60-90 Days" on tablet */
    h1[style*="font-size: 4.5rem"] > span[style*="font-size: 0.5em"] {
        font-size: 0.6em !important;
    }

    .section-title {
        font-size: 2.5rem !important;
    }

    #contact h2 {
        font-size: 3rem !important;
    }

    #annualSavings {
        font-size: 3rem !important;
    }

    /* Segment buttons on tablet */
    #contact button {
        font-size: 1rem !important;
        padding: 0.9rem 1.8rem !important;
    }

    /* Calculator columns stack better on tablet */
    .col-lg-6 {
        margin-bottom: 2rem;
    }

    /* Two Paths Segments on Tablet */
    #emerging-leaders > div,
    #optimizers > div {
        padding: 3rem 2rem !important;
    }

    #emerging-leaders h2,
    #optimizers h2 {
        font-size: 2.3rem !important;
    }

    div[style*="Data Hub"] > div,
    div[style*="Bolt-On Intelligence"] > div {
        font-size: 1.6rem !important;
    }

    /* Stack columns on tablet */
    #emerging-leaders .col-lg-5,
    #emerging-leaders .col-lg-7,
    #optimizers .col-lg-5,
    #optimizers .col-lg-7 {
        margin-bottom: 2rem;
    }

    /* Tables on tablet */
    table {
        font-size: 0.85rem !important;
    }

    table th {
        padding: 1rem 0.8rem !important;
        font-size: 0.9rem !important;
    }

    table td {
        padding: 1rem 0.8rem !important;
    }

    /* Grids and columns */
    .row.g-4 > .col-lg-6 {
        margin-bottom: 2rem;
    }

    /* Large text elements */
    div[style*="font-size: 3rem"],
    div[style*="font-size: 3.5rem"] {
        font-size: 2.5rem !important;
    }

    /* Padding adjustments */
    div[style*="padding: 4rem"] {
        padding: 2.5rem !important;
    }

    /* Contact form on tablet */
    #get-started h2 {
        font-size: 2.8rem !important;
    }

    #get-started .col-lg-6 > div {
        padding: 2.5rem 2rem !important;
    }

    #get-started input,
    #get-started select {
        font-size: 1rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* ROI Calculator on small screens */
    #contact h2 {
        font-size: 2rem !important;
    }

    #contact p {
        font-size: 1.1rem !important;
    }

    #contact button {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
    }

    #annualSavings {
        font-size: 2rem !important;
    }

    #calcInputs label {
        font-size: 0.95rem !important;
    }

    #calcInputs span[id$="Value"] {
        font-size: 1.2rem !important;
    }

    /* CTA buttons smaller */
    #contact a[href^="mailto"] {
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
    }

    /* Logo in navbar */
    .navbar-brand img {
        height: 32px !important;
    }

    /* Client carousel */
    .logo-track span {
        font-size: 1.4rem !important;
    }

    /* Credibility badges */
    div[style*="NASSCOM"] {
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
    }

    /* Value props even smaller */
    body > div:nth-child(3) > div > div > div:nth-child(3) > div > div:first-child {
        font-size: 2rem !important;
    }

    body > div:nth-child(3) > div > div > div:nth-child(3) > div > div:last-child {
        font-size: 0.85rem !important;
    }

    /* Two Paths Segments Responsive */
    #emerging-leaders > div,
    #optimizers > div {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
    }

    #emerging-leaders h2,
    #optimizers h2 {
        font-size: 2rem !important;
    }

    #emerging-leaders ul li,
    #optimizers ul li {
        font-size: 0.95rem !important;
    }

    /* Solution cards in segments */
    #emerging-leaders .col-lg-7 > div,
    #optimizers .col-lg-7 > div {
        padding: 1.5rem !important;
    }

    #emerging-leaders h3,
    #optimizers h3 {
        font-size: 1.4rem !important;
    }

    /* Solution titles */
    div[style*="Data Hub"] > div,
    div[style*="Bolt-On Intelligence"] > div {
        font-size: 1.4rem !important;
        padding: 1rem 1.5rem !important;
    }

    /* Feature cards */
    .col-lg-4 > div[style*="background: rgba(0, 119, 255"],
    .col-lg-6 > div[style*="background: rgba(123, 47, 255"] {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }

    .col-lg-4 > div[style*="background: rgba(0, 119, 255"] i,
    .col-lg-6 > div[style*="background: rgba(123, 47, 255"] i {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .col-lg-4 > div[style*="background: rgba(0, 119, 255"] > div:nth-child(2),
    .col-lg-6 > div[style*="background: rgba(123, 47, 255"] > div:nth-child(2) {
        font-size: 1rem !important;
    }

    /* Key benefits */
    .col-md-4.text-center > div:first-child {
        font-size: 1.5rem !important;
    }

    .col-md-4.text-center > div:last-child {
        font-size: 0.85rem !important;
    }

    /* CTA buttons in segments */
    #emerging-leaders a,
    #optimizers a {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
        width: 100%;
        display: block !important;
        text-align: center;
    }

    /* Comparison Table Responsive */
    table {
        font-size: 0.75rem !important;
        min-width: 600px;
    }

    table th {
        padding: 0.8rem 0.5rem !important;
        font-size: 0.8rem !important;
    }

    table td {
        padding: 0.8rem 0.5rem !important;
        font-size: 0.75rem !important;
    }

    table th:first-child,
    table td:first-child {
        position: sticky;
        left: 0;
        background: var(--dark-bg);
        z-index: 1;
        min-width: 120px;
    }

    table i {
        font-size: 1rem !important;
    }

    table div[style*="font-size: 0.8rem"] {
        font-size: 0.7rem !important;
    }

    /* Ensure horizontal scroll for table container */
    div[style*="overflow-x: auto"] {
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    /* Traditional Stack vs SCIKIQ comparison */
    .row.g-4 > .col-lg-6 {
        margin-bottom: 2rem !important;
    }

    /* Pricing comparison cards */
    div[style*="Traditional Stack"],
    div[style*="With SCIKIQ"] {
        margin-bottom: 2rem;
    }

    /* Stats/metrics in grid */
    .row.g-4 .col-md-3 {
        margin-bottom: 1.5rem;
    }

    /* Customer logos/testimonials */
    .row.g-4 .col-lg-4,
    .row.g-4 .col-md-6 {
        margin-bottom: 2rem;
    }

    /* Feature cards/grids */
    .row.g-3 > div,
    .row.g-4 > div {
        margin-bottom: 1rem;
    }

    /* Hero section buttons */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    /* Hero main heading on small mobile */
    h1[style*="font-size: 4.5rem"] {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
        padding: 0 0.5rem;
    }

    /* "In 60-90 Days" smaller on tiny screens */
    h1[style*="font-size: 4.5rem"] > span[style*="font-size: 0.5em"] {
        font-size: 0.65em !important;
        display: block !important;
        margin-top: 0.5rem;
    }

    /* Navbar brand logo */
    .navbar-brand img {
        height: 35px !important;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* Product cards with icons */
    div[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }

    /* Large stat numbers */
    div[style*="font-size: 3rem"],
    div[style*="font-size: 3.5rem"] {
        font-size: 2rem !important;
    }

    /* Case studies and cards with padding */
    div[style*="padding: 3rem"],
    div[style*="padding: 4rem"] {
        padding: 1.5rem !important;
    }

    /* Why SCIKIQ section cards */
    .friendly-card {
        margin-bottom: 1.5rem;
    }

    /* Timeline/process steps */
    div[class*="timeline"],
    div[class*="step"] {
        margin-bottom: 2rem;
    }

    /* Footer columns */
    footer .col-lg-4 {
        margin-bottom: 2rem;
    }

    /* Any fixed width containers */
    div[style*="max-width: 1200px"],
    div[style*="max-width: 1100px"],
    div[style*="max-width: 1000px"] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Customer stories grid */
    #customer-stories .row {
        margin-bottom: 2rem;
    }

    /* Comparison grid items */
    .comparison-grid > div {
        margin-bottom: 1.5rem;
    }

    /* Trust badges horizontal display */
    div[style*="display: flex"][style*="gap: 2.5rem"],
    div[style*="display: flex"][style*="gap: 3rem"],
    div[style*="display: flex"][style*="gap: 4rem"] {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center;
    }

    /* Inline flex elements */
    div[style*="display: inline-flex"] {
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }

    /* Infrastructure Requirements sections */
    div[style*="Infrastructure Requirements"] h3,
    div[style*="Infrastructure Requirements"] h4 {
        font-size: 1.2rem !important;
    }

    /* Cloud SKU cards stack */
    div[style*="AWS"] div,
    div[style*="Azure"] div,
    div[style*="GCP"] div {
        font-size: 0.85rem !important;
    }

    /* Network requirements list items */
    div[style*="VPC"] span,
    div[style*="Security Groups"] span {
        font-size: 0.9rem !important;
    }

    /* Contact Form Section Responsive */
    #get-started h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    #get-started input,
    #get-started select {
        font-size: 0.95rem !important;
        padding: 0.9rem 1rem !important;
    }

    #get-started label {
        font-size: 0.9rem !important;
    }

    #get-started button[type="submit"] {
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
    }

    /* Contact form radio buttons */
    #get-started input[type="radio"] {
        width: 16px !important;
        height: 16px !important;
    }

    #get-started label[style*="flex"] {
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Contact info cards */
    #get-started .col-lg-6 > div {
        padding: 2rem 1.5rem !important;
    }

    #get-started h3 {
        font-size: 1.5rem !important;
    }

    /* Contact info items */
    #get-started div[style*="width: 55px"] {
        width: 45px !important;
        height: 45px !important;
    }

    #get-started div[style*="width: 50px"] {
        width: 40px !important;
        height: 40px !important;
    }

    /* Response badge */
    #get-started div[style*="inline-flex"] {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.6rem 1.2rem !important;
    }

    /* Form decorative orbs - hide on mobile */
    #get-started div[style*="absolute"][style*="blur"] {
        display: none !important;
    }

    /* NASSCOM and YourStory badges responsive */
    .credibility-badges,
    div[style*="NASSCOM"],
    div[style*="YourStory"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .badge-item {
        width: 100% !important;
        min-height: auto !important;
    }

    .badge-item img {
        max-width: 50px !important;
    }

    div[style*="credibility-badges"] {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Client Carousel/Logo Track Responsive */
    .logo-track {
        gap: 2rem !important;
    }

    .logo-track span {
        font-size: 1.2rem !important;
    }

    .logo-track img {
        height: 30px !important;
    }

    .logo-track > div {
        height: 45px !important;
    }

    /* Trusted By heading */
    div[style*="Trusted By"] h3 {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Trusted by Global Enterprises section */
    div[style*="Trusted by Global Enterprises"] {
        padding: 1.5rem 1rem !important;
    }

    div[style*="Trusted by Global Enterprises"] + div {
        gap: 1.5rem !important;
        justify-content: center !important;
    }

    div[style*="Trusted by Global Enterprises"] + div > div {
        font-size: 0.95rem !important;
    }

    /* Industry badges in Trusted by section */
    div[style*="Banking"],
    div[style*="Healthcare"],
    div[style*="Retail"],
    div[style*="Aviation"],
    div[style*="Manufacturing"] {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem;
    }

    /* Trust bar container */
    div[style*="Trust Bar"] {
        padding: 1.5rem 1rem !important;
    }

    /* Small mobile - Contact form additional styles */
    #get-started h2 {
        font-size: 1.8rem !important;
    }

    #get-started input,
    #get-started select {
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }

    #get-started button[type="submit"] {
        font-size: 0.95rem !important;
        padding: 0.9rem 1.2rem !important;
    }

    #get-started .col-lg-6 > div {
        padding: 1.5rem 1rem !important;
    }

    #get-started h3 {
        font-size: 1.3rem !important;
    }

    /* Contact info items smaller on tiny screens */
    #get-started div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }

    /* Client carousel even smaller on tiny screens */
    .logo-track {
        gap: 1.5rem !important;
    }

    .logo-track span {
        font-size: 1rem !important;
    }

    .logo-track img {
        height: 25px !important;
    }

    .logo-track > div {
        height: 40px !important;
    }

    /* Trusted By heading smaller */
    div[style*="Trusted By"] h3 {
        font-size: 0.75rem !important;
    }

    /* Trusted by Global Enterprises - smaller on tiny screens */
    div[style*="Trusted by Global Enterprises"] {
        font-size: 0.75rem !important;
        padding: 1rem !important;
        letter-spacing: 1px !important;
    }

    div[style*="Trusted by Global Enterprises"] + div {
        gap: 1rem !important;
    }

    div[style*="Trusted by Global Enterprises"] + div > div {
        font-size: 0.85rem !important;
    }

    /* Industry badges smaller */
    div[style*="Banking"],
    div[style*="Healthcare"],
    div[style*="Retail"],
    div[style*="Aviation"],
    div[style*="Manufacturing"] {
        font-size: 0.85rem !important;
    }
}
