@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Reset & Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
}

p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

ul {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Layout Containers */
.rbl-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.rbl-container-narrow {
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Navbar */
.rbl-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.rbl-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.rbl-brand-logo {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.rbl-brand-logo span {
    color: #1d4ed8;
}

.rbl-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.rbl-nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
}

.rbl-nav-link:hover {
    color: #1d4ed8;
}

.rbl-nav-link.active {
    color: #1d4ed8;
    border-bottom: 2px solid #1d4ed8;
}

.rbl-btn-nav {
    background-color: #1d4ed8;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(29, 78, 216, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rbl-btn-nav:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(29, 78, 216, 0.45);
}

.rbl-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0f172a;
    line-height: 1;
}

.rbl-mobile-toggle svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #0f172a !important;
    display: block !important;
}

.rbl-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.rbl-mobile-menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Common Buttons */
.rbl-btn-primary {
    background-color: #1d4ed8;
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px 0 rgba(29, 78, 216, 0.35);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.rbl-btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px 0 rgba(29, 78, 216, 0.5);
}

.rbl-btn-secondary {
    background-color: #ffffff;
    color: #0f172a !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cbd5e1;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rbl-btn-secondary:hover {
    border-color: #1d4ed8;
    color: #1d4ed8 !important;
    transform: translateY(-2px);
}

.rbl-btn-white {
    background-color: #ffffff;
    color: #1d4ed8 !important;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.rbl-btn-white:hover {
    background-color: #f8fafc;
    color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.35);
}

/* Hero Section */
.rbl-hero {
    padding: 130px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 40%),
                #FAFAFA;
    border-bottom: 1px solid #e2e8f0;
}

.rbl-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.rbl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.rbl-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 20px;
}

.rbl-hero-title span {
    color: #1d4ed8;
}

.rbl-hero-stars {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rbl-hero-stars .stars {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rbl-hero-stars span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.rbl-hero-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #334155;
    max-width: 580px;
    margin-bottom: 32px;
}

.rbl-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rbl-hero-img-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

.rbl-hero-img-wrapper img {
    border-radius: 18px;
    width: 100%;
    object-fit: cover;
}

/* Section Header */
.rbl-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.rbl-section-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1d4ed8;
    margin-bottom: 12px;
    display: block;
}

.rbl-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 16px;
}

.rbl-section-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #334155;
}

/* Services Grid (6 Cards) */
.rbl-services-section {
    padding: 96px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.rbl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rbl-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rbl-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.rbl-service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.rbl-service-title {
    font-size: 1.35rem;
    font-weight: 750;
    color: #0f172a;
    margin-bottom: 12px;
}

.rbl-service-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155;
    flex-grow: 1;
    margin-bottom: 24px;
}

.rbl-service-list {
    margin-bottom: 24px;
    flex-grow: 1;
}

.rbl-service-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rbl-service-list li span.check {
    color: #1d4ed8;
    font-weight: 800;
}

.rbl-service-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1d4ed8;
}

/* How We Compare */
.rbl-compare-section {
    padding: 96px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.rbl-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.rbl-compare-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.rbl-compare-card.featured {
    background: #0f172a !important;
    color: #ffffff;
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
    transform: scale(1.03);
    position: relative;
    z-index: 10;
}

.rbl-compare-tag {
    background: #1d4ed8;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 16px;
    align-self: center;
}

.rbl-compare-title {
    font-size: 1.45rem;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    margin-bottom: 28px;
}

.rbl-compare-card.featured .rbl-compare-title {
    color: #ffffff;
}

.rbl-compare-list {
    flex-grow: 1;
}

.rbl-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 16px;
}

.rbl-compare-card.featured .rbl-compare-item {
    color: #f1f5f9;
}

.rbl-compare-icon-cross {
    color: #ef4444;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.rbl-compare-icon-check {
    color: #38bdf8;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* CTA Banner */
.rbl-cta-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    padding: 96px 24px;
    text-align: center;
    color: #ffffff;
}

.rbl-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.rbl-cta-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #dbeafe;
    max-width: 680px;
    margin: 0 auto 36px;
}

/* Footer */
.rbl-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0 36px;
}

.rbl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.rbl-footer-brand-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.rbl-footer-brand-title span {
    color: #38bdf8;
}

.rbl-footer-brand-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 24px;
}

.rbl-footer-heading {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.rbl-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rbl-footer-links a {
    color: #cbd5e1;
    font-size: 1rem;
    text-decoration: none;
}

.rbl-footer-links a:hover {
    color: #ffffff;
}

.rbl-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 16px;
}

.rbl-footer-contact-item svg {
    color: #38bdf8;
    flex-shrink: 0;
    margin-top: 4px;
}

.rbl-footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* Process Section */
.rbl-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rbl-process-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rbl-process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.rbl-process-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.rbl-process-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

/* Contact Page Form */
.rbl-contact-card {
    max-width: 480px;
    margin: 0 auto 48px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 24px;
    padding: 36px;
    text-align: center;
}

.rbl-contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.rbl-form-group {
    margin-bottom: 24px;
}

.rbl-form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.rbl-form-input, .rbl-form-select, .rbl-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rbl-form-input:focus, .rbl-form-select:focus, .rbl-form-textarea:focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.rbl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Blog Cards */
.rbl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rbl-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s, box-shadow 0.25s;
}

.rbl-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08);
}

.rbl-blog-img {
    height: 220px;
    background: #f1f5f9;
    overflow: hidden;
}

.rbl-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rbl-blog-card:hover .rbl-blog-img img {
    transform: scale(1.05);
}

.rbl-blog-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rbl-blog-cat {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1d4ed8;
    margin-bottom: 10px;
}

.rbl-blog-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 12px;
}

.rbl-blog-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155;
    flex-grow: 1;
    margin-bottom: 24px;
}

.rbl-blog-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #64748b;
}

.rbl-blog-link {
    color: #1d4ed8;
    font-weight: 700;
}

.rbl-blog-link:hover {
    text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .rbl-hero-title { font-size: 2.75rem; }
    .rbl-services-grid { grid-template-columns: repeat(2, 1fr); }
    .rbl-compare-grid { grid-template-columns: 1fr; }
    .rbl-compare-card.featured { transform: none; }
    .rbl-process-grid { grid-template-columns: repeat(2, 1fr); }
    .rbl-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .rbl-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .rbl-container, .rbl-container-narrow { padding-left: 16px; padding-right: 16px; }
    .rbl-brand-logo { font-size: 1.25rem; }
    .rbl-nav-links { display: none; }
    .rbl-btn-nav { display: none; }
    .rbl-mobile-toggle { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .rbl-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .rbl-hero-title { font-size: 1.95rem; line-height: 1.2; word-break: break-word; }
    .rbl-hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .rbl-btn-primary, .rbl-btn-secondary { width: 100%; justify-content: center; }
    .rbl-section-title { font-size: 1.75rem; line-height: 1.25; word-break: break-word; }
    .rbl-services-grid { grid-template-columns: 1fr; }
    .rbl-process-grid { grid-template-columns: 1fr; }
    .rbl-blog-grid { grid-template-columns: 1fr; }
    .rbl-footer-grid { grid-template-columns: 1fr; }
    .rbl-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .rbl-form-row { grid-template-columns: 1fr; }
    .rbl-contact-form-wrapper { padding: 24px; }
}
