:root {
    --rmd-red: #D20A16;
    --rmd-red-dark: #A90812;
    --rmd-red-soft: #FFF0F1;
    --rmd-blue: #1268E8;
    --rmd-blue-soft: #EDF5FF;
    --rmd-aqua: #00A6C7;
    --rmd-aqua-soft: #EAFBFD;
    --rmd-gold: #FFB000;
    --rmd-gold-soft: #FFF7DF;
    --rmd-ink: #11151C;
    --rmd-slate: #566273;
    --rmd-silver: #DCE3EC;
    --rmd-cloud: #F5F8FC;
    --rmd-white: #FFFFFF;
    --rmd-radius-sm: 12px;
    --rmd-radius: 20px;
    --rmd-radius-lg: 32px;
    --rmd-shadow: 0 18px 50px rgba(17, 21, 28, 0.09);
    --rmd-shadow-sm: 0 10px 28px rgba(17, 21, 28, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--rmd-ink);
    background: var(--rmd-white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--rmd-blue);
    text-underline-offset: 3px;
}

a:hover {
    color: #0b52bd;
}

img,
svg {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.display-heading {
    color: var(--rmd-ink);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.35rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
    font-size: 1.35rem;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 2000;
    padding: .75rem 1rem;
    color: #fff;
    background: var(--rmd-ink);
    border-radius: 8px;
}

.skip-link:focus {
    top: 1rem;
}

.svg-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.site-icon {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -.18em;
    flex: 0 0 auto;
}

.free-bar {
    min-height: 38px;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--rmd-red);
    font-size: .86rem;
    letter-spacing: .01em;
}

.free-bar .site-icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.6;
}

.site-header {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(220, 227, 236, .8);
    backdrop-filter: blur(18px);
}

.site-header .navbar {
    min-height: 84px;
    padding: .7rem 0;
}

.navbar-brand img {
    display: block;
    width: clamp(225px, 22vw, 330px);
    height: auto;
}

.navbar-nav {
    gap: .25rem;
}

.navbar-nav .nav-link {
    color: var(--rmd-ink);
    font-size: .96rem;
    font-weight: 700;
    border-radius: 10px;
    padding: .65rem .82rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--rmd-red);
    background: var(--rmd-red-soft);
}

.navbar-nav .login-link {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn {
    border-radius: 11px;
    font-weight: 800;
    padding: .78rem 1.15rem;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

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

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: #fff;
    background: var(--rmd-red);
    border-color: var(--rmd-red);
    box-shadow: 0 9px 22px rgba(210, 10, 22, .2);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    background: var(--rmd-red-dark);
    border-color: var(--rmd-red-dark);
    box-shadow: 0 12px 28px rgba(210, 10, 22, .28);
}

.btn-outline-ink {
    color: var(--rmd-ink);
    background: #fff;
    border: 2px solid var(--rmd-silver);
}

.btn-outline-ink:hover {
    color: var(--rmd-ink);
    background: var(--rmd-cloud);
    border-color: #bec8d5;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    color: var(--rmd-red);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
}

.eyebrow-light {
    color: #fff;
    opacity: .9;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading .lead-copy {
    max-width: 670px;
    margin-top: 1.2rem;
    color: var(--rmd-slate);
    font-size: 1.15rem;
}

.section-heading.centered .lead-copy {
    margin-right: auto;
    margin-left: auto;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.25rem, 8vw, 8rem) 0 6rem;
    background: var(--rmd-cloud);
}

.hero::before,
.hero::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 360px;
    height: 360px;
    top: -195px;
    right: 6%;
    background: var(--rmd-aqua);
    opacity: .11;
}

.hero::after {
    width: 300px;
    height: 300px;
    left: -190px;
    bottom: -125px;
    background: var(--rmd-gold);
    opacity: .13;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    margin-bottom: 1.5rem;
}

.hero-copy h1 .highlight {
    position: relative;
    display: inline-block;
    color: var(--rmd-red);
}

.hero-copy h1 .highlight::after {
    position: absolute;
    content: "";
    left: 2%;
    right: 0;
    bottom: -.08em;
    height: .09em;
    background: var(--rmd-gold);
    border-radius: 999px;
}

