/* Extracted from index.php */

/* ═══════════════════════════════════════════════════════════════
   VLAN B2B LANDING - STYLES
   ═══════════════════════════════════════════════════════════════ */

:root {
    --vlan-primary: #1e3a5f;
    --vlan-accent: #e74c3c;
    --vlan-accent-hover: #c0392b;
    --vlan-success: #27ae60;
    --vlan-warning: #f39c12;
    --vlan-light: #f8fafc;
    --vlan-dark: #1a1a1a;
    --vlan-gray: #6b7280;
    --vlan-border: #e5e7eb;
}

/* Hero Section */
.vlan-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.vlan-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 0 L50 50 L0 100 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") no-repeat center right;
    background-size: contain;
}

.vlan-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.vlan-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 24px;
}

.vlan-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.vlan-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.vlan-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vlan-accent);
    color: #fff;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vlan-hero-cta:hover {
    background: var(--vlan-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231,76,60,0.4);
    color: #fff;
    text-decoration: none;
}

.vlan-hero-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 16px;
}

.vlan-hero-phone a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

.vlan-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.vlan-stat {
    text-align: center;
}

.vlan-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.vlan-stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Pain Points Section */
.vlan-pains {
    padding: 80px 0;
    background: #fff;
}

.vlan-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.vlan-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--vlan-dark);
    text-align: center;
    margin-bottom: 16px;
}

.vlan-section-subtitle {
    font-size: 18px;
    color: var(--vlan-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.vlan-pains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.vlan-pain-card {
    background: #fff;
    border: 1px solid var(--vlan-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.vlan-pain-card:hover {
    border-color: var(--vlan-accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.vlan-pain-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #fef2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--vlan-accent);
}

.vlan-pain-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--vlan-dark);
    margin-bottom: 8px;
}

.vlan-pain-text p {
    font-size: 14px;
    color: var(--vlan-gray);
    line-height: 1.5;
    margin: 0;
}

/* Solution Section */
.vlan-solution {
    padding: 80px 0;
    background: var(--vlan-light);
}

.vlan-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.vlan-solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vlan-solution-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.vlan-solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--vlan-dark);
    margin-bottom: 12px;
}

.vlan-solution-card p {
    font-size: 14px;
    color: var(--vlan-gray);
    line-height: 1.6;
    margin: 0;
}

/* Before/After Diagram */
.vlan-diagram {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vlan-diagram-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--vlan-dark);
}

.vlan-diagram-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.vlan-diagram-box {
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.vlan-diagram-before {
    background: #fef2f2;
    border: 2px dashed #ef4444;
}

.vlan-diagram-after {
    background: #f0fdf4;
    border: 2px solid #22c55e;
}

.vlan-diagram-arrow {
    font-size: 32px;
    color: var(--vlan-primary);
}

.vlan-diagram-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vlan-diagram-before .vlan-diagram-label { color: #ef4444; }
.vlan-diagram-after .vlan-diagram-label { color: #22c55e; }

.vlan-diagram-desc {
    font-size: 15px;
    color: var(--vlan-dark);
}

/* Social Proof / Clients */
.vlan-clients {
    padding: 80px 0;
    background: #fff;
}

.vlan-clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.vlan-client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.vlan-client-logo:hover {
    opacity: 1;
}

.vlan-client-logo-icon {
    width: 80px;
    height: 80px;
    background: var(--vlan-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--vlan-primary);
}

.vlan-client-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--vlan-dark);
}

/* Cases Grid */
.vlan-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.vlan-case-card {
    background: var(--vlan-light);
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--vlan-primary);
}

.vlan-case-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vlan-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vlan-case-title::before {
    content: '◆';
    color: var(--vlan-primary);
}

.vlan-case-text {
    font-size: 14px;
    color: var(--vlan-gray);
    line-height: 1.6;
}

.vlan-case-result {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vlan-success);
}

/* Pricing Section */
.vlan-pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    color: #fff;
}

.vlan-pricing .vlan-section-title,
.vlan-pricing .vlan-section-subtitle {
    color: #fff;
}

.vlan-pricing .vlan-section-subtitle {
    opacity: 0.9;
}

.vlan-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.vlan-price-card {
    background: #fff;
    color: var(--vlan-dark);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.vlan-price-card.featured {
    border: 3px solid var(--vlan-accent);
}

.vlan-price-badge {
    position: absolute;
    top: 16px;
    right: -36px;
    background: var(--vlan-accent);
    color: #fff;
    padding: 6px 48px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.vlan-price-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vlan-price-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--vlan-primary);
    margin-bottom: 4px;
}

.vlan-price-value span {
    font-size: 20px;
    font-weight: 400;
    color: var(--vlan-gray);
}

.vlan-price-note {
    font-size: 13px;
    color: var(--vlan-gray);
    margin-bottom: 24px;
}

.vlan-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.vlan-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--vlan-border);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vlan-price-features li::before {
    content: '✓';
    color: var(--vlan-success);
    font-weight: 700;
    min-width: 18px;
}

.vlan-price-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--vlan-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vlan-price-btn:hover {
    background: #2d5a87;
    color: #fff;
    text-decoration: none;
}

