/* UniqoHost — light theme inspired by FastComet */
:root {
    --uh-bg: #ffffff;
    --uh-bg-soft: #f5f7fb;
    --uh-bg-alt: #eef1f8;
    --uh-panel: #ffffff;
    --uh-panel-hover: #f5f7fb;
    --uh-line: #e2e6f0;
    --uh-line-soft: #edf0f7;
    --uh-text: #1e2a3a;
    --uh-text-soft: #4a5568;
    --uh-muted: #8494a7;
    --uh-brand: #4cb8ec;
    --uh-brand-dark: #2da0d4;
    --uh-brand-soft: #edf8ff;
    --uh-brand-glow: rgba(76, 184, 236, 0.3);
    --uh-brand-2: #2ec4a0;
    --uh-brand-2-dark: #22a888;
    --uh-accent: #f5a623;
    --uh-danger: #e53e3e;
    --uh-success: #38a169;
    --uh-warn: #dd6b20;
    --uh-radius: 10px;
    --uh-radius-lg: 16px;
    --uh-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --uh-shadow: 0 4px 16px rgba(0,0,0,0.08);
    --uh-shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
    --uh-shadow-brand: 0 8px 28px -6px var(--uh-brand-glow);
    --uh-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--uh-font);
    background: var(--uh-bg);
    color: var(--uh-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { color: var(--uh-brand-dark); text-decoration: none; }
a:hover { color: var(--uh-brand); text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--uh-text); }
p { color: var(--uh-text-soft); }

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

