/* ============================================================
   whois.css — SkyServer Cloud WHOIS Lookup Page
   Accent: Violet/Purple (#7c3aed) — Domain theme
   Font: Outfit (primary), JetBrains Mono (code/mono)
============================================================ */

/* ---------- PAGE VARS ---------- */
.whois-body {
    --whois-accent: #7c3aed;
    --whois-accent-2: #6d28d9;
    --whois-accent-soft: rgba(124, 58, 237, 0.08);
    --whois-accent-mid: rgba(124, 58, 237, 0.15);
    --whois-accent-border: rgba(124, 58, 237, 0.25);
    --whois-green: #10b981;
    --whois-orange: #f59e0b;
    --whois-red: #ef4444;
    --whois-text-1: #0f172a;
    --whois-text-2: #334155;
    --whois-text-3: #64748b;
    --whois-border: #e2e8f0;
    --whois-bg: #faf5ff;
    --whois-bg-2: #f8fafc;
    --whois-white: #ffffff;
    --whois-radius: 14px;
    --whois-shadow-sm: 0 2px 8px rgba(124, 58, 237, .08), 0 1px 3px rgba(0, 0, 0, .05);
    --whois-shadow-md: 0 6px 24px rgba(124, 58, 237, .12), 0 2px 8px rgba(0, 0, 0, .06);
    --whois-shadow-lg: 0 16px 48px rgba(124, 58, 237, .18), 0 4px 16px rgba(0, 0, 0, .08);
}

/* ---------- SHARED ---------- */
.whois-accent {
    color: var(--whois-accent);
}

.whois-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: .85em;
}

/* ============================================================
   1. HERO
============================================================ */
.whois-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #faf5ff 0%, #f3e8ff 45%, #ede9fe 100%);
    padding: 96px 0 80px;
    text-align: center;
}

.whois-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.whois-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}

.whois-orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #c4b5fd, transparent 70%);
    top: -120px;
    left: -120px;
}

.whois-orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #ddd6fe, transparent 70%);
    bottom: -80px;
    right: -80px;
}

.whois-orb-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #a78bfa, transparent 70%);
    top: 40%;
    left: 55%;
    opacity: .18;
}

.whois-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, .04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.whois-hero-inner {
    position: relative;
    z-index: 1;
}

/* Badge */
.whois-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--whois-accent-border);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--whois-accent);
    backdrop-filter: blur(8px);
}

.whois-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--whois-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
    animation: whoisPulse 2s ease-in-out infinite;
}

@keyframes whoisPulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, .08);
    }
}

.whois-badge-sep {
    opacity: .4;
}

/* Title */
.whois-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--whois-text-1);
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.whois-hero-sub {
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    color: var(--whois-text-3);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* ---- Search Box ---- */
.whois-search-wrap {
    max-width: 660px;
    margin: 0 auto 40px;
}

.whois-search-box {
    display: flex;
    align-items: center;
    background: var(--whois-white);
    border: 2px solid var(--whois-border);
    border-radius: 16px;
    box-shadow: var(--whois-shadow-md);
    transition: border-color .2s, box-shadow .2s;
    overflow: hidden;
}

.whois-search-box:focus-within {
    border-color: var(--whois-accent);
    box-shadow: 0 0 0 4px var(--whois-accent-mid), var(--whois-shadow-md);
}

.whois-search-icon {
    padding: 0 14px 0 18px;
    color: var(--whois-text-3);
    flex-shrink: 0;
}

.whois-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--whois-text-1);
    padding: 16px 0;
    background: transparent;
}

.whois-input::placeholder {
    color: #94a3b8;
}

.whois-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whois-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    margin: 6px;
    border-radius: 10px;
    transition: background .18s, transform .15s;
    white-space: nowrap;
}

.whois-search-btn:hover {
    background: var(--whois-accent-2);
    transform: translateY(-1px);
}

.whois-search-btn:active {
    transform: translateY(0);
}

/* Hints */
.whois-search-hints {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .82rem;
    color: var(--whois-text-3);
}

.whois-hint-tag {
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--whois-accent-border);
    color: var(--whois-accent);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, transform .12s;
    font-family: 'Outfit', sans-serif;
}

.whois-hint-tag:hover {
    background: var(--whois-accent);
    color: #fff;
    transform: translateY(-1px);
}

