:root {
    --blue-900: #0b2a79;
    --blue-700: #1d62d8;
    --blue-300: #d7e7ff;
    --yellow-500: #ffd217;
    --yellow-400: #ffe361;
    --white: #ffffff;
    --text: #122350;
    --muted: #4b5f95;
    --shadow: 0 18px 45px rgba(36, 92, 210, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(94, 146, 255, 0.16), transparent 22%),
        radial-gradient(circle at bottom right, rgba(94, 146, 255, 0.15), transparent 20%),
        linear-gradient(180deg, #eef5ff 0%, #dce9ff 100%);
    min-height: 100vh;
}

img,
svg {
    max-width: 100%;
}

.consult-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.consult-card {
    position: relative;
    width: min(100%, 760px);
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(180deg, #fcfdff 0%, #eff5ff 100%);
    box-shadow: var(--shadow);
    padding: 44px 28px 36px;
    text-align: center;
}

.decor {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(122, 165, 255, 0.16);
    filter: blur(2px);
    pointer-events: none;
}

.decor-left {
    left: -100px;
    bottom: -72px;
}

.decor-right {
    right: -92px;
    top: -76px;
}

.message-stack {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.message-banner {
    border-radius: 14px;
    padding: 12px 16px;
    background: #fff5d6;
    color: #7f5200;
    font-size: 14px;
    font-weight: 600;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue-700);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-title {
    display: grid;
    gap: 2px;
    margin: 0;
    color: var(--blue-900);
    font-size: clamp(50px, 9vw, 96px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    word-break: break-word;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 34px 0 28px;
    align-items: start;
}

.feature-item {
    padding: 8px 6px;
    min-width: 0;
}

.feature-item h2 {
    margin: 12px 0 8px;
    color: var(--blue-900);
    font-size: 22px;
    font-weight: 800;
}

.feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.feature-icon,
.privacy-icon,
.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #2f86ff 0%, #1c58d1 100%);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(31, 86, 203, 0.22);
}

.feature-icon {
    width: 84px;
    height: 84px;
}

.feature-icon svg,
.privacy-icon svg,
.cta-icon svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-area {
    margin-top: 8px;
}

.helper-text {
    margin: 0 0 16px;
    color: var(--blue-900);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: min(100%, 560px);
    padding: 18px 30px;
    border: 3px solid #2f6dcb;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--yellow-400) 0%, var(--yellow-500) 100%);
    color: var(--blue-900);
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        0 0 0 8px rgba(255, 210, 23, 0.18),
        0 16px 30px rgba(255, 210, 23, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    flex-wrap: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 0 0 10px rgba(255, 210, 23, 0.2),
        0 18px 34px rgba(255, 210, 23, 0.28);
}

.cta-button::before,
.cta-button::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 210, 23, 0.9);
    filter: blur(6px);
    transform: translateY(-50%);
}

.cta-button::before {
    left: -10px;
}

.cta-button::after {
    right: -10px;
}

.cta-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.cta-label {
    min-width: 0;
    line-height: 1.05;
}

.cta-icon svg {
    width: 28px;
    height: 28px;
}

.cta-arrow {
    font-size: 1.1em;
    line-height: 1;
}

.button-subtext {
    margin: 18px 0 0;
    color: var(--blue-700);
    font-size: clamp(24px, 4vw, 38px);
    font-style: italic;
    font-weight: 700;
}

.privacy-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 500px;
    margin: 32px auto 0;
    text-align: left;
}

.privacy-icon {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
}

.privacy-box h3 {
    margin: 0 0 6px;
    color: var(--blue-900);
    font-size: 24px;
}

.privacy-box p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.45;
}

.empty-state {
    padding: 60px 16px;
}

.empty-state h1 {
    margin: 0 0 12px;
    color: var(--blue-900);
}

.empty-state p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

@media (min-width: 1280px) {
    .consult-card {
        width: min(100%, 920px);
        padding: 56px 42px 42px;
    }

    .feature-grid {
        gap: 28px;
        margin: 42px 0 34px;
    }

    .feature-item {
        padding: 10px 12px;
    }
}

@media (max-width: 1024px) {
    .consult-shell {
        padding: 24px 14px;
    }

    .consult-card {
        width: min(100%, 820px);
        padding: 38px 24px 32px;
    }

    .feature-grid {
        gap: 16px;
    }

    .feature-item h2 {
        font-size: 20px;
    }

    .feature-item p {
        font-size: 16px;
    }

    .cta-button {
        min-width: min(100%, 100%);
    }
}

@media (max-width: 820px) {
    .consult-card {
        border-radius: 28px;
        padding: 34px 20px 30px;
    }

    .eyebrow {
        font-size: 18px;
        letter-spacing: 0.05em;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
        margin: 28px 0 24px;
    }

    .feature-item:last-child {
        grid-column: 1 / -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .feature-icon {
        width: 72px;
        height: 72px;
    }

    .feature-icon svg {
        width: 34px;
        height: 34px;
    }

    .helper-text {
        font-size: 24px;
    }

    .cta-button {
        gap: 14px;
        padding: 16px 22px;
        font-size: clamp(24px, 4vw, 36px);
    }

    .privacy-box {
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .consult-card {
        padding: 32px 18px 28px;
        border-radius: 26px;
    }

    .eyebrow {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-item:last-child {
        grid-column: auto;
        max-width: none;
    }

    .feature-item {
        padding: 6px 10px;
    }

    .feature-item h2 {
        font-size: 20px;
    }

    .feature-item p {
        font-size: 16px;
    }

    .helper-text {
        font-size: 22px;
    }

    .cta-button {
        gap: 10px;
        width: 100%;
        min-width: 0;
        padding: 16px 20px;
        font-size: 24px;
        border-width: 2px;
        box-shadow:
            0 0 0 6px rgba(255, 210, 23, 0.16),
            0 12px 24px rgba(255, 210, 23, 0.2);
    }

    .cta-icon {
        width: 48px;
        height: 48px;
    }

    .cta-icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-label {
        text-align: center;
    }

    .privacy-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .consult-shell {
        padding: 12px;
    }

    .consult-card {
        padding: 24px 14px 22px;
        border-radius: 22px;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(36px, 15vw, 54px);
        line-height: 0.98;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-item h2 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .helper-text {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .cta-button {
        gap: 8px;
        padding: 14px 14px;
        font-size: 18px;
    }

    .button-subtext {
        margin-top: 14px;
        font-size: 22px;
    }

    .privacy-icon {
        width: 62px;
        height: 62px;
    }

    .privacy-box h3 {
        font-size: 20px;
    }

    .privacy-box p {
        font-size: 15px;
    }
}
