/*====================================================
 ROYAWRITES WHOIS LOOKUP - COMPLETE STYLESHEET
====================================================*/

.rwwhois-page {
    padding: 150px 20px 25px;
    margin: 0;
    font-family: inherit;
    background: #f9f9f9;
    color: #2f3434;
}

.rwwhois-page *,
.rwwhois-page *::before,
.rwwhois-page *::after {
    box-sizing: border-box;
}

.rwwhois-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HERO */
.rwwhois-hero {
    max-width: 830px;
    margin: 0 auto 32px;
    text-align: center;
}

.rwwhois-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #008181;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.rwwhois-hero h1 {
    margin: 0 0 16px;
    color: #272c2c;
    font-size: 34px;
    line-height: 1.14;
    font-weight: 700;
}

.rwwhois-hero h1 span {
    color: #008181;
}

.rwwhois-hero p {
    max-width: 740px;
    margin: 0 auto;
    color: #555f5f;
    font-size: 17px;
    line-height: 1.72;
}

/* CHECKER FORM */
.rwwhois-checker {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    background: #dddddd;
    border: 1px solid #aacdcd;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,70,70,.07);
}

.rwwhois-form label {
    display: block;
    margin-bottom: 10px;
    color: #008181;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.rwwhois-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 11px;
}

.rwwhois-input-wrap {
    position: relative;
}

.rwwhois-input-wrap > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #008181;
    font-size: 16px;
    pointer-events: none;
}

.rwwhois-input-wrap input {
    width: 100%;
    height: 56px;
    padding: 0 18px 0 47px;
    background: #ffffff;
    border: 1px solid #a9caca;
    border-radius: 8px;
    outline: none;
    color: #303535;
    font: inherit;
    font-size: 16px;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.rwwhois-input-wrap input::placeholder {
    color: #8b9595;
}

.rwwhois-input-wrap input:focus {
    background: #ffffff;
    border-color: #008181;
    box-shadow: 0 0 0 3px rgba(0,129,129,.11);
}

.rwwhois-input-wrap input.rwwhois-invalid {
    border-color: #c94a4a;
    box-shadow: 0 0 0 3px rgba(201,74,74,.09);
}

.rwwhois-submit {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 28px;
    background: #008181;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.rwwhois-submit:hover {
    background: #006f6f;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(0,100,100,.15);
}

.rwwhois-submit:disabled {
    opacity: .72;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rwwhois-spinner {
    display: none !important;
    font-size: 15px;
    animation: rwwhois-spin .8s linear infinite;
}

.rwwhois-submit.rwwhois-is-loading .rwwhois-spinner {
    display: inline-block !important;
}

@keyframes rwwhois-spin {
    to { transform: rotate(360deg); }
}

.rwwhois-input-error {
    display: none;
    margin-top: 9px;
    color: #b43d3d;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.rwwhois-input-error.rwwhois-show {
    display: block;
}

.rwwhois-form-help {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: #606c6c;
    font-size: 14px;
}

.rwwhois-form-help > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rwwhois-form-help > span i {
    color: #008181;
}

.rwwhois-example {
    padding: 6px 10px;
    background: #ffffff;
    border: 1px solid #b7d0d0;
    border-radius: 50px;
    color: #505b5b;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.rwwhois-example:hover {
    background: #f5ffff;
    border-color: #008181;
    color: #008181;
}

/* RECENT SEARCHES BAR */
.rwwhois-recent-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    color: #64748b;
}

.rwwhois-recent-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.rwwhois-recent-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    color: #008181;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.rwwhois-recent-pill:hover {
    background: #f0fdfa;
    border-color: #008181;
}

/* RESULT STATES & LOADING */
.rwwhois-state,
.rwwhois-report {
    max-width: 900px;
    margin: 22px auto 0;
}

.rwwhois-loading {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 23px;
    background: #eaf7f7;
    border: 1px solid #aed1d1;
    border-radius: 12px;
}

.rwwhois-loading[hidden] {
    display: none;
}

.rwwhois-loading-icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #d4eeee;
    color: #008181;
    border: 1px solid #b9dddd;
    border-radius: 50%;
    font-size: 18px;
    animation: rwwhois-pulse 1.2s ease-in-out infinite;
}

