/* ==========================================================================
   Rush Ads — CSS Exclusivo (Prefixo ra-)
   ========================================================================== */

/* ── Hero Section ──────────────────────────────────────────────────────── */
.ra-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-bg);
    padding: 120px 0 80px;
}

.ra-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.ra-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(229, 57, 53, 0.25);
}

.ra-badge i {
    font-size: 0.8rem;
}

.ra-hero-title {
    font-family: var(--font-headings);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.ra-hero-title .ra-text-gradient {
    background: linear-gradient(135deg, var(--primary), #FF6F61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ra-hero-description {
    font-size: 1.15rem;
    color: #B0BEC5;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.ra-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    gap: 8px;
}

.ra-btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
}

.ra-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.35);
}

.ra-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.ra-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual */
.ra-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.ra-hero-dashboard {
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    background: #06182E;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ra-dashboard-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Stat Cards */
.ra-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 5;
    animation: ra-float 4s ease-in-out infinite;
}

.ra-float-card-1 {
    bottom: 20%;
    left: -10%;
    min-width: 260px;
}

.ra-float-card-2 {
    top: 10%;
    right: -5%;
    min-width: 150px;
    animation-delay: -2s;
}

.ra-float-card-label {
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ra-float-card-value {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A1A1A;
}

.ra-float-card-2 .ra-float-card-value {
    font-size: 1.5rem;
}

.ra-float-card-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 10px;
    height: 40px;
}

.ra-chart-bar {
    width: 14px;
    border-radius: 3px 3px 0 0;
    background: #FDD835;
    transition: height 0.6s ease;
}

.ra-float-card-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 600;
}

@keyframes ra-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── Seção "Por que anunciar" ──────────────────────────────────────────── */
.ra-why {
    background: var(--primary);
    padding: 100px 0;
    color: #FFFFFF;
}

.ra-why-header {
    margin-bottom: 60px;
}

.ra-why-header h2 {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.ra-why-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.ra-why-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.ra-stat-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.ra-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ra-stat-image {
    width: 100%;
    height: 200px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.ra-stat-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ra-stat-content {
    padding: 28px 24px;
}

.ra-stat-number {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1;
    margin-bottom: 6px;
}

.ra-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.ra-why-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 20px;
}

/* ── Seção "Sua marca pede presença" ────────────────────────────────── */
.ra-features {
    background: #FFFFFF;
    padding: 100px 0;
}

.ra-features-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.ra-features-header h2 {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.ra-features-header p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.ra-feature-item {
    text-align: center;
    padding: 20px;
}

.ra-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1A1A1A;
}

.ra-feature-item h3 {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.ra-feature-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
}

.ra-features-cta {
    text-align: center;
}

/* ── Seção "Anúncios geolocalizados" ──────────────────────────────── */
.ra-geo {
    background: #F8FAFC;
    padding: 100px 0;
}

.ra-geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ra-geo-content h2 {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.15;
}

.ra-geo-content > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 32px;
}

.ra-geo-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ra-geo-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
}

.ra-geo-list-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
}

.ra-geo-image {
    width: 100%;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #051329;
}

.ra-geo-map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Floating location pins decorative */
.ra-geo-pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ra-pin {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #FDD835;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #1A1A1A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: ra-float 3s ease-in-out infinite;
}

.ra-pin:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.ra-pin:nth-child(2) { top: 25%; right: 25%; animation-delay: -1s; }
.ra-pin:nth-child(3) { top: 50%; left: 40%; animation-delay: -0.5s; }
.ra-pin:nth-child(4) { bottom: 30%; right: 15%; animation-delay: -1.5s; }
.ra-pin:nth-child(5) { bottom: 15%; left: 30%; animation-delay: -2s; }

/* ── Seção "Anúncios no app" ──────────────────────────────────────── */
.ra-app-formats {
    background: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
}

.ra-app-header {
    text-align: center;
    margin-bottom: 48px;
}

