
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a2b4a;
    background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f2b5e;
}
.logo img {
    height: 34px;
    width: auto;
    display: block;
    order: 2;
}
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: .9rem; color: #495057; display: none; }
.btn-header {
    padding: 10px 20px; border-radius: 10px;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff; font-weight: 600; font-size: .9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 102, 255, 0.3);
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 102, 255, 0.4);
}

/* Header flags + icons */
.header-flags { display: flex; align-items: center; gap: 6px; padding-right: 10px; border-right: 1px solid #e9ecef; }
.header-flags a { display: flex; border-radius: 3px; overflow: hidden; opacity: .75; transition: opacity .15s; }
.header-flags a:hover { opacity: 1; }
.header-flags img {
    width: 32px; height: 32px; object-fit: cover; display: block;
    transition: transform .6s ease;
}
.header-flags a:hover img {
    transform: rotate(360deg);
}

.header-icons { display: flex; align-items: center; gap: 8px; }
.header-icon-btn {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #f8f9fa; color: #1e66ff; transition: background .15s, transform .15s;
}
.header-icon-btn:hover { background: #eef0ff; transform: translateY(-1px); }
.header-icon-btn svg { width: 18px; height: 18px; }

/* Burger button - hidden by default (desktop) */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0f2b5e;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
    opacity: 0;
}
.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu - hidden by default */
.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #eee;
    transition: max-height .3s ease;
}
.mobile-menu.open {
    max-height: 560px;
}
.mobile-menu-flags {
    display: flex;
    flex-direction: column;
    padding: 14px 24px;
    gap: 4px;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-flags a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    font-size: .95rem;
    color: #1a2b4a;
    font-weight: 500;
}
.mobile-menu-flags img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 3px;
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 18px;
    gap: 2px;
}
.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    font-size: .95rem;
    color: #1a2b4a;
    font-weight: 600;
}
.mobile-menu-links a svg {
    width: 20px;
    height: 20px;
    color: #1e66ff;
    flex-shrink: 0;
}
.mobile-menu-links a.mobile-menu-cta {
    color: #1e66ff;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background-image: url('/htmlimages/bg1200x500.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional dark overlay for text readability over the photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,43,94,.55) 0%, rgba(15,43,94,.25) 50%, rgba(15,43,94,.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero content on top */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}

.hero-content .container {
    max-width: 960px;
}

.hero-content-inner {
    max-width: 560px;
}

@media (max-width: 820px) {
    .hero {
        min-height: 460px;
    }
    .hero-content-inner {
        max-width: 100%;
    }
}

.eyebrow {
    display: inline-block; font-size: .8rem; background: rgba(255, 255, 255, 0.18);
    padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
    border: 1px solid rgba(30, 102, 255, 0.4);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.eyebrow img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    vertical-align: -6px;
    margin-right: 3px;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 560px;
    margin: 0 0 28px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-primary {
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #fff, #f0f4ff);
    color: #0f2b5e;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}


.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .95rem;
    opacity: 0.95;
    margin-bottom: 24px;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.hero-badges span::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Comparison strip vs competitors */
.compare-strip {
    background: #1a1a2e;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font-size: .95rem;
    font-weight: 500;
}

.compare-strip strong {
    color: #ffc369;
    font-weight: 700;
}

/* Section common */
.section { padding: 60px 0; }
.section-tag {
    color: #1e66ff;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
    margin-bottom: 12px;
}

.section-tag img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: inline-block;
    vertical-align: -6px;
    margin-right: 4px;
}

.section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 14px;
    font-weight: 800;
    color: #0f2b5e;
}

.section-sub {
    text-align: center;
    color: #6c757d;
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1rem;
}

/* Steps guide */
.guide-section { background: linear-gradient(135deg, #f8fafe, #f0f6ff); }

.guide-list {
    display: grid;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.guide-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(15, 43, 94, 0.08);
    border-left: 4px solid #1e66ff;
    transition: all .3s ease;
}

.guide-item:hover {
    box-shadow: 0 6px 20px rgba(15, 43, 94, 0.12);
    transform: translateX(4px);
}

.guide-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(30, 102, 255, 0.3);
}

.guide-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #0f2b5e;
}

.guide-item p {
    color: #6c757d;
    font-size: .95rem;
}

.guide-cta {
    text-align: center;
    margin-top: 32px;
}

.btn-solid {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s ease;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(30, 102, 255, 0.3);
}

.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(30, 102, 255, 0.4);
}

