/* hosts-center.com — panel styling v2 */
/* Theme contract: every color lives here. A theme file only overrides
   these variables — never selectors. See public/assets/themes/. */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-soft: #eff6ff;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --ok: #16a34a;
    --ok-bg: #dcfce7;
    --ok-border: #bbf7d0;
    --warn: #d97706;
    --warn-bg: #fef3c7;
    --warn-border: #fde68a;
    --danger: #dc2626;
    --danger-bg: #fee2e2;
    --danger-border: #fecaca;
    --radius: 12px;
    --radius-sm: 8px;
    --font: -apple-system, "Segoe UI", Roboto, sans-serif;
    --shadow: 0 4px 20px rgba(2, 6, 23, 0.07);
    --shadow-lg: 0 12px 32px rgba(2, 6, 23, 0.12);
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 1rem; width: 100%; }

/* header */
.site-header {
    background: color-mix(in srgb, var(--card) 85%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
.logo { font-size: 1.3rem; font-weight: 700; color: var(--text); text-decoration: none; }
.logo span { color: var(--primary); }
nav { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
nav a { color: var(--text); text-decoration: none; font-size: 0.95rem; transition: color 0.15s; }
nav a:hover { color: var(--primary); }
.lang-switch { color: var(--muted); font-size: 0.85rem; }
.lang-switch a { color: var(--muted); }

main { flex: 1; padding: 2rem 1rem; }

h1 { margin-bottom: 1.2rem; font-size: 1.7rem; letter-spacing: -0.02em; }
h3 { margin: 1.4rem 0 0.7rem; }

/* buttons */
.btn {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border: none;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--primary) 35%, transparent);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 45%, transparent); }

/* loading state: shown on any .domain-search-form submit (see layout.php script) */
.btn.is-loading { color: transparent !important; pointer-events: none; transform: none; }
.btn.is-loading::after {
    content: "";
    position: absolute; left: 50%; top: 50%;
    width: 16px; height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.85rem; font-weight: 500; box-shadow: none; }
