.ra-hero,
.ra-intro,
.ra-benefits,
.ra-benefit-cards,
.ra-steps,
.ra-order-page {
    font-family: inherit;
}

.ra-hero {
    max-width: 1500px;
    margin: 40px auto 70px;
    padding: 70px 70px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.24), transparent 34%),
        linear-gradient(135deg, #075fb8 0%, #0b69c7 48%, #084f9e 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.ra-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -120px;
    top: -160px;
}

.ra-hero-content {
    position: relative;
    z-index: 2;
}

.ra-hero-content span,
.ra-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.ra-hero-content h1 {
    max-width: 660px;
    margin: 34px 0 28px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.ra-hero-content p {
    max-width: 650px;
    margin: 0 0 36px;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
}

.ra-primary-btn,
.ra-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 950;
    transition: 0.22s ease;
}

.ra-primary-btn {
    background: #ffffff;
    color: #075fb8;
    box-shadow: 0 18px 40px rgba(2, 24, 65, 0.18);
}

.ra-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(2, 24, 65, 0.26);
}

.ra-secondary-btn {
    background: #eef2f7;
    color: #202331;
    margin-right: 12px;
}

.ra-secondary-btn:hover {
    background: #e2e8f0;
}

.ra-hero-visual {
    position: relative;
    z-index: 2;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ra-icon-card {
    width: min(460px, 90%);
    aspect-ratio: 1.35 / 1;
    border-radius: 52px;
    background:
        linear-gradient(145deg, #5ca7ff 0%, #2877df 52%, #0a3f9d 100%);
    box-shadow:
        0 42px 80px rgba(0, 19, 71, 0.35),
        inset 0 2px 0 rgba(255,255,255,0.22);
    display: grid;
    place-items: center;
    transform: perspective(900px) rotateX(52deg) rotateZ(-32deg);
}

.ra-icon-card::before {
    content: "L";
    font-size: 170px;
    line-height: 1;
    font-weight: 950;
    color: #ffffff;
    text-shadow: 0 22px 26px rgba(0, 29, 95, 0.45);
    transform: rotateZ(32deg) rotateX(-30deg);
}

.ra-intro {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 24px;
    text-align: center;
}

.ra-intro h2 {
    margin: 0;
    color: #202331;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.ra-intro strong {
    font-weight: 950;
}

.ra-benefits {
    max-width: 1450px;
    margin: 0 auto 60px;
    padding: 56px 60px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, #f7f8f4 0%, #dededb 100%);
}

.ra-section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #075fb8;
    font-weight: 950;
}

.ra-section-heading h2 {
    margin: 0 0 18px;
    color: #075fb8;
    font-size: clamp(30px, 3vw, 44px);
    letter-spacing: -0.045em;
}

.ra-section-heading p {
    margin: 0 0 44px;
    color: #202331;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 600;
}

.ra-feature-panel {
    background: #ffffff;
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.ra-feature-panel h3 {
    text-align: center;
    margin: 0 0 38px;
    color: #075fb8;
    font-size: 32px;
    letter-spacing: -0.035em;
}

.ra-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.ra-feature-grid div {
    text-align: center;
    padding: 10px;
}

.ra-feature-grid strong {
    display: block;
    font-size: 60px;
    margin-bottom: 16px;
    line-height: 1;
}

.ra-feature-grid h4 {
    margin: 0 0 8px;
    color: #454545;
    font-size: 18px;
    line-height: 1.35;
}

.ra-feature-grid p {
    margin: 0;
    color: #667085;
    font-weight: 600;
    line-height: 1.5;
}

.ra-benefit-cards {
    max-width: 1450px;
    margin: 0 auto 60px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.ra-benefit-highlight,
.ra-benefit-card {
    min-height: 255px;
    border-radius: 18px;
    padding: 34px;
}

.ra-benefit-highlight {
    background: linear-gradient(135deg, #e7f8ff 0%, #dff4fb 100%);
    display: flex;
    align-items: center;
}

.ra-benefit-highlight h2 {
    margin: 0;
    color: #075fb8;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.ra-benefit-card {
    border: 1px solid #bce6fb;
    background: #ffffff;
}

.ra-benefit-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 42px;
    color: #8fd4f4;
}

.ra-benefit-card h3 {
    margin: 0 0 18px;
    color: #075fb8;
    font-size: 32px;
    letter-spacing: -0.04em;
}

.ra-benefit-card p {
    margin: 0;
    color: #202331;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
}

.ra-steps {
    max-width: 1450px;
    margin: 0 auto 80px;
    padding: 70px 90px;
    border: 1px solid #bce6fb;
    border-radius: 26px;
    text-align: center;
    background: #ffffff;
}

.ra-steps h2 {
    margin: 0 0 70px;
    color: #075fb8;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.055em;
    text-align: left;
}

.ra-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 72px;
}

.ra-steps-grid div {
    display: flex;
    align-items: center;
    gap: 26px;
    justify-content: center;
}

.ra-steps-grid span {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: #e8f7fd;
    color: #3489d4;
    display: grid;
    place-items: center;
    font-size: 58px;
    font-weight: 500;
}

.ra-steps-grid strong {
    color: #202331;
    font-size: 30px;
    letter-spacing: -0.035em;
    text-align: left;
}

.ra-steps p {
    margin: 0 0 34px;
    color: #202331;
    font-size: 30px;
    line-height: 1.35;
}

.ra-steps .ra-primary-btn {
    background: #075fb8;
    color: #ffffff;
}

/* Order page */

.ra-order-page {
    min-height: 100vh;
    padding: 56px 0 90px;
    background:
        radial-gradient(circle at 12% 8%, rgba(128, 82, 226, 0.09), transparent 30%),
        linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.ra-order-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 32px;
    align-items: start;
}

.ra-order-main {
    min-width: 0;
}

.ra-order-step {
    display: none;
    background: #ffffff;
    border: 1px solid #e7e9f0;
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.ra-order-step.active {
    display: block;
}

.ra-eyebrow {
    color: #8052e2;
    background: #f0e9ff;
    border-radius: 999px;
    padding: 10px 18px;
    margin-bottom: 22px;
}

.ra-order-step h1 {
    margin: 18px 0 14px;
    color: #202331;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.ra-order-step h2 {
    margin: 38px 0 18px;
    color: #202331;
    font-size: 28px;
    letter-spacing: -0.035em;
}

.ra-order-step p {
    max-width: 780px;
    margin: 0 0 34px;
    color: #667085;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.ra-order-step label {
    display: block;
    margin: 24px 0 10px;
    color: #202331;
    font-size: 16px;
    font-weight: 950;
}

.ra-order-step input,
.ra-order-step select,
.ra-order-step textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid #d9dde7;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px 18px;
    color: #202331;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease;
    font-family:"Google Sans", Georgia,serif;
}

.ra-order-step textarea {
    min-height: 135px;
    resize: vertical;
}

.ra-order-step input:focus,
.ra-order-step select:focus,
.ra-order-step textarea:focus {
    outline: none;
    border-color: #8052e2;
    box-shadow: 0 0 0 5px rgba(128, 82, 226, 0.12);
}

.form-grid.two,
.form-grid.three {
    display: grid;
    gap: 24px;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ra-pricing-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px;
}

.ra-pricing-toggle label {
    margin: 0;
    cursor: pointer;
}

.ra-pricing-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ra-pricing-toggle span {
    min-height: 118px;
    border: 1px solid #e0e4ec;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #202331;
    font-size: 20px;
    font-weight: 950;
    transition: 0.2s ease;
}

.ra-pricing-toggle strong {
    color: #075fb8;
    font-size: 24px;
}

.ra-pricing-toggle input:checked + span {
    border-color: #8052e2;
    background: linear-gradient(135deg, #f6f0ff 0%, #eef7ff 100%);
    box-shadow: 0 14px 34px rgba(128, 82, 226, 0.13);
}

.ra-order-summary {
    position: sticky;
    top: 115px;
    background: #ffffff;
    border: 1px solid #e7e9f0;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.ra-order-summary h2 {
    margin: 0 0 24px;
    color: #202331;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.ra-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8052e2 0%, #2f6fed 100%);
    color: #ffffff;
    margin-bottom: 22px;
}

.ra-summary-line span,
.ra-summary-total span {
    font-weight: 850;
}

.ra-summary-line strong {
    font-size: 19px;
}

.ra-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid #e7e9f0;
    border-bottom: 1px solid #e7e9f0;
}

.ra-summary-total strong {
    color: #202331;
    font-size: 25px;
    font-weight: 950;
}

.ra-order-summary ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}

.ra-order-summary li {
    color: #667085;
    font-weight: 750;
    line-height: 1.45;
    display: flex;
    gap: 10px;
}

.ra-order-summary li::before {
    content: "✓";
    color: #299165;
    font-weight: 950;
}

.ra-order-step .ra-primary-btn {
    background: #202331;
    color: #ffffff;
    margin-top: 32px;
}

.ra-order-step .ra-primary-btn:hover {
    background: #8052e2;
}

.ra-order-step .ra-secondary-btn {
    margin-top: 32px;
}

/* Responsive */

@media (max-width: 1200px) {
    .ra-hero {
        margin: 28px 24px 60px;
        padding: 54px;
        grid-template-columns: 1fr;
    }

    .ra-hero-visual {
        min-height: 280px;
    }

    .ra-icon-card {
        width: min(360px, 86%);
    }

    .ra-feature-grid,
    .ra-steps-grid {
        grid-template-columns: 1fr;
    }

    .ra-steps-grid div {
        justify-content: flex-start;
    }

    .ra-order-container {
        grid-template-columns: 1fr;
    }

    .ra-order-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 800px) {
    .ra-hero {
        margin: 18px 16px 48px;
        padding: 38px 24px;
        border-radius: 26px;
    }

    .ra-hero-content h1 {
        font-size: 42px;
    }

    .ra-hero-content p {
        font-size: 18px;
    }

    .ra-benefits {
        margin: 0 16px 42px;
        padding: 34px 22px;
    }

    .ra-feature-panel {
        padding: 28px 18px;
    }

    .ra-feature-panel h3 {
        font-size: 26px;
    }

    .ra-benefit-cards {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .ra-steps {
        margin: 0 16px 56px;
        padding: 38px 24px;
    }

    .ra-steps h2 {
        text-align: center;
        margin-bottom: 38px;
    }

    .ra-steps-grid {
        gap: 24px;
        margin-bottom: 38px;
    }

    .ra-steps-grid div {
        flex-direction: column;
        text-align: center;
    }

    .ra-steps-grid strong {
        text-align: center;
        font-size: 25px;
    }

    .ra-steps p {
        font-size: 22px;
    }

    .ra-primary-btn,
    .ra-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .ra-order-page {
        padding: 32px 0 60px;
    }

    .ra-order-container {
        padding: 0 16px;
    }

    .ra-order-step {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .ra-order-step h1 {
        font-size: 36px;
    }

    .form-grid.two,
    .form-grid.three,
    .ra-pricing-toggle {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ra-secondary-btn {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .ra-order-summary {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .ra-hero-content h1 {
        font-size: 36px;
    }

    .ra-icon-card::before {
        font-size: 120px;
    }

    .ra-benefit-card h3,
    .ra-benefit-highlight h2 {
        font-size: 28px;
    }
}