@keyframes rwwhois-pulse {
    50% { transform: scale(1.06); opacity: .72; }
}

.rwwhois-loading h2 {
    margin: 0 0 5px;
    color: #008181;
    font-size: 20px;
}

.rwwhois-loading p {
    margin: 0;
    color: #5d6666;
    font-size: 15px;
    line-height: 1.55;
}

.rwwhois-error-result {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    padding: 23px;
    background: #fff2f2;
    border: 1px solid #e4bcbc;
    border-radius: 12px;
}

.rwwhois-error-result[hidden] {
    display: none;
}

.rwwhois-result-status-icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f9dede;
    color: #bb4242;
    border-radius: 50%;
    font-size: 18px;
}

.rwwhois-result-label {
    display: block;
    margin-bottom: 6px;
    color: #008181;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.rwwhois-error-content h2 {
    margin: 0 0 7px;
    color: #303535;
    font-size: 21px;
}

.rwwhois-error-content p {
    max-width: 650px;
    margin: 0;
    color: #5f6666;
    font-size: 15px;
    line-height: 1.65;
}

.rwwhois-small-btn {
    margin-top: 13px;
    padding: 9px 15px;
    background: #ffffff;
    border: 1px solid #adcaca;
    border-radius: 7px;
    color: #008181;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease;
}

.rwwhois-small-btn:hover {
    background: #eefafa;
    border-color: #008181;
}

/* WHOIS REPORT */
.rwwhois-report {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #bfd3d3;
    border-radius: 15px;
    box-shadow: 0 12px 34px rgba(0,65,65,.07);
}

.rwwhois-report[hidden] {
    display: none;
}

.rwwhois-report-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding-bottom: 21px;
    border-bottom: 1px solid #d4e2e2;
}

.rwwhois-report-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dff3ef;
    color: #00815f;
    border: 1px solid #c5e5de;
    border-radius: 50%;
    font-size: 20px;
}

.rwwhois-head-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rwwhois-score-pill {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #bae6fd;
}

.rwwhois-score-pill strong {
    color: #008181;
    font-size: 13px;
}

.rwwhois-report-heading h2 {
    margin: 0 0 4px;
    color: #008181;
    font-size: 24px;
    line-height: 1.3;
}

.rwwhois-report-heading p {
    margin: 0;
    color: #687171;
    font-size: 15px;
    overflow-wrap: anywhere;
}

.rwwhois-status-badge {
    padding: 8px 13px;
    background: #dff3eb;
    color: #006f51;
    border: 1px solid #b9ddcf;
    border-radius: 50px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.rwwhois-status-badge.rwwhois-badge-available {
    background: #dcfce7;
    color: #15803d;
    border-color: #86efac;
}

/* NAMECHEAP-STYLE "MAKE IT YOURS" AVAILABLE CARD */
.rwwhois-available-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 18px 20px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
}

.rwwhois-available-card[hidden] {
    display: none;
}

.rwwhois-avail-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rwwhois-avail-left i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.rwwhois-avail-left h3 {
    margin: 0 0 3px;
    color: #14532d;
    font-size: 18px;
}

.rwwhois-avail-left p {
    margin: 0;
    color: #166534;
    font-size: 14px;
}

.rwwhois-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #16a34a;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rwwhois-buy-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
}

/* SUMMARY BOXES */
.rwwhois-summary {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 18px;
    padding: 15px 16px;
    background: #e9f7f2;
    color: #006c50;
    border: 1px solid #c8e6db;
    border-radius: 9px;
    transition: all 0.3s ease;
}

.rwwhois-summary i {
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 13px;
}

.rwwhois-summary p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* FAINT RED WARNING STATE FOR UNSUPPORTED RDAP */
.rwwhois-summary.rwwhois-summary-warning {
    background: #fff2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.rwwhois-summary.rwwhois-summary-warning i {
    color: #dc2626;
}

/* REPORT SECTIONS */
.rwwhois-report-section {
    margin-top: 27px;
    transition: opacity 0.3s ease;
}

.rwwhois-section-disabled {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(40%);
}

.rwwhois-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #303636;
}

