@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   RESET — Modern Redesign (Vertivio theme)
   ============================================ */

/* Smooth scroll + fixed nav offset */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }

/* ----- Variables (Vertivio palette) ----- */
:root {
    --navy:   #0A2540;
    --teal:   #159C86;
    --ocean:  #1F6FB2;
    --blue:   #2E6FE0;
    --violet: #7C5CF0;
    --gold:   #159C86;
    --ink:    #13273D;
    --light:  #F4F8FB;
    --gray:   #5A6C80;
    --border: #E6ECF2;
    --white:  #ffffff;
    --grad: linear-gradient(92deg,#12B39A 0%,#2E7FE6 52%,#7C5CF0 100%);
    --green-badge:#E5F4EE; --purple-badge:#EDE9FC; --blue-badge:#E5EEFD;
    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
body { font-family: var(--font); color: var(--ink); }

/* ----- Nav ----- */
.r-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.r-nav-scrolled {
    background: rgba(255,255,255,0.97) !important;
    padding: 0.55rem 0;
    box-shadow: 0 2px 20px rgba(10,37,64,0.08);
}
.r-nav-brand { display: flex; align-items: center; gap: 11px; }
.r-nav-brand img { transition: height 0.3s; }
.r-powered-by { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); font-weight: 600; line-height: 1.2; }
.r-powered-by strong { color: var(--teal); }
.r-nav .r-nav-link {
    color: #33475B;
    font-weight: 600;
    font-family: var(--font);
    font-size: 14px;
    padding: 0.4rem 0.75rem !important;
    white-space: nowrap;
    transition: color 0.3s;
}
.r-nav-scrolled .r-nav-link { color: var(--navy); }
.r-nav-link:hover { color: var(--teal) !important; }
.r-btn-nav {
    background: var(--teal);
    color: var(--white) !important;
    border: 2px solid var(--teal);
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}
.r-btn-nav:hover {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--white) !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ----- Hero ----- */
.r-hero {
    position: relative;
    min-height: 88vh;
    background: #0A2036;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.r-hero-photo {
    position: absolute; inset: 0;
    background-image: url('../img/slide.webp');
    background-size: cover;
    background-position: center;
    filter: saturate(1.3) contrast(1.12);
}
.r-hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to left,#F5F9FC 0%,rgba(245,249,252,0.92) 34%,rgba(245,249,252,0.45) 50%,rgba(245,249,252,0.06) 66%,rgba(245,249,252,0) 80%,rgba(245,249,252,0) 100%);
}
.r-hero-title, .r-hero-text, .r-hero-note { text-shadow: 0 1px 12px rgba(245,249,252,0.92), 0 1px 3px rgba(245,249,252,0.7); }
.r-play{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--teal);color:#fff;font-size:9px;margin-right:2px}
.r-hero-note{margin-top:22px;font-size:0.92rem;color:#4A5A6C}
.r-hero-note b{color:var(--teal);font-weight:700}
.r-trust-bar{background:linear-gradient(90deg,var(--navy),#0e3f52 60%,var(--teal));color:#CFE3E6;font-size:0.88rem;text-align:center;padding:12px 16px;letter-spacing:0.01em}
.r-trust-bar b{color:#fff;font-weight:600}
.r-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.r-hero-badge {
    display: inline-block;
    background: var(--green-badge);
    border: none;
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font);
}
.r-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: var(--font);
}
.r-hero-accent {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}
.r-hero-text {
    font-size: 1.15rem;
    color: #3E4E60;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 500px;
    font-family: var(--font);
}
.r-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.r-btn-primary-lg {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 14px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.r-btn-primary-lg:hover {
    background: #0B355C;
    border-color: #0B355C;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10,37,64,0.28);
}
.r-btn-ghost-lg {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--border);
    padding: 14px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.r-btn-ghost-lg:hover {
    border-color: var(--teal);
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    transform: translateY(-2px);
}
.r-btn-white-lg {
    background: var(--white);
    color: var(--ocean);
    border: 2px solid var(--white);
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.r-btn-white-lg:hover {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ----- Hero capability card ----- */
.r-hero-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 16px;
    box-shadow: 0 24px 48px -28px rgba(10,37,64,0.35);
    padding: 18px;
    backdrop-filter: blur(3px);
}
.r-hero-card-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.r-hero-card-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.r-hero-card-row + .r-hero-card-row { border-top: 1px solid var(--border); }
.r-hero-card-ic { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex: none; font-size: 18px; }
.r-hero-card-row span { font-weight: 600; font-size: 0.92rem; color: var(--ink); }

/* ----- Section Base ----- */
.r-section { padding: 90px 0; }
.r-section-gray { background: var(--light); }
.r-section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
}
.r-section-header {
    text-align: center;
    margin-bottom: 55px;
}
.r-section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.r-section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}
.r-section-header-white h2 { color: var(--white); }
.r-section-header-white p { color: rgba(255,255,255,0.72); }

/* ----- Audience Cards ----- */
.r-audience-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--teal);
    border-radius: 16px;
    padding: 42px 38px;
    height: 100%;
    transition: all 0.3s ease;
}
.r-audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.09);
}
.r-audience-card--dark {
    background: linear-gradient(145deg, var(--navy) 0%, var(--ocean) 100%);
    border: none;
    border-top: 4px solid var(--teal);
}
.r-audience-card--dark h3,
.r-audience-card--dark p { color: var(--white); }
.r-audience-card--dark p { color: rgba(255,255,255,0.8); }
.r-audience-icon {
    width: 62px; height: 62px;
    background: rgba(65,158,172,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.r-audience-card--dark .r-audience-icon { background: rgba(255,255,255,0.14); }
.r-audience-icon i { font-size: 26px; color: var(--teal); }
.r-audience-card h3 {
    font-size: 1.4rem; font-weight: 700;
    color: var(--navy); margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.r-audience-card p {
    color: var(--gray); line-height: 1.75; margin-bottom: 1.5rem;
    font-size: 15px;
}
.r-card-link {
    font-weight: 700; color: var(--teal); font-size: 14px;
    text-decoration: none; font-family: 'Inter', sans-serif;
    transition: color 0.3s; display: inline-block;
}
.r-card-link:hover { color: var(--ocean); text-decoration: none; }
.r-card-link--light { color: rgba(255,255,255,0.8); }
.r-card-link--light:hover { color: var(--white); }

/* ----- About section ----- */
.r-img-frame {
    background: #eef6f8;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #d4eaee;
    overflow: hidden;
}
.r-img-frame img { width: 100%; height: auto; border-radius: 16px; clip-path: inset(0 round 16px); }
.r-block-title {
    font-size: 2.2rem; font-weight: 800;
    color: var(--navy); margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-align: left;
}
.r-block-lead {
    font-size: 1.15rem; font-weight: 600;
    color: var(--teal); margin-bottom: 1rem;
    text-align: left;
}
.r-block-text {
    color: #374151; line-height: 1.75;
    font-size: 15px; margin-bottom: 1rem;
    text-align: left;
}
.r-checklist { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.r-check-item { display: flex; align-items: flex-start; gap: 12px; }
.r-check-item i { color: var(--teal); font-size: 18px; flex-shrink: 0; }
.r-check-item span { color: #374151; font-size: 15px; text-align: left; }

/* ----- Step Cards ----- */
.r-step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    height: 100%; text-align: center;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.r-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.09);
    border-color: var(--teal);
}
.r-step-num {
    font-size: 5rem; font-weight: 900;
    color: rgba(65,158,172,0.1);
    font-family: 'Inter', sans-serif;
    position: absolute; top: 8px; right: 18px;
    line-height: 1; pointer-events: none;
}
.r-step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--ocean) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.r-step-icon i { font-size: 28px; color: var(--white); }
.r-step-card h4 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.85rem;
    font-family: 'Inter', sans-serif;
}
.r-step-card p {
    color: var(--gray); font-size: 14px;
    line-height: 1.7; margin: 0;
}

/* ----- Theme Cards ----- */
.r-theme-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 32px 28px; height: 100%;
    transition: all 0.3s ease;
}
.r-theme-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.28);
}
.r-theme-icon {
    width: 56px; height: 56px;
    background: rgba(65,158,172,0.28);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.r-theme-icon i { font-size: 22px; color: #7ed6e3; }
.r-theme-card h4,
.r-theme-title {
    font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
}
.r-theme-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px; line-height: 1.65; margin: 0;
}

/* ----- Difference Cards ----- */
.r-diff-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 34px 24px; height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.r-diff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.09);
    border-color: var(--teal);
}
.r-diff-icon {
    width: 66px; height: 66px;
    background: linear-gradient(135deg, rgba(65,158,172,0.1) 0%, rgba(0,82,104,0.1) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.r-diff-icon i { font-size: 26px; color: var(--teal); }
.r-diff-card h5,
.r-diff-title {
    font-size: 1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.r-diff-card p {
    color: var(--gray); font-size: 14px;
    line-height: 1.65; margin: 0;
}

/* ----- Team Cards ----- */
.r-team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 40px; text-align: center;
    transition: all 0.3s ease;
}
.r-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.09);
}
.r-team-avatar {
    width: 84px; height: 84px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.25rem;
    font-family: 'Inter', sans-serif;
}
.r-avatar-blue { background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%); }
.r-avatar-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--ocean) 100%); }
.r-avatar-steel { background: linear-gradient(135deg, #1e3a5f 0%, #2d6a9f 100%); }
.r-team-card h4 {
    font-size: 1.3rem; font-weight: 800;
    color: var(--navy); margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}
.r-team-role { color: var(--teal); font-size: 14px; font-weight: 600; margin-bottom: 0; }
.r-team-divider { border-color: var(--border); margin: 1.25rem 0; }
.r-team-bio {
    color: var(--gray); font-size: 14px;
    line-height: 1.75; text-align: left; margin: 0;
}

/* ----- CTA Band ----- */
.r-cta-band {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--ocean) 100%);
}
.r-cta-band h2 {
    font-size: 2.4rem; font-weight: 800;
    color: var(--white); margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.r-cta-band p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto; margin-right: auto;
    line-height: 1.65;
}

