/* =========================================================
   VORIK DRIVER PREMIUM PUBLIC PAGE
   DRIVER R01D
   ========================================================= */

.vd {
    --vd-navy: #071b33;
    --vd-navy-2: #0b2949;
    --vd-blue: #0f4c81;
    --vd-sky: #38bdf8;
    --vd-yellow: #f4c64e;
    --vd-bg: #f5f8fc;
    --vd-text: #10233f;
    --vd-muted: #64748b;
    --vd-border: #dce5ef;

    overflow: hidden;
    color: var(--vd-text);
    background: #fff;
}

.vd *,
.vd *::before,
.vd *::after {
    box-sizing: border-box;
}

.vd-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.vd h1,
.vd h2,
.vd h3,
.vd p {
    margin-top: 0;
}

.vd h1,
.vd h2,
.vd h3 {
    color: var(--vd-navy);
}

.vd p {
    color: var(--vd-muted);
    line-height: 1.72;
}

.vd-section {
    padding: 96px 0;
}

/* HERO */

.vd-hero {
    position: relative;
    padding: 92px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(56, 189, 248, .18),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef6fc 50%,
            #ffffff 100%
        );
}

.vd-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -180px;
    bottom: -280px;
    border-radius: 50%;
    background: rgba(15, 76, 129, .06);
}

.vd-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
    gap: 70px;
}

.vd-eyebrow,
.vd-kicker,
.vd-section-head > span,
.vd-info-card > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vd-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.vd-eyebrow span {
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: var(--vd-sky);
}

.vd-hero h1 {
    max-width: 700px;
    margin: 22px 0;
    font-size: clamp(46px, 5.8vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
}

.vd-hero-lead {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 18px;
}

.vd-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.vd-btn,
.vd-play {
    min-height: 54px;
    border-radius: 14px;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.vd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 850;
}

.vd-btn:hover,
.vd-play:hover {
    transform: translateY(-2px);
}

.vd-btn-primary {
    color: #fff;
    background: var(--vd-blue);
    box-shadow: 0 14px 30px rgba(15, 76, 129, .22);
}

.vd-btn-dark {
    color: #fff;
    background: var(--vd-navy);
}

.vd-btn-white {
    color: var(--vd-navy);
    background: #fff;
}

.vd-play {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 15px;
    color: var(--vd-navy);
    background: #fff;
    border: 1px solid var(--vd-border);
    box-shadow: 0 10px 24px rgba(7, 27, 51, .08);
}

.vd-play > i {
    font-size: 25px;
}

.vd-play span {
    display: grid;
    line-height: 1.05;
}

.vd-play small {
    font-size: 9px;
    letter-spacing: .05em;
}

.vd-play strong {
    font-size: 15px;
}

.vd-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 30px;
}

.vd-hero-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #45566d;
    font-size: 13px;
    font-weight: 700;
}

.vd-hero-points i {
    color: var(--vd-blue);
}

/* PHONE */

.vd-visual {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
}

.vd-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(15, 76, 129, .10);
}

.vd-orbit-one {
    width: 520px;
    height: 520px;
}

.vd-orbit-two {
    width: 410px;
    height: 410px;
}

.vd-phone {
    position: relative;
    z-index: 3;
    width: 304px;
    padding: 10px;
    border-radius: 42px;
    background: #06182d;
    box-shadow:
        0 38px 80px rgba(7, 27, 51, .24),
        0 6px 20px rgba(7, 27, 51, .12);
    transform: rotate(3deg);
}

.vd-phone-screen {
    position: relative;
    min-height: 570px;
    padding: 24px 18px 18px;
    overflow: hidden;
    border-radius: 33px;
    background: #f5f8fb;
}

.vd-phone-screen::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 78px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #07182c;
}

.vd-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.vd-phone-top div {
    display: grid;
    gap: 3px;
}

.vd-phone-top small,
.vd-online small,
.vd-trip-card small,
.vd-mini-head small,
.vd-mini-trip small {
    color: #7b899d;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
}

.vd-phone-top strong {
    color: var(--vd-navy);
    font-size: 17px;
}