.hero-lead {
    max-width: 670px;
    color: var(--rmd-slate);
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero-actions .btn {
    padding: .95rem 1.35rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.25rem;
    margin-top: 1.65rem;
    color: var(--rmd-slate);
    font-size: .91rem;
    font-weight: 650;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.hero-proof .site-icon {
    color: var(--rmd-aqua);
    stroke-width: 2.6;
}

.product-stage {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--rmd-silver);
    border-radius: var(--rmd-radius-lg);
    box-shadow: var(--rmd-shadow);
}

.product-stage::before {
    position: absolute;
    content: "";
    width: 95px;
    height: 95px;
    top: -28px;
    right: -22px;
    z-index: -1;
    background-image: radial-gradient(var(--rmd-blue) 1.8px, transparent 1.8px);
    background-size: 13px 13px;
    opacity: .35;
}

.app-window {
    overflow: hidden;
    background: var(--rmd-cloud);
    border-radius: 23px;
}

.app-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    background: var(--rmd-ink);
    color: #fff;
}

.app-toolbar-name {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .86rem;
    font-weight: 800;
}

.app-toolbar-name .site-icon {
    color: var(--rmd-red);
}

.window-dots {
    display: flex;
    gap: .35rem;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .38);
}

.app-content {
    padding: 1.25rem;
}

.app-greeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.app-greeting strong {
    font-size: 1.15rem;
}

.free-pill,
.status-pill,
.date-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.free-pill {
    padding: .35rem .65rem;
    color: var(--rmd-red);
    background: var(--rmd-red-soft);
    font-size: .72rem;
    letter-spacing: .05em;
}

.date-card {
    display: grid;
    grid-template-columns: 53px 1fr auto;
    gap: .8rem;
    align-items: center;
    padding: .85rem;
    margin-bottom: .7rem;
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 15px;
    box-shadow: 0 5px 16px rgba(17, 21, 28, .04);
}

.date-icon {
    display: grid;
    place-items: center;
    width: 53px;
    height: 53px;
    border-radius: 13px;
}

.date-icon.red { color: var(--rmd-red); background: var(--rmd-red-soft); }
.date-icon.blue { color: var(--rmd-blue); background: var(--rmd-blue-soft); }
.date-icon.gold { color: #9b6800; background: var(--rmd-gold-soft); }

.date-icon .site-icon {
    width: 1.45rem;
    height: 1.45rem;
}

.date-name {
    font-size: .92rem;
    font-weight: 800;
}

.date-detail {
    color: var(--rmd-slate);
    font-size: .75rem;
}

.date-pill {
    padding: .32rem .55rem;
    color: var(--rmd-blue);
    background: var(--rmd-blue-soft);
    font-size: .69rem;
}

.ai-prompt {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem .85rem;
    margin-top: .9rem;
    color: #fff;
    background: var(--rmd-blue);
    border-radius: 14px;
    font-size: .82rem;
    font-weight: 750;
}

.ai-prompt .mic-button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--rmd-blue);
    background: #fff;
    border-radius: 50%;
}

.floating-note {
    position: absolute;
    right: -1.6rem;
    bottom: -2rem;
    max-width: 245px;
    padding: .8rem 1rem;
    color: var(--rmd-ink);
    background: var(--rmd-gold);
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: var(--rmd-shadow-sm);
    font-size: .8rem;
    font-weight: 800;
    transform: rotate(-2deg);
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -1.8rem;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--rmd-silver);
    border-radius: var(--rmd-radius);
    box-shadow: var(--rmd-shadow-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 94px;
    padding: 1rem;
    font-size: .92rem;
    font-weight: 800;
    text-align: left;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--rmd-silver);
}

.trust-item .site-icon {
    width: 1.55rem;
    height: 1.55rem;
    color: var(--rmd-red);
}

.section {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-cloud { background: var(--rmd-cloud); }
.section-ink { color: #fff; background: var(--rmd-ink); }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .contact-card h3 { color: var(--rmd-ink); }

.step-card,
.feature-card,
.occasion-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--rmd-silver);
    border-radius: var(--rmd-radius);
    box-shadow: var(--rmd-shadow-sm);
}

