/* VERTEX - Elegant Professional Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vertex-cream: #faf8f3;
    --vertex-white: #ffffff;
    --vertex-navy: #1e3a5f;
    --vertex-navy-dark: #152a42;
    --vertex-gold: #c9a961;
    --vertex-text: #2c3e50;
    --vertex-text-light: #5a6c7d;
    --vertex-border: #e8e5df;
    --vertex-accent: #8b4513;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--vertex-cream);
    color: var(--vertex-text);
    line-height: 1.8;
}

.vertex-page {
    width: 100%;
    min-height: 100vh;
}

.vertex-header {
    background: var(--vertex-white);
    border-bottom: 4px solid var(--vertex-navy);
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vertex-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vertex-logo-area {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.vertex-logo-info {
    display: flex;
    flex-direction: column;
}

.vertex-company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vertex-navy);
    margin: 0;
    line-height: 1.2;
}

.vertex-company-tagline {
    font-size: 0.875rem;
    color: var(--vertex-text-light);
    font-style: italic;
    margin-top: 0.25rem;
}

.vertex-header-action {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.vertex-apply-link {
    padding: 0.875rem 2rem;
    background: var(--vertex-navy);
    color: var(--vertex-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.vertex-apply-link:hover {
    background: var(--vertex-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.vertex-main {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--vertex-white);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.vertex-intro-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--vertex-white) 0%, var(--vertex-cream) 100%);
    border-bottom: 3px solid var(--vertex-gold);
}

.vertex-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.vertex-intro-image {
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .vertex-intro-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .vertex-intro-content {
        flex: 1;
    }
    
    .vertex-intro-image {
        flex: 1;
        margin-top: 0;
    }
}

.vertex-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vertex-title-icon {
    width: 48px;
    height: 48px;
    color: var(--vertex-gold);
    flex-shrink: 0;
}

.vertex-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--vertex-navy);
    margin: 0;
    line-height: 1.3;
}

.vertex-intro-text {
    font-size: 1.25rem;
    color: var(--vertex-text);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.vertex-key-points {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.vertex-key-point {
    text-align: center;
    padding: 2rem;
    background: var(--vertex-white);
    border: 2px solid var(--vertex-gold);
    border-radius: 8px;
    min-width: 180px;
    position: relative;
    transition: all 0.3s;
}

.vertex-key-point:hover {
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
    transform: translateY(-3px);
}

.vertex-key-icon {
    width: 32px;
    height: 32px;
    color: var(--vertex-gold);
    margin: 0 auto 1rem;
    display: block;
}

.vertex-key-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vertex-navy);
    margin-bottom: 0.5rem;
}

.vertex-key-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--vertex-text-light);
    font-weight: 600;
}

.vertex-info-section {
    padding: 4rem 2rem;
    background: var(--vertex-white);
}

.vertex-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vertex-info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vertex-info-image {
    width: 100%;
    overflow: hidden;
}

.vertex-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--vertex-gold);
}

.vertex-section-icon {
    width: 32px;
    height: 32px;
    color: var(--vertex-gold);
    flex-shrink: 0;
}

.vertex-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin: 0;
}

.vertex-info-column p {
    margin-bottom: 1.5rem;
    color: var(--vertex-text);
    line-height: 1.9;
}

.vertex-task-list {
    list-style: none;
    padding-left: 0;
}

.vertex-task-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--vertex-text);
    border-bottom: 1px solid var(--vertex-border);
}

.vertex-task-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--vertex-gold);
    font-weight: bold;
    font-size: 1.25rem;
}

.vertex-models-section {
    padding: 4rem 2rem;
    background: var(--vertex-cream);
}

.vertex-models-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vertex-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vertex-navy);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.vertex-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--vertex-gold), transparent);
}

.vertex-models-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.vertex-models-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--vertex-white);
}

.vertex-models-table thead {
    background: var(--vertex-navy);
    color: var(--vertex-white);
}

.vertex-models-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vertex-models-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--vertex-border);
    color: var(--vertex-text);
}

.vertex-models-table tbody tr {
    transition: background 0.2s;
}

.vertex-models-table tbody tr:hover {
    background: var(--vertex-cream);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.vertex-advantages-section {
    padding: 4rem 2rem;
    background: var(--vertex-white);
}

.vertex-advantages-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vertex-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vertex-advantage-block {
    padding: 2.5rem;
    background: var(--vertex-cream);
    border-left: 4px solid var(--vertex-gold);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.vertex-advantage-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.vertex-advantage-icon {
    width: 48px;
    height: 48px;
    color: var(--vertex-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 8px;
}

.vertex-advantage-icon svg {
    width: 24px;
    height: 24px;
}

.vertex-advantage-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin-bottom: 1rem;
}

.vertex-advantage-block p {
    color: var(--vertex-text);
    line-height: 1.8;
}

.vertex-requirements-section {
    padding: 4rem 2rem;
    background: var(--vertex-cream);
}

.vertex-requirements-container {
    max-width: 800px;
    margin: 0 auto;
}

.vertex-requirements-box {
    background: var(--vertex-white);
    padding: 2.5rem;
    border: 2px solid var(--vertex-gold);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vertex-requirement-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    font-size: 1.125rem;
    color: var(--vertex-text);
    border-bottom: 1px solid var(--vertex-border);
}

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

.vertex-check-mark {
    width: 28px;
    height: 28px;
    color: var(--vertex-gold);
    flex-shrink: 0;
}

.vertex-application-section {
    padding: 4rem 2rem;
    background: var(--vertex-white);
}

.vertex-application-container {
    max-width: 900px;
    margin: 0 auto;
}

.vertex-application-intro {
    text-align: center;
    color: var(--vertex-text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.vertex-error-message {
    background: #fee2e2;
    border: 2px solid #dc2626;
    color: #991b1b;
    padding: 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.vertex-application-form {
    background: var(--vertex-cream);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid var(--vertex-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.vertex-application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vertex-gold), var(--vertex-navy));
    border-radius: 8px 8px 0 0;
}

.vertex-form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--vertex-border);
}

.vertex-form-section:last-of-type {
    border-bottom: none;
}

.vertex-form-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin-bottom: 1.5rem;
}

.vertex-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vertex-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vertex-form-group label {
    font-weight: 600;
    color: var(--vertex-text);
    font-size: 0.9375rem;
}

.vertex-form-group input,
.vertex-form-group select,
.vertex-form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--vertex-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--vertex-white);
    color: var(--vertex-text);
    transition: border-color 0.3s;
}

.vertex-form-group input:focus,
.vertex-form-group select:focus,
.vertex-form-group textarea:focus {
    outline: none;
    border-color: var(--vertex-navy);
}

.vertex-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vertex-checkbox-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.vertex-checkbox-item input {
    margin-top: 0.25rem;
}

.vertex-checkbox-item label {
    font-size: 0.9375rem;
    color: var(--vertex-text);
    line-height: 1.7;
}

.vertex-form-submit-area {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--vertex-border);
}

.vertex-submit-button {
    padding: 1.25rem 4rem;
    background: var(--vertex-navy);
    color: var(--vertex-white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.vertex-submit-button:hover {
    background: var(--vertex-navy-dark);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    transform: translateY(-2px);
}

.vertex-footer {
    background: var(--vertex-navy);
    color: var(--vertex-white);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.vertex-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.vertex-footer-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vertex-footer-icon {
    width: 24px;
    height: 24px;
    color: var(--vertex-gold);
}

.vertex-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.vertex-footer-section p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.7;
}

.vertex-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vertex-footer-links a {
    color: var(--vertex-white);
    text-decoration: none;
    font-size: 0.9375rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.vertex-footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.vertex-footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .vertex-info-columns {
        grid-template-columns: 1fr;
    }
    
    .vertex-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .vertex-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* POSTIDENT Page Styles */