.ra-app-header h2 {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.ra-app-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Tabs (Clientes | Entregadores) */
.ra-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.ra-tab-btn {
    padding: 12px 32px;
    border: 2px solid var(--border-color);
    background: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.ra-tab-btn:first-child {
    border-radius: 30px 0 0 30px;
    border-right: 1px solid var(--border-color);
}

.ra-tab-btn:last-child {
    border-radius: 0 30px 30px 0;
    border-left: 1px solid var(--border-color);
}

.ra-tab-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.ra-tab-btn:hover:not(.active) {
    background: #F8F9FA;
    color: #1A1A1A;
}

/* Carousel */
.ra-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.ra-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 10px 0;
}

.ra-format-card {
    min-width: 320px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.ra-format-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Phone Mockup (pure CSS) */
.ra-phone-mockup {
    width: 200px;
    height: 400px;
    margin: 0 auto 24px;
    background: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px #F0F0F0;
}

.ra-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1A1A1A;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.ra-phone-screen {
    position: absolute;
    inset: 3px;
    border-radius: 33px;
    background: #F8F9FA;
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Status Bar */
.mock-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #333333;
    z-index: 5;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.mock-icons {
    display: flex;
    gap: 4px;
}

/* App Header */
.mock-app-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
}

.mock-app-header i {
    font-size: 0.65rem;
    color: var(--primary);
}

/* Map Area */
.mock-map-area {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.mock-map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Driver Floating Card */
.mock-driver-card {
    position: absolute;
    top: 10px;
    left: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.mock-driver-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-light);
    padding: 2px;
}

.mock-driver-info {
    display: flex;
    flex-direction: column;
}

.mock-driver-name {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.1;
}

.mock-driver-eta {
    font-size: 0.52rem;
    color: var(--text-light);
}

/* Ad Banner Container */
.mock-ad-banner {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    padding: 10px;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-ad-badge {
    align-self: flex-start;
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary);
    font-size: 0.5rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-ad-content {
    display: flex;
    flex-direction: column;
}

.mock-ad-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #1A1A1A;
}

.mock-ad-text {
    font-size: 0.58rem;
    color: var(--text-light);
    line-height: 1.25;
    margin-top: 1px;
}

.static-ad {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

.static-ad .mock-ad-content {
    flex-grow: 1;
    margin-left: 8px;
}

.mock-ad-action {
    font-size: 0.65rem;
    color: var(--text-light);
}

/* Video Ad */
.video-ad {
    padding: 6px 10px 10px;
}

.mock-video-container {
    width: 100%;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 4px;
}

.mock-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF1744, #D50000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mock-video-placeholder i {
    color: #FFFFFF;
    font-size: 1.4rem;
    opacity: 0.9;
}

.mock-video-time {
    position: absolute;
    bottom: 4px;
    right: 6px;
    background: rgba(0,0,0,0.65);
    color: #FFFFFF;
    font-size: 0.5rem;
    padding: 1px 4px;
    border-radius: 2px;
    font-family: monospace;
}

.mock-video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.3);
}

.mock-video-progress-bar {
    height: 100%;
    background: #FFD54F;
}

/* Carousel Ad */
.carousel-ad {
    padding: 8px 10px;
}

.mock-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.mock-carousel-header span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1A1A1A;
}

.mock-carousel-items {
    display: flex;
    gap: 8px;
    overflow-x: hidden;
}

.mock-carousel-item-card {
    min-width: 80px;
    flex-grow: 1;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.carousel-item-name {
    font-size: 0.52rem;
    font-weight: 600;
    color: #333333;
}

.carousel-item-price {
    font-size: 0.52rem;
    font-weight: 700;
    color: var(--primary);
}

/* Home Screen Styles */
.mock-home-header {
    background: var(--dark-bg);
    color: #FFFFFF;
    padding: 16px 14px 12px;
}

.mock-home-greeting {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 800;
}

.mock-home-loc {
    font-size: 0.6rem;
    color: #B0BEC5;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mock-home-loc i {
    color: var(--primary);
}

.mock-home-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
}