/* Stats row */
.whois-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.whois-stat {
    text-align: center;
    padding: 0 28px;
}

.whois-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--whois-text-1);
}

.whois-stat span {
    font-size: .78rem;
    color: var(--whois-text-3);
    font-weight: 500;
}

.whois-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--whois-border);
}

/* ============================================================
   2. RESULT SECTION
============================================================ */
.whois-result-section {
    background: var(--whois-bg-2);
    padding: 60px 0;
    border-top: 1px solid var(--whois-border);
}

/* Loading */
.whois-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 0;
    color: var(--whois-text-3);
    font-size: .95rem;
}

.whois-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--whois-accent-mid);
    border-top-color: var(--whois-accent);
    border-radius: 50%;
    animation: whoisSpin .7s linear infinite;
}

@keyframes whoisSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Error */
.whois-error {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 56px 24px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.whois-error-icon {
    color: var(--whois-red);
}

.whois-error h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--whois-text-1);
}

.whois-error p {
    font-size: .92rem;
    color: var(--whois-text-3);
    line-height: 1.7;
}

/* Result wrap */
.whois-result-wrap {
    background: var(--whois-white);
    border: 1px solid var(--whois-border);
    border-radius: 20px;
    box-shadow: var(--whois-shadow-lg);
    overflow: hidden;
}

.whois-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--whois-accent-soft) 0%, transparent 100%);
    border-bottom: 1px solid var(--whois-border);
    gap: 16px;
    flex-wrap: wrap;
}

.whois-result-domain-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.whois-result-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.whois-dot-active {
    background: var(--whois-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .15);
    animation: whoisPulse 2s infinite;
}

.whois-dot-warning {
    background: var(--whois-orange);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .15);
}

.whois-result-domain {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--whois-text-1);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -.02em;
}

.whois-result-status-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 4px;
}

.whois-lbl-active {
    background: rgba(16, 185, 129, .1);
    color: var(--whois-green);
}

.whois-lbl-warning {
    background: rgba(245, 158, 11, .1);
    color: var(--whois-orange);
}

.whois-raw-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--whois-border);
    color: var(--whois-text-3);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    font-family: 'Outfit', sans-serif;
}

.whois-raw-toggle-btn:hover,
.whois-raw-toggle-btn.active {
    border-color: var(--whois-accent);
    color: var(--whois-accent);
    background: var(--whois-accent-soft);
}

/* Info Grid */
.whois-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    border-bottom: 1px solid var(--whois-border);
}

.whois-info-cell {
    padding: 18px 24px;
    border-right: 1px solid var(--whois-border);
    border-bottom: 1px solid var(--whois-border);
}

.whois-info-cell:nth-child(4n) {
    border-right: none;
}

.whois-cell-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--whois-text-3);
    margin-bottom: 6px;
}

.whois-cell-val {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: var(--whois-text-1);
    word-break: break-all;
}

.whois-cell-warn {
    background: rgba(245, 158, 11, .04);
}

.whois-cell-warn .whois-cell-val {
    color: #b45309;
}

/* Nameservers */
.whois-ns-section {
    padding: 20px 24px;
    border-bottom: 1px solid var(--whois-border);
}

.whois-ns-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--whois-text-3);
    margin-bottom: 12px;
}

.whois-ns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.whois-ns-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--whois-accent-soft);
    border: 1px solid var(--whois-accent-border);
    color: var(--whois-accent);
    border-radius: 8px;
    padding: 6px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .8rem;
    font-weight: 500;
}

/* Raw output */
.whois-raw-wrap {
    border-bottom: 1px solid var(--whois-border);
}

.whois-raw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #1e1b4b;
    color: #a5b4fc;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.whois-copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(165, 180, 252, .3);
    color: #a5b4fc;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .75rem;
    cursor: pointer;
    transition: all .15s;
    font-family: 'Outfit', sans-serif;
}

.whois-copy-btn:hover {
    background: rgba(165, 180, 252, .1);
}

