.racket-demo-page {
    padding: 32px 0 64px;
    background: #f7f7f7;
}

.rd-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.rd-page-content {
    margin-bottom: 24px;
}

.rd-page-content > *:last-child {
    margin-bottom: 0;
}

/* Hero */
.rd-hero {
    margin-bottom: 28px;
}

.rd-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.rd-hero__image {
    overflow: hidden;
    border-radius: 18px;
    background: #eaeaea;
    min-height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.rd-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.rd-hero__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.rd-main-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

/* Cards */
.rd-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.rd-card p:last-child,
.rd-card ul:last-child,
.rd-card ol:last-child {
    margin-bottom: 0;
}

.rd-card__eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.rd-card__title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.rd-card p,
.rd-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}

/* Sections */
.rd-section {
    margin-bottom: 22px;
}

.rd-section--last {
    margin-bottom: 0;
}

.rd-section-title {
    margin: 0 0 14px;
    padding-left: 14px;
    border-left: 4px solid #111;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

/* Steps */
.rd-steps {
    margin: 0;
    padding-left: 22px;
}

.rd-steps li {
    margin-bottom: 12px;
    padding-left: 4px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.rd-steps li:last-child {
    margin-bottom: 0;
}

/* Models */
.rd-models {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.rd-model {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 12px 14px;
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.45;
    color: #222;
}

/* Locations */
.rd-location-list {
    margin: 0;
    padding-left: 20px;
}

.rd-location-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.rd-location-list li:last-child {
    margin-bottom: 0;
}

/* Contact box */
.rd-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    background: #111;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.rd-contact-box__label {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.rd-contact-box__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.rd-contact-box__phone:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Links */
.racket-demo-page a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.racket-demo-page a:hover {
    opacity: 0.72;
}

/* Responsive */
@media (max-width: 1100px) {
    .rd-models {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .rd-hero__grid {
        grid-template-columns: 1fr;
    }

    .rd-hero__image img {
        min-height: 320px;
    }

    .rd-main-title {
        font-size: 34px;
    }

    .rd-section-title {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .racket-demo-page {
        padding: 20px 0 40px;
    }

    .rd-container {
        width: min(100%, calc(100% - 20px));
    }

    .rd-main-title {
        font-size: 29px;
    }

    .rd-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .rd-card__title {
        font-size: 23px;
    }

    .rd-section-title {
        font-size: 21px;
        padding-left: 12px;
    }

    .rd-card p,
    .rd-section p,
    .rd-steps li,
    .rd-location-list li,
    .rd-model {
        font-size: 15px;
        line-height: 1.65;
    }

    .rd-models {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rd-contact-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
        border-radius: 14px;
    }

    .rd-contact-box__phone {
        width: 100%;
    }
}