.vd-phone-top img {
    border-radius: 12px;
    box-shadow: 0 7px 15px rgba(7, 27, 51, .14);
}

.vd-online {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 13px;
    border-radius: 15px;
    color: var(--vd-navy);
    background: #fff;
    box-shadow: 0 8px 24px rgba(7, 27, 51, .07);
}

.vd-online > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vd-online > div > div {
    display: grid;
}

.vd-online-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
}

.vd-online-switch {
    position: relative;
    width: 38px;
    height: 22px;
    border-radius: 99px;
    background: #22c55e;
}

.vd-online-switch i {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
}

.vd-map {
    position: relative;
    height: 205px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 17px;
    background:
        linear-gradient(
            35deg,
            #e7edf3 25%,
            transparent 25%
        ) -20px 0 / 80px 80px,
        linear-gradient(
            -35deg,
            #eaf0f5 25%,
            transparent 25%
        ) -20px 0 / 80px 80px,
        #f4f7fa;
}

.vd-road {
    position: absolute;
    display: block;
    height: 9px;
    border-radius: 99px;
    background: #fff;
    box-shadow: 0 0 0 1px #d9e2ea;
}

.vd-road-a {
    width: 270px;
    top: 90px;
    left: -20px;
    transform: rotate(-17deg);
}

.vd-road-b {
    width: 220px;
    top: 100px;
    left: 45px;
    transform: rotate(42deg);
}

.vd-road-c {
    width: 210px;
    top: 80px;
    left: 10px;
    transform: rotate(82deg);
}

.vd-pin {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow: 0 7px 15px rgba(7, 27, 51, .18);
}

.vd-pin-driver {
    left: 66px;
    top: 112px;
    color: #fff;
    background: var(--vd-blue);
}

.vd-pin-rider {
    right: 57px;
    top: 46px;
    color: var(--vd-navy);
    background: var(--vd-yellow);
}

.vd-trip-card {
    position: relative;
    z-index: 4;
    margin-top: -20px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(7, 27, 51, .13);
}

.vd-trip-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.vd-trip-head > div {
    display: grid;
}

.vd-trip-head > span {
    padding: 5px 8px;
    color: var(--vd-blue);
    background: #eef7fd;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 850;
}

.vd-route-line {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 10px 0;
}

.vd-route-line > div {
    display: grid;
}

.vd-route-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.vd-route-start {
    background: var(--vd-blue);
}

.vd-route-end {
    background: var(--vd-yellow);
}

.vd-route-line strong {
    font-size: 12px;
}

.vd-trip-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 14px;
}

.vd-trip-actions button {
    min-height: 36px;
    border: 0;
    border-radius: 10px;
    color: var(--vd-navy);
    background: #edf2f6;
    font: inherit;
    font-size: 11px;
    font-weight: 850;
}

.vd-trip-actions button.is-primary {
    color: #fff;
    background: var(--vd-blue);
}

.vd-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 40px rgba(7, 27, 51, .14);
    backdrop-filter: blur(16px);
}

.vd-floating-rating {
    right: 5px;
    bottom: 85px;
}

.vd-floating-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 13px;
    color: var(--vd-navy);
    background: var(--vd-yellow);
}

.vd-floating-card div:last-child {
    display: grid;
}

.vd-floating-card small {
    color: #7b899d;
    font-size: 10px;
}

.vd-floating-card strong {
    color: var(--vd-navy);
    font-size: 12px;
}

/* SECTION HEAD */

.vd-section-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.vd-section-head-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.vd-section-head h2,
.vd-app-copy h2,
.vd-info-card h2,
.vd-safety h2,
.vd-faq-intro h2,
.vd-final h2 {
    margin: 13px 0 16px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.07;
    letter-spacing: -.035em;
}

/* BENEFITS */

.vd-benefits {
    background: #fff;
}

.vd-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vd-benefit-grid article {
    padding: 30px;
    border: 1px solid var(--vd-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(7, 27, 51, .05);
}

.vd-icon,
.vd-step-icon,
.vd-info-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    color: var(--vd-blue);
    background: #edf7fd;
    font-size: 21px;
}

