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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 14px;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

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

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff494a;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #ff494a;
    color: white;
    border-color: #ff494a;
}

.btn-primary:hover {
    background: #e63946;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 73, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #666;
    border-color: #e0e0e0;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #ff494a;
    color: #ff494a;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff494a' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 73, 74, 0.1);
    color: #ff494a;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: #666;
    animation: float 3s ease-in-out infinite;
    max-width: 200px;
    word-wrap: break-word;
    white-space: normal;
}

.floating-card i {
    color: #ff494a;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.floating-card span {
    font-weight: 500;
    line-height: 1.3;
}

/* Floating card positions */
.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 80px;
    right: 40px;
    animation-delay: 0.5s;
}

.card-3 {
    top: 160px;
    left: 60px;
    animation-delay: 1s;
}

.card-4 {
    top: 240px;
    right: 20px;
    animation-delay: 1.5s;
}

.card-5 {
    top: 320px;
    left: 40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-1deg); }
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

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

.intro-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

/* Content Grid for new section - Force 4 cards in one row */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Single Column Content Layout */
.content-single {
    max-width: 1000px;
    margin: 0 auto;
}

.content-single .content-block {
    margin-bottom: 32px;
}

.content-single .content-block:last-child {
    margin-bottom: 0;
}

/* Service List Styling */
.service-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li i {
    color: #ff494a;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Two Column Service Lists */
.service-list.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}

.service-list.two-column li {
    margin-bottom: 0;
}

/* Responsive two-column layout */
@media (max-width: 768px) {
    .service-list.two-column {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-list.two-column li {
        margin-bottom: 12px;
    }
}

/* Industry Slider */
.industry-slider {
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.industry-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.industry-track:hover {
    animation-play-state: paused;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    margin: 0 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    min-width: 140px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ff494a;
}

.industry-item i {
    font-size: 2rem;
    color: #ff494a;
}

.industry-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

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

/* Responsive Industry Slider */
@media (max-width: 768px) {
    .industry-track {
        animation: scroll 20s linear infinite;
    }
    
    .industry-item {
        padding: 20px 24px;
        margin: 0 12px;
        min-width: 120px;
    }
    
    .industry-item i {
        font-size: 1.5rem;
    }
    
    .industry-item span {
        font-size: 0.8rem;
    }
}

/* Brand Highlight */
.brand-highlight {
    color: #ff494a;
    font-weight: 700;
}

/* Service Name Highlighting */
.service-card h3,
.content-block h3 {
    color: #ff494a;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.125rem;
}

.content-block h3 {
    font-size: 1.25rem;
}

/* Section Subtitle Styling */
.section-subtitle {
    color: #ff494a !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-bottom: 24px !important;
}

.content-block {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ff494a;
}

.content-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #ff494a;
    font-size: 1.125rem;
    font-weight: 600;
}

.content-block h3 i {
    font-size: 1.125rem;
}

.content-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

/* Services Grid - 4 cards in one row for better spacing */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #ff494a;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ff494a;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff494a, #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 1.25rem;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.125rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.875rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Service Features */
.service-features {
    margin-bottom: 24px;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.875rem;
}

.service-features li i {
    color: #ff494a;
    font-size: 14px;
    width: 16px;
}

/* Service Card Buttons */
.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 73, 74, 0.2);
}

/* Content Icons */
.content-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff494a, #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.content-icon i {
    font-size: 20px;
    color: #ffffff;
}

/* Framework Timeline - Improved layout */
.framework-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.timeline-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ff494a;
}

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

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 8px;
    font-size: 1.125rem;
    color: #ff494a;
}

.step-content p {
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.client-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    text-align: center;
}

.client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ff494a;
}

.client-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 73, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.client-icon i {
    color: #ff494a;
    font-size: 1.25rem;
}

.client-card h3 {
    margin-bottom: 8px;
}

.client-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #ff494a 0%, #e63946 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

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

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

.cta-actions .btn-primary {
    background: white;
    color: #ff494a;
    border-color: white;
}

.cta-actions .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.2s ease;
}

.close:hover,
.close:focus {
    color: #ff494a;
}

#modalContent {
    padding: 40px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    display: block;
}

/* HubSpot form styling */
#modalContent .hs-form-frame {
    width: 100% !important;
    max-width: none !important;
}

#modalContent .hs-form {
    width: 100% !important;
    max-width: none !important;
}

#modalContent .hs-form-field {
    margin-bottom: 20px !important;
}