/* -------- Announcement bar -------- */
.announce {
    background: var(--uh-brand);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
}
.announce a { color: #fff; text-decoration: underline; }

/* -------- Header -------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--uh-line);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--uh-text);
    text-decoration: none;
}
.brand:hover { color: var(--uh-brand); text-decoration: none; }
.brand-dot {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--uh-brand), var(--uh-brand-2));
    box-shadow: 0 4px 12px rgba(76,184,236,0.35);
    position: relative;
}
.brand-dot::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 5px;
    background: #fff;
}
.nav { display: flex; gap: 28px; flex: 1; }
.nav a {
    color: var(--uh-text-soft);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--uh-brand);
    border-radius: 2px;
    transition: width .2s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--uh-brand-dark); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 11px 24px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .15s ease;
    text-decoration: none;
    font-family: inherit;
    line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--uh-brand);
    color: #fff;
    border-color: var(--uh-brand);
}
.btn-primary:hover { background: var(--uh-brand-dark); border-color: var(--uh-brand-dark); color: #fff; }
.btn-accent {
    background: var(--uh-brand-2);
    color: #fff;
    border-color: var(--uh-brand-2);
}
.btn-accent:hover { background: var(--uh-brand-2-dark); border-color: var(--uh-brand-2-dark); color: #fff; }
.btn-ghost {
    background: #fff;
    color: var(--uh-text);
    border-color: var(--uh-line);
}
.btn-ghost:hover { background: var(--uh-bg-soft); border-color: #cdd3e0; color: var(--uh-text); }
.btn-outline {
    background: transparent;
    color: var(--uh-brand-dark);
    border-color: var(--uh-brand);
}
.btn-outline:hover { background: var(--uh-brand-soft); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 6px; }

/* -------- Hero (FastComet-style light blue gradient) -------- */
.hero {
    padding: 80px 0 70px;
    background: linear-gradient(145deg, #4cb8ec 0%, #3aa0d4 40%, #2b8cbf 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(closest-side, rgba(255,255,255,0.12), transparent);
    border-radius: 50%;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -60px;
    width: 350px; height: 350px;
    background: radial-gradient(closest-side, rgba(255,255,255,0.08), transparent);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    margin: 0 0 22px;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #fff;
}
.hero h1 .accent {
    color: #b8f0ff;
}
.hero p.lead {
    color: rgba(255,255,255,0.85);
    font-size: 19px;
    margin: 0 0 32px;
    max-width: 560px;
    line-height: 1.6;
}
.hero .btn-primary { background: #fff; color: var(--uh-brand-dark); border-color: #fff; font-weight: 700; }
.hero .btn-primary:hover { background: #f0f0f0; color: var(--uh-brand-dark); border-color: #f0f0f0; }
.hero .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
    display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap;
    color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
}
.hero-badges span::before {
    content: "✓"; color: #b8f0ff; margin-right: 8px; font-weight: 800;
}
.hero-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--uh-radius-lg);
    padding: 26px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.hero-card h3 {
    margin: 0 0 14px; font-size: 11px; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px;
}
.stat .v { font-size: 24px; font-weight: 800; color: #fff; }
.stat .l { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-card-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-card-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.hero-card-plan { display: flex; justify-content: space-between; align-items: baseline; }
.hero-card-plan .name { font-weight: 700; font-size: 15px; color: #fff; }
.hero-card-plan .price { color: #b8f0ff; font-weight: 700; }
.hero-card-plan .price span { color: rgba(255,255,255,0.5); font-weight: 500; }

/* -------- Sections -------- */
section { padding: 80px 0; }
section.bg-soft, .bg-soft { background: var(--uh-bg-soft); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: transparent;
    color: var(--uh-brand-dark);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.section-header h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 42px);
    letter-spacing: -0.02em;
    font-weight: 800;
}
.section-header p {
    color: var(--uh-text-soft);
    max-width: 640px;
    margin: 14px auto 0;
    font-size: 17px;
}

/* -------- Trust strip -------- */
.trust-strip {
    background: var(--uh-bg-soft);
    border-top: 1px solid var(--uh-line);
    border-bottom: 1px solid var(--uh-line);
    padding: 28px 0;
}
.trust-items { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-item .v { font-weight: 800; font-size: 22px; color: var(--uh-text); }
.trust-item .l { font-size: 11px; color: var(--uh-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

/* -------- Plan cards -------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.plan-card {
    background: #fff;
    border: 2px solid var(--uh-line);
    border-radius: var(--uh-radius-lg);
    padding: 30px 26px;
    position: relative;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--uh-brand);
    box-shadow: var(--uh-shadow-brand);
}
.plan-card.featured {
    border-color: var(--uh-brand);
    box-shadow: var(--uh-shadow-brand);
}
.plan-card .badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--uh-brand); color: #fff;
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; letter-spacing: .06em;
    white-space: nowrap;
}
.plan-card h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; min-height: 58px; }
.plan-card .tagline { color: var(--uh-muted); font-size: 14px; margin-bottom: 20px; min-height: 40px; }
.plan-price { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 2px solid var(--uh-line-soft); }
.plan-price .amount { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: var(--uh-text); }
.plan-price .period { color: var(--uh-muted); font-size: 14px; margin-left: 4px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-features li {
    padding: 8px 0; font-size: 14px; color: var(--uh-text-soft);
    display: flex; gap: 10px; align-items: flex-start;
}
.plan-features li::before {
    content: "";
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--uh-brand-2); flex-shrink: 0; margin-top: 2px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* When the grid has exactly 5 cards, fit them all on one row with tighter sizing */
.plan-grid:has(> .plan-card:nth-child(5):last-child) {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.plan-grid:has(> .plan-card:nth-child(5):last-child) .plan-card { padding: 26px 20px; }
.plan-grid:has(> .plan-card:nth-child(5):last-child) .plan-card h3 { font-size: 20px; min-height: 52px; }
.plan-grid:has(> .plan-card:nth-child(5):last-child) .plan-price .amount { font-size: 30px; }
.plan-grid:has(> .plan-card:nth-child(5):last-child) .plan-features li { font-size: 13px; padding: 6px 0; }
@media (max-width: 1080px) {
    .plan-grid:has(> .plan-card:nth-child(5):last-child) { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
    .plan-grid:has(> .plan-card:nth-child(5):last-child) { grid-template-columns: 1fr; }
}

/* -------- Feature grid -------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature {
    background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius-lg);
    padding: 28px; transition: all .18s; box-shadow: var(--uh-shadow-sm);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--uh-shadow); }
.feature .icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--uh-brand-soft); display: flex; align-items: center;
    justify-content: center; margin-bottom: 16px;
}
.feature .icon svg {
    width: 26px; height: 26px; stroke: var(--uh-brand); fill: none;
    stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.feature p { margin: 0; color: var(--uh-muted); font-size: 14px; line-height: 1.65; }

/* -------- How it works -------- */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .how-steps { grid-template-columns: 1fr; } }
.how-step {
    background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius-lg);
    padding: 30px 26px 26px; box-shadow: var(--uh-shadow-sm); transition: all .18s;
}
.how-step:hover { transform: translateY(-3px); box-shadow: var(--uh-shadow); }
.how-step .num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--uh-brand); color: #fff;
    font-weight: 800; font-size: 18px; margin-bottom: 16px;
}
.how-step h3 { margin: 0 0 10px; font-size: 19px; font-weight: 800; }
.how-step p { margin: 0; color: var(--uh-muted); font-size: 14px; line-height: 1.7; }

/* -------- Testimonials -------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial-card {
    background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius-lg);
    padding: 26px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--uh-shadow-sm);
}
.testimonial-card .stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.testimonial-card p { margin: 0; color: var(--uh-text-soft); font-size: 15px; line-height: 1.65; font-style: italic; }
.testimonial-author {
    display: flex; align-items: center; gap: 12px; margin-top: auto;
    padding-top: 14px; border-top: 1px solid var(--uh-line-soft);
}
.testimonial-author .avatar {
    width: 42px; height: 42px; border-radius: 50%; color: #fff;
    font-weight: 800; font-size: 14px; display: inline-flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author .name { font-weight: 700; color: var(--uh-text); font-size: 14px; }
.testimonial-author .role { color: var(--uh-muted); font-size: 12px; }

/* -------- Forms -------- */
.form-card {
    background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius-lg);
    padding: 40px; max-width: 520px; margin: 0 auto; box-shadow: var(--uh-shadow);
}
.form-card h1 { margin: 0 0 8px; font-size: 28px; font-weight: 800; }
.form-card p.sub { color: var(--uh-muted); margin: 0 0 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: var(--uh-text); margin-bottom: 6px; font-weight: 600; }
.form-control {
    width: 100%; background: #fff; border: 1.5px solid var(--uh-line);
    color: var(--uh-text); border-radius: 8px; padding: 12px 15px;
    font-size: 15px; font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { outline: none; border-color: var(--uh-brand); box-shadow: 0 0 0 3px rgba(76,184,236,0.15); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-help { font-size: 12px; color: var(--uh-muted); margin-top: 5px; }
.form-error { color: var(--uh-danger); font-size: 13px; margin-top: 6px; font-weight: 500; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--uh-text-soft); line-height: 1.55; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--uh-brand); flex-shrink: 0; margin-top: 2px; }

/* -------- Alerts -------- */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; border: 1px solid transparent; font-weight: 500; }
.alert-success { background: #e6f9f0; color: #1a7a46; border-color: #b8ecd0; }
.alert-error   { background: #fde8e8; color: #9b1c1c; border-color: #f5c2c2; }
.alert-info    { background: var(--uh-brand-soft); color: #1a6fa0; border-color: #bce3f8; }
.alert-warn    { background: #fef3e2; color: #8a4506; border-color: #f7d9ad; }

/* -------- Tables -------- */
.table-wrap { background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius); overflow: hidden; }
table.uh-table { width: 100%; border-collapse: collapse; }
table.uh-table th, table.uh-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--uh-line-soft); }
table.uh-table th { background: var(--uh-bg-soft); color: var(--uh-muted); text-transform: uppercase; font-size: 11px; letter-spacing: .08em; font-weight: 700; }
table.uh-table tr:last-child td { border-bottom: none; }
table.uh-table tr:hover td { background: var(--uh-bg-soft); }
.pill { display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.pill-pending   { background: #fef3e2; color: #8a4506; }
.pill-paid      { background: var(--uh-brand-soft); color: var(--uh-brand-dark); }
.pill-delivered { background: #e6f9f0; color: #1a7a46; }
.pill-failed    { background: #fde8e8; color: #9b1c1c; }
.pill-cancelled { background: #eef0f7; color: var(--uh-muted); }
.pill-refunded  { background: #eef0f7; color: var(--uh-muted); }

/* -------- Footer -------- */
.site-footer {
    border-top: 1px solid var(--uh-line); padding: 56px 0 28px; margin-top: 40px;
    color: var(--uh-text-soft); font-size: 14px; background: var(--uh-bg-soft);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: var(--uh-text); font-size: 13px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--uh-muted); text-decoration: none; }
.footer-col a:hover { color: var(--uh-brand-dark); text-decoration: underline; }
.footer-brand p { margin: 12px 0; color: var(--uh-muted); font-size: 13px; line-height: 1.6; max-width: 300px; }
.footer-legal {
    font-size: 12px; color: var(--uh-muted);
    background: #fff; border: 1px solid var(--uh-line); border-radius: 8px;
    padding: 14px 18px; margin-bottom: 20px; line-height: 1.6;
}
.footer-legal strong { color: var(--uh-text); }
.footer-bottom {
    border-top: 1px solid var(--uh-line); padding-top: 18px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: var(--uh-muted);
}
.footer-bottom .payments { display: flex; gap: 8px; align-items: center; }
.payment-badge {
    background: #fff; border: 1px solid var(--uh-line); border-radius: 5px;
    padding: 4px 10px; font-size: 11px; font-weight: 700; color: var(--uh-text-soft);
    display: inline-flex; align-items: center; height: 28px;
}
.payment-badge svg { height: 14px; width: auto; }

/* -------- Domain search -------- */
.domain-search {
    background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius-lg);
    padding: 30px; box-shadow: var(--uh-shadow);
}
.domain-form { display: flex; gap: 10px; }
.domain-form input {
    flex: 1; background: #fff; border: 1.5px solid var(--uh-line); color: var(--uh-text);
    border-radius: 8px; padding: 14px 18px; font-size: 16px; font-family: inherit;
}
.domain-form input:focus { outline: none; border-color: var(--uh-brand); box-shadow: 0 0 0 3px rgba(76,184,236,0.15); }
.tld-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(95px, 1fr)); gap: 10px; margin-top: 22px; }
.tld-item { background: var(--uh-bg-soft); border: 1px solid var(--uh-line-soft); border-radius: 8px; padding: 12px; text-align: center; }
.tld-item .tld { color: var(--uh-brand-dark); font-weight: 700; font-size: 15px; }
.tld-item .price { color: var(--uh-muted); margin-top: 2px; font-size: 12px; }

/* -------- Wizard -------- */
.wizard { max-width: 860px; margin: 0 auto; }
.wizard-steps { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.wizard-step { flex: 1; min-width: 120px; padding: 14px 16px; background: #fff; border: 1px solid var(--uh-line); border-radius: 8px; font-size: 13px; color: var(--uh-muted); font-weight: 600; }
.wizard-step .num { display: block; color: var(--uh-brand); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.wizard-step.active { border-color: var(--uh-brand); background: var(--uh-brand-soft); color: var(--uh-brand-dark); }
.wizard-card { background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius-lg); padding: 36px; box-shadow: var(--uh-shadow); }
.wizard-card h3 { font-weight: 800; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 16px 0 28px; }
.option-card { border: 2px solid var(--uh-line); border-radius: 10px; padding: 18px; cursor: pointer; transition: all .15s; background: #fff; display: block; }
.option-card:hover { border-color: var(--uh-brand); }
.option-card input { display: none; }
.option-card.selected, .option-card:has(input:checked) { border-color: var(--uh-brand); background: var(--uh-brand-soft); }
.option-card .name { font-weight: 700; font-size: 15px; color: var(--uh-text); }
.option-card .sub { color: var(--uh-muted); font-size: 12px; margin-top: 3px; }
.option-card .price { color: var(--uh-brand-dark); font-size: 13px; margin-top: 8px; font-weight: 700; }
.summary-box { background: var(--uh-bg-soft); border: 1px solid var(--uh-line); border-radius: 10px; padding: 22px; margin-top: 24px; }
.summary-box .row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--uh-text-soft); }
.summary-box .row.total { border-top: 1px solid var(--uh-line); margin-top: 12px; padding-top: 16px; font-size: 20px; font-weight: 800; color: var(--uh-text); }

/* -------- Dashboard -------- */
.dash-grid { display: grid; grid-template-columns: 260px 1fr; gap: 24px; margin: 32px 0; }
@media (max-width: 800px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-sidebar { background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius); padding: 22px; height: fit-content; }
.dash-sidebar h4 { margin: 0 0 14px; font-size: 11px; color: var(--uh-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.dash-sidebar a { display: block; padding: 10px 14px; color: var(--uh-text-soft); border-radius: 6px; margin-bottom: 4px; font-size: 14px; font-weight: 500; text-decoration: none; }
.dash-sidebar a:hover { background: var(--uh-bg-soft); color: var(--uh-text); text-decoration: none; }
.dash-sidebar a.active { background: var(--uh-brand-soft); color: var(--uh-brand-dark); }
.dash-main { background: #fff; border: 1px solid var(--uh-line); border-radius: var(--uh-radius); padding: 28px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 30px; }
.stat-cards .card { background: var(--uh-bg-soft); border: 1px solid var(--uh-line-soft); border-radius: 10px; padding: 20px; }
.stat-cards .card .label { color: var(--uh-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.stat-cards .card .value { font-size: 28px; font-weight: 800; margin-top: 6px; color: var(--uh-text); }
.stat-cards .card.success .value { color: var(--uh-success); }
.stat-cards .card.warn .value { color: var(--uh-warn); }

/* -------- Legal prose -------- */
.legal-prose { max-width: 780px; margin: 0 auto; color: var(--uh-text-soft); font-size: 16px; line-height: 1.75; }
.legal-prose h2 { font-size: 28px; margin: 0 0 8px; }
.legal-prose h3 { margin-top: 32px; font-size: 19px; font-weight: 700; }
.legal-prose h4 { margin-top: 22px; font-size: 16px; }
.legal-prose p { margin: 10px 0; }
.legal-prose ul { padding-left: 22px; }
.legal-prose ul li { margin-bottom: 6px; }
.legal-prose .updated { display: inline-block; padding: 4px 12px; background: var(--uh-bg-soft); border: 1px solid var(--uh-line); border-radius: 999px; font-size: 12px; color: var(--uh-muted); font-weight: 600; margin-bottom: 14px; }
.legal-prose .callout { background: var(--uh-brand-soft); border-left: 4px solid var(--uh-brand); border-radius: 8px; padding: 16px 20px; margin: 20px 0; font-size: 14px; color: var(--uh-text); }

/* -------- Cookie banner -------- */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--uh-line); border-radius: 12px; padding: 18px 22px; box-shadow: var(--uh-shadow-lg); z-index: 100; display: none; align-items: center; justify-content: space-between; gap: 20px; font-size: 14px; }
.cookie-banner.visible { display: flex; flex-wrap: wrap; }
.cookie-banner p { margin: 0; color: var(--uh-text-soft); flex: 1; min-width: 240px; }
.cookie-banner .actions { display: flex; gap: 8px; }

/* -------- Audience grid -------- */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
    display: flex; gap: 20px; align-items: flex-start;
    background: #fff; border: 1px solid var(--uh-line);
    border-left: 4px solid var(--uh-brand);
    border-radius: 0 var(--uh-radius) var(--uh-radius) 0;
    padding: 22px; transition: all .18s; box-shadow: var(--uh-shadow-sm);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--uh-shadow); }
.audience-card:nth-child(2) { border-left-color: var(--uh-brand-2); }
.audience-card:nth-child(3) { border-left-color: var(--uh-accent); }
.audience-card:nth-child(4) { border-left-color: #6366f1; }
.audience-card:nth-child(5) { border-left-color: #ec4899; }
.audience-card:nth-child(6) { border-left-color: #8b5cf6; }
.audience-card .aud-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--uh-brand-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.audience-card .aud-icon svg { width: 22px; height: 22px; stroke: var(--uh-brand); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.audience-card:nth-child(2) .aud-icon { background: rgba(46,196,160,0.1); }
.audience-card:nth-child(2) .aud-icon svg { stroke: var(--uh-brand-2); }
.audience-card:nth-child(3) .aud-icon { background: rgba(245,166,35,0.1); }
.audience-card:nth-child(3) .aud-icon svg { stroke: var(--uh-accent); }
.audience-card:nth-child(4) .aud-icon { background: rgba(99,102,241,0.1); }
.audience-card:nth-child(4) .aud-icon svg { stroke: #6366f1; }
.audience-card:nth-child(5) .aud-icon { background: rgba(236,72,153,0.1); }
.audience-card:nth-child(5) .aud-icon svg { stroke: #ec4899; }
.audience-card:nth-child(6) .aud-icon { background: rgba(139,92,246,0.1); }
.audience-card:nth-child(6) .aud-icon svg { stroke: #8b5cf6; }
.audience-card h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.audience-card p { margin: 0; color: var(--uh-muted); font-size: 14px; line-height: 1.6; }

/* -------- FAQ accordion -------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--uh-line); border-radius: 10px; padding: 22px 26px; margin-bottom: 12px; }
.faq-item[open] { border-color: var(--uh-brand); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; flex: 1; font-size: 17px; }
.faq-item .faq-chevron { flex-shrink: 0; width: 20px; height: 20px; transition: transform .25s ease; }
.faq-item .faq-chevron svg { width: 20px; height: 20px; stroke: var(--uh-muted); fill: none; stroke-width: 2; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] .faq-chevron svg { stroke: var(--uh-brand); }
.faq-item .faq-answer { padding-top: 14px; color: var(--uh-text-soft); font-size: 15px; line-height: 1.65; }

/* -------- Scroll reveal -------- */
.reveal { opacity: 0.92; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-children > * { opacity: 0.92; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.reveal-children > *.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-children > * { opacity: 1; transform: none; transition: none; } }

/* -------- CTA final -------- */
.cta-final {
    background: linear-gradient(145deg, #4cb8ec 0%, #3aa0d4 40%, #2b8cbf 100%);
    text-align: center; padding: 80px 0; color: #fff;
}
.cta-final h2 { font-size: clamp(28px, 3.5vw, 38px); margin: 0 0 14px; font-weight: 800; color: #fff; }
.cta-final p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-final .btn-primary { background: #fff; color: var(--uh-brand-dark); border-color: #fff; }
.cta-final .btn-primary:hover { background: #f0f0f0; border-color: #f0f0f0; color: var(--uh-brand-dark); }

/* -------- Mobile nav -------- */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; z-index: 60; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--uh-text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 55; backdrop-filter: blur(4px); }
.nav-overlay.open { display: block; }
.nav-drawer { position: fixed; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100vh; background: #fff; z-index: 58; transform: translateX(100%); transition: transform .3s cubic-bezier(.16,1,.3,1); padding: 80px 28px 32px; overflow-y: auto; box-shadow: -8px 0 30px rgba(0,0,0,0.1); }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { display: block; padding: 14px 0; color: var(--uh-text); font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--uh-line-soft); text-decoration: none; }
.nav-drawer a:hover { color: var(--uh-brand); }
.nav-drawer .drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
@media (max-width: 900px) { .nav { display: none; } .nav-actions { display: none; } .nav-toggle { display: flex; } }

/* -------- Billing toggle -------- */
.billing-toggle { display: inline-flex; background: var(--uh-bg-soft); border: 1px solid var(--uh-line); border-radius: 10px; padding: 4px; margin-top: 24px; gap: 4px; flex-wrap: wrap; }
.billing-opt { background: transparent; border: none; padding: 10px 18px; border-radius: 6px; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--uh-muted); transition: all .15s; display: flex; align-items: center; gap: 6px; }
.billing-opt:hover { color: var(--uh-text); }
.billing-opt.active { background: #fff; color: var(--uh-brand-dark); box-shadow: var(--uh-shadow-sm); }
.billing-save { background: var(--uh-brand-2); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }

/* -------- Utilities -------- */
.pt-0 { padding-top: 0 !important; }
.footer-label { color: var(--uh-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.footer-label-gap { margin: 10px 0 4px; }

/* ============================================================
   HOMEPAGE — FastComet-style sections
   ============================================================ */

/* -------- Hero (domain search focus) -------- */
.hero { position: relative; overflow: hidden; }
.hero-content { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-content h1 { color: #fff; margin-bottom: 16px; }
.hero-content .lead { color: rgba(255,255,255,0.85); margin: 0 auto 32px; text-align: center; }
.hero-clouds { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cloud { position: absolute; }
.cloud-1 { bottom: -10px; left: -40px; width: 220px; }
.cloud-2 { top: 20px; right: -30px; width: 180px; }

.domain-search-hero { max-width: 640px; margin: 0 auto; }
.domain-form-hero { display: flex; gap: 0; }
.domain-form-hero input {
    flex: 1; background: #fff; border: none; border-radius: 8px 0 0 8px;
    padding: 16px 20px; font-size: 16px; font-family: inherit; color: var(--uh-text);
}
.domain-form-hero input:focus { outline: none; }
.domain-form-hero .btn { border-radius: 0 8px 8px 0; padding: 16px 28px; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.tld-strip { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.tld-tag { display: flex; gap: 6px; align-items: baseline; color: rgba(255,255,255,0.9); font-size: 13px; }
.tld-name { font-weight: 700; }
.tld-price { opacity: 0.7; font-size: 12px; }

/* -------- Plans grid (centered cards) -------- */
.section-plans { padding: 80px 0; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.plan-illustration { display: flex; justify-content: center; margin-bottom: 20px; }
.plan-illustration svg { width: 100px; height: 100px; color: var(--uh-brand); }
.plan-card { text-align: center; padding: 36px 28px; }
.plan-card h3 { font-size: 22px; margin: 0 0 8px; }
.plan-card .plan-tagline { color: var(--uh-muted); font-size: 14px; margin-bottom: 16px; min-height: 40px; }
.btn-learn-more {
    display: inline-block; padding: 12px 36px; border-radius: 6px; font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
    background: var(--uh-brand); color: #fff; border: 2px solid var(--uh-brand);
    transition: all .15s;
}
.btn-learn-more:hover { background: var(--uh-brand-dark); border-color: var(--uh-brand-dark); color: #fff; text-decoration: none; }

/* -------- Features (2-col, no borders, icon left) -------- */
.section-features { padding: 80px 0; background: #fff; }
.features-list { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px 60px; }
@media (max-width: 760px) { .features-list { grid-template-columns: 1fr; gap: 36px; } }
.feature-row { display: flex; gap: 22px; align-items: flex-start; }
.feature-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--uh-brand-soft); border: 2px solid var(--uh-brand);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--uh-brand); fill: none; }
.feature-text h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.feature-text p { margin: 0 0 10px; color: var(--uh-muted); font-size: 14px; line-height: 1.65; }
.feature-link { color: var(--uh-brand-dark); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.feature-link:hover { text-decoration: underline; }
.feature-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* -------- Partner logos -------- */
.section-partners { padding: 50px 0; border-top: 1px solid var(--uh-line); border-bottom: 1px solid var(--uh-line); }
.partner-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; margin-bottom: 28px; }
.partner-logo { font-size: 18px; font-weight: 800; color: #aab0c0; letter-spacing: .02em; opacity: 0.7; }
.partner-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-yellow {
    display: inline-block; padding: 14px 32px; border-radius: 6px; font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: .08em; text-decoration: none;
    background: #f5c518; color: #1e2a3a; border: 2px solid #f5c518; transition: all .15s;
}
.btn-yellow:hover { background: #e6b800; border-color: #e6b800; color: #1e2a3a; text-decoration: none; }

/* -------- Transfer split panel -------- */
.section-transfer { padding: 80px 0; background: var(--uh-bg-soft); }
.transfer-panels { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--uh-radius-lg); overflow: hidden; box-shadow: var(--uh-shadow); }
@media (max-width: 760px) { .transfer-panels { grid-template-columns: 1fr; } }
.transfer-panel { padding: 40px 36px; }
.panel-new { background: #fff; }
.panel-migrate { background: var(--uh-brand); color: #fff; }
.transfer-panel h3 { font-size: 18px; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; margin: 0 0 24px; display: flex; align-items: center; gap: 12px; }
.transfer-panel h3 svg { width: 36px; height: 36px; padding: 7px; border-radius: 8px; }
.panel-new h3 svg { background: var(--uh-brand-soft); stroke: var(--uh-brand); fill: none; }
.panel-migrate h3 svg { background: rgba(255,255,255,0.2); stroke: #fff; fill: none; }
.panel-migrate h3 { color: #fff; }
.transfer-panel-inner ul { list-style: none; padding: 0; margin: 0 0 24px; }
.transfer-panel-inner li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.panel-migrate .transfer-panel-inner li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.transfer-panel-inner li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.panel-new .transfer-panel-inner li svg { stroke: var(--uh-brand-2); fill: none; }
.panel-migrate .transfer-panel-inner li svg { stroke: #fff; fill: none; }
.panel-migrate .btn-yellow { color: #1e2a3a; }

/* -------- Datacenters -------- */
.section-datacenters { padding: 80px 0; background: #0d1b2e; }
.section-datacenters .section-header .eyebrow { color: var(--uh-brand); }
.section-datacenters h2 { color: #fff; }
.stats-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--uh-radius); overflow: hidden; margin-bottom: 40px; }
@media (max-width: 760px) { .stats-row { grid-template-columns: repeat(3, 1fr); } }
.stat-box { text-align: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.stat-box:last-child { border-right: none; }
.stat-value { font-size: 28px; font-weight: 800; color: #fff; display: block; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-top: 4px; display: block; }
.datacenter-map { margin-top: 8px; }
.map-wrapper { position: relative; border-radius: 14px; overflow: hidden; max-width: 960px; margin: 0 auto; background: #0d1b2e; line-height: 0; }
.map-bg-img { width: 100%; height: auto; display: block; filter: invert(1) saturate(0) opacity(0.18); }
.dc-dot-layer { position: absolute; inset: 0; }
.dc-dot { position: absolute; display: block; width: 10px; height: 10px; background: #4cb8ec; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 6px rgba(76,184,236,0.8); }
.dc-dot::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid #4cb8ec; animation: dcRing 2.4s ease-out infinite; opacity: 0; }
@keyframes dcRing { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3.2); opacity: 0; } }

/* -------- Testimonials carousel -------- */
.section-testimonials { padding: 80px 0; background: var(--uh-bg-soft); }
.testimonials-carousel { max-width: 900px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; grid-template-columns: 1fr 1.2fr; gap: 0; border-radius: var(--uh-radius-lg); overflow: hidden; box-shadow: var(--uh-shadow); min-height: 320px; }
.testimonial-slide.active { display: grid; }
@media (max-width: 760px) { .testimonial-slide { grid-template-columns: 1fr; } }
.testimonial-photo {
    background: var(--uh-bg-alt); display: flex; align-items: center; justify-content: center; padding: 40px;
}
.testimonial-avatar {
    width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
    border: 4px solid #fff; box-shadow: 0 10px 30px rgba(10,25,55,0.15);
    display: block;
}
.testimonial-quote { background: var(--uh-brand); color: #fff; padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.quote-mark { opacity: 0.3; margin-bottom: 12px; }
.quote-mark svg { width: 32px; height: 32px; fill: #fff; }
.testimonial-quote blockquote { margin: 0; font-size: 18px; font-style: italic; line-height: 1.6; font-weight: 500; }
.testimonial-author-name { font-weight: 700; margin-top: 20px; font-style: normal; font-size: 15px; }
.testimonial-author-role { opacity: 0.7; font-size: 13px; font-style: normal; }
.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; }
.testimonial-arrow {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--uh-line);
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .15s; font-size: 0;
}
.testimonial-arrow:hover { border-color: var(--uh-brand); }
.testimonial-arrow svg { width: 16px; height: 16px; stroke: var(--uh-text-soft); fill: none; stroke-width: 2; }
.testimonial-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--uh-line); cursor: pointer; transition: background .2s; }
.dot.active { background: var(--uh-brand); }

/* -------- Awards strip -------- */
.section-awards { padding: 60px 0; }
.awards-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.award-badge { text-align: center; }
.award-badge svg { width: 80px; height: 80px; margin-bottom: 10px; }
.award-badge strong { display: block; font-size: 14px; color: var(--uh-text); }
.award-badge span { font-size: 12px; color: var(--uh-muted); }

/* -------- FAQ on homepage -------- */
.section-faq { padding: 80px 0; }

/* -------- CTA final (FastComet-style) -------- */
.cta-final .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light {
    display: inline-block; padding: 14px 28px; border-radius: 6px; font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); transition: all .15s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; text-decoration: none; }