.step-card {
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.step-card::after {
    position: absolute;
    content: attr(data-step);
    right: -5px;
    bottom: -27px;
    color: var(--rmd-cloud);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
}

.step-card > * {
    position: relative;
    z-index: 1;
}

.step-icon,
.feature-icon,
.occasion-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.4rem;
    border-radius: 15px;
}

.step-card:nth-child(1n) .step-icon { color: var(--rmd-red); background: var(--rmd-red-soft); }
.step-blue .step-icon { color: var(--rmd-blue); background: var(--rmd-blue-soft); }
.step-aqua .step-icon { color: #007e96; background: var(--rmd-aqua-soft); }

.step-icon .site-icon,
.feature-icon .site-icon,
.occasion-icon .site-icon {
    width: 1.65rem;
    height: 1.65rem;
}

.card-copy {
    color: var(--rmd-slate);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-card {
    padding: 1.55rem;
}

.feature-card:nth-child(4n + 1) .feature-icon { color: var(--rmd-red); background: var(--rmd-red-soft); }
.feature-card:nth-child(4n + 2) .feature-icon { color: var(--rmd-blue); background: var(--rmd-blue-soft); }
.feature-card:nth-child(4n + 3) .feature-icon { color: #007e96; background: var(--rmd-aqua-soft); }
.feature-card:nth-child(4n + 4) .feature-icon { color: #9b6800; background: var(--rmd-gold-soft); }

.free-feature {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4.5rem);
    color: #fff;
    background: var(--rmd-red);
    border-radius: var(--rmd-radius-lg);
}

.free-feature::before {
    position: absolute;
    content: "FREE";
    right: -1.2rem;
    bottom: -3.4rem;
    color: rgba(255, 255, 255, .1);
    font-size: clamp(8rem, 18vw, 15rem);
    font-weight: 900;
    line-height: 1;
}

.free-feature > * {
    position: relative;
    z-index: 1;
}

.free-feature h2 {
    max-width: 780px;
    color: #fff;
}

.free-feature-copy {
    max-width: 680px;
    margin: 1.25rem 0 2rem;
    color: rgba(255, 255, 255, .88);
    font-size: 1.15rem;
}

.free-list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: .85rem 1.5rem;
    margin-bottom: 2rem;
}

.free-list span {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-weight: 800;
}

.free-list .site-icon {
    stroke-width: 2.5;
}

.ai-section-visual {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    padding: 1.3rem;
    background: #fff;
    border-radius: var(--rmd-radius-lg);
    box-shadow: var(--rmd-shadow);
}

.chat-bubble {
    max-width: 88%;
    padding: 1rem 1.1rem;
    margin-bottom: .85rem;
    border-radius: 18px;
    font-weight: 650;
}

.chat-user {
    margin-left: auto;
    color: #fff;
    background: var(--rmd-blue);
    border-bottom-right-radius: 5px;
}

.chat-ai {
    color: var(--rmd-ink);
    background: var(--rmd-cloud);
    border-bottom-left-radius: 5px;
}

.chat-ai strong {
    color: var(--rmd-red);
}

.voice-line {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .85rem 1rem;
    color: #007e96;
    background: var(--rmd-aqua-soft);
    border-radius: 15px;
    font-size: .85rem;
    font-weight: 800;
}

.voice-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
}

.voice-bars span {
    width: 3px;
    height: 8px;
    background: var(--rmd-aqua);
    border-radius: 2px;
}

.voice-bars span:nth-child(2), .voice-bars span:nth-child(6) { height: 16px; }
.voice-bars span:nth-child(3), .voice-bars span:nth-child(5) { height: 22px; }
.voice-bars span:nth-child(4) { height: 12px; }

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.timeline::before {
    position: absolute;
    content: "";
    left: 9%;
    right: 9%;
    top: 35px;
    height: 4px;
    background: var(--rmd-silver);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-dot {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    color: #fff;
    background: var(--rmd-blue);
    border: 8px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--rmd-silver);
    font-size: .84rem;
    font-weight: 900;
}

.timeline-item:nth-child(2) .timeline-dot { background: var(--rmd-aqua); }
.timeline-item:nth-child(3) .timeline-dot { color: var(--rmd-ink); background: var(--rmd-gold); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--rmd-red); }

