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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #0a1628;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .phones span {
    margin-right: 20px;
    font-size: 13px;
}

.top-bar .phones i {
    margin-right: 5px;
    color: #00b4d8;
}

.top-bar .social a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.top-bar .social a:hover {
    color: #00b4d8;
}

/* ===== HEADER / NAV ===== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 45px;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    padding: 10px 16px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    border-radius: 5px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: #00b4d8;
    background: #f0f9ff;
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 999;
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    color: #555;
    transition: all 0.3s;
}

.main-nav .dropdown-menu li a:hover {
    background: #f0f9ff;
    color: #00b4d8;
    padding-left: 25px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: #00b4d8;
}

.hero-content .subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #c8d6e5;
}

.hero-content p {
    font-size: 16px;
    color: #b0b9c9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-features .hf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e0e6ef;
}

.hero-features .hf-item i {
    color: #00b4d8;
}

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

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #00b4d8;
    color: #fff;
}

.btn-primary:hover {
    background: #0098b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,180,216,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: #00b4d8;
    color: #00b4d8;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
}

/* ===== DOMAIN SEARCH ===== */
.domain-search {
    background: #f8f9fc;
    padding: 25px 0;
    border-top: 1px solid #eef0f5;
    border-bottom: 1px solid #eef0f5;
}

.domain-search .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.domain-search .ds-text {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.domain-search .ds-text strong {
    color: #00b4d8;
}

.domain-search .ds-form {
    display: flex;
    min-width: 380px;
    max-width: 450px;
}

.domain-search .ds-form input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #d0d5dd;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.domain-search .ds-form input:focus {
    border-color: #00b4d8;
}

.domain-search .ds-form button {
    padding: 12px 22px;
    background: #00b4d8;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.domain-search .ds-form button:hover {
    background: #0098b8;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a1628;
}

.section-title .section-sub {
    font-size: 16px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.section.bg-light {
    background: #f8f9fc;
}

.section.bg-dark {
    background: #0a1628;
    color: #fff;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #00b4d8;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-card .p-badge {
    background: #00b4d8;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .p-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-card .p-header h3 {
    font-size: 22px;
    color: #0a1628;
    margin-bottom: 5px;
}

.pricing-card .p-header .p-price {
    font-size: 36px;
    font-weight: 700;
    color: #00b4d8;
}

.pricing-card .p-header .p-price span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.pricing-card .p-body {
    padding: 20px;
}

.pricing-card .p-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .p-body ul li i {
    color: #00b4d8;
    font-size: 12px;
    width: 16px;
}

.pricing-card .p-body ul li:last-child {
    border-bottom: none;
}

.pricing-card .p-footer {
    padding: 20px;
    text-align: center;
}

.pricing-card .p-footer .btn {
    width: 100%;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-item .fi-icon {
    width: 65px;
    height: 65px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #00b4d8;
}

.feature-item h3 {
    font-size: 18px;
    color: #0a1628;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.solution-card .sc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.solution-card .sc-icon img {
    width: 100%;
    height: auto;
}

.solution-card h3 {
    font-size: 18px;
    color: #0a1628;
    margin-bottom: 8px;
}

.solution-card .sc-price {
    color: #00b4d8;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.solution-card p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.solution-card .sc-link {
    color: #00b4d8;
    font-weight: 600;
    font-size: 14px;
}

.solution-card .sc-link i {
    transition: transform 0.3s;
}

.solution-card .sc-link:hover i {
    transform: translateX(5px);
}

/* ===== PRICE GUARANTEE ===== */
.price-guarantee {
    background: linear-gradient(135deg, #0a1628, #1a2a4a);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.price-guarantee h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.price-guarantee p {
    font-size: 16px;
    color: #b0b9c9;
    max-width: 600px;
    margin: 0 auto;
}

.price-guarantee .pg-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.price-guarantee .pg-item {
    text-align: center;
}

.price-guarantee .pg-item .pg-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.price-guarantee .pg-item .pg-label {
    font-size: 14px;
    color: #b0b9c9;
}

.price-guarantee .pg-item .pg-eq {
    font-size: 36px;
    color: #00b4d8;
    font-weight: 700;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item .faq-q {
    padding: 18px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #0a1628;
    transition: background 0.3s;
}

.faq-item .faq-q:hover {
    background: #f8f9fc;
}

.faq-item .faq-q i {
    transition: transform 0.3s;
    color: #00b4d8;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-item .faq-a {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.open .faq-a {
    padding: 0 25px 18px;
    max-height: 500px;
}

.faq-item .faq-a p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-banner .btn {
    background: #fff;
    color: #00b4d8;
}

.cta-banner .btn:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

/* ===== CLIENTS LOGOS ===== */
.clients-bar {
    background: #fff;
    padding: 30px 0;
    text-align: center;
}

.clients-bar img {
    max-width: 100%;
    height: auto;
}

/* ===== PAYMENT LOGOS ===== */
.payment-bar {
    background: #f8f9fc;
    padding: 30px 0;
    text-align: center;
}

.payment-bar img {
    max-width: 100%;
    height: auto;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0a1628;
    color: #c8d6e5;
    padding: 60px 0 0;
    font-size: 14px;
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00b4d8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #c8d6e5;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00b4d8;
}

.footer-col .contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col .contact-info i {
    width: 16px;
    color: #00b4d8;
}

.footer-col .payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.footer-col .payment-icons img {
    height: 35px;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #6c7a8d;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #0a1628, #1a2a4a);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    color: #b0b9c9;
    font-size: 16px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}

.contact-info-box h3 {
    color: #0a1628;
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-info-box .ci-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-box .ci-item .ci-icon {
    width: 45px;
    height: 45px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b4d8;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-box .ci-item .ci-text h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.contact-info-box .ci-item .ci-text p {
    font-size: 14px;
    color: #888;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}

.contact-form-box h3 {
    color: #0a1628;
    margin-bottom: 20px;
    font-size: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e6ef;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #00b4d8;
}

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

.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #00b4d8;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,180,216,0.4);
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: #0098b8;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav > ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .main-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }

    .main-nav > ul > li > a {
        padding: 12px 20px;
    }

    .top-bar .phones span {
        margin-right: 10px;
        font-size: 11px;
    }

    .section-title h2 {
        font-size: 26px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .domain-search .container {
        flex-direction: column;
        text-align: center;
    }

    .domain-search .ds-text {
        white-space: normal;
    }

    .domain-search .ds-form {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

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

    .top-bar .social {
        display: none;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
