/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #63584D;
    background: #F5F4F2;
    overflow-x: hidden;
}

/* Typography Hierarchy - Brand Guidelines */
/* Display Text */
.display-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem; /* 64px */
    font-weight: 700;
    line-height: 1.1;
    color: #450E45;
}

/* Heading 1 (H1) */
h1, .h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem; /* 48px */
    font-weight: 700;
    line-height: 1.2;
    color: #450E45;
    margin: 0 0 1rem 0;
}

/* Heading 2 (H2) */
h2, .h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    line-height: 1.3;
    color: #450E45;
    margin: 0 0 1rem 0;
}

/* Heading 3 (H3) */
h3, .h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    line-height: 1.4;
    color: #450E45;
    margin: 0 0 0.75rem 0;
}

/* Heading 4 (H4) */
h4, .h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    line-height: 1.4;
    color: #450E45;
    margin: 0 0 0.5rem 0;
}

/* Body Large */
.body-large {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; /* 18px */
    font-weight: 400;
    line-height: 1.6;
    color: #63584D;
}

/* Body (Default) - already set in body */
p, .body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: 400;
    line-height: 1.6;
    color: #63584D;
    margin: 0 0 1rem 0;
}

/* Body Small */
.body-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; /* 14px */
    font-weight: 400;
    line-height: 1.5;
    color: #63584D;
}

/* Caption */
.caption {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
    line-height: 1.4;
    color: #63584D;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 60px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #450E45;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-brand:hover {
    color: #bf267d;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav a {
    color: #63584D;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.navbar-nav a:hover {
    color: #bf267d;
}

.navbar-nav a.active {
    color: #bf267d;
}

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    border-radius: 1px;
}

/* CTA Button */
.navbar-cta {
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 38, 125, 0.3);
}