/* ----- Footer ----- */
.r-footer {
    background: #001730;
    padding: 70px 0 40px;
}
.r-footer-logo { filter: brightness(0) invert(1); opacity: 0.88; }
.r-footer-tagline { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 0.5rem; }
.r-footer-copy { color: rgba(255,255,255,0.35); font-size: 12px; margin: 0; }
.r-footer-heading {
    color: var(--white); font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1.2px; margin-bottom: 1.25rem;
}
.r-footer-links { list-style: none; padding: 0; margin: 0; }
.r-footer-links li { margin-bottom: 9px; }
.r-footer-links a {
    color: rgba(255,255,255,0.55); font-size: 14px;
    text-decoration: none; transition: color 0.3s;
}
.r-footer-links a:hover { color: var(--teal); }
.r-footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
.r-footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 14px; transition: all 0.3s; text-decoration: none;
}
.r-footer-social a:hover { background: var(--teal); color: var(--white); }
.r-footer-social a img { filter: brightness(0) invert(0.65); height: 15px; }
.r-footer-social a:hover img { filter: brightness(0) invert(1); }

/* ----- Page Header (inner pages) ----- */
.r-page-header {
    position: relative;
    padding: 150px 0 84px;
    background: #0A2036 url('../img/slide.webp') center 35% / cover;
    text-align: center;
    overflow: hidden;
}
.r-page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,32,54,0.78) 0%, rgba(10,32,54,0.87) 100%);
}
.r-page-header-content { position: relative; z-index: 1; }
.r-page-header h1 {
    font-size: 2.8rem; font-weight: 800;
    color: var(--white); margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: var(--font);
}
.r-page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 480px; margin: 0 auto;
    font-family: var(--font);
}

