:root {
    /* Elegant Warm Red-Green Theme */
    --primary: #d63384; /* Elegant rose/magenta */
    --primary-dark: #b02a5f; /* Deeper rose */
    --primary-light: #e85d9f; /* Lighter rose */
    --accent: #20c997; /* Teal green accent */
    --accent-dark: #1aa179; /* Deeper teal */
    --accent-light: #3dd5a8; /* Lighter teal */
    --bg-dark: #0d0a0b; /* Deep dark with subtle warm tone */
    --bg-card: #181315; /* Card background with warm undertone */
    --bg-elevated: #221b1e; /* Elevated elements */
    --text-primary: #f8f0f2; /* Soft warm light text */
    --text-secondary: #d9b8c1; /* Warm secondary text */
    --text-muted: #9d7a85; /* Warm muted text */
    --border: #2a1f23; /* Warm border */
    --border-light: #352a2e; /* Lighter warm border */
    --shadow: 0 4px 6px -1px rgba(214, 51, 132, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(214, 51, 132, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --gradient: linear-gradient(135deg, #d63384 0%, #20c997 100%); /* Rose to teal gradient */
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.4);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 0.5rem;
}

.lang-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    min-width: 50px;
}

.lang-btn:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s;
    opacity: 0.7;
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: var(--bg-elevated);
    color: var(--primary);
}

.lang-option.active {
    background: rgba(214, 51, 132, 0.15);
    color: var(--primary);
    font-weight: 500;
}

.lang-name {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    color: var(--primary); /* Solid pink color, no gradient */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-disabled {
    background: var(--bg-elevated);
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Pipeline Visual */
.pipeline-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pipeline-step {
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 100px;
    transition: all 0.3s;
}

.pipeline-step:hover {
    border-color: var(--primary);
    background: var(--bg-elevated);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.pipeline-arrow {
    width: 20px;
    height: 2px;
    background: var(--border);
    position: relative;
    margin: 0 0.25rem;
}

.pipeline-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--border);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Stories Section */
.stories-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.stories-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

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

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.story-card.featured {
    border: 2px solid var(--primary);
}

.story-badge {
    position: absolute;
    top: -10px;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.story-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--bg-elevated);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* Consulting Section */
.consulting-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.consulting-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

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

.consulting-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.consulting-card:hover {
    transform: translateY(-5px);
}

.consulting-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.consulting-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.consulting-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.consulting-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.consulting-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.consulting-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    color: var(--text-primary);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .pipeline-visual {
        flex-direction: column;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    
    .consulting-card.featured {
        transform: none;
    }
}

/* Products Section Styles */
.products-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
    color: var(--text-primary);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.product-card.flagship {
    border: 2px solid var(--primary);
    background: var(--bg-card);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.flagship .product-badge {
    background: var(--primary);
    color: white;
}

.coming-soon .product-badge {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.product-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

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

/* Platform Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Challenge Grid */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.challenge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.comparison-table th {
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-primary);
}

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

/* User Quote */
.user-quote {
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.user-quote blockquote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.user-quote cite {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
}

.insight-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .platforms-grid,
    .benefits-grid,
    .challenge-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
}

/* Value Proposition Grid */
.value-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.value-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-content {
    flex: 1;
    text-align: left;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Section Intro */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Product Links */
.product-links {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.product-link-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.product-links .btn {
    margin: 0;
    width: 100%;
    max-width: 280px;
    display: block;
}

.product-links .btn:first-of-type {
    margin-top: 0.5rem;
}

/* Story Stats */
.story-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Consulting Section Updates */
.consulting-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

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

.consulting-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.consulting-card:hover {
    transform: translateY(-5px);
}

.consulting-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.consulting-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.consulting-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.consulting-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.consulting-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.consulting-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.consulting-features {
    list-style: none;
    text-align: left;
}

.consulting-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.consulting-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Consulting CTA */
.consulting-cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.consulting-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.consulting-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Assessment Form Styles */
.assessment-form {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(32, 201, 151, 0.15);
    border: 1px solid rgba(32, 201, 151, 0.3);
    color: #3dd5a8;
}

.form-message.error {
    display: block;
    background: rgba(214, 51, 132, 0.15);
    border: 1px solid rgba(214, 51, 132, 0.3);
    color: #e85d9f;
}

/* Section kicker label */
.section-kicker {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: var(--primary);
    color: white;
    margin: 0 auto 0.75rem;
}
.stories-section .section-kicker { display: block; text-align: center; }

/* Responsive Updates */
@media (max-width: 768px) {
    .value-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .value-card {
        max-width: 100%;
    }
    
    .consulting-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-card.featured {
        transform: none;
    }
    
    .consulting-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .consulting-cta {
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .assessment-form {
        margin: 1.5rem auto 0;
    }
}