.vd-benefit-grid h3,
.vd-step-grid h3 {
    margin: 22px 0 10px;
    font-size: 20px;
}

.vd-benefit-grid p,
.vd-step-grid p {
    margin-bottom: 0;
    font-size: 14px;
}

/* HOW */

.vd-how {
    background: var(--vd-bg);
}

.vd-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.vd-step-grid article {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(7, 27, 51, .06);
}

.vd-step-number {
    position: absolute;
    right: 22px;
    top: 17px;
    color: #e8eef4;
    font-size: 48px;
    font-weight: 950;
    line-height: 1;
}

/* DRIVER APP */

.vd-app-section {
    background: #fff;
}

.vd-app-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.vd-app-visual {
    display: grid;
    place-items: center;
    min-height: 520px;
    border-radius: 36px;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(56, 189, 248, .24),
            transparent 42%
        ),
        linear-gradient(145deg, #0b2949, #071b33);
}

.vd-mini-phone {
    width: min(330px, 82%);
    padding: 20px;
    border: 9px solid #051629;
    border-radius: 34px;
    background: #f5f8fb;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.vd-mini-head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.vd-mini-head img {
    width: 43px;
    height: 43px;
    border-radius: 12px;
}

.vd-mini-head > div {
    display: grid;
}

.vd-mini-map {
    position: relative;
    height: 220px;
    margin: 20px 0 15px;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(30deg, #e9eef3 12%, transparent 12%) 0 0 / 60px 60px,
        #f4f7fa;
}

.vd-mini-map span {
    position: absolute;
    display: block;
    height: 8px;
    border-radius: 99px;
    background: white;
    box-shadow: 0 0 0 1px #dce5ed;
}

.vd-mini-map span:nth-child(1) {
    width: 290px;
    left: -25px;
    top: 94px;
    transform: rotate(-21deg);
}

.vd-mini-map span:nth-child(2) {
    width: 230px;
    left: 30px;
    top: 110px;
    transform: rotate(53deg);
}

.vd-mini-map span:nth-child(3) {
    width: 230px;
    left: 38px;
    top: 96px;
    transform: rotate(92deg);
}

.vd-mini-map i {
    position: absolute;
    z-index: 2;
    left: 48%;
    top: 44%;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: var(--vd-blue);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(7, 27, 51, .2);
}

.vd-mini-trip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7, 27, 51, .08);
}

.vd-mini-trip > div {
    display: grid;
}

.vd-mini-trip strong {
    font-size: 12px;
}

.vd-mini-trip button {
    min-height: 36px;
    padding: 0 13px;
    color: #fff;
    background: var(--vd-blue);
    border: 0;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 850;
}

.vd-app-copy > p {
    max-width: 630px;
    font-size: 16px;
}

.vd-app-copy ul {
    display: grid;
    gap: 14px;
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.vd-app-copy li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #35485f;
    font-weight: 700;
}

.vd-app-copy li i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--vd-blue);
    background: #e8f5fc;
    border-radius: 50%;
    font-size: 11px;
}

/* INFO */

.vd-info {
    background: var(--vd-bg);
}

.vd-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.vd-info-card {
    padding: 38px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7, 27, 51, .06);
}

.vd-info-card-blue {
    color: #fff;
    background:
        linear-gradient(145deg, var(--vd-blue), var(--vd-navy));
}

.vd-info-card-blue h2,
.vd-info-card-blue p,
.vd-info-card-blue > span,
.vd-info-card-blue a {
    color: #fff;
}

.vd-info-card-blue p {
    opacity: .82;
}

.vd-info-card-blue .vd-info-icon {
    color: var(--vd-navy);
    background: var(--vd-yellow);
}

.vd-info-card > span {
    margin-top: 24px;
}

.vd-info-card h2 {
    font-size: 34px;
}

.vd-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
    color: var(--vd-blue);
    font-weight: 850;
    text-decoration: none;
}

/* SAFETY */

.vd-safety {
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 75% 10%,
            rgba(56, 189, 248, .18),
            transparent 25%
        ),
        var(--vd-navy);
}

.vd-safety-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
}

.vd-safety h2 {
    color: #fff;
}

