* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}
.logo i {
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.highlight {
    color: #fbbf24;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #fbbf24;
    color: #0f172a;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Plans */
.plans, .domain-section, .order-form-section {
    padding: 5rem 5%;
    text-align: center;
}

.plans h2, .domain-section h2, .order-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.plan-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    transition: 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
}

.popular {
    border: 2px solid #fbbf24;
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fbbf24;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}
.price span {
    font-size: 1rem;
    font-weight: normal;
}

.card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.card ul li {
    margin: 0.8rem 0;
}
.card ul li i {
    font-size: 1rem;
    color: #10b981;
    margin-right: 8px;
}

.btn-plan {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.btn-plan:hover {
    background: #1d4ed8;
}

/* Domain */
.domain-search {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.domain-search input {
    padding: 1rem;
    width: 300px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
}

.domain-search button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

.domain-prices {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: #475569;
}

.domain-result {
    margin-top: 1rem;
    font-weight: bold;
}

/* Form */
.order-form-section form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
}

.btn-submit {
    background: #10b981;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #059669;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.social-icons i {
    font-size: 1.5rem;
    margin-right: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .card {
        width: 90%;
    }
}