.whois-raw-output {
    background: #0f0d2a;
    color: #c4b5fd;
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    padding: 20px 24px;
    margin: 0;
    max-height: 320px;
    overflow-y: auto;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Action row */
.whois-action-row {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.whois-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all .15s;
}

.whois-action-primary {
    background: var(--whois-accent);
    color: #fff;
}

.whois-action-primary:hover {
    background: var(--whois-accent-2);
    transform: translateY(-1px);
}

.whois-action-ghost {
    background: transparent;
    color: var(--whois-text-2);
    border: 1px solid var(--whois-border);
}

.whois-action-ghost:hover {
    border-color: var(--whois-accent);
    color: var(--whois-accent);
    background: var(--whois-accent-soft);
}

/* ============================================================
   3. FEATURES SECTION
============================================================ */
.whois-features {
    padding: 88px 0;
    background: var(--whois-white);
}

.whois-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.whois-section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--whois-accent-soft);
    border: 1px solid var(--whois-accent-border);
    color: var(--whois-accent);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.whois-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--whois-text-1);
    margin-bottom: 14px;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.whois-section-sub {
    font-size: .97rem;
    color: var(--whois-text-3);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.whois-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.whois-feature-card {
    background: var(--whois-bg);
    border: 1px solid var(--whois-border);
    border-radius: var(--whois-radius);
    padding: 28px 26px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.whois-feature-card:hover {
    border-color: var(--whois-accent-border);
    box-shadow: var(--whois-shadow-md);
    /* transform: translateY(-3px); */
    /* disabled per preference */
}

.whois-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--whois-text-1);
    margin-bottom: 10px;
}

.whois-feature-card p {
    font-size: .88rem;
    color: var(--whois-text-3);
    line-height: 1.7;
    margin: 0;
}

.whois-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.whois-feat-icon-1 {
    background: rgba(124, 58, 237, .1);
    color: var(--whois-accent);
}

.whois-feat-icon-2 {
    background: rgba(14, 165, 233, .1);
    color: #0ea5e9;
}

.whois-feat-icon-3 {
    background: rgba(16, 185, 129, .1);
    color: var(--whois-green);
}

.whois-feat-icon-4 {
    background: rgba(245, 158, 11, .1);
    color: #f59e0b;
}

.whois-feat-icon-5 {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

.whois-feat-icon-6 {
    background: rgba(20, 184, 166, .1);
    color: #14b8a6;
}

/* Centered note line below the features grid (replaces the lone 6th card) */
.whois-features-note {
    text-align: center;
    margin-top: 36px;
    font-size: .92rem;
    color: var(--whois-text-3);
    font-weight: 500;
}

.whois-features-link {
    color: var(--whois-accent);
    font-weight: 700;
    text-decoration: none;
}

.whois-features-link:hover {
    text-decoration: underline;
}

/* ============================================================
   4. INFO SECTION
============================================================ */
.whois-info-section {
    padding: 88px 0;
    background: var(--whois-bg);
    border-top: 1px solid var(--whois-border);
}

.whois-info-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.whois-info-para {
    font-size: .97rem;
    color: var(--whois-text-2);
    line-height: 1.8;
    margin-bottom: 16px;
}

.whois-info-points {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whois-info-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--whois-text-2);
}

.whois-point-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(16, 185, 129, .1);
    color: var(--whois-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sample card */
.whois-sample-card {
    background: var(--whois-white);
    border: 1px solid var(--whois-border);
    border-radius: 16px;
    box-shadow: var(--whois-shadow-lg);
    overflow: hidden;
}

.whois-sample-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #1e1b4b;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.whois-sample-dots {
    display: flex;
    gap: 6px;
}

.whois-sample-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.whois-sample-dots span:nth-child(1) {
    background: #ef4444;
}

.whois-sample-dots span:nth-child(2) {
    background: #f59e0b;
}

.whois-sample-dots span:nth-child(3) {
    background: #10b981;
}

.whois-sample-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem;
    color: #a5b4fc;
    font-weight: 500;
}

.whois-sample-body {
    padding: 6px 0;
}

.whois-sample-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--whois-border);
}

.whois-sample-row:last-child {
    border-bottom: none;
}

.whois-sample-key {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--whois-text-3);
    white-space: nowrap;
}

.whois-sample-val {
    font-size: .85rem;
    font-weight: 600;
    color: var(--whois-text-1);
    text-align: right;
}

.whois-status-active {
    color: var(--whois-green);
    font-size: .85rem;
    font-weight: 700;
}

.whois-sample-divider {
    height: 1px;
    background: var(--whois-border);
    margin: 2px 0;
}