.vd-safety p {
    max-width: 620px;
    color: rgba(255, 255, 255, .74);
}

.vd-safety .vd-kicker {
    color: var(--vd-sky);
}

.vd-safety-cards {
    display: grid;
    gap: 14px;
}

.vd-safety-cards article {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.vd-safety-cards article > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    color: var(--vd-navy);
    background: var(--vd-yellow);
    border-radius: 14px;
}

.vd-safety-cards article > div {
    display: grid;
}

.vd-safety-cards strong {
    color: #fff;
}

.vd-safety-cards small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .65);
}

/* FAQ */

.vd-faq {
    background: #fff;
}

.vd-faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 75px;
    align-items: start;
}

.vd-faq-intro {
    position: sticky;
    top: 100px;
}

.vd-faq-intro a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--vd-blue);
    font-weight: 850;
    text-decoration: none;
}

.vd-faq-list {
    display: grid;
    gap: 11px;
}

.vd-faq-item {
    overflow: hidden;
    border: 1px solid var(--vd-border);
    border-radius: 16px;
    background: #fff;
}

.vd-faq-item > button {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--vd-navy);
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
}

.vd-faq-item > button i {
    transition: transform .2s ease;
}

.vd-faq-item > button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.vd-faq-answer {
    padding: 0 20px 20px;
}

.vd-faq-answer p {
    margin: 0;
    font-size: 14px;
}

/* FINAL */

.vd-final {
    padding: 82px 0;
    color: #fff;
    background:
        linear-gradient(
            120deg,
            var(--vd-blue),
            var(--vd-navy)
        );
}

.vd-final-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.vd-final h2 {
    color: #fff;
    max-width: 650px;
}

.vd-final p {
    max-width: 670px;
    color: rgba(255, 255, 255, .75);
}

.vd-final .vd-kicker {
    color: var(--vd-sky);
}

.vd-play-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
}

