/* Startup Solutions Page Styles */
/* Core Variables */
:root {
    --primary-color: #6a3de8;
    --primary-dark: #5227cf;
    --primary-light: #8a65f0;
    --primary-lightest: #f4f1ff;

    --secondary-color: #3949ab;
    --secondary-dark: #303f9f;
    --secondary-light: #5c6bc0;

    --accent-color: #00acc1;
    --accent-dark: #0097a7;
    --accent-light: #26c6da;

    --success-color: #2e7d32;
    --warning-color: #ff8f00;
    --danger-color: #d32f2f;

    --text-dark: #1a2a42;
    --text-medium: #455a64;
    --text-light: #78909c;
    --text-white: #ffffff;

    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 24px rgba(0, 0, 0, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
.startup {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.startup h1,
.startup h2,
.startup h3,
.startup h4,
.startup h5,
.startup h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5em;
    color: var(--text-dark);
}

.startup h1 {
    font-size: 2.75rem;
}

.startup h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.startup h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.startup p {
    margin: 0 0 1.5rem;
}

/* Links */
.startup a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.startup a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Layout */
.startup__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Mobile Navigation Toggle */
.startup__mobile-nav-wrapper {
    display: none;
    margin-bottom: 1.5rem;
}

.startup__mobile-nav-toggle {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.startup__mobile-nav-toggle:hover {
    background: var(--primary-dark);
}

.startup__mobile-nav-toggle i {
    margin-right: 0.5rem;
}

/* Hero Section */
.startup__hero {
    background: linear-gradient(135deg, var(--primary-lightest) 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.startup__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236a3de8' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.startup__hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.startup__title {
    position: relative;
    margin-bottom: 1rem;
}

.startup__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.startup__subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.startup__badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.startup__badge-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.startup__badge p {
    margin: 0;
    font-weight: 600;
}

.startup__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Info Banner */
.startup__banner {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 0;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.startup__banner p {
    margin: 0;
    font-size: 1.125rem;
}

/* Main Content Area */
.startup__content {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

/* Sidebar Navigation */
.startup__sidebar {
    position: relative;
}

.startup__nav {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
    border: 1px solid var(--gray-200);
}

.startup__nav-title {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.startup__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.startup__nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: var(--text-medium);
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.startup__nav-link i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.startup__nav-link:hover {
    background-color: var(--primary-lightest);
    color: var(--primary-color);
    text-decoration: none;
}

.startup__nav-link:hover i {
    color: var(--primary-color);
}

.startup__nav-link.active {
    border-left-color: var(--primary-color);
    background-color: var(--primary-lightest);
    color: var(--primary-color);
    font-weight: 600;
}

.startup__nav-link.active i {
    color: var(--primary-color);
}

.startup__sidebar-cta {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.startup__sidebar-cta p {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Buttons */
.startup__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
}

.startup__btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.startup__btn--primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.startup__btn--primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.startup__btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.startup__btn--outline:hover {
    background-color: var(--primary-lightest);
    color: var(--primary-dark);
}

.startup__btn--light {
    background-color: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.startup__btn--light:hover {
    background-color: var(--gray-100);
    color: var(--primary-dark);
}

.startup__btn--block {
    display: block;
    width: 100%;
}

.startup__btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Main Content Sections */
.startup__section {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--gray-200);
}

.startup__section-header {
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.startup__section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.startup__section-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Overview Features */
.startup__overview p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.startup__features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.startup__feature-card {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    text-align: center;
    height: 100%;
}

.startup__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.startup__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
    margin-left: auto;
    margin-right: auto;
}

.startup__feature-card:hover .startup__feature-icon {
    background: var(--primary-color);
    color: var(--text-white);
}

.startup__feature-icon i {
    font-size: 1.75rem;
}

.startup__feature-card h3 {
    margin-bottom: 0.75rem;
}

.startup__feature-card p {
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: 1rem;
}

/* First Aid Services */
.startup__services {
    display: grid;
    gap: 1.5rem;
}

.startup__service-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--text-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.startup__service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.startup__service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.startup__service-card:hover .startup__service-icon {
    background: var(--primary-color);
    color: var(--text-white);
}

.startup__service-icon i {
    font-size: 1.75rem;
}

.startup__service-content h3 {
    font-size: 1.375rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.startup__service-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.startup__highlight {
    color: var(--primary-color);
}

/* Benefits Section */
.startup__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.startup__benefit-card {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.startup__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary-color);
}

.startup__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.startup__benefit-card:hover .startup__benefit-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: rotate(10deg);
}

.startup__benefit-icon i {
    font-size: 1.75rem;
}

.startup__benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.startup__benefit-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.startup__price-highlight {
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Growth Timeline */
.startup__timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding: 1.25rem 0 0 3.5rem;
}

.startup__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.75rem;
    width: 3px;
    background: var(--primary-light);
    opacity: 0.3;
    transform: translateX(-50%);
}

.startup__timeline-step {
    position: relative;
}

.startup__step-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: all var(--transition-base);
}

.startup__timeline-step:hover .startup__step-marker {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.startup__step-marker i {
    font-size: 1.5rem;
}

.startup__step-content {
    background: var(--primary-lightest);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-left: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(106, 61, 232, 0.2);
    transition: all var(--transition-base);
}

.startup__timeline-step:hover .startup__step-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.startup__step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.startup__step-content p {
    margin-bottom: 0;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Contact Section */
.startup__contact {
    text-align: center;
    padding: 1rem 0;
}

.startup__contact p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.startup__contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.startup__contact-methods {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.startup__contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    transition: all var(--transition-fast);
}

.startup__contact-method:hover {
    background: var(--primary-lightest);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.startup__contact-method i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* CTA Section */
.startup__cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.startup__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.startup__cta-content {
    position: relative;
    z-index: 2;
}

.startup__cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.startup__cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Animation Utilities */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.startup__pulse {
    animation: pulse 2s infinite;
}

/* Focus Styles for Accessibility */
.startup__btn:focus,
.startup__nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 61, 232, 0.4);
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .startup__grid {
        grid-template-columns: 1fr;
    }

    .startup__mobile-nav-wrapper {
        display: block;
    }

    .startup__sidebar {
        margin-bottom: 2rem;
    }

    .startup__nav {
        position: static;
        display: none;
    }

    .startup__nav.show {
        display: block;
    }

    .startup__benefits {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .startup__cta-section {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .startup__hero {
        padding: 3rem 0;
    }

    .startup__title {
        font-size: 2.25rem;
    }

    .startup__subtitle {
        font-size: 1.25rem;
    }

    .startup__cta-group {
        flex-direction: column;
        width: 100%;
    }

    .startup__btn {
        width: 100%;
    }

    .startup__section {
        padding: 1.75rem;
    }

    .startup__features {
        grid-template-columns: 1fr;
    }

    .startup__service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .startup__service-icon {
        margin-bottom: 1rem;
    }

    .startup__timeline {
        padding-left: 3rem;
    }

    .startup__step-marker {
        left: -3rem;
        width: 48px;
        height: 48px;
    }

    .startup__contact-methods {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .startup__contact-method {
        justify-content: center;
    }

    .startup__cta-section {
        padding: 2rem;
    }

    .startup__cta-content h2 {
        font-size: 1.75rem;
    }

    .startup__cta-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .startup__badge {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .startup__badge-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .startup__section-header h2 {
        font-size: 1.75rem;
    }

    .startup__section-lead {
        font-size: 1.125rem;
    }

    .startup__timeline-step:hover .startup__step-content {
        transform: none;
    }
}