/* ============================================================
   5. FAQ — reuses index.css faq-layout; only overrides tint
============================================================ */
.whois-faq-section {
    background: var(--whois-white);
}

.whois-faq-section .section-header .section-badge {
    background: rgba(65, 105, 225, .08);
    color: #4169E1;
    border-color: rgba(65, 105, 225, .2);
}

.whois-faq-section .section-header h2 span {
    color: #4169E1;
}

.whois-faq-section .faq-item.active .faq-question,
.whois-faq-section .faq-question:hover {
    color: #4169E1;
}

.whois-faq-section .faq-contact-cta {
    background: #4169E1;
}

.whois-faq-section .faq-contact-cta:hover {
    background: #2f54d4;
}

/* ============================================================
   6. CTA SECTION
============================================================ */
.whois-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2b44c7 0%, #3d5ce0 45%, #5a78ee 100%);
    padding: 88px 0;
    text-align: center;
}

.whois-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.whois-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
}

.whois-cta-orb-1 {
    width: 400px;
    height: 400px;
    background: #7b9fff;
    top: -100px;
    left: -80px;
}

.whois-cta-orb-2 {
    width: 300px;
    height: 300px;
    background: #a0b8ff;
    bottom: -80px;
    right: -60px;
}

.whois-cta-inner {
    position: relative;
    z-index: 1;
}

.whois-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #dde8ff;
    border-radius: 100px;
    padding: 5px 16px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.whois-cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.whois-cta-title span {
    color: #c5d8ff;
}

.whois-cta-sub {
    font-size: .97rem;
    color: rgba(255, 255, 255, .75);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.whois-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.whois-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #4169E1;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.whois-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.whois-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .15s, background .15s;
}

.whois-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.whois-cta-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
}

.whois-cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.whois-cta-features svg {
    color: #86efac;
}

/* ============================================================
   7. RESPONSIVE
============================================================ */
@media (max-width: 900px) {
    .whois-info-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whois-info-visual {
        order: -1;
    }
}

@media (max-width: 720px) {
    .whois-hero {
        padding: 72px 0 60px;
    }

    .whois-hero-title {
        font-size: 2.2rem;
    }

    .whois-hero-stats {
        gap: 8px;
    }

    .whois-stat {
        padding: 0 16px;
    }

    .whois-stat strong {
        font-size: 1.2rem;
    }

    .whois-stat-sep {
        display: none;
    }

    .whois-search-btn .whois-btn-text {
        display: none;
    }

    .whois-search-btn {
        padding: 12px 16px;
    }

    .whois-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .whois-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whois-info-cell:nth-child(4n) {
        border-right: 1px solid var(--whois-border);
    }

    .whois-info-cell:nth-child(2n) {
        border-right: none;
    }

    .whois-action-row {
        flex-direction: column;
    }

    .whois-action-btn {
        width: 100%;
        justify-content: center;
    }

    .whois-features-grid {
        grid-template-columns: 1fr;
    }

    .whois-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .whois-cta-primary,
    .whois-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .whois-info-grid {
        grid-template-columns: 1fr;
    }

    .whois-info-cell {
        border-right: none;
    }

    .whois-result-domain {
        font-size: 1.1rem;
    }
}

/* ============================================================
   FAQ CONTACT CARD — Screenshot design override
   (overrides index.css .faq-contact-card defaults)
============================================================ */
.whois-faq-section .faq-contact-card {
    background: #ffffff;
    border: 1.5px solid #e8edf8;
    border-radius: 22px;
    padding: 40px 32px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(65, 105, 225, .10), 0 2px 8px rgba(0, 0, 0, .04);
    position: sticky;
    top: 100px;
}

.whois-faq-section .faq-contact-icon {
    width: 76px;
    height: 76px;
    background: #eef1fb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #4169E1;
}

.whois-faq-section .faq-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.whois-faq-section .faq-contact-card p {
    font-size: .88rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Full-width pill button */
.whois-faq-section .faq-contact-cta {
    display: block;
    width: 100%;
    background: #4169E1;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    transition: background .18s, transform .15s, box-shadow .15s;
    box-shadow: 0 4px 18px rgba(65, 105, 225, .30);
}

.whois-faq-section .faq-contact-cta:hover {
    background: #2f54d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(65, 105, 225, .38);
}

@media (max-width: 900px) {
    .whois-faq-section .faq-contact-card {
        position: static;
    }
}