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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

.full-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffffff, #888888);
    transition: width 0.2s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: transparent;
    padding: 20px 0;
}

.header.hidden {
    transform: translateY(-100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    flex-shrink: 0;
}

.right-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 0;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111111;
    min-width: 180px;
    border-radius: 6px;
    border: 1px solid #333333;
    z-index: 10000;
    margin-top: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    color: #cccccc;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #111111;
}

.dropdown-content a:hover {
    background: #222222;
    color: #ffffff;
}

.nav-item {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.2s;
}

.nav-item:hover {
    opacity: 0.7;
}

.connect-btn {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
}

.connect-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .right-side {
        gap: 15px;
    }
    .nav {
        gap: 15px;
    }
    .nav-item, .dropdown-trigger {
        font-size: 11px;
    }
    .connect-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
}

/* Network Access Main */
.network-access-main {
    min-height: 100vh;
    padding-top: 100px;
}

.step-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-container.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.5;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
}

.email-input:focus {
    outline: none;
    border-color: #ffffff;
}

.start-btn {
    padding: 14px 32px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.start-btn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.trust-badge {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #888888;
}

.trust-badge i {
    color: #4ade80;
}

/* Step Card */
.step-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.step-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.step-title p {
    color: #aaaaaa;
}

/* Company Details */
.company-details {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.company-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.company-info {
    flex: 1;
}

.info-row {
    display: flex;
    margin-bottom: 12px;
}

.info-row label {
    width: 100px;
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-row p {
    flex: 1;
    color: #ffffff;
    font-weight: 500;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

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

.role-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.role-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.role-card.selected {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.role-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.role-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.role-card p {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 20px;
}

.role-card ul {
    list-style: none;
    text-align: left;
}

.role-card li {
    color: #888888;
    font-size: 12px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.role-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

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

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

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.capability-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.capability-card.selected {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.capability-card i {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
    color: #ffffff;
}

.capability-card span {
    font-size: 13px;
    color: #cccccc;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover:not(:disabled) {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Verification Card */
.verification-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: #4ade80;
    margin-bottom: 24px;
}

.verification-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.verification-card p {
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.5;
}

.company-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
}

.company-summary p {
    margin-bottom: 8px;
    color: #ffffff;
}

.next-steps {
    text-align: left;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.next-steps h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 14px;
}

.next-steps li i {
    color: #4ade80;
    width: 20px;
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0 16px;
    margin-top: 60px;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-brand h3 {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3px;
}

.footer-brand p {
    color: #6b7280;
    font-size: 9px;
    margin-bottom: 2px;
    line-height: 1.3;
}

.footer-brand .copyright {
    color: #4b5563;
    font-size: 8px;
    margin-bottom: 0;
}

.footer-links-center {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links-center a {
    color: #6b7280;
    text-decoration: none;
    font-size: 10px;
    transition: color 0.2s;
}

.footer-links-center a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .footer .container {
        padding: 0 24px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-links-center {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .step-card {
        padding: 32px 24px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .email-form {
        flex-direction: column;
    }
    .company-details {
        flex-direction: column;
        text-align: center;
    }
    .company-logo {
        margin: 0 auto;
    }
    .info-row {
        flex-direction: column;
        gap: 4px;
    }
    .info-row label {
        width: auto;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #cccccc;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder {
    color: #666666;
}

/* Custom Capabilities Section */
.custom-capabilities-section {
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-capabilities-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.custom-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.custom-input-group .form-input {
    flex: 1;
}

.btn-outline {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.custom-capabilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.custom-capability-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: #ffffff;
}

.custom-capability-tag i {
    cursor: pointer;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.custom-capability-tag i:hover {
    opacity: 1;
    color: #ff4444;
}

/* Selected Capabilities Summary */
.selected-summary {
    margin: 32px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.selected-summary label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #cccccc;
}

.selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selected-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 12px;
    color: #ffffff;
}

/* Capability Cards Enhancement */
.capability-card.selected {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.capability-card {
    cursor: pointer;
    transition: all 0.2s;
}

.capability-card.selected i {
    color: #ffffff;
}

/* Email Status Styles */
.email-status {
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.email-status.checking {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.email-status.exists {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.email-status.new {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.email-status.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.email-status i {
    font-size: 14px;
}