/* Domain checker */
.domain-section { text-align: center; }

.domain-form {
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto 28px;
    border: 1px solid rgba(30, 102, 255, 0.15);
}

.domain-input-group {
    display: flex;
    border: 2px solid #e0e8f5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
    transition: all .3s ease;
}

.domain-input-group:focus-within {
    border-color: #1e66ff;
    box-shadow: 0 0 0 3px rgba(30, 102, 255, 0.1);
}

.domain-input-group input[type="text"] {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 1.05rem;
    outline: none;
    color: #1a2b4a;
}

.domain-input-group select {
    padding: 14px 12px;
    border: none;
    border-left: 2px solid #e0e8f5;
    background: #fff;
    font-size: 1rem;
    color: #1a2b4a;
    cursor: pointer;
}

.domain-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(30, 102, 255, 0.3);
}

.domain-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 102, 255, 0.4);
}

.domain-table-wrap {
    overflow-x: auto;
    max-width: 680px;
    margin: 0 auto;
}

table.domain-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}

table.domain-table th, table.domain-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e0e8f5;
    text-align: left;
}

table.domain-table th {
    color: #1e66ff;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
}

table.domain-table tbody tr:hover {
    background: #f8fafe;
}

/* Feature grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.feature-box {
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
    border-radius: 16px;
    padding: 24px 16px;
    border: 1px solid rgba(30, 102, 255, 0.1);
    transition: all .3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(30, 102, 255, 0.15);
    border-color: rgba(30, 102, 255, 0.3);
}

.feature-box .icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: inline-block;
}

.feature-box img.icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.feature-box h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #0f2b5e;
    font-weight: 700;
}

.feature-box p {
    font-size: .9rem;
    color: #6c757d;
}

/* Why us vs competitors */
.why-section {
    background: linear-gradient(135deg, #0f2b5e, #1a4d9e);
    color: #fff;
}

.why-section h2 { color: #fff; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 22px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 102, 255, 0.3);
    transition: all .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(30, 102, 255, 0.5);
}

.why-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-card img.icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    font-size: .95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.why-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    font-size: .7rem;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 28px;
}

.price-card {
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
    border-radius: 20px;
    padding: 32px 26px;
    border: 2px solid rgba(30, 102, 255, 0.15);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.price-card:hover {
    border-color: rgba(30, 102, 255, 0.4);
    box-shadow: 0 12px 32px rgba(30, 102, 255, 0.15);
}

.price-card.featured {
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(30, 102, 255, 0.35);
    border-color: rgba(30, 102, 255, 0.5);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 20px 48px rgba(30, 102, 255, 0.4);
}

.price-card .tag {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .8;
    margin-bottom: 12px;
    color: #1e66ff;
}

.price-card.featured .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 1;
    text-transform: none;
    letter-spacing: .02em;
    font-size: .82rem;
    font-weight: 800;
    color: #7a4a00;
    background: linear-gradient(135deg, #fff6d8 0%, #ffd76a 45%, #ffb84d 100%);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    box-shadow: 0 0 0 1px rgba(255,215,110,.6), 0 6px 16px rgba(255,183,77,.5), 0 0 22px rgba(255,215,110,.4);
    animation: tag-glow 2.4s ease-in-out infinite;
}

.price-card.featured .tag::before {
    content: "★";
    font-size: .9rem;
}

@keyframes tag-glow {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(255,215,110,.55), 0 6px 16px rgba(255,183,77,.45), 0 0 18px rgba(255,215,110,.35);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(255,215,110,.8), 0 6px 20px rgba(255,183,77,.65), 0 0 32px rgba(255,215,110,.6);
    }
}