.vertex-postident-section {
    padding: 4rem 2rem;
    background: var(--vertex-cream);
}

.vertex-postident-container {
    max-width: 900px;
    margin: 0 auto;
}

.vertex-postident-card {
    background: var(--vertex-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid var(--vertex-border);
}

.vertex-postident-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--vertex-white) 0%, var(--vertex-cream) 100%);
    border-bottom: 3px solid var(--vertex-gold);
}

.vertex-postident-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertex-postident-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vertex-navy);
    margin-bottom: 1rem;
}

.vertex-postident-subtitle {
    font-size: 1.25rem;
    color: var(--vertex-text-light);
    font-weight: 500;
}

.vertex-postident-content {
    padding: 3rem 2rem;
}

.vertex-postident-box {
    background: var(--vertex-cream);
    padding: 2rem;
    border-left: 4px solid var(--vertex-gold);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.vertex-postident-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--vertex-text);
}

.vertex-postident-box p:last-child {
    margin-bottom: 0;
}

.vertex-postident-info {
    background: rgba(201, 169, 97, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.vertex-postident-info p {
    color: var(--vertex-text);
    line-height: 1.8;
    margin: 0;
}

.vertex-postident-procedure {
    margin-bottom: 2.5rem;
}

.vertex-postident-procedure-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vertex-postident-procedure-icon {
    width: 28px;
    height: 28px;
    color: var(--vertex-gold);
    flex-shrink: 0;
}

.vertex-postident-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vertex-postident-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--vertex-cream);
    border-radius: 8px;
    border: 2px solid var(--vertex-border);
    transition: all 0.3s;
}

