/* Kurumsal */
.corporate-shell {
        --corp-primary: #4a2d7f;
        --corp-secondary: #65459d;
        --corp-accent: #947ffc;
        --corp-soft: #f8f6ff;
        --corp-soft-hover: #f0ebff;
        --corp-text: #5b4f75;
        --corp-white: #ffffff;

        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .corporate-shell .hero-banner {
        background: linear-gradient(135deg, var(--corp-secondary) 0%, var(--corp-accent) 50%, #b8a4fc 100%);
        border-radius: 24px;
        padding: 60px 50px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    .corporate-shell .hero-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    .corporate-shell .hero-banner .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .corporate-shell .hero-banner h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--corp-white);
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
    .corporate-shell .hero-banner > p,
    .corporate-shell .hero-banner .hero-content > p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        margin-bottom: 30px;
        max-width: 700px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .corporate-shell .badge-group {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
        justify-content: center;
    }
    .corporate-shell .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 22px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.15);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        color: var(--corp-white);
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s ease;
    }
    .corporate-shell .hero-badge:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    .corporate-shell .hero-badge i {
        font-size: 1rem;
    }

    .corporate-shell .visual-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: -30px;
        margin-bottom: 50px;
        position: relative;
        z-index: 10;
        padding: 0 20px;
    }
    .corporate-shell .visual-card {
        background: var(--corp-white);
        border-radius: 20px;
        padding: 32px 28px;
        border: 1px solid rgba(101, 69, 157, 0.12);
        box-shadow: 0 10px 40px rgba(46, 23, 95, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .corporate-shell .visual-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(46, 23, 95, 0.15);
    }
    .corporate-shell .visual-card .icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        box-shadow: 0 8px 20px rgba(101, 69, 157, 0.25);
    }
    .corporate-shell .visual-card .icon-circle i {
        color: var(--corp-white);
        font-size: 1.4rem;
    }
    .corporate-shell .visual-card h5 {
        font-weight: 700;
        color: var(--corp-primary);
        margin-bottom: 14px;
        font-size: 1.15rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .corporate-shell .visual-card h5 i {
        color: var(--corp-secondary);
        font-size: 1.2rem;
    }
    .corporate-shell .visual-card p {
        color: var(--corp-text);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
        text-align: center;
    }

    .corporate-shell .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .corporate-shell .section-title {
        font-weight: 800;
        color: var(--corp-primary);
        margin-bottom: 12px;
        font-size: 2rem;
    }
    .corporate-shell .section-sub {
        color: var(--corp-text);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .corporate-shell .process-section {
        padding: 60px 0;
        background: linear-gradient(180deg, var(--corp-soft) 0%, var(--corp-white) 100%);
        border-radius: 30px;
        margin-bottom: 50px;
    }
    .corporate-shell .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding: 0 30px;
    }
    .corporate-shell .process-card {
        background: var(--corp-white);
        border-radius: 20px;
        padding: 30px 24px;
        border: 1px solid rgba(101, 69, 157, 0.1);
        box-shadow: 0 8px 30px rgba(46, 23, 95, 0.06);
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }
    .corporate-shell .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(46, 23, 95, 0.12);
    }
    .corporate-shell .process-number {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        color: var(--corp-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.3rem;
        margin: 0 auto 20px;
        box-shadow: 0 8px 20px rgba(101, 69, 157, 0.3);
    }
    .corporate-shell .process-card h5 {
        color: var(--corp-primary);
        font-weight: 700;
        font-size: 1.05rem;
        margin-bottom: 12px;
    }
    .corporate-shell .process-card p {
        color: var(--corp-text);
        font-size: 0.92rem;
        line-height: 1.6;
        margin: 0;
    }

    .corporate-shell .two-column-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;
        align-items: start;
    }
    .corporate-shell .column-box {
        background: var(--corp-white);
        border-radius: 24px;
        padding: 40px;
        border: 1px solid rgba(101, 69, 157, 0.1);
        box-shadow: 0 10px 40px rgba(46, 23, 95, 0.06);
    }
    .corporate-shell .column-box .section-title {
        text-align: left;
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .corporate-shell .column-box .section-sub {
        text-align: left;
        margin: 0 0 25px 0;
        font-size: 1rem;
    }

    .corporate-shell .timeline {
        border-left: 3px solid var(--corp-secondary);
        padding-left: 25px;
        margin-left: 10px;
    }
    .corporate-shell .timeline-item {
        position: relative;
        margin-bottom: 22px;
        color: var(--corp-text);
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 5px;
    }
    .corporate-shell .timeline-item:last-child {
        margin-bottom: 0;
    }
    .corporate-shell .timeline-item::before {
        content: "";
        position: absolute;
        left: -34px;
        top: 6px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--corp-secondary);
        border: 3px solid var(--corp-soft);
        box-shadow: 0 0 0 3px var(--corp-secondary);
    }

    .corporate-shell .ai-explain-box {
        background: linear-gradient(145deg, #ffffff, #f8f6ff);
    }
    .corporate-shell .ai-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 8px;
    }
    .corporate-shell .ai-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .corporate-shell .ai-icon i {
        color: white;
        font-size: 1.4rem;
    }
    .corporate-shell .ai-header .section-title {
        margin-bottom: 0;
    }
    .corporate-shell .prompt-example {
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        border-radius: 16px;
        padding: 20px 24px;
        margin: 20px 0 25px;
    }
    .corporate-shell .prompt-label {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .corporate-shell .prompt-label i {
        font-size: 0.9rem;
    }
    .corporate-shell .prompt-text {
        color: white;
        font-size: 1.05rem;
        font-style: italic;
        line-height: 1.6;
        font-weight: 500;
    }
    .corporate-shell .ai-process {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .corporate-shell .ai-step {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid rgba(101, 69, 157, 0.1);
        transition: all 0.2s ease;
    }
    .corporate-shell .ai-step:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(46, 23, 95, 0.1);
    }
    .corporate-shell .step-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--corp-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .corporate-shell .step-icon i {
        color: var(--corp-secondary);
        font-size: 0.95rem;
    }
    .corporate-shell .step-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .corporate-shell .step-content strong {
        color: var(--corp-primary);
        font-size: 0.95rem;
    }
    .corporate-shell .step-content span {
        color: var(--corp-text);
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .corporate-shell .info-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    .corporate-shell .info-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        color: var(--corp-text);
        font-size: 1rem;
        padding: 14px 18px;
        background: var(--corp-soft);
        border-radius: 12px;
        transition: all 0.2s ease;
    }
    .corporate-shell .info-list li:hover {
        background: var(--corp-soft-hover);
        transform: translateX(5px);
    }
    .corporate-shell .info-list li:last-child {
        margin-bottom: 0;
    }
    .corporate-shell .info-list li i {
        color: var(--corp-secondary);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .corporate-shell .full-width-section {
        background: var(--corp-white);
        border-radius: 24px;
        padding: 50px 45px;
        margin-bottom: 30px;
        border: 1px solid rgba(101, 69, 157, 0.08);
        box-shadow: 0 10px 40px rgba(46, 23, 95, 0.06);
    }
    .corporate-shell .full-width-section .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 35px;
    }
    .corporate-shell .section-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(101, 69, 157, 0.3);
    }
    .corporate-shell .section-icon i {
        color: white;
        font-size: 1.8rem;
    }

    .corporate-shell .what-is-section {
        background: linear-gradient(145deg, #ffffff, #f8f6ff);
    }
    .corporate-shell .what-is-content .lead-text {
        font-size: 1.15rem;
        line-height: 1.9;
        color: var(--corp-text);
        text-align: center;
        max-width: 900px;
        margin: 0 auto 35px;
    }
    .corporate-shell .what-is-content .lead-text strong {
        color: var(--corp-primary);
    }
    .corporate-shell .key-points {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .corporate-shell .key-point {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 28px;
        background: white;
        border-radius: 16px;
        border: 1px solid rgba(101, 69, 157, 0.1);
        transition: all 0.3s ease;
    }
    .corporate-shell .key-point:hover {
        transform: translateX(8px);
        box-shadow: 0 10px 30px rgba(46, 23, 95, 0.1);
    }
    .corporate-shell .key-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: var(--corp-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .corporate-shell .key-icon i {
        color: var(--corp-secondary);
        font-size: 1.3rem;
    }
    .corporate-shell .key-content strong {
        display: block;
        color: var(--corp-primary);
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .corporate-shell .key-content p {
        color: var(--corp-text);
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
    }

    .corporate-shell .how-it-works-user {
        background: linear-gradient(180deg, var(--corp-soft) 0%, #ffffff 100%);
    }
    .corporate-shell .user-flow {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .corporate-shell .flow-step {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        padding: 30px;
        background: white;
        border-radius: 20px;
        border: 1px solid rgba(101, 69, 157, 0.1);
        box-shadow: 0 5px 25px rgba(46, 23, 95, 0.05);
        transition: all 0.3s ease;
    }
    .corporate-shell .flow-step:hover {
        box-shadow: 0 15px 40px rgba(46, 23, 95, 0.12);
        transform: translateY(-3px);
    }
    .corporate-shell .flow-number {
        width: 55px;
        height: 55px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.5rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(101, 69, 157, 0.3);
    }
    .corporate-shell .flow-content {
        flex: 1;
    }
    .corporate-shell .flow-content h5 {
        color: var(--corp-primary);
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .corporate-shell .flow-content p {
        color: var(--corp-text);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    .corporate-shell .flow-content p:last-child {
        margin-bottom: 0;
    }
    .corporate-shell .example-prompt {
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        border-radius: 12px;
        padding: 16px 20px;
        margin: 15px 0;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    .corporate-shell .example-prompt i {
        color: rgba(255,255,255,0.7);
        font-size: 1rem;
        margin-top: 3px;
    }
    .corporate-shell .example-prompt span {
        color: white;
        font-size: 1rem;
        font-style: italic;
        line-height: 1.6;
    }
    .corporate-shell .flow-note {
        background: var(--corp-soft);
        border-radius: 10px;
        padding: 14px 18px;
        font-size: 0.92rem !important;
        border-left: 4px solid var(--corp-secondary);
    }

    .corporate-shell .benefits-detailed {
        background: linear-gradient(145deg, #ffffff, #f8f6ff);
    }
    .corporate-shell .benefits-detailed-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .corporate-shell .benefit-detailed-card {
        background: white;
        border-radius: 20px;
        padding: 35px 30px;
        border: 1px solid rgba(101, 69, 157, 0.1);
        box-shadow: 0 8px 30px rgba(46, 23, 95, 0.06);
        transition: all 0.3s ease;
    }
    .corporate-shell .benefit-detailed-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(46, 23, 95, 0.12);
    }
    .corporate-shell .benefit-icon-large {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px rgba(101, 69, 157, 0.25);
    }
    .corporate-shell .benefit-icon-large i {
        color: white;
        font-size: 1.8rem;
    }
    .corporate-shell .benefit-detailed-card h4 {
        color: var(--corp-primary);
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    .corporate-shell .benefit-detailed-card > p {
        color: var(--corp-text);
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 20px;
    }
    .corporate-shell .benefit-detailed-card > p strong {
        color: var(--corp-primary);
    }
    .corporate-shell .benefit-highlight {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
        background: var(--corp-soft);
        border-radius: 12px;
        border-left: 4px solid var(--corp-secondary);
    }
    .corporate-shell .benefit-highlight i {
        color: var(--corp-secondary);
        margin-top: 3px;
    }
    .corporate-shell .benefit-highlight span {
        color: var(--corp-primary);
        font-weight: 600;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .corporate-shell .data-requirements {
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
    }
    .corporate-shell .data-requirements .section-icon {
        background: rgba(255,255,255,0.2);
    }
    .corporate-shell .data-requirements .section-title {
        color: white;
    }
    .corporate-shell .data-requirements .section-sub {
        color: rgba(255,255,255,0.85);
    }
    .corporate-shell .data-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }
    .corporate-shell .data-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 22px;
        background: rgba(255,255,255,0.15);
        border-radius: 14px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        transition: all 0.3s ease;
    }
    .corporate-shell .data-item:hover {
        background: rgba(255,255,255,0.25);
        transform: translateX(5px);
    }
    .corporate-shell .data-item i {
        color: #a8ff9e;
        font-size: 1.2rem;
    }
    .corporate-shell .data-item span {
        color: white;
        font-size: 1rem;
        font-weight: 500;
    }

    .corporate-shell .benefits-section {
        margin-bottom: 50px;
    }
    .corporate-shell .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .corporate-shell .benefit-card {
        background: linear-gradient(145deg, var(--corp-white), var(--corp-soft));
        border-radius: 20px;
        padding: 35px 28px;
        border: 1px solid rgba(101, 69, 157, 0.12);
        box-shadow: 0 10px 35px rgba(46, 23, 95, 0.08);
        transition: all 0.3s ease;
        text-align: center;
    }
    .corporate-shell .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(46, 23, 95, 0.15);
    }
    .corporate-shell .benefit-card .icon-wrap {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--corp-secondary), var(--corp-accent));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 10px 25px rgba(101, 69, 157, 0.3);
    }
    .corporate-shell .benefit-card .icon-wrap i {
        color: var(--corp-white);
        font-size: 1.8rem;
    }
    .corporate-shell .benefit-card h5 {
        color: var(--corp-primary);
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    .corporate-shell .benefit-card p {
        color: var(--corp-text);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .corporate-shell .cta-panel {
        background: linear-gradient(135deg, var(--corp-secondary) 0%, var(--corp-accent) 100%);
        border-radius: 24px;
        padding: 50px;
        position: relative;
        overflow: hidden;
    }
    .corporate-shell .cta-panel::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }
    .corporate-shell .cta-panel .cta-content {
        position: relative;
        z-index: 2;
    }
    .corporate-shell .cta-panel h4 {
        font-weight: 800;
        color: var(--corp-white);
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .corporate-shell .cta-panel p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 0;
    }
    .corporate-shell .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: flex-end;
        align-items: center;
    }
    .corporate-shell .cta-panel .btn-light {
        background: var(--corp-white);
        color: var(--corp-primary);
        border: none;
        padding: 14px 30px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    .corporate-shell .cta-panel .btn-light:hover {
        background: var(--corp-soft);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    .corporate-shell .cta-panel .btn-outline-light {
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: var(--corp-white);
        padding: 12px 28px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: transparent;
    }
    .corporate-shell .cta-panel .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--corp-white);
    }

    .corporate-shell .cta-contact-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .corporate-shell .contact-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 22px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
    .corporate-shell .contact-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }
    .corporate-shell .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .corporate-shell .contact-icon i {
        color: white;
        font-size: 1.4rem;
    }
    .corporate-shell .contact-icon.whatsapp {
        background: #25D366;
    }
    .corporate-shell .contact-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .corporate-shell .contact-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        font-weight: 500;
    }
    .corporate-shell .contact-value {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .corporate-shell .contact-value:hover {
        color: #a8ff9e;
    }

    @media (max-width: 1024px) {
        .corporate-shell .process-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .corporate-shell .visual-section {
            grid-template-columns: repeat(2, 1fr);
        }
        .corporate-shell .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .corporate-shell .benefits-detailed-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .corporate-shell {
            padding: 0 15px;
        }
        .corporate-shell .hero-banner {
            padding: 40px 25px;
            border-radius: 20px;
        }
        .corporate-shell .hero-banner h1 {
            font-size: 1.8rem;
        }
        .corporate-shell .hero-banner > p,
        .corporate-shell .hero-banner .hero-content > p {
            font-size: 1rem;
        }
        .corporate-shell .badge-group {
            justify-content: center;
        }
        .corporate-shell .hero-badge {
            padding: 10px 16px;
            font-size: 0.85rem;
        }
        .corporate-shell .visual-section {
            grid-template-columns: 1fr;
            margin-top: -20px;
            padding: 0 10px;
        }
        .corporate-shell .section-title {
            font-size: 1.6rem;
        }
        .corporate-shell .process-section {
            padding: 40px 15px;
            border-radius: 20px;
        }
        .corporate-shell .process-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 0;
        }
        .corporate-shell .two-column-section {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .corporate-shell .column-box {
            padding: 30px 25px;
        }
        .corporate-shell .benefits-grid {
            grid-template-columns: 1fr;
        }
        .corporate-shell .cta-panel {
            padding: 35px 25px;
            text-align: center;
        }
        .corporate-shell .cta-panel h4 {
            font-size: 1.4rem;
        }
        .corporate-shell .cta-buttons {
            flex-direction: column;
            justify-content: center;
            margin-top: 25px;
        }
        .corporate-shell .cta-panel .btn-light,
        .corporate-shell .cta-panel .btn-outline-light {
            width: 100%;
            text-align: center;
        }
        .corporate-shell .full-width-section {
            padding: 35px 20px;
            border-radius: 20px;
        }
        .corporate-shell .section-icon {
            width: 60px;
            height: 60px;
        }
        .corporate-shell .section-icon i {
            font-size: 1.5rem;
        }
        .corporate-shell .key-point {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
        .corporate-shell .key-icon {
            margin: 0 auto;
        }
        .corporate-shell .flow-step {
            flex-direction: column;
            padding: 24px 20px;
        }
        .corporate-shell .flow-number {
            margin: 0 auto 15px;
        }
        .corporate-shell .flow-content {
            text-align: center;
        }
        .corporate-shell .flow-content h5 {
            font-size: 1.1rem;
        }
        .corporate-shell .example-prompt {
            flex-direction: column;
            text-align: center;
        }
        .corporate-shell .flow-note {
            text-align: left;
        }
        .corporate-shell .benefits-detailed-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .corporate-shell .benefit-detailed-card {
            padding: 28px 22px;
        }
        .corporate-shell .data-grid {
            grid-template-columns: 1fr;
        }
        .corporate-shell .cta-contact-info {
            margin-top: 20px;
        }
        .corporate-shell .contact-item {
            padding: 16px 18px;
        }
        .corporate-shell .contact-value {
            font-size: 1rem;
        }
    }