#modalContent .hs-form-field input,
#modalContent .hs-form-field textarea,
#modalContent .hs-form-field select {
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
}

#modalContent .hs-form-field input:focus,
#modalContent .hs-form-field textarea:focus,
#modalContent .hs-form-field select:focus {
    outline: none !important;
    border-color: #ff494a !important;
    box-shadow: 0 0 0 2px rgba(255, 73, 74, 0.2) !important;
}

#modalContent .hs-button {
    background: #ff494a !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

#modalContent .hs-button:hover {
    background: #e63946 !important;
}

#modalContent .hs-error-msgs {
    color: #ff494a !important;
    font-size: 12px !important;
    margin-top: 4px !important;
}

#modalContent .hs-error-msgs ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Custom scrollbar for modal */
#modalContent::-webkit-scrollbar {
    width: 8px;
}

#modalContent::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#modalContent::-webkit-scrollbar-thumb {
    background: #ff494a;
    border-radius: 4px;
}

#modalContent::-webkit-scrollbar-thumb:hover {
    background: #e63946;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

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

.footer-brand .brand-text {
    color: #ff494a;
    margin-bottom: 4px;
}

.footer-brand p {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ff494a;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .intro-content {
        padding: 0 20px;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }

    .framework-timeline {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .floating-cards {
        height: 300px;
    }

    .floating-card {
        max-width: 150px;
        font-size: 0.75rem;
        padding: 12px 16px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    #modalContent {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .intro-section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .floating-cards {
        height: 250px;
    }

    .floating-card {
        max-width: 120px;
        font-size: 0.7rem;
        padding: 8px 12px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #ff494a;
    outline-offset: 2px;
}

/* Loading animation for cards */
.service-card,
.client-card,
.content-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Framework Infographic */
.framework-infographic {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.framework-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    opacity: 0.6;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.framework-step.active {
    opacity: 1;
    transform: translateX(0);
}

.framework-step:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(20px);
}

.framework-step:nth-child(even).active {
    transform: translateX(0);
}

.step-visual {
    position: relative;
    flex-shrink: 0;
    margin: 0 2rem;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff494a 0%, #ff6b6c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 73, 74, 0.3);
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 73, 74, 0.4);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #ff494a;
    font-size: 0.875rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff494a;
}

.step-circle i {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #ff494a, #ff6b6c);
    transform: translateX(-50%);
}

.framework-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff494a;
    transition: all 0.3s ease;
}

.framework-step:nth-child(even) .step-content {
    border-left: none;
    border-right: 4px solid #ff494a;
}

.step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-content h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
}

.step-content h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff494a;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.step-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.step-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff494a;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.step-details li:last-child {
    margin-bottom: 0;
}

.step-details li i {
    color: #ff494a;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .framework-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .step-visual {
        margin: 0 auto 1rem auto;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-content {
        border-left: 4px solid #ff494a !important;
        border-right: none !important;
    }
    
    .step-content h3::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .framework-infographic {
        padding: 1rem 0;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-circle i {
        font-size: 1.25rem;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
    }
} 

/* Case Study Styles */
.case-study {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff494a;
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-study-header i {
    color: #ff494a;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.case-study-header h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.case-study p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ff494a;
}

.highlight-item i {
    color: #ff494a;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.highlight-item span {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .case-study {
        padding: 1.5rem;
    }
    
    .case-study-highlights {
        grid-template-columns: 1fr;
    }
} 

/* Case Studies Grid */
.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.case-studies-grid .case-study {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff494a;
    transition: all 0.3s ease;
}

.case-studies-grid .case-study:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.case-studies-grid .case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.case-studies-grid .case-study-header i {
    color: #ff494a;
    font-size: 1.5rem;
    margin-right: 1rem;
    background: #fff5f5;
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-studies-grid .case-study-header h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.case-studies-grid .case-study p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.case-studies-grid .case-study-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.case-studies-grid .highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.case-studies-grid .highlight-item i {
    color: #ff494a;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.case-studies-grid .highlight-item span {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.case-studies-summary {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff494a;
}

@media (max-width: 768px) {
    .case-studies-grid .case-study {
        padding: 1.5rem;
    }
    
    .case-studies-grid .case-study-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .case-studies-grid .case-study-header i {
        margin-right: 0;
    }
    
    .case-studies-grid .case-study-highlights {
        grid-template-columns: 1fr;
    }
    
    .case-studies-summary {
        margin-top: 1.5rem;
        padding: 1rem;
    }
} 