.timeline-label {
    font-weight: 850;
}

.timeline-copy {
    color: var(--rmd-slate);
    font-size: .87rem;
}

.occasion-card {
    padding: 1.7rem;
    transition: transform .18s ease, box-shadow .18s ease;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rmd-shadow);
}

.occasion-card.red .occasion-icon { color: var(--rmd-red); background: var(--rmd-red-soft); }
.occasion-card.blue .occasion-icon { color: var(--rmd-blue); background: var(--rmd-blue-soft); }
.occasion-card.gold .occasion-icon { color: #9b6800; background: var(--rmd-gold-soft); }

.accordion {
    --bs-accordion-border-color: var(--rmd-silver);
    --bs-accordion-border-radius: 15px;
    --bs-accordion-inner-border-radius: 15px;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(210, 10, 22, .12);
    --bs-accordion-active-bg: var(--rmd-red-soft);
    --bs-accordion-active-color: var(--rmd-red-dark);
}

.accordion-item {
    margin-bottom: .7rem;
    overflow: hidden;
    border: 1px solid var(--rmd-silver) !important;
    border-radius: 15px !important;
}

.accordion-button {
    padding: 1.25rem 1.35rem;
    color: var(--rmd-ink);
    font-weight: 800;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-body {
    color: var(--rmd-slate);
    padding: .2rem 1.35rem 1.35rem;
}

.accordion-body a {
    font-weight: 750;
}

.footer-cta {
    padding: 0 0 4rem;
    background: var(--rmd-cloud);
}

.footer-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    color: #fff;
    background: var(--rmd-blue);
    border-radius: var(--rmd-radius-lg);
    box-shadow: var(--rmd-shadow);
}

.footer-cta-card h2 {
    max-width: 700px;
    margin-bottom: .8rem;
    color: #fff;
}

.footer-cta-copy {
    max-width: 650px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
}

.footer-cta-actions {
    flex: 0 0 auto;
    text-align: center;
}

.footer-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--rmd-blue);
}

.micro-copy {
    margin-top: .7rem;
    color: rgba(255, 255, 255, .85);
    font-size: .79rem;
    font-weight: 700;
}

.site-footer {
    color: rgba(255, 255, 255, .72);
    background: var(--rmd-ink);
    padding: 4.5rem 0 1.5rem;
}

.footer-logo img {
    width: min(100%, 330px);
    filter: brightness(0) invert(1);
}

.footer-description {
    max-width: 470px;
    margin-top: 1.2rem;
}