/* ----- Contact Page ----- */
.r-contact-info { display: flex; flex-direction: column; gap: 24px; margin-bottom: 2rem; }
.r-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.r-contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(65,158,172,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.r-contact-icon i { font-size: 18px; color: var(--teal); }
.r-contact-item h6 {
    font-weight: 700; color: var(--navy);
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px; font-size: 14px;
}
.r-contact-item p { color: var(--gray); font-size: 14px; margin: 0; }
.r-contact-item a { color: var(--teal); text-decoration: none; }
.r-contact-item a:hover { color: var(--ocean); }
.r-contact-form-wrap {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
}
.r-form-label {
    font-weight: 600; font-size: 14px;
    color: var(--navy); margin-bottom: 6px;
    display: block; font-family: 'Inter', sans-serif;
}
.r-form-control {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 15px;
    color: #374151; background: var(--white);
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.r-form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(65,158,172,0.12); }
.r-form-control::placeholder { color: #9ca3af; }
textarea.r-form-control { resize: vertical; min-height: 120px; }
.r-success-msg {
    background: rgba(65,158,172,0.12);
    border: 1px solid var(--teal);
    color: var(--ocean);
    border-radius: 10px; padding: 14px 18px;
    font-weight: 600; font-size: 15px;
    margin-bottom: 1rem;
}

/* ----- Nav active state on inner pages ----- */
.r-nav-link.active { color: var(--teal) !important; }

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .r-nav { background: rgba(255,255,255,0.97) !important; padding: 0.75rem 0; box-shadow: 0 2px 12px rgba(10,37,64,0.07); }
    .r-nav .r-nav-link { color: var(--navy) !important; }
    .r-hero { min-height: auto; }
    .r-hero-photo { background-position: center; }
    .r-hero-scrim { background: linear-gradient(180deg,rgba(245,249,252,0.62) 0%,rgba(245,249,252,0.82) 60%,rgba(245,249,252,0.95) 100%); }
    .r-hero-title { font-size: 2.6rem; }
    .r-section { padding: 70px 0; }
    .r-cta-band { padding: 70px 0; }
    #navbarContent { background: var(--white); border-radius: 12px; padding: 1rem; margin-top: 0.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
}
@media (max-width: 767px) {
    .r-hero-title { font-size: 2rem; }
    .r-hero-text { font-size: 1rem; }
    .r-hero-actions { flex-direction: column; align-items: flex-start; }
    .r-section { padding: 55px 0; }
    .r-section-header h2 { font-size: 1.85rem; }
    .r-cta-band h2 { font-size: 1.85rem; }
    .r-block-title { font-size: 1.85rem; }
    .r-team-card { padding: 32px 24px; }
    .r-audience-card { padding: 30px 24px; }
    .r-cta-band { padding: 60px 0; }
}

/* ----- Packages page ----- */
.r-theme-nav { list-style: none; padding: 0; margin: 0; }
.r-theme-nav li a {
    display: block;
    padding: 0.85rem 1.1rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.4;
    border-radius: 0 6px 6px 0;
}
.r-theme-nav li a:hover, .r-theme-nav li a.active {
    border-left-color: var(--gold);
    color: var(--gold);
    background: rgba(200,150,45,0.07);
    text-decoration: none;
}
.r-packages-sidebar {
    position: sticky;
    top: 90px;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 1.25rem 0.5rem;
}
.r-package-card {
    background: var(--white);
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.r-package-card:hover {
    box-shadow: 0 8px 32px rgba(0,36,80,0.1);
    transform: translateY(-3px);
}
.r-package-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.6rem;
}
.r-package-desc {
    font-size: 0.875rem;
    color: #5a6475;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}
.r-price-badge {
    display: inline-block;
    background: #eef2f7;
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}
.r-package-buy {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}
.r-package-buy:hover { background: var(--gold); color: var(--white); text-decoration: none; }
.r-packages-count { font-size: 0.875rem; color: #7a8494; margin-bottom: 1.5rem; }
.r-theme-card { cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.r-theme-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,36,80,0.22); }
.r-view-packages {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.85rem;
    display: block;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.r-packages-empty { text-align: center; padding: 3rem 0; color: #7a8494; }
.r-theme-select { border: 2px solid #e5e9ef; border-radius: 8px; padding: 0.6rem 1rem; font-weight: 600; color: var(--navy); width: 100%; font-size: 0.95rem; }
.r-account-notice {
    background: #f0f6ff;
    border: 1px solid #c8daf5;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 2rem;
}
.r-account-notice i { color: var(--gold); margin-right: 0.4rem; }

/* ===== Cart UI ===== */
.r-cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: background 0.2s;
}
.r-cart-fab:hover { background: var(--gold); }
.r-cart-fab.r-hidden { display: none; }

.r-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.r-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1060;
    display: none;
}
.r-cart-overlay.open { display: block; }

.r-cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    background: #fff;
    z-index: 1070;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.28s cubic-bezier(0.4,0,0.2,1);
}
.r-cart-drawer.open { right: 0; }

.r-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e8edf5;
    flex-shrink: 0;
}
.r-cart-header h5 {
    margin: 0;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}
.r-cart-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #7a8494;
    line-height: 1;
    padding: 0;
}
.r-cart-close:hover { color: var(--navy); }