.vlan-price-card.featured .vlan-price-btn {
    background: var(--vlan-accent);
}

.vlan-price-card.featured .vlan-price-btn:hover {
    background: var(--vlan-accent-hover);
}

.vlan-pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    opacity: 0.8;
}

/* Process Section */
.vlan-process {
    padding: 80px 0;
    background: #fff;
}

.vlan-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.vlan-process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--vlan-border);
}

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

.vlan-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--vlan-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30,58,95,0.3);
}

.vlan-step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--vlan-dark);
    margin-bottom: 8px;
}

.vlan-step-desc {
    font-size: 13px;
    color: var(--vlan-gray);
    max-width: 140px;
    margin: 0 auto;
}

/* Guarantees Section */
.vlan-guarantees {
    padding: 80px 0;
    background: var(--vlan-light);
}

.vlan-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vlan-guarantee-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.vlan-guarantee-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.vlan-guarantee-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--vlan-dark);
    margin-bottom: 8px;
}

.vlan-guarantee-card p {
    font-size: 13px;
    color: var(--vlan-gray);
    line-height: 1.5;
    margin: 0;
}

/* Final CTA Section */
.vlan-final-cta {
    padding: 80px 0;
    background: #fff;
}

.vlan-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: #fff;
}

.vlan-cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vlan-cta-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.vlan-cta-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: var(--vlan-dark);
}

.vlan-cta-input::placeholder {
    color: #9ca3af;
}

.vlan-cta-submit {
    background: var(--vlan-accent);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.vlan-cta-submit:hover {
    background: var(--vlan-accent-hover);
}

.vlan-cta-note {
    font-size: 13px;
    margin-top: 16px;
    opacity: 0.7;
}

/* Coverage Map */
.vlan-coverage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.vlan-coverage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Sticky Footer Bar */
.vlan-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--vlan-border);
    padding: 12px 24px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.vlan-sticky-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--vlan-dark);
}

.vlan-sticky-phone a {
    color: var(--vlan-dark);
    text-decoration: none;
}

.vlan-sticky-btn {
    background: var(--vlan-accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vlan-sticky-btn:hover {
    background: var(--vlan-accent-hover);
    color: #fff;
    text-decoration: none;
}

/* Modal */
.vlan-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vlan-modal.active {
    display: flex;
}

.vlan-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: vlanModalIn 0.3s ease;
}

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

.vlan-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--vlan-light);
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    color: var(--vlan-gray);
    transition: all 0.2s ease;
}

.vlan-modal-close:hover {
    background: var(--vlan-border);
    color: var(--vlan-dark);
}

.vlan-modal h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--vlan-dark);
    margin-bottom: 8px;
}

.vlan-modal-subtitle {
    color: var(--vlan-gray);
    margin-bottom: 24px;
}

.vlan-modal-form-group {
    margin-bottom: 16px;
}

.vlan-modal-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--vlan-dark);
    margin-bottom: 6px;
}

.vlan-modal-form-group input,
.vlan-modal-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--vlan-border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--vlan-dark);
    transition: border-color 0.2s ease;
}

.vlan-modal-form-group input:focus,
.vlan-modal-form-group select:focus {
    outline: none;
    border-color: var(--vlan-primary);
}

.vlan-modal-submit {
    width: 100%;
    padding: 16px;
    background: var(--vlan-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vlan-modal-submit:hover {
    background: var(--vlan-accent-hover);
}

.vlan-modal-note {
    text-align: center;
    font-size: 13px;
    color: var(--vlan-gray);
    margin-top: 16px;
}

/* Success Modal */
.vlan-success-modal .vlan-modal-content {
    text-align: center;
}

.vlan-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    animation: vlanSuccessPulse 0.5s ease;
}

@keyframes vlanSuccessPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.vlan-success-modal h3 {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 992px) {
    .vlan-hero h1 { font-size: 32px; }
    .vlan-hero-stats { gap: 24px; }
    .vlan-solution-grid { grid-template-columns: 1fr; }
    .vlan-diagram-grid { grid-template-columns: 1fr; gap: 16px; }
    .vlan-diagram-arrow { transform: rotate(90deg); }
    .vlan-pricing-grid { grid-template-columns: 1fr; }
    .vlan-process-steps { flex-direction: column; gap: 32px; }
    .vlan-process-steps::before { display: none; }
    .vlan-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vlan-hero { padding: 60px 0 80px; }
    .vlan-hero h1 { font-size: 26px; }
    .vlan-hero-subtitle { font-size: 16px; }
    .vlan-hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .vlan-section-title { font-size: 26px; }
    .vlan-pains-grid { grid-template-columns: 1fr; }
    .vlan-clients-logos { gap: 24px; }
    .vlan-cases-grid { grid-template-columns: 1fr; }
    .vlan-cta-form { flex-direction: column; }
    .vlan-cta-box { padding: 32px 24px; }
    .vlan-coverage { flex-direction: column; gap: 16px; }
    .vlan-guarantees-grid { grid-template-columns: 1fr; }
    .vlan-sticky-bar { display: flex; }
    body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .vlan-hero h1 { font-size: 22px; }
    .vlan-price-value { font-size: 36px; }
    .vlan-step-number { width: 60px; height: 60px; font-size: 22px; }
}