.mock-service-item {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 8px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mock-service-item i {
    font-size: 1rem;
    color: var(--primary);
}

.mock-service-item span {
    font-size: 0.55rem;
    font-weight: 700;
    color: #333333;
}

/* Coupon Card */
.mock-coupon-ad {
    margin: 0 12px 12px;
    border: 1.5px dashed var(--primary);
    background: var(--primary-light);
    border-radius: 12px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-brand {
    font-size: 0.55rem;
    font-weight: 700;
    color: #333333;
}

.mock-coupon-body {
    display: flex;
    flex-direction: column;
}

.coupon-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.coupon-desc {
    font-size: 0.55rem;
    color: var(--text-light);
    margin-top: 1px;
    line-height: 1.25;
}

.coupon-code {
    align-self: center;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: monospace;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Home Banner Ad */
.mock-home-banner-ad {
    margin: 0 12px 12px;
    background: linear-gradient(135deg, #1A1A1A, #333333);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    overflow: hidden;
}

.mock-home-banner-ad .mock-ad-badge {
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
    margin-bottom: 2px;
}

.banner-ad-title {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 800;
}

.banner-ad-subtitle {
    font-size: 0.52rem;
    color: #B0BEC5;
    line-height: 1.2;
}

.banner-ad-button {
    align-self: flex-start;
    background: #FFFFFF;
    color: #1A1A1A;
    font-size: 0.52rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}

/* Push Notification Screen */
.lock-screen {
    background: linear-gradient(180deg, #1E3C72, #2A5298);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    padding: 0;
}

.mock-lock-time {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 400;
    margin-top: 36px;
    line-height: 1;
}

.mock-lock-date {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
}

.mock-push-notif {
    width: calc(100% - 16px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 8px 10px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: #333333;
}

.mock-push-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.mock-push-app {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #1A1A1A;
}

.mock-push-time {
    font-size: 0.55rem;
    color: #777777;
}

.mock-push-body {
    display: flex;
    flex-direction: column;
}

.mock-push-title {
    font-size: 0.62rem;
    font-weight: 700;
    color: #1A1A1A;
}

.mock-push-text {
    font-size: 0.55rem;
    color: #555555;
    line-height: 1.2;
    margin-top: 1px;
}

.ra-format-label {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A1A1A;
}

/* Carousel controls */
.ra-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ra-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.ra-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D5DD;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.ra-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

.ra-arrows {
    display: flex;
    gap: 10px;
}

.ra-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.ra-arrow:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* ── Seção "Como funciona" ──────────────────────────────────────────── */
.ra-steps {
    background: #F8FAFC;
    padding: 100px 0;
}

.ra-steps-header {
    text-align: center;
    margin-bottom: 70px;
}

.ra-steps-header h2 {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.ra-steps-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.ra-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line */
.ra-steps-line {
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, #E0E0E0 50%);
    background-size: 12px 2px;
    z-index: 0;
}

.ra-step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ra-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.12);
    transition: var(--transition);
}

.ra-step-item:hover .ra-step-number {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.08);
}

.ra-step-item h3 {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.ra-step-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
    max-width: 220px;
    margin: 0 auto;
}

/* ── CTA Final ────────────────────────────────────────────────────────── */
.ra-cta {
    background: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ra-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ra-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ra-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.ra-cta h2 {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark, #1A1A1A);
    margin-bottom: 20px;
    line-height: 1.15;
}

.ra-cta p {
    font-size: 1.1rem;
    color: var(--text-light, #666666);
    margin-bottom: 40px;
    line-height: 1.6;
}

.ra-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ra-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ra-hero-title {
        font-size: 2.6rem;
    }

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

    .ra-float-card-1 {
        left: 5%;
        bottom: 10%;
    }

    .ra-float-card-2 {
        right: 5%;
        top: 5%;
    }

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

    .ra-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .ra-geo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ra-geo-content {
        text-align: center !important;
    }

    .ra-geo-list {
        align-items: center !important;
    }

    .ra-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .ra-steps-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .ra-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .ra-hero-title {
        font-size: 2.2rem;
    }

    .ra-hero-description {
        font-size: 1rem;
    }

    .ra-hero-actions {
        flex-direction: column;
    }

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

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

    .ra-hero-image-placeholder {
        height: 300px;
    }

    .ra-float-card {
        transform: scale(0.85);
    }

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

    .ra-why-header h2,
    .ra-features-header h2,
    .ra-geo-content h2,
    .ra-app-header h2,
    .ra-steps-header h2,
    .ra-cta h2 {
        font-size: 1.9rem;
    }

    .ra-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ra-feature-item {
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 16px;
    }

    .ra-feature-icon {
        margin: 0;
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .ra-format-card {
        min-width: 280px;
    }

    .ra-steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ra-cta h2 {
        font-size: 2rem;
    }

    .ra-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .ra-cta-actions .ra-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .ra-hero-title {
        font-size: 1.8rem;
    }

    .ra-stat-number {
        font-size: 2rem;
    }

    .ra-float-card {
        display: none;
    }

    .ra-phone-mockup {
        width: 170px;
        height: 340px;
    }
}