.vertex-postident-step:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    border-color: var(--vertex-gold);
}

.vertex-postident-step-number {
    width: 48px;
    height: 48px;
    background: var(--vertex-navy);
    color: var(--vertex-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vertex-postident-step-text {
    flex: 1;
    color: var(--vertex-text);
    line-height: 1.8;
    padding-top: 0.5rem;
}

.vertex-postident-action {
    background: var(--vertex-cream);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--vertex-border);
    margin-bottom: 2rem;
}

.vertex-postident-action-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vertex-postident-action-icon {
    width: 24px;
    height: 24px;
    color: var(--vertex-gold);
    flex-shrink: 0;
}

.vertex-postident-action p {
    color: var(--vertex-text);
    margin-bottom: 1rem;
}

.vertex-postident-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.vertex-postident-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--vertex-text);
    line-height: 1.8;
}

.vertex-postident-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--vertex-gold);
    font-weight: bold;
    font-size: 1.25rem;
}

.vertex-postident-email {
    margin-top: 1.5rem;
}

.vertex-postident-email p {
    margin-bottom: 1rem;
}

.vertex-postident-email-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--vertex-navy);
    color: var(--vertex-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.vertex-postident-email-btn:hover {
    background: var(--vertex-navy-dark);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    transform: translateY(-2px);
}

.vertex-postident-email-note {
    font-size: 0.9rem;
    color: var(--vertex-text-light);
    margin-top: 1rem;
}

.vertex-postident-email-note a {
    color: var(--vertex-navy);
    text-decoration: underline;
}

.vertex-postident-email-note a:hover {
    color: var(--vertex-navy-dark);
}

.vertex-postident-bonus {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.2) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--vertex-gold);
    margin-bottom: 2rem;
}

.vertex-postident-bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vertex-postident-bonus-icon {
    width: 24px;
    height: 24px;
    color: var(--vertex-gold);
    flex-shrink: 0;
}

.vertex-postident-bonus p {
    color: var(--vertex-text);
    line-height: 1.8;
    margin: 0;
}

.vertex-postident-support {
    background: var(--vertex-cream);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    border-left: 4px solid var(--vertex-navy);
}

.vertex-postident-support p {
    color: var(--vertex-text);
    margin: 0;
    line-height: 1.8;
}

/* Profile Request Page Styles */
.vertex-profile-section {
    padding: 4rem 2rem;
    background: var(--vertex-cream);
}

.vertex-profile-container {
    max-width: 900px;
    margin: 0 auto;
}