.r-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}
.r-cart-empty {
    text-align: center;
    color: #7a8494;
    padding: 3rem 0;
    font-size: 0.95rem;
}

.r-cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f3f8;
    gap: 0.75rem;
}
.r-cart-item:last-child { border-bottom: none; }
.r-cart-item-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    flex: 1;
    line-height: 1.3;
}
.r-cart-item-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
}
.r-cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #b0b8c8;
    font-size: 0.85rem;
    padding: 0 0 0 0.5rem;
    line-height: 1;
}
.r-cart-item-remove:hover { color: #c0392b; }

.r-cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e8edf5;
    flex-shrink: 0;
}
.r-cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1rem;
}
.r-cart-checkout {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}
.r-cart-checkout:hover { background: var(--gold); color: var(--navy); }
.r-cart-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.r-cart-checkout:disabled:hover { background: var(--navy); color: #fff; }

.r-btn-outline-lg {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.r-btn-outline-lg:hover {
    background: var(--navy);
    color: #fff;
    text-decoration: none;
}

.r-package-buy-added {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1.5px solid #a5d6a7;
    cursor: default;
}
.r-package-buy-added:hover {
    background: #e8f5e9;
    color: #2e7d32;
    transform: none;
}

/* ===== Nav Cart Button ===== */
.r-nav-cart {
    position: relative;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.r-nav-cart:hover { background: var(--navy); color: #fff; }

.r-nav-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
}
.r-nav-cart:hover .r-nav-cart-badge { background: var(--gold); color: var(--navy); }
