/* ============================================
   MODERN 2026 DESIGN - CONTEMPORARY STYLE
   Clean, Minimalist, Professional
   ============================================ */

:root {
    --primary-color: #1a1f3a;
    --primary-light: #2d3561;
    --accent-color: #6366f1;
    --accent-light: #818cf8;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12);
    --border: #e2e8f0;
    --success-color: #10b981;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-light);
}

/* ============================================
   BUTTONS - MODERN STYLE
   ============================================ */

.btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    position: relative;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--white);
    padding: 1.25rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.3px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.logo-route {
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.75;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.nav-links a.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.nav-links a.btn-primary:hover {
    background-color: var(--accent-light);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.services-grid,
.features-grid,
.expertise-grid,
.industries-grid,
.benefits-grid,
.differences-grid,
.reasons-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card,
.feature-card,
.feature,
.expertise-card,
.benefit-card,
.difference-item,
.reason-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.feature:hover,
.expertise-card:hover,
.benefit-card:hover,
.difference-item:hover,
.reason-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon,
.feature-icon,
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3,
.feature-card h3,
.feature h3,
.expertise-card h4,
.benefit-card h3,
.difference-item h4,
.reason-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p,
.feature-card p,
.feature p,
.expertise-card p,
.benefit-card p,
.difference-item p,
.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ============================================
   DETAILED GRID LAYOUTS
   ============================================ */

.industries-grid,
.industries-detailed-grid,
.expertise-detailed-grid,
.levels-grid,
.service-cards-grid,
.process-timeline,
.process-steps-detailed,
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    margin: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.industry-tag:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.industry-detailed-card,
.expertise-detailed-card,
.process-step,
.step {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.industry-detailed-card:hover,
.expertise-detailed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-header,
.expertise-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
}

.industry-header h3,
.expertise-header h3 {
    color: var(--white);
    font-size: 1.3em;
    font-weight: 700;
}

.industry-body,
.expertise-body {
    padding: 1.5rem;
}

.industry-body ul,
.expertise-body ul {
    list-style: none;
    margin: 1rem 0;
}

.industry-body li,
.expertise-body li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.industry-body li:before,
.expertise-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.process-step h3,
.step h4,
.step h3 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-circle,
.flow-number,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2em;
}

/* ============================================
   SECTIONS STYLING
   ============================================ */

.services-highlight {
    background-color: var(--bg-lighter);
}

.expertise-preview,
.industries-preview,
.why-choose,
.why-different,
.why-partner,
.industry-benefits,
.why-expertise {
    background-color: var(--white);
}

.getting-started,
.getting-started-candidates,
.mission-section {
    background-color: var(--bg-lighter);
}

.cta-section {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-area h2,
.contact-info-area h2 {
    text-align: left;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-area p,
.contact-info-area p {
    text-align: left;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.contact-info-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1em;
    font-weight: 700;
}

.contact-info-box p {
    margin-bottom: 0.3rem;
}

.info-subtitle {
    font-size: 0.9em;
    opacity: 0.8;
}

.faq-box {
    background: var(--white);
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item p {
    margin-bottom: 0;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9em;
    margin-top: 1rem;
}

/* ============================================
   GETTING STARTED SECTIONS
   ============================================ */

.getting-started-steps,
.gs-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.getting-started-steps .gs-step,
.gs-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.getting-started-steps .gs-step:hover,
.gs-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

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

.getting-started-steps h4,
.gs-card h4 {
    color: var(--text-dark);
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ============================================
   EXPERTISE & INDUSTRIES
   ============================================ */

.expertise-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-mini,
.industry-item {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.expertise-mini:hover,
.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-item {
    text-align: left;
    padding-left: 2rem;
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */

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

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.mission-card h3 {
    color: var(--text-dark);
    font-size: 1.3em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.spec-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.spec-section h3 {
    color: var(--text-dark);
    font-size: 1.5em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.spec-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.spec-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.spec-list {
    display: flex;
    justify-content: center;
}

.spec-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.spec-list li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

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

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

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

.benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #000000;
    color: var(--white);
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-section p {
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: var(--white);
    opacity: 1;
    transition: opacity 0.2s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1.25rem);
        left: -24px;
        right: -24px;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
        border-top: 2px solid var(--accent-color);
        padding: 0.5rem 0;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        color: var(--text-dark);
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links a.btn-primary {
        background-color: var(--accent-color);
        color: var(--white);
        margin: 0.75rem 1.5rem;
        border-radius: 8px;
        text-align: center;
        border-bottom: none;
        padding: 0.875rem 1.5rem;
    }

    /* General responsive */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    section h2 {
        font-size: 1.9rem;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .expertise-grid,
    .industries-grid,
    .benefits-grid,
    .differences-grid,
    .reasons-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn,
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    section {
        padding: 60px 0;
    }
}

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

    .hero-content h1 {
        font-size: 1.75rem;
    }

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

    section {
        padding: 48px 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .feature,
    .expertise-card,
    .gs-card {
        padding: 1.5rem;
    }

    .cta-banner {
        padding: 48px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}
    box-shadow: var(--shadow-lg);
}

.benefit h4 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ============================================
   OPPORTUNITY TYPES
   ============================================ */

.opportunity-levels,
.levels-section-details,
.environment-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.opportunity,
.level-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.opportunity:hover,
.level-detail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.opportunity h3,
.level-detail h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2em;
    font-weight: 700;
}

/* ============================================
   NEXT STEPS / TIMELINE
   ============================================ */

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

.timeline-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 1rem;
}

.timeline-step h4 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ============================================
   NEEDS / DIFFERENT NEEDS
   ============================================ */

.needs-grid,
.question-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.need-card,
.question-type {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.need-card:hover,
.question-type:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.need-card h4,
.question-type h4 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}


/* ============================================
   TIPS SECTIONS
   ============================================ */

.tips-before-contact {
    background-color: var(--bg-lighter);
}

.tip-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.tip-item h4 {
    color: var(--text-dark);
    font-size: 1.2em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-item ul {
    list-style: none;
}

.tip-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tip-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ============================================
   EXPERT SEARCH / COMPANY TYPES
   ============================================ */

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

.company-type,
.expertise-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.company-type:hover,
.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.company-type h4,
.expertise-item h4 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ============================================
   TECH STACK / TAGS
   ============================================ */

.tech-stack-section {
    background-color: var(--bg-lighter);
}

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

.tech-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.tech-category h4 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tags span {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   EXPERTISE FOR CANDIDATES
   ============================================ */

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

/* ============================================
   RESPONSIVENESS - ADDITIONAL GRIDS
   ============================================ */

@media (max-width: 768px) {
    .services-grid,
    .features-grid,
    .benefits-grid,
    .expertise-grid,
    .process-timeline,
    .differences-grid,
    .reasons-grid,
    .mission-grid,
    .contact-wrapper,
    .needs-grid,
    .tips-grid,
    .company-types-grid,
    .industries-detailed-grid,
    .expertise-detailed-grid,
    .levels-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        gap: 2rem;
    }

    .spec-list {
        justify-content: flex-start;
    }

    .spec-list ul {
        grid-template-columns: 1fr;
    }

    .list-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.4rem;
    }

    .service-card,
    .feature-card,
    .mission-card {
        padding: 1.5rem;
    }
}
/* ============================================
   INDUSTRIES PAGE - HOW EACH INDUSTRY DIFFERS
   ============================================ */

.interview-tips {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tips-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.tip-category {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.tip-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.tip-category h4 {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tip-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-category ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.tip-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============================================
   INDUSTRIES PAGE - INDUSTRY-SPECIFIC SERVICES
   ============================================ */

.industry-services {
    padding: 5rem 0;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-box {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-box h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.service-box ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.service-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-weight: 700;
}
