body {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 62px;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-blue {
    background: #1d4ed8;
    color: #fff;
    box-shadow: 0 1px 3px rgba(29, 78, 216, .3);
}

.btn-blue:hover {
    background: #1e40af;
}

.btn-outline {
    background: transparent;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    border-color: #1d4ed8;
    color: #1d4ed8;
}

.btn-lg {
    height: 46px;
    padding: 0 24px;
    font-size: 15px;
    border-radius: 10px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 11px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-badge-blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

.section-title {
    font-size: clamp(26px, 3.6vw, 44px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -.035em;
    line-height: 1.12;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 16.5px;
    color: #6b7280;
    line-height: 1.7;
}


.hero {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 60%);
    text-align: center;
    padding: 100px 28px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 99px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 12px;
    font-weight: 600;
    color: #1d4ed8;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-desc {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: #9ca3af;
    margin-top: 32px;
}

.breadcrumb a {
    color: #000;
    transition: color .15s;
}

.breadcrumb a:hover {
    color: #1d4ed8;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 64px;
}

.stat-item {
    background: #fff;
    padding: 32px;
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #1d4ed8;
    letter-spacing: -.04em;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

@media(max-width:640px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.feat-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    transition: border-color .2s, box-shadow .2s;
}

.feat-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 24px rgba(29, 78, 216, .06);
}

.feat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    margin-bottom: 18px;
}

.feat-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.feat-card-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

@media(max-width:768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.workflow::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: #bfdbfe;
    z-index: 0;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.workflow-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(29, 78, 216, .3);
}

.workflow-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.workflow-step-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
}

@media(max-width:768px) {
    .workflow {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow::before {
        display: none;
    }
}

@media(max-width:480px) {
    .workflow {
        grid-template-columns: 1fr;
    }
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.compare-table th {
    background: #f9fafb;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-table td {
    padding: 16px 20px;
    font-size: 14.5px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.compare-table td:not(:first-child) {
    text-align: center;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: #fafafa;
}

.compare-table td.col-agency {
    background: #f0f7ff;
}

.compare-table th.col-agency {
    background: #dbeafe;
    color: #1d4ed8;
}

.check-yes {
    color: #16a34a;
    font-size: 18px;
}

.check-no {
    color: #d1d5db;
    font-size: 18px;
}

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

.seat-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color .2s;
}

.seat-card:hover {
    border-color: #bfdbfe;
}

.seat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    flex-shrink: 0;
}

.seat-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.seat-card-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media(max-width:640px) {
    .seats-grid {
        grid-template-columns: 1fr;
    }
}

.apply-section {
    background: #f9fafb;
    border-radius: 24px;
    padding: 64px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    font-size: 14.5px;
    font-family: inherit;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, .08);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 99px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    background: #fff;
    transition: all .15s;
    user-select: none;
}

.skill-chip:hover {
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.skill-chip.selected {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.form-note {
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 4px;
}

@media(max-width:640px) {
    .apply-section {
        padding: 32px 24px;
    }

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

.testimonial-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 48px;
    max-width: 760px;
    margin: 56px auto 0;
}

.testimonial-quote {
    font-size: 20px;
    color: #111827;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 500;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.testimonial-role-label {
    font-size: 13px;
    color: #9ca3af;
}

.other-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    margin-top: 40px;
    transition: all .2s;
    text-decoration: none;
}

.other-card:hover {
    border-color: #fecaca;
    background: #fff;
    box-shadow: 0 4px 20px rgba(220, 38, 38, .08);
}