.btn-block { width: 100%; text-align: center; }
.btn-danger { background: linear-gradient(135deg, var(--danger), #b91c1c); box-shadow: none; }
.btn-ghost {
    background: transparent;
    color: var(--primary) !important;
    border: 1.5px solid var(--primary);
    box-shadow: none;
}
.btn-ghost:hover { background: var(--primary-soft); box-shadow: none; }

/* hero */
.hero { text-align: center; padding: 4rem 0 3rem; position: relative; }
.hero::before {
    content: "";
    position: absolute;
    inset: -6rem -20% 0;
    background:
        radial-gradient(ellipse 55% 65% at 50% 0%, color-mix(in srgb, var(--primary) 14%, transparent), transparent 70%),
        radial-gradient(ellipse 35% 50% at 80% 10%, color-mix(in srgb, var(--ok) 8%, transparent), transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p { color: var(--muted); margin: 0.6rem auto 1.8rem; font-size: 1.1rem; max-width: 620px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
    border-radius: 999px;
    padding: 0.3rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.domain-search-form {
    display: flex;
    gap: 0.6rem;
    max-width: 600px;
    margin: 0 auto 1.2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}
.domain-search-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    background: transparent;
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    outline: none;
    min-width: 0;
}

/* trust strip */
.trust {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.8rem;
}
.trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust svg { color: var(--ok); flex-shrink: 0; }

/* sections */
.section-title { text-align: center; font-size: 1.7rem; margin: 0 0 0.3rem; letter-spacing: -0.02em; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 1.6rem; }

/* features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; margin: 2.5rem 0; }
.feature {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--primary) 35%, var(--border)); }
.feature h3 { margin-top: 0.9rem; color: var(--text); font-size: 1.15rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }
.icon-chip {
    margin: 0 auto;
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 35%, transparent);
}
.icon-chip.chip-green { background: linear-gradient(135deg, #22c55e, #15803d); box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3); }
.icon-chip.chip-amber { background: linear-gradient(135deg, #f59e0b, #b45309); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin: 1.5rem 0 2.5rem; }
.step { text-align: center; padding: 1.2rem; }
.step-num {
    width: 44px; height: 44px;
    margin: 0 auto 0.8rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 35%, transparent);
}
.step h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 2.6rem 2rem;
    text-align: center;
    color: #fff;
    margin: 2.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 90% at 85% 10%, rgba(255, 255, 255, 0.14), transparent 60%);
    pointer-events: none;
}
.cta-band h2 { font-size: 1.7rem; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.cta-band p { opacity: 0.85; margin-bottom: 1.3rem; }
.cta-band .btn { background: #fff; color: var(--primary) !important; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }

/* promo cards */
.promo-card { transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; position: relative; overflow: hidden; }
.promo-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #22c55e);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }

/* cards + dashboard */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 1.5rem; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; }
.stat { text-align: center; }
.stat h3 { font-size: 1.8rem; }
.stat p { color: var(--muted); }
.stat-alert h3 { color: var(--danger); }
.service-list { list-style: none; }
.service-list li { display: flex; justify-content: space-between; padding: 0.35rem 0; border-bottom: 1px solid var(--border); }

/* tables */
.table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { padding: 0.7rem 0.9rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.table th { background: var(--bg); color: var(--muted); font-weight: 600; }
.table tr:last-child td { border-bottom: none; }
.text-right { text-align: right !important; }
.domain-name { font-weight: 600; }
.dns-value { font-family: monospace; font-size: 0.85rem; word-break: break-all; }

/* badges */
.badge {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--muted);
}
.badge-ok { background: var(--ok-bg); border-color: var(--ok-border); color: var(--ok); }
.badge-warn { background: var(--warn-bg); border-color: var(--warn-border); color: var(--warn); }
.badge-muted { opacity: 0.7; }

/* forms */
.auth-box { max-width: 440px; margin: 2rem auto; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-lg); }
.auth-box h1 { text-align: center; }
.auth-box label { display: block; margin-bottom: 0.9rem; font-size: 0.9rem; color: var(--muted); }
.auth-box input, .auth-box select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.auth-box input:focus, .auth-box select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.auth-alt { text-align: center; margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }
.inline-form { display: inline-flex; gap: 0.4rem; align-items: center; }
.inline-form select { padding: 0.3rem; border: 1px solid var(--border); background: var(--card); color: var(--text); border-radius: 6px; }
.dns-add-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.dns-add-form input, .dns-add-form select { padding: 0.5rem 0.7rem; border: 1px solid var(--border); background: var(--card); color: var(--text); border-radius: var(--radius-sm); }
.dns-add-form input[name=value] { flex: 1; min-width: 200px; }

/* flash */
.flash { padding: 0.8rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.95rem; }
.flash-error { background: var(--danger-bg); color: var(--danger); border: 1px solid var(--danger-border); }
.flash-success { background: var(--ok-bg); color: var(--ok); border: 1px solid var(--ok-border); }

.muted { color: var(--muted); }
.small { font-size: 0.8rem; }
.text-center { text-align: center; }

/* footer — intentionally dark regardless of theme, for brand consistency */
.site-footer {
    --f-bg: #0b1220;
    --f-bg2: #111a2e;
    --f-text: #cbd5e1;
    --f-muted: #7c8aa5;
    --f-border: #22304a;
    background: var(--f-bg);
    color: var(--f-text);
    margin-top: 3rem;
    padding: 3rem 0 1.4rem;
    font-size: 0.92rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--f-border);
}
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: var(--f-muted); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-heading { color: #fff; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.footer-brand-col .footer-brand {
    font-weight: 700; font-size: 1.2rem; color: #fff; text-decoration: none;
}
.footer-brand-col .footer-brand span { color: var(--primary); }
.footer-tagline { color: var(--f-muted); font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-support-btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: var(--f-bg2); border: 1px solid var(--f-border);
    color: #fff !important; padding: 0.5rem 0.9rem; border-radius: 999px;
    font-size: 0.85rem; font-weight: 600; width: fit-content;
    transition: border-color 0.15s, background 0.15s;
}
.footer-support-btn:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 20%, var(--f-bg2)); }
.footer-trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--f-muted); font-size: 0.88rem; }
.footer-trust-item svg { color: var(--primary); flex-shrink: 0; }
.footer-langs { display: flex; gap: 0.5rem; margin-top: 0.3rem; }
.footer-langs a {
    display: inline-flex; align-items: center; gap: 0.3rem;
    border: 1px solid var(--f-border); border-radius: 6px;
    padding: 0.2rem 0.55rem; font-size: 0.78rem; font-weight: 600;
}
.footer-langs a.active { border-color: var(--primary); color: #fff; background: color-mix(in srgb, var(--primary) 25%, transparent); }
.footer-bottom {
    padding-top: 1.2rem; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 0.7rem; color: var(--f-muted); font-size: 0.82rem;
}
.footer-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--f-bg2); border: 1px solid var(--f-border);
    border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.78rem;
}
.footer-badge .flag { flex-shrink: 0; }
@media (max-width: 800px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* language dropdown */
.lang-dd { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 999px; padding: 0.32rem 0.75rem;
    font-size: 0.85rem; font-family: inherit; color: var(--text); cursor: pointer;
    transition: border-color 0.15s;
}
.lang-btn:hover { border-color: var(--primary); }
.lang-btn .chev { transition: transform 0.15s; }
.lang-dd.open .chev { transform: rotate(180deg); }
.lang-menu {
    position: absolute; right: 0; top: calc(100% + 6px);
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; box-shadow: var(--shadow-lg);
    padding: 0.3rem; display: none; min-width: 150px; z-index: 100;
}
.lang-dd.open .lang-menu { display: block; }
.lang-menu a {
    display: flex; align-items: center; gap: 0.55rem;
    padding: 0.45rem 0.7rem; border-radius: 6px;
    color: var(--text); text-decoration: none; font-size: 0.9rem;
}
.lang-menu a:hover { background: var(--primary-soft); }
.lang-menu a.active { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.flag { border-radius: 2px; display: block; flex-shrink: 0; }

/* promo action banner */
.promo-banner {
    position: relative; overflow: hidden;
    border-radius: 18px; margin: 0 0 2rem;
    padding: 1.7rem 2.1rem; color: #fff;
    background: linear-gradient(120deg, var(--primary), var(--primary-dark), var(--primary));
    background-size: 220% 220%;
    animation: pbShift 7s ease-in-out infinite alternate;
    box-shadow: var(--shadow-lg);
}
@keyframes pbShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.promo-banner::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 85% 15%, rgba(255, 255, 255, 0.16), transparent 60%);
    pointer-events: none;
}
.pb-content { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
.pb-kicker { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.88; margin-bottom: 0.2rem; }
.pb-tld { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.pb-prices { display: flex; align-items: baseline; gap: 0.7rem; font-size: 1.1rem; margin-top: 0.25rem; }
.pb-prices strong { font-size: 1.7rem; }
.pb-prices s { opacity: 0.7; }
.pb-save { background: #fff; color: var(--primary); border-radius: 999px; padding: 0.12rem 0.6rem; font-weight: 800; font-size: 0.92rem; }
.pb-right { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-end; }
.pb-count {
    font-variant-numeric: tabular-nums; font-weight: 600;
    background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.95rem;
}
.pb-cta { background: #fff !important; color: var(--primary) !important; animation: pbPulse 2.2s infinite; font-weight: 700; }
@keyframes pbPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    55% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}
.pb-swap { animation: pbIn 0.45s ease; }
@keyframes pbIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pb-watermark {
    position: absolute; right: 4.5rem; top: 50%; transform: translateY(-52%);
    font-size: 9rem; font-weight: 900; color: #fff; opacity: 0.07;
    pointer-events: none; user-select: none; line-height: 1;
}
@media (max-width: 640px) { .pb-right { align-items: flex-start; } .pb-watermark { display: none; } }

/* promo cards v2 — the conversion zone */
.promo-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 1.2rem; margin-bottom: 1.5rem; }
@media (max-width: 900px) { .promo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promo-grid { grid-template-columns: 1fr; } }

.promo-top {
    border-color: color-mix(in srgb, var(--warn) 55%, var(--border));
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.22);
}
.promo-ribbon {
    position: absolute; top: 0.8rem; left: 0.8rem;
    background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em;
    padding: 0.2rem 0.65rem; border-radius: 999px;
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.4);
}
.promo-pct {
    position: absolute; top: 0.8rem; right: 0.8rem;
    background: linear-gradient(135deg, #ef4444, #b91c1c); color: #fff;
    font-weight: 800; font-size: 0.82rem;
    padding: 0.22rem 0.65rem; border-radius: 999px;
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.35);
}
.promo-price {
    font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.promo-urgency {
    height: 5px; border-radius: 999px; background: var(--border);
    overflow: hidden; margin: 0.75rem auto 0.3rem; max-width: 170px;
}
.promo-urgency i {
    display: block; height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #f59e0b, #ef4444);
    background-size: 200px 100%;
}
.promo-btn { margin-top: 0.7rem; opacity: 0.92; }
.promo-card:hover .promo-btn { opacity: 1; }
.count-hot { color: #dc2626 !important; font-weight: 700; }

/* industry landing pages */
.industry-hero {
    border-radius: 20px;
    margin-top:40px;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 2.2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ind-a), var(--ind-b));
}
.industry-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 90% at 85% 10%, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.industry-hero .icon-wrap {
    width: 64px; height: 64px; margin: 0 auto 1rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.industry-hero h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 0.6rem; position: relative; z-index: 1; }
