.logo-link {
    color: inherit;
    text-decoration: none;
}

.ad-order-hero {
    background: #fff;
    padding: 72px 0;
}

.ad-order-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 56px;
    align-items: start;
}

.ad-copy {
    padding-top: 28px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ad-copy p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 18px;
}

.ad-scroll-cue {
    display: inline-grid;
    justify-items: center;
    gap: 14px;
    margin-top: 64px;
    color: #536173;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ad-scroll-cue i {
    width: 68px;
    height: 104px;
    position: relative;
    display: block;
}

.ad-scroll-cue i::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 10px;
    height: 82px;
    background: #536173;
    border-radius: 999px;
    transform: translateX(-50%);
}

.ad-scroll-cue i::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 48px;
    height: 48px;
    border-right: 10px solid #536173;
    border-bottom: 10px solid #536173;
    border-radius: 4px;
    transform: translateX(-50%) rotate(45deg);
}

.ad-order-form {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 28px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.selected-placement {
    border-left: 3px solid var(--primary-blue);
    background: #F8FAFC;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.selected-placement span,
.selected-placement small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.selected-placement strong {
    display: block;
    margin: 6px 0;
    font-size: 22px;
    line-height: 1.25;
}

.ad-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ad-form-grid label,
.order-confirm {
    display: grid;
    gap: 7px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ad-form-grid input,
.ad-form-grid textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark-gray);
    outline: none;
}

.ad-form-grid input:focus,
.ad-form-grid textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}

.ad-form-grid .full {
    grid-column: 1 / -1;
}

.order-confirm {
    grid-template-columns: auto 1fr;
    align-items: start;
    margin: 20px 0;
    color: var(--dark-gray);
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1.45;
}

.order-confirm input {
    margin-top: 3px;
}

.ad-order-form .btn {
    width: 100%;
}

.ad-media-section {
    background: var(--light-bg);
    padding: 42px 0 80px;
}

.ad-media-shell {
    position: relative;
    width: 100%;
    background: #606161;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.14);
    overflow: auto;
}

.ad-media-shell img {
    display: block;
    width: 100%;
    min-width: 900px;
    height: auto;
}

.ad-hotspot {
    position: absolute;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 82, 204, 0.08);
    color: transparent;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ad-hotspot:hover,
.ad-hotspot:focus-visible,
.ad-hotspot.active {
    background: rgba(0, 82, 204, 0.24);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.65), 0 0 0 6px rgba(0, 82, 204, 0.35);
    outline: none;
}

@media (max-width: 920px) {
    .ad-order-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ad-copy {
        padding-top: 0;
    }

    .ad-scroll-cue {
        margin-top: 24px;
    }
}

@media (max-width: 640px) {
    .ad-order-hero {
        padding: 48px 0;
    }

    .ad-order-form {
        padding: 20px;
    }

    .ad-form-grid {
        grid-template-columns: 1fr;
    }
}