/* Mobile Navigation */
.navbar-mobile {
    display: none;
    background: #450E45;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Login Button - Ghost Style */
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header Login Button - Visible on White Background */
.header-actions .btn-secondary {
    background: transparent;
    color: #450E45;
    border: 2px solid #450E45;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.header-actions .btn-secondary:hover {
    background: #450E45;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(69, 14, 69, 0.3);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .navbar-nav {
        gap: 1rem;
    }
    
    .navbar-nav a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
        min-height: 56px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar-mobile {
        display: block;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .navbar-logo-img {
        width: 32px;
        height: 32px;
    }
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #bf267d 0%, #a01e66 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 0 #450E45, 0 6px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #450E45, 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #450E45, 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

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

.solutions-title {
    font-size: 40px;
    font-weight: 700;
    color: #4C1D95;
    text-align: center;
    margin-bottom: 24px;
}

.solutions-description {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-icon {
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(191, 38, 125, 0.1), rgba(191, 38, 125, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.icon {
    font-size: 24px;
    color: #bf267d;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.card-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #f8f8f8;
}

.contact-hero .hero-description {
    font-size: 20px;
    margin-bottom: 48px;
    color: rgba(248, 248, 248, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

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

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(248, 248, 248, 0.8);
    font-weight: 500;
}

.contact-methods {
    padding: 120px 0;
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-card.primary {
    grid-row: span 2;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
}

.contact-card.primary .contact-icon svg {
    stroke: white;
}

.contact-card.primary h3,
.contact-card.primary p {
    color: white;
}

.contact-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #450E45;
}

.contact-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-form {
    margin-top: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info {
    margin-bottom: 24px;
    flex-grow: 1;
}

.contact-card-footer {
    margin-top: auto;
    padding-top: 24px;
}

.contact-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.contact-item strong {
    color: #450E45;
    font-weight: 600;
}

.office-locations {
    padding: 120px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.location-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: #bf267d;
}

.location-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #450E45;
}

.location-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.location-contact {
    font-size: 14px;
    color: #bf267d;
}

.location-contact div {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-faq {
    padding: 120px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #450E45;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #bf267d;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #bf267d;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.about-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 24px;
}

.about-hero .hero-description {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 24px;
}

.story-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

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

.mission-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
}

.mission-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 16px;
}

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

.company-structure {
    padding: 100px 0;
    background: white;
}

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

.structure-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.structure-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.structure-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 16px;
}

.structure-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.structure-card li {
    font-size: 14px;
    color: #bf267d;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.structure-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #bf267d;
}

.expertise {
    padding: 100px 0;
    background: #f8fafc;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.expertise-category {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.expertise-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 24px;
}

.expertise-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.value-proposition {
    padding: 100px 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    margin-top: 8px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.team-member {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.avatar-placeholder {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 8px;
}

.member-title {
    font-size: 16px;
    color: #bf267d;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* About Page Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid,
    .structure-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 36px;
    }
    
    .about-hero .hero-description {
        font-size: 18px;
    }
    
    .story-text .section-title {
        font-size: 28px;
    }
    
    .mission-card,
    .structure-card,
    .expertise-category,
    .team-member {
        padding: 24px 20px;
    }
}

/* Diagnostics Page Styles */
.diagnostics-hero {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #F8FAFC 0%, #ECFDF5 100%);
    text-align: center;
}

.diagnostics-hero .container {
    position: relative;
}

.diagnostics-hero::before,
.diagnostics-hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.diagnostics-hero::before {
    background: radial-gradient(circle at 30% 30%, #C7D2FE 0%, transparent 60%);
    top: -120px;
    left: -120px;
}

.diagnostics-hero::after {
    background: radial-gradient(circle at 70% 60%, rgba(191, 38, 125, 0.1) 0%, transparent 60%);
    bottom: -140px;
    right: -140px;
}

.diagnostics-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 24px;
}

.diagnostics-hero .hero-description {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #26C6DA;
    font-weight: 500;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: #26C6DA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.hero-stats {
    margin-bottom: 40px;
}

.social-proof {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.trust-item {
    font-size: 14px;
    color: #0F766E;
    font-weight: 500;
}

/* Hero Showcase */
.hero-showcase {
    max-width: 980px;
    margin: 32px auto 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
}

.showcase-left {
    padding: 32px 32px 16px 32px;
    text-align: left;
}

.showcase-left h3 {
    margin: 0 0 12px 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
}

.showcase-left ul {
    margin: 0;
    padding-left: 18px;
    color: #334155;
    line-height: 1.8;
}

.showcase-right {
    min-height: 240px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E9D5FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.outcome-card {
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
    padding: 18px 20px;
    max-width: 380px;
    text-align: left;
}

.outcome-card .headline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #0ea5e9;
    font-weight: 700;
}

.logos-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.logo-pill {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 14px;
    color: #475569;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.04);
}

.testimonial {
    max-width: 880px;
    margin: 20px auto 0;
    color: #334155;
    font-size: 15px;
}

.testimonial .quote {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.05);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .showcase-right {
        min-height: 200px;
    }
    .showcase-left {
        padding: 24px 24px 8px 24px;
    }
}

/* Progress Section */
.progress-section {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* keep all circles' top aligned */
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(191, 38, 125, 0.12);
}

.step.active .step-number {
    background: #bf267d;
    color: white;
}

.step.completed .step-number {
    background: #89e6eb;
    color: #450E45;
}

.step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Assessment Container */
.assessment-container {
    padding: 60px 0;
    background: #f8fafc;
    min-height: 80vh;
}

.assessment-screen {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.screen-header {
    text-align: center;
    margin-bottom: 40px;
}

.screen-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 8px;
}

.screen-subtitle {
    font-size: 16px;
    color: #10B981;
    font-weight: 600;
}

.question-group {
    margin-bottom: 40px;
}

.question-group h3 {
    font-size: 20px;
    font-weight: 600;
    color: #450E45;
    margin-bottom: 12px;
}

.question-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.option-card {
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option-card:hover {
    border-color: #89e6eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(137, 230, 235, 0.25);
}

.option-card.selected {
    border-color: #89e6eb;
    background: #ecfcfe;
    box-shadow: 0 4px 12px rgba(137, 230, 235, 0.35);
}

/* Validation highlight */
.dq-error {
    outline: 2px solid #bf267d;
    box-shadow: 0 0 0 4px rgba(191, 38, 125, 0.15);
    border-radius: 12px;
}

.dq-error-label {
    color: #bf267d !important;
}

.option-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.option-text {
    font-size: 14px;
    font-weight: 500;
    color: #450E45;
}

/* Scale Options */
.scale-options {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.scale-option {
    flex: 1;
    min-width: 120px;
    padding: 16px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.scale-option:hover {
    border-color: #89e6eb;
    transform: translateY(-1px);
}

.scale-option.selected {
    border-color: #89e6eb;
    background: #ecfcfe;
    box-shadow: 0 2px 8px rgba(137, 230, 235, 0.25);
}

.scale-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.scale-text {
    font-size: 12px;
    font-weight: 500;
    color: #450E45;
}

/* Tool Categories */
.tool-category {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.tool-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: #450E45;
    margin-bottom: 16px;
}

.tool-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.tool-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.tool-option:hover {
    border-color: #89e6eb;
    background: #ecfcfe;
}

.tool-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.tool-option input[type="checkbox"]:checked + .checkmark {
    background: #89e6eb;
    border-color: #89e6eb;
}

.tool-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-option:hover {
    border-color: #89e6eb;
    background: #ecfcfe;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
    background: #89e6eb;
    border-color: #89e6eb;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Priority List */
.priority-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.priority-item:hover {
    border-color: #89e6eb;
    background: #ecfcfe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(137, 230, 235, 0.15);
}

.priority-item.selected {
    border-color: #89e6eb;
    background: #ecfcfe;
    box-shadow: 0 4px 12px rgba(137, 230, 235, 0.25);
}

.priority-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
}

.priority-text {
    font-weight: 500;
    color: #1e293b;
    flex: 1;
}

.selection-counter {
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
}

.selection-counter span {
    color: #10B981;
    font-weight: 600;
}

/* Results Screen */
.results-screen {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(180deg, #89e6eb 0%, #F5F4F2 100%);
    border-radius: 16px;
    padding: 24px;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #bf267d, #89e6eb);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.results-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.results-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Maturity Section */
.maturity-section {
    margin-bottom: 60px;
}

.maturity-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.score-display {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 1rem;
    opacity: 0.8;
}

.score-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.score-info p {
    color: #64748b;
    font-size: 1.1rem;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breakdown-label {
    min-width: 140px;
    font-weight: 500;
    color: #374151;
}

.breakdown-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.breakdown-value {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: #10B981;
}

/* Findings Section */
.findings-section {
    margin-bottom: 60px;
}

.findings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

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

.finding-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
}

.finding-card.positive {
    border-left-color: #10B981;
}

.finding-card.warning {
    border-left-color: #F59E0B;
}

.finding-card.opportunity {
    border-left-color: #3B82F6;
}

.finding-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.finding-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

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

.finding-card li {
    padding: 8px 0;
    color: #4B5563;
    position: relative;
    padding-left: 20px;
}

.finding-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Impact Section */
.impact-section {
    margin-bottom: 60px;
}

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

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

.impact-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.impact-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.impact-value {
    font-size: 2rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 8px;
}

.impact-content p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Recommendations Section */
.recommendations-section {
    margin-bottom: 60px;
}

.recommendations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

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

.recommendation-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.recommendation-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.recommendation-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Action Plan Section */
.action-plan-section {
    margin-bottom: 60px;
}

.action-plan-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.plan-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plan-phase {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #10B981;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.phase-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.phase-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.phase-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.phase-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-tasks li {
    padding: 8px 0;
    color: #4B5563;
    position: relative;
    padding-left: 24px;
}

.phase-tasks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Next Steps Section */
.next-steps-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.next-steps-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-icon {
    font-size: 1.1rem;
}

.email-confirmation {
    font-size: 0.9rem;
    opacity: 0.8;
}

.email-confirmation span {
    font-weight: 600;
    color: #10B981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-header h1 {
        font-size: 2rem;
    }
    
    .score-display {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .findings-grid,
    .impact-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
}

/* Slider */
.slider-container {
    margin: 24px 0;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10B981;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10B981;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

/* Priority List */
.priority-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: grab;
    transition: all 0.3s ease;
    background: white;
}

.priority-item:hover {
    border-color: #89e6eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(137, 230, 235, 0.15);
}

.priority-item:active {
    cursor: grabbing;
}

.priority-icon {
    font-size: 24px;
}

.priority-text {
    font-size: 16px;
    font-weight: 500;
    color: #450E45;
}

/* Input Group */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input[type="email"]:focus {
    outline: none;
    border-color: #10B981;
}

/* Screen Actions */
.screen-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

/* Loading Screen */
.loading-screen {
    padding: 120px 0;
    background: #f8fafc;
    text-align: center;
}

.loading-content {
    max-width: 400px;
    margin: 0 auto;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 32px;
}

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

.loading-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #450E45;
    margin-bottom: 24px;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loading-step {
    font-size: 16px;
    color: #666;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.loading-step.active {
    opacity: 1;
    color: #10B981;
    font-weight: 500;
}

/* Results Screen */
.results-screen {
    padding: 80px 0;
    background: #f8fafc;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 40px;
}

.maturity-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.score-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 16px;
    opacity: 0.8;
}

.score-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 8px;
}

.score-details p {
    font-size: 16px;
    color: #666;
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.finding-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.finding-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.finding-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 16px;
}

.finding-card ul,
.finding-card ol {
    list-style: none;
    padding: 0;
}

.finding-card li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 20px;
}

.benefit-text {
    font-size: 16px;
    color: #450E45;
    font-weight: 500;
}

.recommendations-section {
    margin-bottom: 60px;
}

.recommendations-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 32px;
    text-align: center;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.recommendation-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #10B981;
}

.recommendation-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 12px;
}

.recommendation-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.recommendation-impact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #10B981;
    font-weight: 500;
}

.action-plan {
    margin-bottom: 60px;
}

.action-plan h3 {
    font-size: 28px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 32px;
    text-align: center;
}

.plan-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.plan-phase {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plan-phase h4 {
    font-size: 18px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 16px;
}

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

.plan-phase li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.plan-phase li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10B981;
}

.next-steps {
    text-align: center;
}

.next-steps h3 {
    font-size: 28px;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.email-confirmation {
    font-size: 14px;
    color: #10B981;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .diagnostics-hero .hero-title {
        font-size: 36px;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-elements {
        flex-direction: column;
        gap: 16px;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .assessment-screen {
        padding: 24px;
        margin: 0 16px;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .scale-options {
        flex-direction: column;
    }
    
    .tool-options {
        grid-template-columns: 1fr;
    }
    
    .maturity-score {
        flex-direction: column;
        gap: 24px;
    }
    
    .findings-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-phases {
        grid-template-columns: 1fr;
    }
    
    .screen-actions {
        flex-direction: column;
        gap: 16px;
    }
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card.primary {
        grid-row: span 1;
    }
    
    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 36px;
    }
    
    .contact-hero .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 16px;
    }
    
    
    .header-actions {
        gap: 8px;
    }
    
    .header-actions .btn-primary,
    .header-actions .btn-secondary {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .solutions-title {
        font-size: 32px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .solutions {
        padding: 80px 0;
    }
    
    .solutions-title {
        font-size: 28px;
    }
}

/* Enhanced Homepage Sections */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-proposition {
    /* Pull section up slightly to remove thin white seam under hero */
    margin-top: -12px;
    padding: 92px 0 80px;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url("background images/textured-background-1.jpg"),
        #ffffff;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center -24px, center -24px, center;
    /* Scale the image slightly beyond container to align grain with hero */
    background-size: auto, 140% auto, auto;
}

/* Smooth fade-out at the bottom to avoid visible stacking/glitch with next section */
.value-proposition::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    pointer-events: none;
    /* stronger, longer fade to blend cleanly into next section */
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 35%,
        rgba(255,255,255,0.92) 75%,
        rgba(255,255,255,1) 100%
    );
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #450E45;
    text-align: center;
    margin-bottom: 16px;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #63584D;
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Shared small subtitle style per brand typography */
.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(69, 14, 69, 0.75);
    text-align: center;
    margin: 6px auto 0;
}

/* Spacing for team subtitle → tiles (8px scale, brand-consistent) */
.consultant-profiles .section-subtitle {
    margin-bottom: 24px; /* 3 × 8px */
}

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

.value-card {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon svg {
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

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

.services-overview {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
}

/* Removed colored top borders - now using gradient hover effect */

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

/* Service-specific icon colors from brand guidelines */
.service-card.diagnostics .service-icon {
    background: #89e6eb;
}

.service-card.marketplace .service-icon {
    background: #89e6eb;
}

.service-card.consulting .service-icon {
    background: #450E45;
}

.service-card.support .service-icon {
    background: #bf267d;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 14px;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    color: #6B7280;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
    font-size: 13px;
    transition: color 0.3s ease;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.service-link {
    color: #bf267d;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #450E45;
    transform: translateX(4px);
}

/* When service card is hovered, CTA becomes white for contrast */
.service-card:hover .service-link {
    color: white;
}

.service-card:hover .service-link:hover {
    color: rgba(255, 255, 255, 0.9);
}


.social-proof {
    padding: 120px 0;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
}

.social-proof .section-title {
    color: white;
}

/* Merged Social Proof & Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #450E45 0%, #89e6eb 100%);
    color: white;
}

.success-stories .section-title {
    color: #450E45;
    text-align: center;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 16px;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.stories-section {
    margin-top: 80px;
}

.stories-title {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 48px;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.story-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #1a202c;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 500;
}

.story-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.author-title {
    font-size: 14px;
    color: #bf267d;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Merged Section */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .story-card {
        padding: 24px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.diagnostics-hero {
    background: linear-gradient(180deg, #F8FAFC 0%, #ECFDF5 100%);
}

.marketplace-hero {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.consulting-hero {
    /* Professional/Sophisticated gradient per brand guidelines */
    background: linear-gradient(135deg, #450E45 0%, #63584D 100%);
    color: #ffffff;
}

.consulting-hero .hero-title { color: #ffffff; }
.consulting-hero .hero-description { color: rgba(255, 255, 255, 0.9); }
.consulting-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.consulting-hero .btn-primary {
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: #ffffff;
}
.consulting-hero .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

/* Ensure helper caption in hero is readable on dark gradient */
.consulting-hero .caption {
    color: rgba(255, 255, 255, 0.85);
}

/* Trust-Building Section */
.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.trust-pillar {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.trust-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.trust-pillar h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: #450E45;
    margin-bottom: 8px;
}

.trust-pillar p {
    margin: 0;
    color: rgba(69, 14, 69, 0.75);
}

.support-hero {
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
}

.problem-statement {
    padding: 120px 0;
    background: #ffffff;
}

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

.problem-card {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.problem-card p {
    color: #6B7280;
    line-height: 1.6;
}

.solution-overview {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 24px;
}

.solution-text p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    color: #6B7280;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mockup-header {
    background: #4C1D95;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-title {
    font-weight: 600;
}

.mockup-status {
    font-size: 14px;
}

.mockup-metrics {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    text-align: center;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 8px;
}

.metric-label {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #4C1D95;
}

.key-features {
    padding: 120px 0;
    background: #ffffff;
}

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

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
}

.use-cases {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.use-case-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.use-case-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.use-case-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.use-case-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.metric {
    background: rgba(191, 38, 125, 0.1);
    color: #bf267d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.integration {
    padding: 120px 0;
    background: #ffffff;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.integration-category {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.integration-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 24px;
}

.integration-logos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integration-logo {
    background: #F8FAFC;
    color: #6B7280;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.cta-section {
    padding: 120px 0;
    /* Warm grain background per guidelines: grain + subtle brand overlay */
    background-image:
        linear-gradient(135deg, rgba(191, 38, 125, 0.35) 0%, rgba(137, 230, 235, 0.35) 100%),
        url('background images/textured-background-1.jpg');
    background-size: cover;
    background-position: center;
    color: #450E45;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Marketplace Specific Styles */
.featured-automations {
    padding: 120px 0;
    background: #ffffff;
}

.automations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.automation-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.automation-category {
    background: #3B82F6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.automation-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.automation-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.automation-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.feature-tag {
    background: rgba(191, 38, 125, 0.1);
    color: #bf267d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.automation-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #6B7280;
}

.categories {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.category-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.category-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.category-card p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.category-count {
    background: rgba(191, 38, 125, 0.1);
    color: #bf267d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.marketplace-preview {
    padding: 120px 0;
    background: #ffffff;
}

.preview-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.preview-sidebar {
    background: #F8FAFC;
    padding: 32px;
    border-right: 1px solid #E5E7EB;
}

.preview-sidebar h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.category-list li {
    padding: 8px 0;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-list li.active {
    color: #bf267d;
    font-weight: 600;
}

.category-list li:hover {
    color: #bf267d;
}

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

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4C1D95;
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background: white;
    color: #6B7280;
}

.preview-main {
    padding: 32px;
}

.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
}

.automation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.automation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.automation-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 4px;
}

.automation-info p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.automation-tags {
    display: flex;
    gap: 8px;
}

.tag {
    background: rgba(191, 38, 125, 0.05);
    color: #3B82F6;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.automation-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: #10B981;
}

.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #450E45 0%, #89e6eb 100%);
    color: white;
}

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

.story-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.story-quote {
    font-size: 18px;
    color: #4C1D95;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
}

.author-title {
    font-size: 14px;
    color: #6B7280;
}

/* Success Story Cards */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.success-story-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
}

.success-story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.success-story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.success-story-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F5F4F2 0%, #89e6eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #450E45;
    font-size: 1.5rem;
}

.success-story-company {
    flex: 1;
}

.success-story-company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.success-story-industry {
    color: #63584D;
    font-size: 0.875rem;
}

.success-story-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #450E45;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.success-story-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(191, 38, 125, 0.2);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}

.success-story-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.success-story-metric {
    text-align: center;
}

.success-story-metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #bf267d;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.success-story-metric-label {
    font-size: 0.875rem;
    color: #63584D;
    margin-top: 0.25rem;
}

.success-story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #F5F4F2;
}

.success-story-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bb7ea5 0%, #89e6eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.success-story-author-info {
    flex: 1;
}

.success-story-author-name {
    font-weight: 600;
    color: #450E45;
    margin-bottom: 0.25rem;
}

.success-story-author-title {
    font-size: 0.875rem;
    color: #63584D;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .success-story-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-story-card {
        padding: 1.5rem;
    }
}
    
    .preview-content {
        grid-template-columns: 1fr;
    }
    
    .automation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .automation-actions {
        width: 100%;
        justify-content: space-between;
    }

/* Consulting Page Specific Styles */
.client-logos {
    padding: 48px 0;
    background: #ffffff;
}

.logos-mask {
    overflow: hidden;
    width: 100%;
}

/* Ensure client logos header text is perfectly centered with pleasant width */
.client-logos .section-title { text-align: center; }
.client-logos .section-description {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 12px;
}

.logos-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: logosScroll 30s linear infinite;
    will-change: transform;
}

.logo-item img {
    height: 36px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes logosScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.expertise-areas {
    padding: 120px 0;
    background: #ffffff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.expertise-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.expertise-icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.expertise-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.expertise-card p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Problem → Solution formatting for simplified expertise cards */
.problem-quote {
    font-style: italic;
    color: #63584D;
}

.solution-text {
    font-weight: 600;
    color: #450E45;
}

.learn-more {
    color: #bf267d;
    text-decoration: none;
    font-weight: 600;
}

.learn-more:hover { text-decoration: underline; }

.expertise-features {
    list-style: none;
    padding: 0;
}

.expertise-features li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.expertise-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.consultant-profiles {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.consultant-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

/* New photo style for humanized consultant cards */
.consultant-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.consultant-name { margin-bottom: 6px; }
.consultant-name .first-name { font-size: 20px; font-weight: 700; color: #450E45; }
.consultant-name .last-name { font-size: 16px; font-weight: 500; color: #6B7280; }

.consultant-title {
    color: #6B7280;
    margin-bottom: 16px;
    font-size: 14px;
}

.consultant-intro { color: #450E45; font-weight: 600; margin-bottom: 10px; }

.consultant-specialties {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
    margin-top: auto; /* align badges to same vertical level across cards */
}

.specialty {
    background: rgba(191, 38, 125, 0.1);
    color: #bf267d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.consultant-bio { color: #6B7280; margin-bottom: 16px; line-height: 1.6; font-size: 14px; }

/* Replace stats with impact note and booking link */
.btn-link { color: #bf267d; font-weight: 600; text-decoration: none; margin-top: 12px; padding-top: 12px; }
.btn-link:hover { text-decoration: underline; }
.impact-note { color: #10B981; font-weight: 600; margin-top: 8px; }

.consultant-stats .stat {
    text-align: center;
}

.consultant-stats .stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #10B981;
    display: block;
}

.consultant-stats .stat-label {
    font-size: 12px;
    color: #6B7280;
}

.service-packages {
    padding: 120px 0;
    background: #ffffff;
}

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

.package-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.package-card.featured {
    border: 2px solid #7C3AED;
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #7C3AED;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
}

.package-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: #bf267d;
    margin-bottom: 8px;
}

.package-duration {
    color: #6B7280;
    font-size: 14px;
}

.package-content {
    padding: 32px;
}

.package-content p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.package-features li {
    color: #6B7280;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.consulting-process {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.step-content p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-details li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.step-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #bf267d;
    font-weight: bold;
}

.case-studies {
    padding: 120px 0;
    background: #ffffff;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.case-study-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.case-study-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
}

.case-study-industry {
    background: rgba(191, 38, 125, 0.1);
    color: #bf267d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.case-study-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.case-study-content p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.case-study-results {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.case-study-results .result {
    text-align: center;
}

.case-study-results .result-number {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
    display: block;
}

.case-study-results .result-label {
    font-size: 12px;
    color: #6B7280;
}

.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-quote {
    font-size: 18px;
    color: #4C1D95;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
}

.author-title {
    font-size: 14px;
    color: #6B7280;
}

/* Support Page Specific Styles */
.support-channels {
    padding: 120px 0;
    background: #ffffff;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.channel-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.channel-icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.channel-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.channel-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.channel-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sla-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.sla-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

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

.sla-card.featured {
    border: 2px solid #7C3AED;
}

.sla-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #7C3AED;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.sla-tier {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.sla-response-time {
    margin-bottom: 24px;
}

.sla-response-time .time {
    font-size: 32px;
    font-weight: 700;
    color: #bf267d;
    display: block;
    margin-bottom: 8px;
}

.sla-response-time .label {
    color: #6B7280;
    font-size: 14px;
}

.sla-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.sla-features li {
    color: #6B7280;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sla-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.knowledge-base-preview {
    padding: 120px 0;
    background: #ffffff;
}

.kb-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.kb-sidebar {
    background: #F8FAFC;
    padding: 32px;
    border-right: 1px solid #E5E7EB;
}

.kb-sidebar h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.kb-categories, .popular-articles {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.kb-categories li, .popular-articles li {
    padding: 8px 0;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 14px;
}

.kb-categories li.active {
    color: #bf267d;
    font-weight: 600;
}

.kb-categories li:hover, .popular-articles li:hover {
    color: #bf267d;
}

.kb-main {
    padding: 32px;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item {
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.article-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.article-item p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.article-category {
    background: rgba(191, 38, 125, 0.05);
    color: #3B82F6;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.article-views {
    color: #6B7280;
}

.ticket-system-demo {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.ticket-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ticket-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.ticket-form h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 24px;
}

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #6B7280;
}

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

.ticket-status {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.ticket-status h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 24px;
}

.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-item {
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ticket-id {
    font-size: 14px;
    font-weight: 600;
    color: #4C1D95;
}

.ticket-priority {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.ticket-priority.high {
    background: #FEE2E2;
    color: #DC2626;
}

.ticket-priority.medium {
    background: #FEF3C7;
    color: #D97706;
}

.ticket-title {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.ticket-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.ticket-status-badge.in-progress {
    background: #DBEAFE;
    color: #2563EB;
}

.ticket-status-badge.resolved {
    background: #D1FAE5;
    color: #059669;
}

.ticket-time {
    font-size: 12px;
    color: #6B7280;
}

.support-team {
    padding: 120px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.member-title {
    color: #6B7280;
    margin-bottom: 16px;
    font-size: 14px;
}

.member-specialties {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.member-bio {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

.availability {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.availability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.availability-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 24px;
}

.availability-text p {
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 18px;
}

.availability-features {
    list-style: none;
    padding: 0;
}

.availability-features li {
    color: #6B7280;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.availability-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.availability-map {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.timezone {
    text-align: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.timezone-name {
    font-size: 16px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.timezone-time {
    font-size: 14px;
    color: #6B7280;
}

/* Responsive Design for Consulting and Support Pages */
@media (max-width: 768px) {
    .consultants-grid, .packages-grid, .channels-grid, .sla-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .kb-content, .ticket-demo, .availability-content {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Subscription Plans Page Specific Styles */
.subscription-hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.subscription-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #4C1D95;
    margin-bottom: 24px;
    line-height: 1.2;
}

.subscription-hero .hero-description {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Ticket System Explanation */
.ticket-system-explanation {
    padding: 120px 0;
    background: #ffffff;
}

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

.ticket-type-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.ticket-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.ticket-type-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.ticket-type-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.ticket-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.ticket-features li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.ticket-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.ticket-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 32px;
    text-align: center;
}

.ticket-info p {
    color: #0369a1;
    margin: 0;
    font-weight: 500;
}

/* Subscription Plans */
.subscription-plans {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
    border: 2px solid #7C3AED;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #7C3AED;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header {
    padding: 40px 32px 32px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #4C1D95;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #bf267d;
}

.price-period {
    font-size: 16px;
    color: #6B7280;
    margin-left: 8px;
}

.ticket-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.ticket-count {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
}

.ticket-cost {
    display: block;
    font-size: 14px;
    color: #6B7280;
}

.savings-badge {
    background: #10B981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.plan-description {
    color: #6B7280;
    line-height: 1.6;
    font-size: 16px;
}

.plan-features {
    padding: 32px;
}

.ticket-allocation {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.ticket-allocation h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0369a1;
    margin-bottom: 8px;
}

.ticket-allocation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-allocation li {
    color: #0369a1;
    font-size: 14px;
    margin-bottom: 4px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-icon {
    color: #10B981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.feature-text {
    color: #6B7280;
}

.plan-cta {
    padding: 0 32px 32px;
}

/* Add-On Options */
.add-on-options {
    padding: 120px 0;
    background: #ffffff;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.add-on-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.add-on-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.add-on-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.add-on-options-list {
    text-align: left;
}

.add-on-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.add-on-option:last-child {
    border-bottom: none;
}

.option-name {
    color: #6B7280;
    font-weight: 500;
}

.option-price {
    color: #4C1D95;
    font-weight: 600;
}

.add-on-price {
    font-size: 32px;
    font-weight: 700;
    color: #bf267d;
    margin-bottom: 8px;
}

.add-on-description {
    color: #6B7280;
    font-size: 14px;
}

/* Ticket Calculator */
.ticket-calculator {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
    align-items: start;
}

.calculator-inputs {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.input-group {
    margin-bottom: 32px;
}

.input-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #4C1D95;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    color: #6B7280;
    background: #f8fafc;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #7C3AED;
    background: white;
}

.input-description {
    font-size: 14px;
    color: #6B7280;
    margin-top: 4px;
}

.calculator-results {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.recommended-plan {
    margin-bottom: 32px;
}

.recommended-plan h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.plan-recommendation {
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.plan-recommendation .plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-recommendation .plan-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-recommendation .plan-description {
    font-size: 14px;
    opacity: 0.9;
}

.cost-breakdown h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-weight: 600;
    color: #4C1D95;
    border-top: 2px solid #7C3AED;
    margin-top: 8px;
}

/* Subscription FAQ */
.subscription-faq {
    padding: 120px 0;
    background: #ffffff;
}

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

.faq-item {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.6;
}

/* Subscription CTA */
.subscription-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    text-align: center;
}

.subscription-cta .cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.subscription-cta .cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.subscription-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-guarantee {
    margin-top: 32px;
}

.guarantee-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design for Subscription Page */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ticket-explanation-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #4C1D95;
    margin-bottom: 24px;
    line-height: 1.2;
}

.pricing-hero .hero-description {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.billing-label {
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
}

.discount-badge {
    background: #10B981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D5DB;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #7C3AED;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-plans {
    padding: 120px 0;
    background: #ffffff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.plan-card.featured {
    border: 2px solid #7C3AED;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #7C3AED;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header {
    padding: 40px 32px 32px;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #4C1D95;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #bf267d;
}

.price-period {
    font-size: 16px;
    color: #6B7280;
    margin-left: 8px;
}

.plan-description {
    color: #6B7280;
    line-height: 1.6;
    font-size: 16px;
}

.plan-features {
    padding: 32px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-icon {
    color: #10B981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.feature-text {
    color: #6B7280;
}

.plan-cta {
    padding: 0 32px 32px;
}

.feature-comparison {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: #4C1D95;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.comparison-table th.featured {
    background: #7C3AED;
}

.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
}

.comparison-table .feature-column {
    text-align: left;
    background: #F8FAFC;
    font-weight: 600;
    color: #4C1D95;
}

.comparison-table .plan-column {
    font-weight: 500;
}

.comparison-table .plan-column.featured {
    background: rgba(191, 38, 125, 0.1);
}

.comparison-table .category-header {
    background: #F8FAFC;
    font-weight: 600;
    color: #4C1D95;
    text-align: left;
}

.comparison-table .feature-name {
    text-align: left;
    color: #6B7280;
}

.comparison-table .plan-check {
    font-size: 18px;
    font-weight: bold;
}

.comparison-table .plan-check:contains("✓") {
    color: #10B981;
}

.comparison-table .plan-check:contains("-") {
    color: #D1D5DB;
}

.service-addons {
    padding: 120px 0;
    background: #ffffff;
}

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

.addon-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.addon-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.addon-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #bf267d;
    margin-bottom: 16px;
}

.addon-description {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.addon-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.addon-features li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.addon-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.pricing-faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.6;
}

.roi-calculator {
    padding: 120px 0;
    background: #ffffff;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
    align-items: start;
}

.calculator-inputs {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.input-group {
    margin-bottom: 32px;
}

.input-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #4C1D95;
    margin-bottom: 8px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #6B7280;
    background: white;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.result-card {
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
}

.pricing-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    text-align: center;
}

.pricing-cta .cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-cta .cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.pricing-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-guarantee {
    margin-top: 32px;
}

.guarantee-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .comparison-table-wrapper {
        font-size: 14px;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Resources Section */
.resources {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

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

.resource-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.resource-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.resource-card p {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.resource-link:hover {
    color: #4C1D95;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-top: 40px;
    align-items: start;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 16px;
}

.about-text p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-stats .stat-item {
    text-align: center;
    padding: 24px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 38, 125, 0.1);
    border-radius: 12px;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4C1D95;
    margin-bottom: 8px;
}

.contact-details p {
    color: #6B7280;
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #6B7280;
    background: #F8FAFC;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7C3AED;
    background: white;
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .about-stats .stat-item {
        flex: 1;
        margin: 0 8px;
    }
}

/* Footer Styles - Light Theme (Brand Guidelines) */
.footer {
    background: linear-gradient(135deg, #F5F4F2 0%, #89e6eb 100%);
    color: #450E45;
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Section */
.footer-section:first-child {
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer image logo sizing */
.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .footer-logo-img {
        height: 32px;
    }
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #450E45;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-description {
    color: rgba(69, 14, 69, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 0;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(69, 14, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(69, 14, 69, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(191, 38, 125, 0.2);
    color: #bf267d;
    transform: translateY(-2px);
}

.footer-title {
    color: #450E45;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-link {
    color: rgba(69, 14, 69, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-link:hover {
    color: #bf267d;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer .contact-item {
    color: rgba(69, 14, 69, 0.7);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(69, 14, 69, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.copyright,
.footer-copyright {
    color: rgba(69, 14, 69, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links,
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(69, 14, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(69, 14, 69, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(191, 38, 125, 0.2);
    color: #bf267d;
    transform: translateY(-2px);
}

.footer-bottom-link {
    color: rgba(69, 14, 69, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #bf267d;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Scrolling Gradient Background Variants (from Brand Guidelines) */
.scroll-demo { /* not used here, but keeping reference-friendly defaults */
    position: relative;
    overflow: hidden;
}

.scroll-bg-1 {
    background: linear-gradient(135deg, #F5F4F2 0%, #89e6eb 50%, #bf267d 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.scroll-bg-2 {
    background: linear-gradient(45deg, #450E45 0%, #bb7ea5 25%, #89e6eb 50%, #bf267d 75%, #450E45 100%);
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* Success Stories trust statement */
.success-stories .section-description {
    color: #F5F4F2;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 48px;
    text-shadow: 0 1px 2px rgba(69, 14, 69, 0.3);
}

/* Reduce top spacing before Success Stories title */
.success-stories .stories-section {
    margin-top: 24px;
}

/* User Journey Section */
.user-journey {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Shared background spanning both sections */
.bg-span {
    background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url('assets/backgrounds/bg-cool-light-center.svg') center/cover no-repeat,
        #ffffff;
}

.user-journey::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(69, 14, 69, 0.08) 1px, transparent 0),
        radial-gradient(circle at 2px 2px, rgba(191, 38, 125, 0.06) 0.5px, transparent 0);
    background-size: 20px 20px, 30px 30px;
    opacity: 0.6;
    pointer-events: none;
    animation: grain-move 20s linear infinite;
}

.user-journey::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: 
        linear-gradient(45deg, transparent 35%, rgba(191, 38, 125, 0.04) 50%, transparent 65%),
        linear-gradient(-45deg, transparent 35%, rgba(137, 230, 235, 0.04) 50%, transparent 65%),
        linear-gradient(135deg, transparent 30%, rgba(187, 126, 165, 0.03) 50%, transparent 70%),
        linear-gradient(225deg, transparent 30%, rgba(69, 14, 69, 0.02) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0.7;
}

@keyframes grain-move {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, -1px); }
    50% { transform: translate(1px, -2px); }
    75% { transform: translate(-1px, 2px); }
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.journey-header .section-title {
    color: #450E45;
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: 700;
}

.journey-header .section-description {
    color: #63584D;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.journey-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.journey-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-step:nth-child(even) {
    direction: rtl;
}

.journey-step:nth-child(even) > * {
    direction: ltr;
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(191, 38, 125, 0.3);
    position: relative;
    z-index: 3;
}

.step-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #450E45;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-text p {
    color: #63584D;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-cta .btn-large {
    align-self: flex-start;
}

.cta-helper {
    font-size: 0.875rem;
    color: #63584D;
    margin: 0;
    font-style: italic;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.visual-placeholder {
    background: linear-gradient(135deg, rgba(191, 38, 125, 0.05) 0%, rgba(137, 230, 235, 0.05) 100%);
    border: 2px dashed rgba(191, 38, 125, 0.2);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.visual-placeholder:hover {
    border-color: rgba(191, 38, 125, 0.4);
    background: linear-gradient(135deg, rgba(191, 38, 125, 0.08) 0%, rgba(137, 230, 235, 0.08) 100%);
    transform: translateY(-2px);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

.visual-placeholder span {
    color: #63584D;
    font-size: 0.875rem;
    font-weight: 500;
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #bf267d 0%, #bb7ea5 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.journey-step:last-child .step-connector {
    display: none;
}

/* Step 1 Emphasis */
.step-1 .step-number {
    background: linear-gradient(135deg, #bf267d 0%, #89e6eb 100%);
    box-shadow: 0 8px 24px rgba(191, 38, 125, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 8px 24px rgba(191, 38, 125, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 32px rgba(191, 38, 125, 0.6);
        transform: scale(1.02);
    }
}

.step-1 .step-text h3 {
    background: linear-gradient(135deg, #bf267d 0%, #450E45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* User Journey Button Styles */
.user-journey .btn-secondary {
    background: transparent;
    color: #bf267d;
    border: 2px solid #bf267d;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.user-journey .btn-secondary:hover {
    background: #bf267d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(191, 38, 125, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .user-journey {
        padding: 80px 0;
    }
    
    .journey-header {
        margin-bottom: 60px;
    }
    
    .journey-header .section-title {
        font-size: 2rem;
    }
    
    .journey-step {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .journey-step:nth-child(even) {
        direction: ltr;
    }
    
    .step-content {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .step-text h3 {
        font-size: 1.5rem;
    }
    
    .step-cta .btn-large {
        align-self: center;
    }
    
    .visual-placeholder {
        max-width: 250px;
    }
    
    .step-connector {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .user-journey {
        padding: 60px 0;
    }
    
    .journey-header .section-title {
        font-size: 1.75rem;
    }
    
    .journey-header .section-description {
        font-size: 1.125rem;
    }
    
    .step-text h3 {
        font-size: 1.25rem;
    }
    
    .step-text p {
        font-size: 0.9rem;
    }
    
    .visual-placeholder {
        padding: 30px 15px;
        max-width: 200px;
    }
    
    .placeholder-icon {
        font-size: 2rem;
    }
}

/* Dynamic questionnaire validation states */
.question-group.dq-error h3.dq-error-label { color: #bf267d; font-weight: 600; }
.question-group.dq-error .option-card { border-color: #bf267d; }
.question-group.dq-error .input-group input { border-color: #bf267d; outline: none; }