.industry-hero p { opacity: 0.92; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; font-size: 1.05rem; }
.industry-hero .domain-search-form { margin-top: 1.6rem; position: relative; z-index: 1; }

/* variant: real illustration on the right, left-aligned text over a fading overlay */
.industry-hero.has-image {
    text-align: left;
    background-image:
        linear-gradient(to right, var(--ind-a) 0%, var(--ind-a) 32%, transparent 68%),
        var(--ind-img);
    background-size: cover, cover;
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
}
.industry-hero.has-image::before { display: none; }
.industry-hero.has-image .icon-wrap { display: none; }
.industry-hero.has-image h1,
.industry-hero.has-image p { text-align: left; margin-left: 0; max-width: 480px; }
.industry-hero.has-image .domain-search-form { margin-left: 0; }

@media (max-width: 700px) {
    /* photo needs room to breathe — fall back to the plain gradient on small screens */
    .industry-hero.has-image {
        text-align: center;
        background-image: linear-gradient(135deg, var(--ind-a), var(--ind-b));
    }
    .industry-hero.has-image .icon-wrap { display: flex; }
    .industry-hero.has-image h1,
    .industry-hero.has-image p { text-align: center; margin-left: auto; margin-right: auto; }
    .industry-hero.has-image .domain-search-form { margin-left: auto; margin-right: auto; }
}

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin: 1.5rem 0 2.5rem; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem; border-top: 3px solid var(--ind-a); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--text); }
.faq-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* order confirmation ("receipt") card */
.receipt { margin: 1.2rem 0; }
.receipt-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.55rem 0; border-bottom: 1px dashed var(--border); font-size: 0.95rem;
}
.receipt-row .label { color: var(--muted); }
.receipt-row .value { font-weight: 600; }
.receipt-total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 0.8rem; margin-top: 0.2rem;
    border-top: 2px solid var(--border);
}
.receipt-total .label { font-weight: 600; font-size: 1rem; }
.receipt-total .value {
    font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.receipt-vat { text-align: right; color: var(--muted); font-size: 0.8rem; margin-top: 0.2rem; }

.consent-box {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1rem 1.1rem; margin-bottom: 1.1rem;
}
.consent-item {
    display: flex; gap: 0.65rem; align-items: flex-start;
    font-size: 0.86rem; line-height: 1.5; color: var(--muted);
}
.consent-item + .consent-item { margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--border); }
.consent-item input[type=checkbox] { margin-top: 0.2rem; width: 16px; height: 16px; accent-color: var(--primary); flex-shrink: 0; }
.consent-item a { color: var(--primary); }

.secure-note {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    color: var(--muted); font-size: 0.82rem; margin-top: 0.9rem;
}
.secure-note svg { color: var(--ok); flex-shrink: 0; }

/* entrance animation for hero content */
@media (prefers-reduced-motion: no-preference) {
    .hero > * { animation: rise 0.5s ease both; }
    .hero > *:nth-child(2) { animation-delay: 0.07s; }
    .hero > *:nth-child(3) { animation-delay: 0.14s; }
    .hero > *:nth-child(4) { animation-delay: 0.21s; }
    .hero > *:nth-child(5) { animation-delay: 0.28s; }
    @keyframes rise {
        from { opacity: 0; transform: translateY(14px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .domain-search-form { flex-direction: column; }
    .footer-cols, .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