.vertex-profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vertex-profile-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--vertex-navy) 0%, var(--vertex-navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--vertex-white);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.vertex-profile-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vertex-navy);
    margin-bottom: 1rem;
}

.vertex-profile-subtitle {
    font-size: 1.25rem;
    color: var(--vertex-text-light);
    margin-bottom: 2rem;
}

.vertex-profile-notice {
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--vertex-gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.vertex-profile-notice h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--vertex-navy);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.vertex-profile-notice p {
    color: var(--vertex-text);
    margin: 0;
}

.vertex-profile-form {
    background: var(--vertex-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--vertex-border);
    position: relative;
}

.vertex-profile-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vertex-gold), var(--vertex-navy));
    border-radius: 8px 8px 0 0;
}

.vertex-profile-form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--vertex-border);
}

.vertex-profile-form-section:last-of-type {
    border-bottom: none;
}

.vertex-profile-form-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vertex-navy);
    margin-bottom: 1.5rem;
}

.vertex-profile-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.vertex-profile-form-group.full-width {
    grid-column: 1 / -1;
}

.vertex-profile-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--vertex-text);
    font-size: 0.9375rem;
}

.vertex-profile-form-label.required::after {
    content: ' *';
    color: #dc2626;
}

.vertex-profile-form-input,
.vertex-profile-form-select,
.vertex-profile-form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--vertex-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--vertex-white);
    color: var(--vertex-text);
    transition: border-color 0.3s;
}

.vertex-profile-form-input:focus,
.vertex-profile-form-select:focus,
.vertex-profile-form-textarea:focus {
    outline: none;
    border-color: var(--vertex-navy);
}

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

.vertex-profile-form-help {
    font-size: 0.875rem;
    color: var(--vertex-text-light);
    margin-top: 0.25rem;
}

.vertex-profile-form-submit {
    background: var(--vertex-navy);
    color: var(--vertex-white);
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    width: 100%;
}

.vertex-profile-form-submit:hover {
    background: var(--vertex-navy-dark);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    transform: translateY(-2px);
}

.vertex-profile-alert {
    padding: 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.vertex-profile-alert-error {
    background: #fee2e2;
    border: 2px solid #dc2626;
    color: #991b1b;
}

.vertex-profile-alert-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.vertex-profile-quick-date-btn {
    padding: 1rem 1.5rem;
    background: var(--vertex-navy);
    color: var(--vertex-white);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: inherit;
}

.vertex-profile-quick-date-btn:hover {
    background: var(--vertex-navy-dark);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .vertex-header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .vertex-header-action {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .vertex-apply-link {
        display: inline-block !important;
        flex: 0 1 auto;
        min-width: 140px;
        max-width: 200px;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .vertex-company-name {
        font-size: 1.5rem;
    }
    
    .vertex-company-tagline {
        font-size: 0.8rem;
    }
    
    .vertex-main-title {
        font-size: 2rem;
    }
    
    .vertex-section-title {
        font-size: 2rem;
    }
    
    .vertex-key-points {
        flex-direction: column;
    }
    
    .vertex-form-row {
        grid-template-columns: 1fr;
    }
    
    .vertex-models-table {
        font-size: 0.875rem;
    }
    
    .vertex-models-table th,
    .vertex-models-table td {
        padding: 0.75rem;
    }
    
    .vertex-postident-title {
        font-size: 2rem;
    }
    
    .vertex-postident-step {
        flex-direction: column;
        text-align: center;
    }
    
    .vertex-postident-step-number {
        margin: 0 auto;
    }
    
    .vertex-profile-form-row {
        grid-template-columns: 1fr;
    }
    
    .vertex-profile-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .vertex-header-container {
        padding: 1rem 0.75rem;
    }
    
    .vertex-header-action {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .vertex-apply-link {
        display: inline-block !important;
        flex: 0 1 auto;
        min-width: 140px;
        max-width: 200px;
        padding: 0.875rem 1.5rem;
    }
    
    .vertex-company-name {
        font-size: 1.25rem;
    }
    
    .vertex-company-tagline {
        font-size: 0.75rem;
    }
}
