/* Modern ISP Website Design - 2025 */
/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Neon Theme */
    --bg-dark: #0a0e27;
    --bg-darker: #151932;
    --bg-card: #1a1f3a;

    --primary-blue: #3498db;
    --primary-cyan: #00ffff;
    --accent-green: #2ecc71;
    --accent-orange: #f39c12;
    --accent-purple: #9b59b6;
    --accent-red: #e74c3c;

    --text-primary: #ffffff;
    --text-secondary: #e0e6f0;   /* Zvýšený kontrast */
    --text-muted: #b0b8d4;       /* Zvýšený kontrast */

    --glow-blue: 0 0 20px rgba(52, 152, 219, 0.5);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
    --glow-green: 0 0 20px rgba(46, 204, 113, 0.5);

    --shadow-neon: 0 0 50px rgba(52, 152, 219, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar - Modern Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(21, 25, 50, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.logo span {
    font-weight: 400;
    color: var(--primary-cyan);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn, .desktop-login-btn {
    padding: 10px 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-blue);
    border: 1px solid var(--primary-cyan);
}

.login-btn:hover, .desktop-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
    background: var(--primary-cyan);
    color: var(--bg-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.desktop-login-btn {
    display: inline-block;
}

.mobile-login {
    display: none;
}

.mobile-login .login-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Network SVG Animation */
.network-container {
    background: var(--bg-darker);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-neon);
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-svg {
    filter: drop-shadow(0 0 20px rgba(52, 152, 219, 0.3));
}

@keyframes signal {
    0% { stroke-dashoffset: 20; opacity: 0.3; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0.3; }
}

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.signal-line {
    animation: signal 2s ease-in-out infinite;
    stroke-linecap: round;
}

.node {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Hero Section - Dark Neon */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: var(--glow-blue);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--glow-blue);
    border: 1px solid var(--primary-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
    background: var(--primary-cyan);
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--glow-blue);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Packages Section - Dark Theme */
.packages {
    padding: 120px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Integrated Order Form */
.order-form-integrated {
    max-width: 900px;
    margin: 0 auto;
}

.order-form-integrated .progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
    background: var(--bg-card);
    padding: 32px 48px;
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: var(--shadow-neon);
}



.order-form-integrated .progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.order-form-integrated .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 2px solid rgba(52, 152, 219, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.order-form-integrated .step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s ease;
}

.order-form-integrated .progress-step.active .step-number {
    background: var(--primary-blue);
    border-color: var(--primary-cyan);
    color: white;
    transform: scale(1.15);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(52, 152, 219, 0.4),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
}

.order-form-integrated .progress-step.active .step-number::before {
    background: radial-gradient(circle,
        rgba(0, 255, 255, 0.3) 0%,
        transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.order-form-integrated .progress-step.completed .step-number {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.order-form-integrated .step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: all 0.3s ease;
}

.order-form-integrated .progress-step.active .step-label {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-weight: 700;
}

.order-form-integrated .progress-step.completed .step-label {
    color: var(--text-secondary);
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.order-form-integrated .form-wrapper {
    background: var(--bg-darker);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.order-form-integrated .form-step {
    display: none;
}

.order-form-integrated .form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.order-form-integrated h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary-blue);
    text-align: center;
    text-shadow: var(--glow-blue);
}

.order-form-integrated .customer-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.order-form-integrated .customer-type-card {
    padding: 32px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.order-form-integrated .customer-type-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
}

.order-form-integrated .customer-type-card.selected {
    border-color: var(--primary-cyan);
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--glow-blue);
}

.order-form-integrated .customer-type-card .icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.order-form-integrated .customer-type-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-form-integrated .customer-type-card p {
    font-size: 14px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.order-form-integrated .customer-type-card.selected p {
    color: rgba(255, 255, 255, 0.9);
}

.order-form-integrated .form-group {
    margin-bottom: 24px;
}

.order-form-integrated .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.order-form-integrated .form-group select,
.order-form-integrated .form-group input,
.order-form-integrated .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    color: var(--text-primary);
}

.order-form-integrated .form-group textarea::placeholder,
.order-form-integrated .form-group input::placeholder,
.order-form-integrated .form-group select::placeholder {
    color: var(--text-muted);
}

.order-form-integrated .form-group select:focus,
.order-form-integrated .form-group input:focus,
.order-form-integrated .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.1);
}

.order-form-integrated .button-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: space-between;
}

.order-form-integrated .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.order-form-integrated .package-card {
    padding: 24px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.order-form-integrated .package-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
}

.order-form-integrated .package-card.selected {
    border-color: var(--primary-cyan);
    background: var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.order-form-integrated .package-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.order-form-integrated .package-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 8px;
}

.order-form-integrated .package-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.order-form-integrated .package-speed {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.order-form-integrated .package-details {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.order-form-integrated .package-details p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.order-form-integrated .additional-services {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.order-form-integrated .additional-services h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.order-form-integrated .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.order-form-integrated .service-card {
    padding: 16px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    cursor: pointer;
}

.order-form-integrated .service-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.order-form-integrated .service-card input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-cyan);
}

.order-form-integrated .service-card label {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-primary);
}

.order-form-integrated .service-price {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.order-form-integrated .order-summary {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.order-form-integrated .order-summary h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.order-form-integrated .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.order-form-integrated .summary-item:last-child {
    border-bottom: none;
}

.order-form-integrated .summary-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

.order-form-integrated .summary-item strong {
    font-size: 15px;
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 600px;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
    border-color: var(--primary-cyan);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 12px;
    color: white;
    box-shadow: var(--glow-blue);
}

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

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-cyan);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-blue);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
    background: var(--primary-cyan);
    color: var(--bg-dark);
}

