/* GQNET Certificate Verification Page */
.gq-verify-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 45%, #f5f7fa 100%);
}

.gq-verify-hero {
    position: relative;
    padding: 3rem 0 3.5rem;
    overflow: hidden;
    background: transparent;
    text-align: center;
}

.gq-verify-hero::before {
    content: '';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: min(420px, 40vw);
    height: min(420px, 40vw);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Ccircle cx='100' cy='100' r='88' stroke='%23cbd5e1' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='100' cy='100' r='72' stroke='%23cbd5e1' stroke-width='1.5' opacity='0.35'/%3E%3Cpath d='M100 28l8 24h25l-20 15 8 24-21-15-21 15 8-24-20-15h25z' fill='%23cbd5e1' opacity='0.25'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    opacity: 0.7;
}

.gq-verify-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.gq-verify-badge {
    display: inline-block;
    background: rgba(181, 148, 97, 0.15);
    color: #967622;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.gq-verify-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #0c1f3d;
    margin-bottom: 0.75rem;
}

.gq-verify-hero__lead {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 620px;
    margin-inline: auto;
}

.gq-verify-alert {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 0.875rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.gq-verify-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.gq-verify-form-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(12, 31, 61, 0.08);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: left;
    max-width: 560px;
    margin-inline: auto;
}

.gq-verify-form-card label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.gq-verify-input-wrap {
    position: relative;
    margin-bottom: 1.25rem;
}

.gq-verify-input-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.gq-verify-input-wrap input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #0c1f3d;
    background: #fff;
}

.gq-verify-input-wrap input:focus {
    outline: none;
    border-color: #4a8fd4;
    box-shadow: 0 0 0 3px rgba(74, 143, 212, 0.15);
}

.gq-verify-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem;
    background: #9a7b4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

.gq-verify-submit:hover { background: #866942; }

.gq-verify-form-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

/* Result card */
.gq-verify-result {
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 8px 32px rgba(12, 31, 61, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.gq-verify-result--invalid { border-left-color: #ef4444; }

.gq-verify-result__status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #166534;
    background: #dcfce7;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.gq-verify-result--invalid .gq-verify-result__status {
    color: #991b1b;
    background: #fef2f2;
}

.gq-verify-result dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gq-verify-result dt {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.gq-verify-result dd {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0c1f3d;
}

.gq-verify-result__actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gq-verify-link-btn {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #9a7b4f;
}

.gq-verify-link-btn:hover { text-decoration: underline; }

/* Features */
.gq-verify-features {
    padding: 3rem 0;
    background: #fff;
}

.gq-verify-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gq-verify-feature-card {
    background: #f8fafc;
    border: 1px solid #e8ecf1;
    border-radius: 6px;
    padding: 1.75rem 1.5rem;
}

.gq-verify-feature-card__icon {
    width: 44px;
    height: 44px;
    background: #0c1f3d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}

.gq-verify-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c1f3d;
    margin-bottom: 0.5rem;
}

.gq-verify-feature-card p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.65;
}

/* Commitment */
.gq-verify-commitment {
    padding: 4rem 0;
    background: #f4f6f9;
}

.gq-verify-commitment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.gq-verify-commitment h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #0c1f3d;
    margin-bottom: 1rem;
}

.gq-verify-commitment > div > p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.gq-verify-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.gq-verify-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #0c1f3d;
}

.gq-verify-checklist__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(181, 148, 97, 0.2);
    color: #967622;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.gq-verify-commitment__visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(12, 31, 61, 0.12);
}

.gq-verify-commitment__visual img {
    width: 100%;
    height: clamp(260px, 32vw, 340px);
    object-fit: cover;
}

.gq-verify-doc-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: #fff;
    border-radius: 6px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    max-width: 240px;
}

.gq-verify-doc-badge__icon {
    width: 36px;
    height: 36px;
    background: rgba(181, 148, 97, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #967622;
    flex-shrink: 0;
}

.gq-verify-doc-badge strong {
    display: block;
    font-size: 0.8125rem;
    color: #0c1f3d;
}

.gq-verify-doc-badge span {
    font-size: 0.6875rem;
    color: #64748b;
}

/* Support section */
.gq-verify-support {
    background: #0c1f3d;
    padding: 3.5rem 0;
    text-align: center;
}

.gq-verify-support__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.gq-verify-support h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.gq-verify-support p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.gq-verify-support__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gq-verify-btn-white {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    background: #fff;
    color: #0c1f3d;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.gq-verify-btn-white:hover { opacity: 0.92; }

.gq-verify-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
}

.gq-verify-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
    .gq-verify-features__grid { grid-template-columns: 1fr; }
    .gq-verify-commitment__grid { grid-template-columns: 1fr; }
    .gq-verify-hero::before { opacity: 0.35; right: -10%; }
}

@media (max-width: 640px) {
    .gq-verify-result dl { grid-template-columns: 1fr; }
    .gq-verify-hero { padding: 1.75rem 0 2.5rem; }
    .gq-verify-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .gq-verify-form-card { margin-inline: 0; }
    .gq-verify-form-card input,
    .gq-verify-form-card button { width: 100%; }
    .gq-verify-support__actions { flex-direction: column; }
    .gq-verify-support__actions a { width: 100%; text-align: center; }
}