.rwwhois-section-title > div:first-child {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #dff2f2;
    color: #008181;
    border: 1px solid #c3dfdf;
    border-radius: 8px;
    font-size: 14px;
}

.rwwhois-section-title-text {
    min-width: 0;
    display: block !important;
}

.rwwhois-section-title-text span {
    display: block;
    color: #008181;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.rwwhois-section-title-text small {
    display: block;
    margin-top: 2px;
    color: #727b7b;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
}

/* WEBSITE PREVIEW */
.rwwhois-website-card {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(260px,.85fr);
    overflow: hidden;
    background: #f1f8f8;
    border: 1px solid #b8d2d2;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,70,70,.04);
}

.rwwhois-preview {
    position: relative;
    min-width: 0;
    min-height: 280px;
    overflow: hidden;
    background: #dcecec;
    border-right: 1px solid #bfd5d5;
}

.rwwhois-browser-dots {
    position: absolute;
    top: 10px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.rwwhois-browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.rwwhois-browser-dots span:nth-child(1) { background: #f87171; }
.rwwhois-browser-dots span:nth-child(2) { background: #fbbf24; }
.rwwhois-browser-dots span:nth-child(3) { background: #34d399; }

.rwwhois-preview-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e0f0f0 0%, #f4fafa 100%);
    color: #587070;
    font-size: 14px;
    font-weight: 700;
}

.rwwhois-preview-placeholder i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #008181;
    border: 1px solid #bcdada;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,70,70,.05);
}

.rwwhois-preview-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    background: #ffffff;
}

.rwwhois-preview-image[hidden] {
    display: none;
}

.rwwhois-website-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background: #f1f8f8;
}

.rwwhois-site-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rwwhois-favicon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #b9d2d2;
    border-radius: 10px;
}

.rwwhois-favicon-wrap img {
    width: 27px;
    height: 27px;
    display: block;
    object-fit: contain;
}

.rwwhois-favicon-wrap img[hidden] {
    display: none;
}

.rwwhois-favicon-wrap > i {
    color: #008181;
    font-size: 19px;
}

.rwwhois-site-identity h3 {
    margin: 0 0 3px;
    color: #292f2f;
    font-size: 19px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.rwwhois-site-identity p {
    margin: 0;
    color: #657070;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.rwwhois-website-description {
    margin: 16px 0 0;
    color: #5b6666;
    font-size: 14px;
    line-height: 1.65;
}

.rwwhois-website-description[hidden] {
    display: none;
}

.rwwhois-website-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.rwwhois-site-status,
.rwwhois-site-redirect {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 50px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
}

.rwwhois-site-status {
    background: #dff3eb;
    color: #006e50;
    border: 1px solid #bddfD2;
}

.rwwhois-site-redirect {
    background: #e4f0f7;
    color: #3d6375;
    border: 1px solid #c6dae5;
}

.rwwhois-site-redirect[hidden] {
    display: none;
}

.rwwhois-website-link {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 19px;
    padding: 10px 15px;
    background: #008181;
    color: #ffffff !important;
    border-radius: 7px;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.rwwhois-website-link:hover {
    background: #006f6f;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.rwwhois-website-link.rwwhois-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    background: #94a3b8 !important;
}

.rwwhois-website-link i {
    font-size: 10px;
}

/* OVERVIEW & GRIDS */
.rwwhois-overview-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 11px;
}

.rwwhois-overview-card {
    min-width: 0;
    padding: 16px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 9px;
}

.rwwhois-overview-card span {
    display: block;
    margin-bottom: 6px;
    color: #687474;
    font-size: 13px;
    line-height: 1.4;
}

.rwwhois-overview-card strong {
    display: block;
    color: #303636;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

/* COLOR-CODED LIFECYCLE PROGRESS TRACK */
.rwwhois-lifecycle-card {
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 9px;
    padding: 16px;
    margin-bottom: 14px;
}

.rwwhois-lifecycle-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.rwwhois-lifecycle-track {
    width: 100%;
    height: 10px;
    background: #cbd5e1;
    border-radius: 99px;
    overflow: hidden;
}

.rwwhois-lifecycle-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.6s ease, background 0.4s ease;
}

/* TEAL (< 55%) */
.rwwhois-lifecycle-fill.rwwhois-lifecycle-teal {
    background: linear-gradient(90deg, #008181 0%, #14b8a6 100%);
}

/* AMBER (55% - 78%) */
.rwwhois-lifecycle-fill.rwwhois-lifecycle-amber {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

/* RED (> 78% or Expired) */
.rwwhois-lifecycle-fill.rwwhois-lifecycle-red {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.rwwhois-date-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 11px;
}

.rwwhois-date-card {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 9px;
}

.rwwhois-date-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #d9eeee;
    color: #008181;
    border: 1px solid #bddddd;
    border-radius: 8px;
    font-size: 14px;
}

.rwwhois-date-card span {
    display: block;
    margin-bottom: 4px;
    color: #697373;
    font-size: 12px;
    line-height: 1.35;
}

.rwwhois-date-card strong {
    display: block;
    color: #303636;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.rwwhois-info-card {
    padding: 17px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 10px;
}

.rwwhois-info-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 11px;
}

.rwwhois-info-field {
    min-width: 0;
    padding: 13px 14px;
    background: #ffffff;
    border: 1px solid #cbdcdc;
    border-radius: 8px;
}

.rwwhois-info-field span {
    display: block;
    margin-bottom: 5px;
    color: #727c7c;
    font-size: 12px;
    line-height: 1.4;
}

.rwwhois-info-field strong,
.rwwhois-info-field > div {
    display: block;
    color: #303636;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.rwwhois-info-field a {
    color: #008181;
    text-decoration: none;
    font-weight: 700;
}

.rwwhois-info-field a:hover {
    text-decoration: underline;
}

.rwwhois-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 10px;
}

