/* ===========================
   Routing Page Styles
   =========================== */

/* Hero */
.rt-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0f0c29 0%, #131136 50%, #0d0b21 100%);
    color: white;
    overflow: hidden;
}

.rt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rt-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #a5b4fc;
    font-weight: 600;
}

.rt-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.rt-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.rt-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rt-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rt-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.rt-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.rt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.rt-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.rt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.rt-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rt-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.rt-btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 16px;
}

/* Map Mockup */
.rt-hero-visual {
    display: flex;
    justify-content: center;
}

.rt-map-mockup {
    width: 100%;
    max-width: 440px;
}

.rt-map-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
}

.rt-route-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.rt-route-line {
    stroke-dashoffset: 200;
    animation: rtDash 3s linear infinite;
}

.rt-route-2 { animation-delay: 0.5s; }
.rt-route-3 { animation-delay: 1s; }

@keyframes rtDash {
    to { stroke-dashoffset: 0; }
}

.rt-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    z-index: 2;
}

.rt-pin-start {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 32px;
    height: 32px;
}

.rt-pin-a { background: rgba(102, 126, 234, 0.9); }
.rt-pin-b { background: rgba(102, 126, 234, 0.9); }
.rt-pin-c { background: rgba(74, 222, 128, 0.9); }
.rt-pin-d { background: rgba(74, 222, 128, 0.9); }
.rt-pin-e { background: rgba(251, 146, 60, 0.9); }
.rt-pin-f { background: rgba(251, 146, 60, 0.9); }

.rt-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    background: rgba(15, 12, 41, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 3;
    backdrop-filter: blur(8px);
}

.rt-float-1 {
    bottom: 16%;
    right: 8%;
    animation: rtFloatA 4s infinite ease-in-out;
}

.rt-float-2 {
    top: 8%;
    left: 8%;
    animation: rtFloatA 4s infinite ease-in-out 1.5s;
}

@keyframes rtFloatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Sections */
.rt-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d0b21 0%, #100e2a 100%);
    color: white;
}

.rt-section-alt {
    background: linear-gradient(180deg, #100e2a 0%, #131136 100%);
}

.rt-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rt-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    color: #a5b4fc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rt-section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.rt-section-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.rt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.rt-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.rt-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.rt-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.rt-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.rt-feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* Architecture Pipeline */
.rt-arch-pipeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.rt-arch-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    position: relative;
}

.rt-arch-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
}

.rt-arch-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.rt-arch-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.rt-arch-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.rt-arch-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.rt-arch-content p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.rt-arch-arrow {
    display: flex;
    align-items: center;
    padding-top: 2.5rem;
    flex-shrink: 0;
}

/* Performance Grid */
.rt-perf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.rt-perf-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rt-perf-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.rt-perf-icon {
    margin-bottom: 1rem;
}

.rt-perf-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.rt-perf-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* Integrations */
.rt-integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.rt-integration-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.rt-integration-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.rt-integration-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.rt-integration-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rt-integration-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
}

.rt-integration-tag {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.rt-integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rt-integration-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.rt-integration-list li svg {
    flex-shrink: 0;
}

/* Optimization Modes */
.rt-modes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.rt-mode-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.rt-mode-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.rt-mode-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.rt-mode-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.rt-mode-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rt-mode-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #a5b4fc;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
}

/* Constraints */
.rt-constraints-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.rt-constraint {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.rt-constraint:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Monitor */
.rt-monitor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.rt-monitor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rt-monitor-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.rt-monitor-visual {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.rt-monitor-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4ade80;
}

.rt-dot-pulse {
    animation: rtPulse 2s infinite;
}

@keyframes rtPulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.rt-monitor-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.rt-monitor-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Mobile Screens */
.rt-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rt-mobile-screen {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.rt-mobile-screen:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.rt-screen-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rt-screen-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rt-screen-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: background 0.2s;
}

.rt-screen-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.rt-screen-item svg {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* KPI */
.rt-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

.rt-kpi-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
}

.rt-kpi-main h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.rt-kpi-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rt-kpi-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    transition: background 0.2s;
}

.rt-kpi-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.rt-kpi-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.rt-kpi-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.rt-kpi-item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.rt-kpi-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.rt-kpi-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
}

.rt-kpi-metric-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.rt-kpi-metric-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rt-kpi-metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.rt-kpi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rt-kpi-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
}

/* Two Column */
.rt-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Roles */
.rt-roles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rt-role {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.rt-role:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.rt-role-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rt-role h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.rt-role p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Notifications */
.rt-notif-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rt-notif {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.rt-notif:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.rt-notif-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Grid */
.rt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.rt-why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rt-why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.rt-why-icon {
    margin-bottom: 1rem;
}

.rt-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.rt-why-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* CTA */
.rt-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #100e2a 0%, #0f0c29 100%);
    color: white;
}

.rt-cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 28px;
    padding: 3.5rem;
    text-align: center;
}

.rt-cta-box h2 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
}

.rt-cta-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.rt-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .rt-perf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rt-modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rt-monitor-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rt-kpi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .rt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .rt-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .rt-hero-stats {
        justify-content: center;
    }

    .rt-hero-actions {
        justify-content: center;
    }

    .rt-title {
        font-size: 2.4rem;
    }

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

    .rt-integrations-grid {
        grid-template-columns: 1fr;
    }

    .rt-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rt-mobile-grid {
        grid-template-columns: 1fr;
    }

    .rt-arch-pipeline {
        flex-direction: column;
        align-items: center;
    }

    .rt-arch-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .rt-arch-step {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .rt-hero {
        padding: 120px 0 60px;
    }

    .rt-title {
        font-size: 2rem;
    }

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

    .rt-perf-grid {
        grid-template-columns: 1fr;
    }

    .rt-modes-grid {
        grid-template-columns: 1fr;
    }

    .rt-monitor-grid {
        grid-template-columns: 1fr;
    }

    .rt-why-grid {
        grid-template-columns: 1fr;
    }

    .rt-section-header h2 {
        font-size: 1.75rem;
    }

    .rt-cta-box {
        padding: 2rem 1.5rem;
    }

    .rt-map-mockup {
        max-width: 300px;
    }
}
