@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

:root {
    --netmask-primary: #0061f2;
    --netmask-dark: #091740;
    --netmask-light: #f4f7ff;
    --color-secondary: #0061f2;
    --topbar-height: 44px;
    --header-button-height: 44px;
}

body {
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: #1d1f2c;
}

#topbar {
    background: #0b1226;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
    min-height: var(--topbar-height);
}

#topbar a {
    color: #fff;
    text-decoration: none;
}

.header-logo-img {
    background: linear-gradient(135deg, #0048d3, #00a2ff);
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.35);
    height: 44px;
    width: auto;
}

.fixed-top#header {
    top: var(--topbar-height);
    background: #fff;
    padding: 4px 0;
    box-shadow: 0 6px 18px rgba(6, 17, 58, 0.08);
}

#header .btn-primary-two {
    display: inline-flex;
    align-items: center;
    height: var(--header-button-height);
    padding: 0 28px;
}

.topbar-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.text-brand {
    color: var(--netmask-primary) !important;
}

.hero-netmask {
    padding: 100px 0 60px;
    background: radial-gradient(circle at 20% 20%, rgba(0,97,242,0.15), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(0,220,190,0.12), transparent 45%),
        #060b1b;
    color: #fff;
}

.hero-netmask.inner-hero {
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-netmask h1 span {
    color: var(--netmask-primary);
}

.hero-card {
    background: #fff;
    color: #1d1f2c;
    border-radius: 18px;
    padding: 24px 32px 24px 32px;
    box-shadow: 0 20px 45px rgba(6,11,27,0.25);
}

.hero-card ul {
    list-style: none;
    padding-left: 0;
}

.hero-card ol {
    margin: 0 0 12px 18px;
    padding-left: 18px;
    color: #1d1f2c;
}

.hero-card li {
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-card i {
    color: var(--netmask-primary);
    margin-right: 8px;
}

.hero-actions .btn {
    margin-right: 12px;
    margin-bottom: 12px;
}

.section-padding {
    padding: 40px 0 60px 0;
}

.plan-three .plan-name {
    border-radius: 18px;
    padding: 24px 32px 24px 32px;
    background: #fff;
    box-shadow: 0 25px 40px rgba(9,23,64,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-name h4 {
    text-align: center;
}

.plan-name .plan-price {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

.plan-name .plan-price sup {
    font-size: 1.1rem;
    top: -0.8rem;
}

.plan-name ul {
    list-style: none;
    padding-left: 0;
    padding-top: 14px;
}

.plan-name ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 6px;
}

.plan-name ul li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--netmask-primary);
}

.plan-name.featured {
    border: 2px solid var(--netmask-primary);
    transform: translateY(-10px);
}

.domain-finder .domain-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 35px 65px rgba(5, 12, 36, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-finder .domain-card form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.domain-finder .domain-card input[type="text"],
.domain-finder .domain-card select {
    background: #f5f6fb;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.domain-finder .domain-card input[type="text"]:focus,
.domain-finder .domain-card select:focus {
    border-color: rgba(0, 97, 242, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 97, 242, 0.15);
    outline: none;
}

.domain-finder .domain-card .btn {
    border-radius: 14px;
    font-weight: 600;
    padding: 18px 40px;
}

@media (max-width: 991px) {
    .domain-finder .domain-card form {
        grid-template-columns: 1fr;
    }
}

.domain-note {
    margin-top: 20px;
    font-weight: 500;
    color: var(--netmask-dark);
}

.domain-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(9,23,64,0.08);
}

.domain-table th,
.domain-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e6e9f4;
}

.domain-table th {
    background: var(--netmask-dark);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.domain-table tr:last-child td {
    border-bottom: none;
}

.table-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #5c5f79;
}

.bg-soft {
    background: var(--netmask-light);
}

.info-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 15px 30px rgba(9,23,64,0.08);
}

.info-card h4 {
    margin-bottom: 18px;
}

.map-frame {
    position: relative;
    padding-top: 65%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(9,23,64,0.08);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.info-card ul {
    padding-left: 18px;
}

.legal-section {
    background: #fff;
}

.legal-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 30px 50px rgba(9,23,64,0.08);
    line-height: 1.65;
}

.legal-card h2,
.legal-card h3,
.legal-card h4 {
    margin-top: 1.5rem;
}

.legal-card ul {
    padding-left: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list i {
    color: var(--netmask-primary);
    margin-right: 8px;
}

.cta-panel {
    padding: 60px 0;
    background: linear-gradient(120deg, #091740, #0038a8);
    //color: #fff;
}

.footer {
    background: #040712;
    color: #fff;
    padding: 70px 0 40px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    height: 42px;
    margin-bottom: 16px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hero-netmask {
        padding-top: 110px;
    }
    .plan-name.featured {
        transform: none;
    }
}