.rwwhois-status-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    background: #ffffff;
    border: 1px solid #bfd3d3;
    border-radius: 50px;
    color: #465252;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rwwhois-status-item::before {
    content: "";
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: #008181;
    border-radius: 50%;
}

.rwwhois-nameserver-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
}

.rwwhois-nameserver-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 14px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 8px;
    color: #303838;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rwwhois-nameserver-item i {
    flex-shrink: 0;
    color: #008181;
    font-size: 12px;
}

.rwwhois-contact-card {
    padding: 17px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 10px;
}

.rwwhois-contact-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
}

.rwwhois-contact-field {
    min-width: 0;
    padding: 13px 14px;
    background: #ffffff;
    border: 1px solid #cbdcdc;
    border-radius: 8px;
}

.rwwhois-contact-field span {
    display: block;
    margin-bottom: 5px;
    color: #727c7c;
    font-size: 12px;
}

.rwwhois-contact-field strong,
.rwwhois-contact-field a {
    display: block;
    color: #303636;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.rwwhois-contact-field a {
    color: #008181;
    text-decoration: none;
}

.rwwhois-contact-field a:hover {
    text-decoration: underline;
}

.rwwhois-privacy-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 25px;
    padding: 17px;
    background: #edf5f8;
    border: 1px solid #c3d8df;
    border-radius: 10px;
}

.rwwhois-privacy-notice[hidden] {
    display: none;
}

.rwwhois-privacy-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcecf1;
    color: #397083;
    border-radius: 8px;
    font-size: 14px;
}

.rwwhois-privacy-notice h3 {
    margin: 0 0 5px;
    color: #34474d;
    font-size: 15px;
}

.rwwhois-privacy-notice p {
    max-width: 720px;
    margin: 0;
    color: #5c6d72;
    font-size: 14px;
    line-height: 1.65;
}

.rwwhois-rdap-card {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    padding: 16px;
    background: #eef6f6;
    border: 1px solid #bfd6d6;
    border-radius: 10px;
}

.rwwhois-rdap-card > div {
    min-width: 0;
    padding: 13px 14px;
    background: #ffffff;
    border: 1px solid #cbdcdc;
    border-radius: 8px;
}

.rwwhois-rdap-card span {
    display: block;
    margin-bottom: 5px;
    color: #727c7c;
    font-size: 12px;
}

.rwwhois-rdap-card strong {
    display: block;
    color: #303636;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.rwwhois-report-actions {
    margin-top: 25px;
    text-align: center;
}