.footer-heading {
    margin-bottom: .9rem;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer a:not(.footer-logo) {
    display: block;
    width: fit-content;
    margin-bottom: .55rem;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footer-free {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .8rem;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    font-size: .78rem;
    line-height: 1.35;
}

.footer-free .site-icon {
    width: 1.45rem;
    height: 1.45rem;
    color: var(--rmd-gold);
    stroke-width: 2.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .79rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background: var(--rmd-cloud);
}

.page-hero::after {
    position: absolute;
    content: "";
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -160px;
    background: var(--rmd-red);
    border-radius: 50%;
    opacity: .08;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero-copy {
    max-width: 720px;
    margin-top: 1.2rem;
    color: var(--rmd-slate);
    font-size: 1.18rem;
}

.page-hero-actions {
    margin-top: 1.7rem;
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    max-width: 950px;
    margin: 0 auto;
}

.legal-intro,
.legal-section {
    padding: 1.8rem;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid var(--rmd-silver);
    border-radius: 16px;
}

.legal-intro {
    color: var(--rmd-slate);
    background: var(--rmd-blue-soft);
    border-color: #cfe0fb;
}

.legal-section h2 {
    margin-bottom: 1rem;
    font-size: 1.55rem;
}

.legal-section h3 {
    margin: 1.4rem 0 .7rem;
    font-size: 1.08rem;
    letter-spacing: -.015em;
}

.legal-section .legal-text,
.legal-section li {
    color: var(--rmd-slate);
}

.legal-section .legal-text + .legal-text {
    margin-top: .85rem;
}

.legal-section ul,
.legal-section ol {
    padding-left: 1.2rem;
    margin: .75rem 0 0;
}

.legal-section li + li {
    margin-top: .45rem;
}

.account-shell {
    min-height: calc(100vh - 122px);
    padding: clamp(3rem, 7vw, 6rem) 0;
    background: var(--rmd-cloud);
}

.account-panel {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--rmd-silver);
    border-radius: var(--rmd-radius-lg);
    box-shadow: var(--rmd-shadow);
}

.account-benefits {
    height: 100%;
    padding: clamp(2rem, 5vw, 4rem);
    color: #fff;
    background: var(--rmd-ink);
}

.account-benefits h1,
.account-benefits h2 {
    color: #fff;
}

.account-benefits-copy {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
}

.account-checks {
    display: grid;
    gap: .85rem;
    margin-top: 2rem;
}

.account-check {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: rgba(255, 255, 255, .88);
    font-weight: 750;
}

.account-check .site-icon {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--rmd-aqua);
    stroke-width: 2.5;
}

.account-form-side {
    padding: clamp(2rem, 5vw, 4rem);
}

.account-form-side h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.plugin-mount {
    min-height: 330px;
    margin-top: 1.6rem;
}

.plugin-mount.login-mount {
    min-height: 260px;
}

.plugin-mount:empty {
    background: #fff;
}

.account-switch {
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    color: var(--rmd-slate);
    border-top: 1px solid var(--rmd-silver);
    text-align: center;
}

.account-switch a {
    font-weight: 800;
}

.contact-card {
    height: 100%;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--rmd-silver);
    border-radius: var(--rmd-radius);
    box-shadow: var(--rmd-shadow-sm);
}

.contact-card .feature-icon {
    color: var(--rmd-red);
    background: var(--rmd-red-soft);
}

.contact-address {
    display: inline-block;
    margin-top: .5rem;
    font-size: 1.08rem;
    font-weight: 800;
}

.notice-card {
    padding: 1.2rem 1.35rem;
    color: #6c4a00;
    background: var(--rmd-gold-soft);
    border: 1px solid #f3d37b;
    border-radius: 14px;
}

@media (max-width: 1199.98px) {
    .product-stage {
        margin-top: 3rem;
        margin-right: auto;
    }

    .floating-note {
        right: 1rem;
    }

    .trust-strip {
        margin-top: -1rem;
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        padding: 1rem 0 .4rem;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--rmd-silver);
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid var(--rmd-silver);
    }

    .features-grid {
        margin-top: 2rem;
    }

    .free-list {
        grid-template-columns: 1fr;
    }

    .footer-cta-card {
        display: block;
    }

    .footer-cta-actions {
        margin-top: 1.7rem;
        text-align: left;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom > div + div {
        margin-top: .4rem;
    }
}

@media (max-width: 767.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    .free-bar {
        font-size: .76rem;
    }

    .free-bar span {
        display: none;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .product-stage {
        padding: .7rem;
        border-radius: 24px;
    }

    .date-card {
        grid-template-columns: 46px 1fr;
    }

    .date-icon {
        width: 46px;
        height: 46px;
    }

    .date-pill {
        grid-column: 2;
        width: fit-content;
    }

    .floating-note {
        position: static;
        max-width: none;
        margin-top: .6rem;
        border-width: 0;
        transform: none;
    }

    .trust-strip {
        margin-top: -2rem;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
        min-height: 70px;
        padding-left: 1.4rem;
    }

    .trust-item + .trust-item,
    .trust-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--rmd-silver);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .timeline::before {
        left: 35px;
        right: auto;
        top: 9%;
        bottom: 9%;
        width: 4px;
        height: auto;
    }

    .timeline-item {
        display: grid;
        grid-template-columns: 72px 1fr;
        column-gap: 1rem;
        text-align: left;
    }

    .timeline-dot {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .timeline-label {
        align-self: end;
    }

    .footer-logo img {
        width: 290px;
    }

    .account-form-side,
    .account-benefits {
        padding: 2rem 1.4rem;
    }

    .plugin-mount {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