@media (prefers-reduced-motion: reduce){
    .price-card.featured .tag{ animation: none; }
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 800;
    color: #0f2b5e;
}

.price-card.featured h3 {
    color: #fff;
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 12px 0 6px;
    color: #1e66ff;
}

.price-card.featured .price {
    color: #fff;
}

.price-card .price span {
    font-size: .95rem;
    font-weight: 500;
    opacity: 0.8;
}

.price-card .desc {
    font-size: .9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    min-height: 45px;
    color: #6c757d;
    line-height: 1.5;
}

.price-card.featured .desc {
    color: rgba(255, 255, 255, 0.95);
}

.price-card ul {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-card li {
    font-size: .9rem;
    padding: 8px 0;
    color: #1a2b4a;
}

.price-card.featured li {
    color: rgba(255, 255, 255, 0.95);
}

.price-card li::before {
    content: "✓ ";
    font-weight: 700;
    color: #1e66ff;
}

.price-card.featured li::before {
    color: #7cb9ff;
}

.price-card .btn-order {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(30, 102, 255, 0.3);
}

.price-card .btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 102, 255, 0.4);
}

.price-card.featured .btn-order {
    background: #fff;
    color: #1e66ff;
}

.price-card.featured .btn-order:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Technical details */
.tech-details {
    margin-bottom: 18px;
}

.tech-details summary {
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    color: #1e66ff;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-card.featured .tech-details summary {
    color: #7cb9ff;
}

.tech-details summary::-webkit-details-marker {
    display: none;
}

.tech-details summary::after {
    content: "▾";
    font-size: .7rem;
    transition: transform .15s;
}

.tech-details[open] summary::after {
    transform: rotate(180deg);
}

.tech-list {
    list-style: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(30, 102, 255, 0.2);
}