.rwwhois-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: #ffffff;
    border: 1px solid #008181;
    border-radius: 7px;
    color: #008181;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.rwwhois-outline-btn:hover {
    background: #008181;
    color: #ffffff;
    transform: translateY(-1px);
}

/* CONTENT SECTIONS */
.rwwhois-content-section,
.rwwhois-how,
.rwwhois-faq {
    max-width: 1000px;
    margin: 72px auto 0;
    padding-top: 60px;
}

.rwwhois-content-heading {
    max-width: 730px;
    margin: 0 auto 29px;
    text-align: center;
}

.rwwhois-content-heading > span {
    display: block;
    margin-bottom: 9px;
    color: #008181;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.rwwhois-content-heading h2 {
    margin: 0 0 11px;
    color: #292f2f;
    font-size: 34px;
    line-height: 1.2;
}

.rwwhois-content-heading h2 strong {
    color: #008181;
}

.rwwhois-content-heading p {
    max-width: 670px;
    margin: 0 auto;
    color: #5e6868;
    font-size: 17px;
    line-height: 1.7;
}

.rwwhois-benefits {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.rwwhois-benefit {
    min-width: 0;
    padding: 21px;
    background: #edf6f6;
    border: 1px solid #b9d2d2;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,70,70,.025);
}

.rwwhois-benefit-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #d8eeee;
    color: #008181;
    border: 1px solid #bcdcdc;
    border-radius: 8px;
    font-size: 16px;
}

.rwwhois-benefit h3 {
    margin: 0 0 7px;
    color: #303636;
    font-size: 17px;
    line-height: 1.4;
}

.rwwhois-benefit p {
    margin: 0;
    color: #5e6868;
    font-size: 14px;
    line-height: 1.62;
}

.rwwhois-steps {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.rwwhois-step {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 20px;
    background: #edf6f6;
    border: 1px solid #b9d2d2;
    border-radius: 10px;
}

.rwwhois-step-number {
    flex-shrink: 0;
    color: #008181;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
}

.rwwhois-step h3 {
    margin: 0 0 7px;
    color: #303636;
    font-size: 16px;
    line-height: 1.4;
}

.rwwhois-step p {
    margin: 0;
    color: #5e6868;
    font-size: 14px;
    line-height: 1.62;
}

.rwwhois-faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 11px;
}

.rwwhois-faq-item {
    overflow: hidden;
    background: #f2f8f8;
    border: 1px solid #b9d0d0;
    border-radius: 9px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.rwwhois-faq-item:hover {
    border-color: #8ebbbb;
}

.rwwhois-faq-item[open] {
    background: #edf7f7;
    border-color: #78b5b5;
    box-shadow: 0 5px 18px rgba(0,70,70,.045);
}

.rwwhois-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    padding: 17px 19px;
    cursor: pointer;
    list-style: none;
    color: #303636;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
}

.rwwhois-faq-item summary::-webkit-details-marker {
    display: none;
}

.rwwhois-faq-item summary i {
    flex-shrink: 0;
    color: #008181;
    font-size: 16px;
    transition: transform .25s ease;
}

.rwwhois-faq-item[open] summary i {
    transform: rotate(45deg);
}

.rwwhois-faq-item > p {
    margin: 0;
    padding: 0 19px 18px;
    color: #596565;
    font-size: 15px;
    line-height: 1.7;
}

.rwwhois-final-cta {
    max-width: 1000px;
    margin: 62px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 33px;
    background: #008181;
    border: 1px solid #007272;
    border-radius: 13px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,90,90,.12);
}

.rwwhois-final-cta > div {
    max-width: 650px;
}

.rwwhois-final-cta span {
    display: block;
    margin-bottom: 7px;
    color: #c8f5f5;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1px;
}

.rwwhois-final-cta h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.3;
}

.rwwhois-final-cta p {
    max-width: 600px;
    margin: 0;
    color: #e9ffff;
    font-size: 14px;
    line-height: 1.65;
}

.rwwhois-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 13px 20px;
    background: #ffffff;
    color: #008181 !important;
    border-radius: 7px;
    text-decoration: none !important;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.rwwhois-final-btn:hover {
    background: #f1ffff;
    color: #006f6f !important;
    transform: translateY(-1px);
}