/* Footer - Dark Neon */
.footer {
    background: var(--bg-darker);
    color: var(--text-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-blue);
    text-shadow: var(--glow-blue);
}

.footer-logo span {
    color: var(--primary-cyan);
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 8px;
    text-shadow: var(--glow-cyan);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image {
        order: -1;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-form-integrated .customer-type-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    /* Navbar mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-neon);
        border: 1px solid rgba(52, 152, 219, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-login-btn {
        display: none;
    }

    .mobile-login {
        display: block;
        margin-top: 8px;
    }

    /* Hero section mobile */
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Section headers mobile */
    .section-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 16px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    /* Order form mobile */
    .order-form-integrated .form-wrapper {
        padding: 20px;
        border-radius: 16px;
    }

    .order-form-integrated h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .order-form-integrated .progress-bar {
        margin-bottom: 24px;
        padding: 24px 20px;
    }



    .order-form-integrated .progress-step {
        flex: 1;
        min-width: 60px;
        gap: 8px;
    }

    .order-form-integrated .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .order-form-integrated .step-label {
        font-size: 11px;
    }

    .order-form-integrated .button-group {
        flex-direction: column;
        gap: 12px;
    }

    .order-form-integrated .button-group .btn {
        width: 100%;
    }

    /* Customer type cards mobile */
    .order-form-integrated .customer-type-card {
        padding: 24px;
    }

    .order-form-integrated .customer-type-card .icon {
        font-size: 40px;
    }

    .order-form-integrated .customer-type-card h3 {
        font-size: 18px;
    }

    /* Package cards mobile */
    .order-form-integrated .package-card h3 {
        font-size: 18px;
    }

    .order-form-integrated .package-card .speed {
        font-size: 28px;
    }

    .order-form-integrated .package-card .price {
        font-size: 20px;
    }

    /* Form inputs mobile */
    .order-form-integrated .form-group label {
        font-size: 13px;
    }

    .order-form-integrated .form-group select,
    .order-form-integrated .form-group input,
    .order-form-integrated .form-group textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    /* Network SVG mobile */
    .network-container {
        padding: 20px;
        overflow-x: auto;
    }

    .network-container svg {
        min-width: 400px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .order-form-integrated h2 {
        font-size: 20px;
    }

    .order-form-integrated .form-wrapper {
        padding: 16px;
    }

    .order-form-integrated .progress-bar {
        padding: 20px 16px;
    }



    .order-form-integrated .progress-step {
        min-width: 50px;
        gap: 6px;
    }

    .order-form-integrated .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .order-form-integrated .step-label {
        font-size: 10px;
    }

    .order-form-integrated .customer-type-card {
        padding: 20px;
    }

    .order-form-integrated .customer-type-card .icon {
        font-size: 36px;
    }

    .order-form-integrated .customer-type-card h3 {
        font-size: 16px;
    }
}