.price-card.featured .tech-list {
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.tech-list li {
    font-size: .8rem;
    padding: 4px 0;
    opacity: 0.75;
}

.tech-list li::before {
    content: "› ";
    font-weight: 700;
}

/* Price reassurance box under pricing grid */
.price-help-box {
    max-width: 620px; margin: 32px auto 0;
    background: linear-gradient(135deg, #eef0ff, #e6e1fb);
    border: 1.5px solid #cfd0f7;
    border-radius: 16px; padding: 20px 26px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: 0 4px 16px rgba(30,102,255,.08);
}
.price-help-box .price-help-icon {
    flex-shrink: 0;  border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.price-help-box p { margin: 0; font-size: .92rem; color: #2a2261; text-align: left; }
.price-help-box a { color: #1e66ff; font-weight: 700; text-decoration: underline; }
@media (max-width: 560px){
    .price-help-box { flex-direction: column; text-align: center; padding: 22px; }
    .price-help-box p { text-align: center; }
}

/* Testimonials */
.testimonials-wrap {
    margin-bottom: 44px;
}

/* Dots navigation */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8dce8;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
}

.testimonials-dots .dot.active {
    width: 26px;
    border-radius: 4px;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
}

.testimonials-dots .dot:hover {
    background: #b8c5e0;
}

.testimonials-dots .dot.active:hover {
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
}

/* Swipeable track */
.testimonials-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonials-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 2px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(30, 102, 255, 0.15);
    transition: all .3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(30, 102, 255, 0.12);
    border-color: rgba(30, 102, 255, 0.3);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: .9rem;
    color: #1a2b4a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
}

.testimonial-name {
    font-size: .9rem;
    font-weight: 700;
    color: #0f2b5e;
}

.testimonial-role {
    font-size: .8rem;
    color: #6c757d;
}

@media (max-width: 820px) {
    .testimonials-slide {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Trust bar */
.trust-section {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(30, 102, 255, 0.2);
    border-bottom: 1px solid rgba(30, 102, 255, 0.2);
    background: linear-gradient(135deg, #f8fafe, transparent);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item .num {
    font-size: 2rem;
    font-weight: 800;
    color: #1e66ff;
}

.trust-item .label {
    font-size: .9rem;
    color: #6c757d;
    margin-top: 4px;
}

.bank-note {
    margin-top: 24px;
    font-size: .85rem;
    color: #adb5bd;
}

/* FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    border: 1px solid rgba(30, 102, 255, 0.1);
    transition: all .3s ease;
}

.faq-item:hover {
    border-color: rgba(30, 102, 255, 0.3);
    box-shadow: 0 4px 12px rgba(30, 102, 255, 0.1);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f2b5e;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: #1e66ff;
    transition: transform .3s ease;
}

.faq-item[open] summary::after {
    content: "–";
    transform: rotate(180deg);
}

.faq-item p {
    color: #6c757d;
    font-size: .95rem;
    margin-top: 12px;
    line-height: 1.6;
}

/* Contact / order form */
.contact-section {
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #0066aa);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20b860);
}

.divider {
    color: #adb5bd;
    font-size: .9rem;
    margin: 18px 0 28px;
}

.form-box {
    background: linear-gradient(135deg, #f8fafe, #f0f6ff);
    border-radius: 20px;
    padding: 36px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(30, 102, 255, 0.15);
}

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

.form-group label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a2b4a;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e8f5;
    border-radius: 10px;
    font-size: .95rem;
    background: #fff;
    color: #1a2b4a;
    transition: all .3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #1e66ff;
    box-shadow: 0 0 0 3px rgba(30, 102, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(135deg, #1e66ff, #0f45c4);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(30, 102, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 102, 255, 0.4);
}

.form-note {
    text-align: center;
    font-size: .85rem;
    color: #6c757d;
    margin-top: 14px;
}

.form-success {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #25d366;
    padding: 18px;
    display: none;
}

/* Guarantee footer strip */
.guarantee-strip {
    background: linear-gradient(135deg, #f0f6ff, #f0f6ff);
    border-top: 1px solid #d5e3fd;
    border-bottom: 1px solid #d5e3fd;
    padding: 36px 0;
    text-align: center;
}

.guarantee-strip .icon {
    font-size: 2rem;
}

.guarantee-strip h3 {
    font-size: 1.15rem;
    margin: 8px 0 6px;
    color: #0f2b5e;
    font-weight: 700;
}

.guarantee-strip p {
    color: #6c757d;
    font-size: .95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer-menu { margin-bottom: 24px; }

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(124, 185, 255, 0.2);
    margin-bottom: 24px;
}

.footer-link {
    color: #7cb9ff;
    font-weight: 500;
    transition: all .3s ease;
    text-decoration: none;
    font-size: .9rem;
}

.footer-link:hover { color: #fff; }

@media (max-width: 820px) {
    .footer-nav { gap: 16px; }
}

@media (max-width: 560px) {
    .footer-nav { gap: 10px; font-size: .8rem; }
    .footer-link { font-size: .8rem; }
}


.footer {
    text-align: center;
    padding: 40px 0;
    color: #b8c5d6;
    font-size: .85rem;
    background: linear-gradient(135deg, #0f2b5e, #1a4d9e);
}

.footer a {
    color: #7cb9ff;
    transition: color .3s ease;
}

.footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 820px) {
    .features-grid, .why-grid, .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        gap: 30px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 560px) {
    .features-grid, .why-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .domain-input-group {
        flex-direction: column;
    }

    .domain-input-group select {
        border-left: none;
        border-top: 2px solid #e0e8f5;
    }

    .header-phone {
        display: none;
    }

    .header-right {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 32px;
        background-position: 69.5% center;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: .95rem;
        margin-bottom: 22px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
        padding: 15px 24px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 4px;
    }

    .hero-badges span {
        font-size: .88rem;
    }

    .contact-buttons {
        gap: 10px;
    }

    .btn-social {
        padding: 12px 20px;
        font-size: .85rem;
    }

    .form-box {
        padding: 24px;
    }

    .trust-grid {
        gap: 20px;
    }
}

