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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(33, 147, 176, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(109, 213, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(33, 147, 176, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 4rem 0 2rem;
}

.domain-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2193b0;
    border: 1px solid rgba(33, 147, 176, 0.3);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
}

.domain-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.domain-pair {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
}

.domain-pair strong {
    color: #6dd5ed;
}

.tagline {
    font-size: 1.15rem;
    color: #aaa;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.2s;
}

.feature:hover {
    border-color: rgba(33, 147, 176, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.contact-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2193b0;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    opacity: 0.9;
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.lang-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.25rem;
}

.lang-toggle a {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-toggle a.active {
    background: rgba(33, 147, 176, 0.2);
    color: #6dd5ed;
}

.lang-toggle a:hover {
    color: #e0e0e0;
}

.cross-links {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cross-links p {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cross-links a {
    display: inline-block;
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    transition: color 0.2s;
}

.cross-links a:hover {
    color: #6dd5ed;
}

.cross-links .sep {
    color: #333;
}

@media (max-width: 600px) {
    .features { grid-template-columns: 1fr; }
    .container { padding: 2rem 1rem; }
    .hero { padding: 2rem 0 1rem; }
}