.vd-final-app {
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.vd-final-app img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

.vd-final-app > div {
    display: grid;
}

.vd-final-app small {
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.vd-final-app strong {
    margin-top: 5px;
    max-width: 170px;
    color: #fff;
    font-size: 16px;
}

/* RESPONSIVE */

@media (max-width: 980px) {

    .vd-hero-grid,
    .vd-app-grid,
    .vd-safety-grid,
    .vd-faq-grid {
        grid-template-columns: 1fr;
    }

    .vd-hero-grid {
        gap: 35px;
    }

    .vd-hero-copy {
        max-width: 760px;
    }

    .vd-visual {
        min-height: 600px;
    }

    .vd-app-grid {
        gap: 45px;
    }

    .vd-faq-intro {
        position: static;
    }

    .vd-final-grid {
        grid-template-columns: 1fr;
    }

    .vd-final-app {
        width: fit-content;
    }
}

@media (max-width: 760px) {

    .vd-shell {
        width: min(100% - 28px, 1180px);
    }

    .vd-section,
    .vd-safety {
        padding: 70px 0;
    }

    .vd-hero {
        padding: 64px 0 75px;
    }

    .vd-hero h1 {
        font-size: clamp(42px, 14vw, 60px);
    }

    .vd-hero-lead {
        font-size: 16px;
    }

    .vd-benefit-grid,
    .vd-step-grid,
    .vd-info-grid {
        grid-template-columns: 1fr;
    }

    .vd-benefit-grid article,
    .vd-step-grid article,
    .vd-info-card {
        padding: 26px;
    }

    .vd-visual {
        min-height: 550px;
    }

    .vd-phone {
        width: 280px;
    }

    .vd-phone-screen {
        min-height: 535px;
    }

    .vd-floating-rating {
        right: -5px;
        bottom: 40px;
    }

    .vd-app-visual {
        min-height: 470px;
        border-radius: 26px;
    }

    .vd-section-head h2,
    .vd-app-copy h2,
    .vd-info-card h2,
    .vd-safety h2,
    .vd-faq-intro h2,
    .vd-final h2 {
        font-size: 35px;
    }
}

@media (max-width: 520px) {

    .vd-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vd-btn,
    .vd-play {
        width: 100%;
    }

    .vd-play {
        justify-content: center;
    }

    .vd-hero-points {
        display: grid;
        gap: 12px;
    }

    .vd-visual {
        min-height: 520px;
    }

    .vd-orbit-one {
        width: 420px;
        height: 420px;
    }

    .vd-orbit-two {
        width: 330px;
        height: 330px;
    }

    .vd-phone {
        width: 264px;
    }

    .vd-phone-screen {
        min-height: 510px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .vd-floating-rating {
        display: none;
    }

    .vd-mini-phone {
        width: 90%;
    }

    .vd-final-app {
        min-width: 0;
        width: 100%;
    }
}

/* =========================================================
   DRIVER R01F — BUTTON CONTRAST FIX
   Keep all CTA labels/icons readable on every background.
   ========================================================= */

/* Primary blue CTA */
.vd .vd-btn-primary,
.vd .vd-btn-primary:link,
.vd .vd-btn-primary:visited {
    color: #ffffff !important;
    background: var(--vd-blue) !important;
}

.vd .vd-btn-primary i,
.vd .vd-btn-primary span {
    color: inherit !important;
}

.vd .vd-btn-primary:hover,
.vd .vd-btn-primary:focus-visible {
    color: #ffffff !important;
    background: var(--vd-navy) !important;
}


/* Dark CTA */
.vd .vd-btn-dark,
.vd .vd-btn-dark:link,
.vd .vd-btn-dark:visited {
    color: #ffffff !important;
    background: var(--vd-navy) !important;
}

.vd .vd-btn-dark i,
.vd .vd-btn-dark span {
    color: inherit !important;
}

.vd .vd-btn-dark:hover,
.vd .vd-btn-dark:focus-visible {
    color: #ffffff !important;
    background: var(--vd-blue) !important;
}


/* White CTA — dark readable text */
.vd .vd-btn-white,
.vd .vd-btn-white:link,
.vd .vd-btn-white:visited {
    color: var(--vd-navy) !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, .92);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
}

.vd .vd-btn-white i,
.vd .vd-btn-white span {
    color: inherit !important;
}

.vd .vd-btn-white:hover,
.vd .vd-btn-white:focus-visible {
    color: #ffffff !important;
    background: var(--vd-blue) !important;
    border-color: var(--vd-blue) !important;
}


/* Google Play button on light backgrounds */
.vd .vd-play:not(.vd-play-dark),
.vd .vd-play:not(.vd-play-dark):link,
.vd .vd-play:not(.vd-play-dark):visited {
    color: var(--vd-navy) !important;
    background: #ffffff !important;
}

.vd .vd-play:not(.vd-play-dark) *,
.vd .vd-play:not(.vd-play-dark) i {
    color: inherit !important;
}


/* Google Play button on dark backgrounds */
.vd .vd-play-dark,
.vd .vd-play-dark:link,
.vd .vd-play-dark:visited {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .10) !important;
    border-color: rgba(255, 255, 255, .24) !important;
}

.vd .vd-play-dark *,
.vd .vd-play-dark i {
    color: inherit !important;
}

.vd .vd-play-dark:hover,
.vd .vd-play-dark:focus-visible {
    color: var(--vd-navy) !important;
    background: #ffffff !important;
}


/* Safety CTA specifically */
.vd-safety .vd-btn-white {
    color: var(--vd-navy) !important;
    background: #ffffff !important;
}

.vd-safety .vd-btn-white:hover,
.vd-safety .vd-btn-white:focus-visible {
    color: #ffffff !important;
    background: var(--vd-blue) !important;
}


/* Final blue section CTA */
.vd-final .vd-btn-white {
    color: var(--vd-navy) !important;
    background: #ffffff !important;
}

.vd-final .vd-btn-white:hover,
.vd-final .vd-btn-white:focus-visible {
    color: #ffffff !important;
    background: var(--vd-blue) !important;
}


/* Keyboard accessibility */
.vd .vd-btn:focus-visible,
.vd .vd-play:focus-visible {
    outline: 3px solid var(--vd-yellow);
    outline-offset: 3px;
}