.rwwhois-final-btn i {
    font-size: 10px;
}

/*====================================================
 991PX BREAKPOINT (MATCHES ALL HTML ELEMENTS)
====================================================*/

@media (max-width: 991px) {

    .rwwhois-page {
        max-width: 800px;
        margin: 0 auto;
        padding: 80px 18px 20px;
    }

    .rwwhois-hero {
        max-width: 700px;
        margin-bottom: 27px;
    }

    .rwwhois-eyebrow {
        margin-bottom: 10px;
        font-size: 7px;
    }

    .rwwhois-hero h1 {
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 1.18;
    }

    .rwwhois-hero p {
        max-width: 630px;
        font-size: 11px;
        line-height: 1.68;
    }

    .rwwhois-checker {
        max-width: 700px;
        padding: 21px;
        background: #dddddd;
        border-color: #9fc7c7;
    }

    .rwwhois-form label {
        font-size: 14px;
    }

    .rwwhois-input-row {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .rwwhois-input-wrap input {
        height: 51px;
        font-size: 15px;
    }

    .rwwhois-submit {
        width: 100%;
        min-height: 49px;
        padding: 11px 18px;
        font-size: 14px;
    }

    .rwwhois-form-help {
        gap: 6px;
        margin-top: 10px;
        font-size: 11px;
    }

    .rwwhois-example {
        padding: 5px 8px;
        font-size: 10px;
    }

    .rwwhois-state,
    .rwwhois-report {
        max-width: 700px;
    }

    .rwwhois-loading {
        padding: 19px;
    }

    .rwwhois-loading h2 {
        font-size: 18px;
    }

    .rwwhois-loading p {
        font-size: 14px;
    }

    .rwwhois-error-content h2 {
        font-size: 19px;
    }

    .rwwhois-error-content p {
        font-size: 14px;
    }

    .rwwhois-report {
        padding: 21px;
    }

    /* MOBILE REPORT HEADER ALIGNMENT FIX */
    .rwwhois-report-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .rwwhois-report-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .rwwhois-head-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .rwwhois-report-heading h2 {
        font-size: 20px;
    }

    .rwwhois-report-heading p {
        font-size: 13px;
    }

    .rwwhois-status-badge {
        width: max-content;
        margin-left: 0;
        font-size: 11px;
    }

    .rwwhois-available-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .rwwhois-buy-btn {
        width: 100%;
        justify-content: center;
    }

    .rwwhois-summary {
        padding: 13px 14px;
    }

    .rwwhois-summary p {
        font-size: 13px;
    }

    .rwwhois-report-section {
        margin-top: 24px;
    }

    .rwwhois-section-title {
        margin-bottom: 12px;
    }

    .rwwhois-section-title > div:first-child {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .rwwhois-section-title-text span {
        font-size: 15px;
    }

    .rwwhois-section-title-text small {
        font-size: 11px;
    }

    .rwwhois-website-card {
        grid-template-columns: 1fr;
    }

    .rwwhois-preview {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid #bfd5d5;
    }

    .rwwhois-preview-placeholder {
        font-size: 13px;
    }

    .rwwhois-website-info {
        padding: 19px;
    }

    .rwwhois-favicon-wrap {
        width: 43px;
        height: 43px;
    }

    .rwwhois-favicon-wrap img {
        width: 24px;
        height: 24px;
    }

    .rwwhois-site-identity h3 {
        font-size: 17px;
    }

    .rwwhois-site-identity p {
        font-size: 13px;
    }

    .rwwhois-website-description {
        margin-top: 13px;
        font-size: 13px;
    }

    .rwwhois-website-meta {
        margin-top: 14px;
    }

    .rwwhois-site-status,
    .rwwhois-site-redirect {
        font-size: 10px;
    }

    .rwwhois-website-link {
        margin-top: 16px;
        font-size: 13px;
    }

    .rwwhois-overview-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 9px;
    }

    .rwwhois-overview-card {
        padding: 13px;
    }

    .rwwhois-overview-card span {
        font-size: 12px;
    }

    .rwwhois-overview-card strong {
        font-size: 14px;
    }

    .rwwhois-date-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .rwwhois-date-card {
        padding: 13px;
    }

    .rwwhois-date-card span {
        font-size: 11px;
    }

    .rwwhois-date-card strong {
        font-size: 13px;
    }

    .rwwhois-info-card {
        padding: 13px;
    }

    .rwwhois-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .rwwhois-info-field {
        padding: 12px;
    }

    .rwwhois-info-field span {
        font-size: 11px;
    }

    .rwwhois-info-field strong,
    .rwwhois-info-field > div {
        font-size: 13px;
    }

    .rwwhois-status-list {
        padding: 13px;
        gap: 7px;
    }

    .rwwhois-status-item {
        padding: 7px 10px;
        font-size: 12px;
    }

    .rwwhois-nameserver-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .rwwhois-nameserver-item {
        padding: 12px;
        font-size: 13px;
    }

    .rwwhois-contact-card {
        padding: 13px;
    }

    .rwwhois-contact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .rwwhois-contact-field {
        padding: 12px;
    }

    .rwwhois-contact-field span {
        font-size: 11px;
    }

    .rwwhois-contact-field strong,
    .rwwhois-contact-field a {
        font-size: 13px;
    }

    .rwwhois-contact-unavailable {
        font-size: 13px;
    }

    .rwwhois-privacy-notice {
        padding: 14px;
    }

    .rwwhois-privacy-notice h3 {
        font-size: 14px;
    }

    .rwwhois-privacy-notice p {
        font-size: 13px;
    }

    .rwwhois-rdap-card {
        grid-template-columns: 1fr;
        padding: 13px;
    }

    .rwwhois-rdap-card span {
        font-size: 11px;
    }

    .rwwhois-rdap-card strong {
        font-size: 13px;
    }

    .rwwhois-content-section,
    .rwwhois-how,
    .rwwhois-faq {
        max-width: 700px;
        margin-top: 51px;
        padding-top: 50px;
    }

    .rwwhois-content-heading {
        max-width: 630px;
        margin-bottom: 23px;
    }

    .rwwhois-content-heading > span {
        font-size: 7px;
    }

    .rwwhois-content-heading h2 {
        font-size: 18px;
    }

    .rwwhois-content-heading p {
        font-size: 11px;
        line-height: 1.68;
    }

    .rwwhois-benefits {
        max-width: 650px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
    }

    .rwwhois-benefit {
        width: 260px;
        max-width: 100%;
        min-height: 190px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 18px;
        background: #eaf5f5;
        border-color: #aecbcb;
    }

    .rwwhois-benefit-icon {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 12px;
        flex-shrink: 0;
        font-size: 12px;
    }

    .rwwhois-benefit h3 {
        margin: 0 0 7px;
        font-size: 15px;
        line-height: 1.35;
    }

    .rwwhois-benefit p {
        margin: 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .rwwhois-steps {
        max-width: 650px;
        margin: 0 auto;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
    }

    .rwwhois-step {
        width: 260px;
        max-width: 100%;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 18px;
        background: #eaf5f5;
        border-color: #aecbcb;
    }

    .rwwhois-step-number {
        display: block;
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 1;
    }

    .rwwhois-step > div {
        width: 100%;
    }

    .rwwhois-step h3 {
        margin: 0 0 7px;
        font-size: 15px;
        line-height: 1.35;
    }

    .rwwhois-step p {
        margin: 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .rwwhois-faq-list {
        max-width: 650px;
    }

    .rwwhois-faq-item {
        background: #edf6f6;
        border-color: #abc9c9;
    }

    .rwwhois-faq-item summary {
        padding: 15px 16px;
        font-size: 13px;
    }

    .rwwhois-faq-item > p {
        padding: 0 16px 15px;
        font-size: 12px;
        line-height: 1.68;
    }

    .rwwhois-final-cta {
        max-width: 680px;
        margin-top: 46px;
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
        padding: 23px;
        border-radius: 10px;
    }

    .rwwhois-final-cta span {
        font-size: 8px;
    }

    .rwwhois-final-cta h2 {
        font-size: 18px;
    }

    .rwwhois-final-cta p {
        font-size: 10px;
    }

    .rwwhois-final-btn {
        min-height: 40px;
        padding: 11px 18px;
        font-size: 14px;
    }
}