/* ==========================================================================
   ROBOTFINGER — Storefront Styles v3
   Web Development Company: Header, Footer, Services, Contact
   ========================================================================== */

/* ──────────────────────────────────────────────
   0. AVADA OVERRIDES — Full Width + Cleanup
   ────────────────────────────────────────────── */

/* Kill the white border — Avada's body/html bg + #main 30px padding */
html, body,
html body.custom-background,
html.avada-html-layout-wide body {
    background-color: var(--rf-dark) !important;
    background-image: none !important;
    margin: 0 !important;
}

#wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible;
}

#boxed-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.layout-boxed-mode {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#main {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#main .fusion-row {
    max-width: 100% !important;
}

body.page-template-homepage { overflow-x: hidden; }

body.page-template-homepage #main,
body.page-template-homepage #main > .fusion-row {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-template-homepage #content,
body.page-template-homepage .post-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Inner page overrides — full width with contained content */
body.rf-inner-page #main,
body.rf-inner-page #main > .fusion-row {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.rf-inner-page #content,
body.rf-inner-page .post-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Hide Avada default header/footer — we inject our own */
body .fusion-header-wrapper { display: none !important; }
body .fusion-footer { display: none !important; }
body .fusion-footer-widget-area { display: none !important; }
body .fusion-footer-copyright-area { display: none !important; }

/* Hide Avada page title bar globally — we have our own page heroes */
.fusion-page-title-bar,
.fusion-breadcrumbs {
    display: none !important;
}

/* ──────────────────────────────────────────────
   1. GLOBAL LAYOUT
   ────────────────────────────────────────────── */

.rf-homepage-wrap {
    width: 100%;
    overflow-x: hidden;
}

.rf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.rf-homepage-wrap *, .rf-homepage-wrap *::before, .rf-homepage-wrap *::after,
.rf-header *, .rf-header *::before, .rf-header *::after,
.rf-footer *, .rf-footer *::before, .rf-footer *::after {
    box-sizing: border-box;
}

/* ──────────────────────────────────────────────
   2. CUSTOM HEADER
   ────────────────────────────────────────────── */

.rf-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99999;
    background: var(--rf-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Keep custom header below the WP admin toolbar */
body.admin-bar .rf-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .rf-header {
        top: 46px;
    }
}

.rf-header-transparent {
    background: transparent;
}

.rf-header.rf-header-scrolled,
.rf-header-transparent.rf-header-scrolled {
    background: rgba(15,15,26,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(108,60,225,0.12);
}

.rf-header-inner { padding: 0; }

.rf-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}

/* Logo */
.rf-logo {
    display: flex; align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}
.rf-logo-img {
    max-height: 44px;
    width: auto;
    filter: brightness(1.1);
    transition: opacity 0.2s ease;
}
.rf-logo:hover .rf-logo-img { opacity: 0.85; }

.rf-logo-text {
    font-family: var(--rf-font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--rf-white);
    letter-spacing: -0.02em;
}

/* Navigation */
.rf-main-nav { flex: 1; display: flex; justify-content: center; }

.rf-nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 4px;
}

.rf-nav-list li { position: relative; }

.rf-nav-list li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.8) !important;
    font-family: var(--rf-font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    border-radius: var(--rf-radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}

.rf-nav-list li a:hover,
.rf-nav-list li.current-menu-item > a,
.rf-nav-list li.current_page_item > a {
    color: var(--rf-white) !important;
    background: rgba(255,255,255,0.06);
}

/* Dropdown */
.rf-nav-list li ul.sub-menu {
    position: absolute;
    top: 100%; left: 0;
    list-style: none;
    margin: 8px 0 0; padding: 8px;
    background: var(--rf-dark-mid);
    border: 1px solid var(--rf-gray-800);
    border-radius: var(--rf-radius-md);
    min-width: 200px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: var(--rf-shadow-xl);
    z-index: 100;
}

.rf-nav-list li:hover > ul.sub-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}

.rf-nav-list li ul.sub-menu li a {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: var(--rf-radius-sm);
}

/* Header Actions */
.rf-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.rf-header-phone {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.15s ease;
}
.rf-header-phone:hover { color: var(--rf-white) !important; }

.rf-header-cta { white-space: nowrap; }

/* Mobile Toggle */
.rf-mobile-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 8px;
}

.rf-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    width: 24px;
}
.rf-hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--rf-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.rf-mobile-toggle[aria-expanded="true"] .rf-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.rf-mobile-toggle[aria-expanded="true"] .rf-hamburger span:nth-child(2) {
    opacity: 0;
}
.rf-mobile-toggle[aria-expanded="true"] .rf-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.rf-mobile-menu {
    display: none;
    background: var(--rf-dark);
    border-top: 1px solid var(--rf-gray-800);
    padding: 24px 0;
    max-height: 80vh;
    overflow-y: auto;
}

.rf-mobile-menu.rf-mobile-open { display: block; }

.rf-mobile-nav-list {
    list-style: none; margin: 0; padding: 0;
}
.rf-mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--rf-font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: 1px solid var(--rf-gray-800);
}
.rf-mobile-nav-list li:last-child a { border: none; }
.rf-mobile-nav-list li a:hover { color: var(--rf-primary-light) !important; }

.rf-mobile-actions {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rf-gray-800);
}

/* Fallback menu when none is assigned */
.rf-nav-list .page_item a,
.rf-mobile-nav-list .page_item a {
    color: rgba(255,255,255,0.8) !important;
}

/* ──────────────────────────────────────────────
   3. BUTTONS
   ────────────────────────────────────────────── */

.rf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--rf-radius-full);
    font-family: var(--rf-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all var(--rf-transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.4;
    white-space: nowrap;
}

.rf-btn svg { transition: transform var(--rf-transition-normal); flex-shrink: 0; }
.rf-btn:hover svg { transform: translateX(3px); }

.rf-btn-primary {
    background: var(--rf-gradient-primary);
    color: var(--rf-white) !important;
    box-shadow: 0 4px 20px rgba(108,60,225,0.4);
}
.rf-btn-primary:hover { box-shadow: var(--rf-shadow-glow); transform: translateY(-2px); }

.rf-btn-secondary {
    background: var(--rf-secondary);
    color: var(--rf-dark) !important;
    box-shadow: 0 4px 20px rgba(0,212,170,0.3);
}
.rf-btn-secondary:hover { box-shadow: var(--rf-shadow-glow-green); transform: translateY(-2px); }

.rf-btn-glass {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--rf-white) !important;
    backdrop-filter: blur(8px);
}
.rf-btn-glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }

.rf-btn-outline-dark {
    background: transparent;
    border: 2px solid var(--rf-gray-300);
    color: var(--rf-dark) !important;
}
.rf-btn-outline-dark:hover { border-color: var(--rf-primary); color: var(--rf-primary) !important; transform: translateY(-2px); }

.rf-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--rf-white) !important;
}
.rf-btn-outline-light:hover { border-color: var(--rf-primary-light); background: rgba(108,60,225,0.1); }

.rf-btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.rf-btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.rf-btn-block { width: 100%; justify-content: center; }

/* ──────────────────────────────────────────────
   4. HERO SECTION
   ────────────────────────────────────────────── */

.rf-hero {
    position: relative;
    background: var(--rf-gradient-hero);
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 0;
}

.rf-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.rf-hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(108,60,225,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108,60,225,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.rf-hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.rf-hero-glow-1 { width: 600px; height: 600px; background: rgba(108,60,225,0.2); top: -150px; right: 5%; }
.rf-hero-glow-2 { width: 500px; height: 500px; background: rgba(0,212,170,0.08); bottom: -100px; left: 5%; }
.rf-hero-glow-3 { width: 400px; height: 400px; background: rgba(255,107,53,0.06); top: 50%; left: 40%; }

.rf-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 1;
    padding-bottom: 80px;
}

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

.rf-hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 18px 6px 12px;
    background: rgba(108,60,225,0.12);
    border: 1px solid rgba(108,60,225,0.25);
    border-radius: var(--rf-radius-full);
    color: var(--rf-primary-light);
    font-size: 0.85rem; font-weight: 500;
    margin-bottom: 28px;
}

.rf-pulse { width: 8px; height: 8px; background: var(--rf-secondary); border-radius: 50%; animation: rf-pulse 2s ease-in-out infinite; flex-shrink: 0; }

.rf-hero-title {
    font-family: var(--rf-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--rf-white);
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
}

.rf-gradient-text-animated {
    background: linear-gradient(135deg, var(--rf-primary-light), var(--rf-secondary), var(--rf-accent-light), var(--rf-primary-light));
    background-size: 300% 300%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rf-gradient-shift 5s ease infinite;
}

.rf-hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--rf-gray-400);
    line-height: 1.75;
    margin: 0 0 32px 0;
    max-width: 560px;
}

.rf-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust Row under hero buttons */
.rf-hero-trust-row {
    display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap;
}
.rf-hero-trust-item {
    display: flex; align-items: center; gap: 8px;
    color: var(--rf-gray-400);
    font-size: 0.85rem; font-weight: 500;
}

/* Hero Visual — Browser Mockup */
.rf-hero-visual { position: relative; z-index: 1; }

.rf-hero-showcase { position: relative; min-height: 420px; }

.rf-browser-window {
    position: relative;
    background: var(--rf-gray-900);
    border: 1px solid var(--rf-gray-700);
    border-radius: var(--rf-radius-lg);
    overflow: hidden;
    box-shadow: var(--rf-shadow-xl), 0 0 60px rgba(108,60,225,0.15);
}

.rf-code-titlebar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--rf-gray-800);
    border-bottom: 1px solid var(--rf-gray-700);
}
.rf-dot { width: 12px; height: 12px; border-radius: 50%; }
.rf-dot-red { background: #FF5F56; }
.rf-dot-yellow { background: #FFBD2E; }
.rf-dot-green { background: #27CA40; }
.rf-code-filename { margin-left: auto; font-family: var(--rf-font-mono); font-size: 0.78rem; color: var(--rf-gray-500); }

.rf-browser-content { padding: 24px; min-height: 280px; }

.rf-browser-mockup-header {
    height: 8px; width: 40%; background: var(--rf-gray-700); border-radius: 4px; margin-bottom: 24px;
}
.rf-browser-mockup-hero { margin-bottom: 24px; }
.rf-mock-text { border-radius: 4px; margin-bottom: 10px; }
.rf-mock-text-lg { height: 14px; width: 80%; background: var(--rf-gray-700); }
.rf-mock-text-md { height: 10px; width: 60%; background: var(--rf-gray-800); }
.rf-mock-btn { height: 28px; width: 100px; background: var(--rf-primary); border-radius: var(--rf-radius-full); margin-top: 16px; }
.rf-browser-mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rf-mock-card { height: 80px; background: var(--rf-gray-800); border-radius: var(--rf-radius-sm); border: 1px solid var(--rf-gray-700); }

/* Floating Badges */
.rf-float-badge {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: rgba(30,30,50,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rf-radius-md);
    backdrop-filter: blur(16px);
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 5;
    transition: transform 0.3s ease;
}
.rf-float-badge:hover { transform: translateY(-4px) !important; }

.rf-float-badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.rf-float-badge strong { color: var(--rf-white); font-size: 0.95rem; display: block; }
.rf-float-badge span { color: var(--rf-gray-500); font-size: 0.75rem; }

.rf-float-badge-1 { top: 20px; left: -30px; }
.rf-float-badge-2 { top: 50%; right: -40px; transform: translateY(-50%); }
.rf-float-badge-3 { bottom: 20px; left: 20px; }

/* Stats Bar */
.rf-stats-bar {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 36px 0;
}

.rf-stats-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.rf-stat { text-align: center; }
.rf-stat-number { display: block; font-family: var(--rf-font-heading); font-size: 2.2rem; font-weight: 800; color: var(--rf-white); line-height: 1; }
.rf-stat-label { font-size: 0.85rem; color: var(--rf-gray-500); margin-top: 6px; display: block; }
.rf-stat-divider { width: 1px; height: 40px; background: var(--rf-gray-700); }

/* ──────────────────────────────────────────────
   5. TRUST LOGOS
   ────────────────────────────────────────────── */

.rf-trust-section {
    padding: 48px 0;
    background: var(--rf-white);
    border-bottom: 1px solid var(--rf-gray-200);
}

.rf-trust-label {
    text-align: center;
    font-size: 0.82rem; color: var(--rf-gray-400);
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
    margin: 0 0 24px;
}

.rf-trust-logos {
    display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}

.rf-trust-logo {
    display: flex; align-items: center; gap: 8px;
    color: var(--rf-gray-400); font-size: 0.9rem; font-weight: 600;
    opacity: 0.7; transition: opacity 0.2s ease;
}
.rf-trust-logo:hover { opacity: 1; }
.rf-trust-logo span { font-size: 1.2rem; }

/* ──────────────────────────────────────────────
   6. SECTION HEADERS (Reusable)
   ────────────────────────────────────────────── */

.rf-section-header { text-align: center; margin-bottom: 48px; }

.rf-section-label {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--rf-primary);
    background: rgba(108,60,225,0.08);
    padding: 6px 16px;
    border-radius: var(--rf-radius-full);
    margin-bottom: 16px;
}
.rf-section-label-light {
    color: var(--rf-primary-light);
    background: rgba(108,60,225,0.2);
}

.rf-section-title {
    font-family: var(--rf-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800; color: var(--rf-dark);
    margin: 0 0 12px; letter-spacing: -0.03em; line-height: 1.15;
}

.rf-section-subtitle {
    font-size: 1.1rem; color: var(--rf-gray-500);
    max-width: 580px; margin: 0 auto; line-height: 1.7;
}

/* ──────────────────────────────────────────────
   7. SERVICES SECTION
   ────────────────────────────────────────────── */

.rf-services-section {
    padding: 100px 0;
    background: var(--rf-white);
}

.rf-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rf-service-card {
    position: relative;
    padding: 32px;
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}
.rf-service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--rf-gradient-primary);
    opacity: 0; transition: opacity 0.3s ease;
}
.rf-service-card:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow-lg); border-color: transparent; }
.rf-service-card:hover::before { opacity: 1; }

.rf-service-card-wide {
    grid-column: 1 / -1;
}

.rf-service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--rf-radius-md);
    margin-bottom: 20px;
}

.rf-service-card h3 {
    font-family: var(--rf-font-heading);
    font-size: 1.25rem; font-weight: 700;
    color: var(--rf-dark);
    margin: 0 0 10px;
}

.rf-service-card p {
    font-size: 0.92rem; color: var(--rf-gray-500);
    line-height: 1.7; margin: 0 0 16px;
}

.rf-service-features {
    list-style: none; padding: 0; margin: 0 0 16px;
}
.rf-service-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--rf-gray-600);
    padding: 4px 0;
}
.rf-service-features li::before {
    content: '✓'; color: var(--rf-secondary); font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}

.rf-service-features-inline {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px;
}

.rf-service-link {
    display: inline-flex; align-items: center;
    font-family: var(--rf-font-heading);
    font-size: 0.9rem; font-weight: 600;
    color: var(--rf-primary) !important;
    text-decoration: none !important;
    transition: gap 0.2s ease;
}
.rf-service-link:hover { gap: 4px; }

/* ──────────────────────────────────────────────
   8. VALUE PROPOSITIONS
   ────────────────────────────────────────────── */

.rf-value-section { padding: 100px 0; background: var(--rf-gray-100); }

.rf-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.rf-value-item { position: relative; padding-top: 40px; }

.rf-value-number {
    position: absolute; top: 0; left: 0;
    font-family: var(--rf-font-heading);
    font-size: 4rem; font-weight: 900;
    color: var(--rf-gray-200); line-height: 1;
    user-select: none;
}

.rf-value-content { position: relative; z-index: 1; }

.rf-value-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--rf-radius-md); margin-bottom: 20px;
}

.rf-value-content h3 {
    font-family: var(--rf-font-heading); font-size: 1.25rem; font-weight: 700;
    color: var(--rf-dark); margin: 0 0 10px;
}
.rf-value-content p {
    font-size: 0.92rem; color: var(--rf-gray-500); line-height: 1.7; margin: 0 0 16px;
}

.rf-value-checks { list-style: none; padding: 0; margin: 0; }
.rf-value-checks li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--rf-gray-600); padding: 4px 0;
}
.rf-value-checks li::before {
    content: '✓'; color: var(--rf-secondary); font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   9. PROCESS SECTION
   ────────────────────────────────────────────── */

.rf-process-section {
    padding: 100px 0;
    background: var(--rf-gradient-hero);
    position: relative; overflow: hidden;
}

.rf-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rf-process-step {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--rf-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.rf-process-step:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(108,60,225,0.2);
    transform: translateY(-4px);
}

.rf-process-number {
    font-family: var(--rf-font-heading);
    font-size: 0.75rem; font-weight: 700;
    color: var(--rf-primary-light);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.rf-process-icon { font-size: 2.2rem; margin-bottom: 16px; }

.rf-process-step h3 {
    font-family: var(--rf-font-heading);
    font-size: 1.1rem; font-weight: 700;
    color: var(--rf-white);
    margin: 0 0 10px;
}

.rf-process-step p {
    font-size: 0.88rem; color: var(--rf-gray-400);
    line-height: 1.65; margin: 0;
}

/* ──────────────────────────────────────────────
   10. PRICING (Light variant for services)
   ────────────────────────────────────────────── */

.rf-pricing-section-light {
    padding: 100px 0;
    background: var(--rf-white);
}

.rf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.rf-pricing-card-light {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}
.rf-pricing-card-light:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow-lg); }

.rf-pricing-card-featured-light {
    border: 2px solid var(--rf-primary);
    box-shadow: 0 0 40px rgba(108,60,225,0.1);
    padding-top: 48px;
}

.rf-pricing-popular-light {
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--rf-gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 0 0 var(--rf-radius-sm) var(--rf-radius-sm);
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.rf-pricing-header-light h3 {
    font-family: var(--rf-font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: var(--rf-dark); margin: 0 0 4px;
}
.rf-pricing-header-light p {
    font-size: 0.88rem; color: var(--rf-gray-500); margin: 0 0 24px;
}

.rf-pricing-price-light { margin-bottom: 28px; }
.rf-pricing-amount-light {
    font-family: var(--rf-font-heading);
    font-size: 3rem; font-weight: 800;
    color: var(--rf-dark); line-height: 1;
}
.rf-pricing-period-light {
    font-size: 0.9rem; color: var(--rf-gray-500); margin-left: 4px;
}

.rf-pricing-features-light {
    list-style: none; padding: 0; margin: 0 0 28px;
}
.rf-pricing-features-light li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem; color: var(--rf-gray-600);
    border-bottom: 1px solid var(--rf-gray-200);
}
.rf-pricing-features-light li:last-child { border: none; }

.rf-check { color: var(--rf-secondary); font-weight: 700; flex-shrink: 0; }

/* ──────────────────────────────────────────────
   11. TESTIMONIALS
   ────────────────────────────────────────────── */

.rf-testimonials-section { padding: 100px 0; background: var(--rf-gray-100); }

.rf-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.rf-testimonial-card {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}
.rf-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow-lg); }

.rf-testimonial-stars { color: var(--rf-accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }

.rf-testimonial-card blockquote {
    font-size: 0.95rem; color: var(--rf-gray-600);
    line-height: 1.75; margin: 0 0 20px;
    font-style: italic; border: none; padding: 0;
}

.rf-testimonial-author { display: flex; align-items: center; gap: 12px; }

.rf-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}

.rf-testimonial-author strong { display: block; font-size: 0.9rem; color: var(--rf-dark); font-weight: 700; }
.rf-testimonial-author span { display: block; font-size: 0.8rem; color: var(--rf-gray-500); }

/* ──────────────────────────────────────────────
   12. BENTO FEATURES / TECH GRID
   ────────────────────────────────────────────── */

.rf-features-section-v2 { padding: 100px 0; background: var(--rf-gradient-hero); }

.rf-features-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.rf-bento-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--rf-radius-md);
    padding: 28px;
    transition: all 0.3s ease;
}
.rf-bento-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(108,60,225,0.2);
    transform: translateY(-2px);
}

.rf-bento-card-lg { grid-column: span 2; }

.rf-bento-icon { font-size: 1.8rem; margin-bottom: 14px; }

.rf-bento-card h3 { font-family: var(--rf-font-heading); font-size: 1.05rem; font-weight: 700; color: var(--rf-white); margin: 0 0 8px; }
.rf-bento-card p { font-size: 0.88rem; color: var(--rf-gray-400); line-height: 1.65; margin: 0; }

/* ──────────────────────────────────────────────
   13. CONTACT SECTION
   ────────────────────────────────────────────── */

.rf-contact-section {
    padding: 100px 0;
    background: var(--rf-gradient-hero);
    position: relative;
}

.rf-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rf-contact-content h2 {
    font-family: var(--rf-font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800; color: var(--rf-white);
    margin: 16px 0 16px; letter-spacing: -0.03em; line-height: 1.15;
}

.rf-contact-content p {
    font-size: 1.05rem; color: var(--rf-gray-400);
    line-height: 1.7; margin: 0 0 32px;
}

.rf-contact-info { display: flex; flex-direction: column; gap: 14px; }
.rf-contact-info-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--rf-gray-300); font-size: 0.95rem;
}

/* Contact Form */
.rf-contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rf-radius-lg);
    padding: 36px;
    backdrop-filter: blur(12px);
}

.rf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.rf-form-group { margin-bottom: 16px; }

.rf-form-group label {
    display: block;
    font-family: var(--rf-font-heading);
    font-size: 0.85rem; font-weight: 600;
    color: var(--rf-gray-300);
    margin-bottom: 6px;
}

.rf-form-group input,
.rf-form-group select,
.rf-form-group textarea {
    width: 100%;
    padding: 4px 16px;
    background: rgb(255 255 255 / 6%) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: var(--rf-radius-sm);
    color: #ffffff !important;
    font-family: var(--rf-font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none !important;
}

.rf-form-group input::placeholder,
.rf-form-group textarea::placeholder {
    color: var(--rf-gray-600);
}

.rf-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239A9AB4' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px;
}

.rf-form-group select option {
    background: var(--rf-dark);
    color: var(--rf-white);
}

.rf-form-group input:focus,
.rf-form-group select:focus,
.rf-form-group textarea:focus {
    border-color: var(--rf-primary) !important;
    box-shadow: 0 0 0 3px rgba(108,60,225,0.15);
}

.rf-form-group textarea { resize: vertical; min-height: 100px; }

.rf-form-note {
    font-size: 0.82rem; color: var(--rf-gray-500);
    margin: 12px 0 0; text-align: center;
}

.rf-form-alert {
    border-radius: var(--rf-radius-sm);
    padding: 12px 14px;
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.rf-form-alert-success {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.22);
    color: #166534;
}

.rf-form-alert-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.22);
    color: #991b1b;
}

/* ──────────────────────────────────────────────
   14. CUSTOM FOOTER
   ────────────────────────────────────────────── */

.rf-footer {
    background: var(--rf-dark);
    color: var(--rf-gray-400);
}

.rf-footer-main { padding: 64px 0 48px; }

.rf-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.rf-footer-logo { display: inline-block; margin-bottom: 16px; text-decoration: none !important; }
.rf-footer-logo-img { max-height: 40px; width: auto; filter: brightness(1.1); }

.rf-footer-tagline {
    font-size: 0.9rem; color: var(--rf-gray-500);
    line-height: 1.7; margin: 0 0 20px;
    max-width: 300px;
}

.rf-footer-social { display: flex; gap: 10px; }
.rf-social-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--rf-gray-400) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.rf-social-link:hover {
    background: var(--rf-primary);
    border-color: var(--rf-primary);
    color: var(--rf-white) !important;
    transform: translateY(-2px);
}

.rf-footer-heading {
    font-family: var(--rf-font-heading);
    font-size: 0.9rem; font-weight: 700;
    color: var(--rf-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
}

.rf-footer-links {
    list-style: none; padding: 0; margin: 0;
}
.rf-footer-links li { padding: 4px 0; }
.rf-footer-links a {
    color: var(--rf-gray-500) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}
.rf-footer-links a:hover { color: var(--rf-primary-light) !important; }

.rf-footer-contact {
    list-style: none; padding: 0; margin: 0;
}
.rf-footer-contact li {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0;
    font-size: 0.88rem; color: var(--rf-gray-500);
}
.rf-footer-contact a {
    color: var(--rf-gray-500) !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.rf-footer-contact a:hover { color: var(--rf-primary-light) !important; }

/* Footer Bottom / Copyright */
.rf-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--rf-gray-800);
}

.rf-footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.rf-copyright {
    font-size: 0.82rem; color: var(--rf-gray-600); margin: 0;
}

.rf-footer-bottom-links {
    display: flex; gap: 20px;
}
.rf-footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--rf-gray-600) !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.rf-footer-bottom-links a:hover { color: var(--rf-primary-light) !important; }

/* ──────────────────────────────────────────────
   15. RESPONSIVE
   ────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .rf-hero-inner { grid-template-columns: 1fr; }
    .rf-hero-visual { display: none; }
    .rf-hero { padding-top: 120px; }

    .rf-services-grid { grid-template-columns: 1fr; }
    .rf-service-card-wide { grid-column: 1; }
    .rf-service-features-inline { grid-template-columns: 1fr; }

    .rf-value-grid { grid-template-columns: 1fr; gap: 48px; }
    .rf-process-grid { grid-template-columns: repeat(2, 1fr); }
    .rf-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .rf-testimonials-grid { grid-template-columns: 1fr; }
    .rf-features-bento { grid-template-columns: repeat(2, 1fr); }
    .rf-bento-card-lg { grid-column: span 2; }
    .rf-contact-wrap { grid-template-columns: 1fr; }

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

    /* Header: hide phone, show mobile toggle */
    .rf-header-phone { display: none; }
    .rf-main-nav { display: none; }
    .rf-mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .rf-hero { padding-top: 100px; text-align: center; }
    .rf-hero-subtitle { margin-left: auto; margin-right: auto; }
    .rf-hero-actions { justify-content: center; }
    .rf-hero-trust-row { justify-content: center; }

    .rf-stats-inner { gap: 24px; }
    .rf-stat-divider { display: none; }

    .rf-process-grid { grid-template-columns: 1fr; }
    .rf-features-bento { grid-template-columns: 1fr; }
    .rf-bento-card-lg { grid-column: span 1; }

    .rf-form-row { grid-template-columns: 1fr; }

    .rf-footer-grid { grid-template-columns: 1fr; }
    .rf-footer-bottom-row { flex-direction: column; text-align: center; }
    .rf-footer-bottom-links { justify-content: center; }

    .rf-header-cta { display: none; }
}

@media (max-width: 480px) {
    .rf-hero-title { font-size: 2rem; }
    .rf-section-title { font-size: 1.6rem; }
    .rf-pricing-amount-light { font-size: 2.2rem; }
    .rf-hero-badge { font-size: 0.78rem; }
    .rf-contact-form { padding: 24px; }
    .rf-page-hero-title { font-size: 1.8rem; }
}

/* ==========================================================================
   INNER PAGE STYLES
   ========================================================================== */

/* ──────────────────────────────────────────────
   16. PAGE HERO (shared across inner pages)
   ────────────────────────────────────────────── */

.rf-page-wrap {
    width: 100%;
    overflow-x: hidden;
}

.rf-page-hero {
    position: relative;
    background: var(--rf-gradient-hero);
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.rf-page-hero-short { padding: 140px 0 80px; }

.rf-page-hero-inner { position: relative; z-index: 1; }

.rf-page-hero-title {
    font-family: var(--rf-font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--rf-white);
    margin: 16px 0;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.rf-page-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--rf-gray-400);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ──────────────────────────────────────────────
   17. SERVICES DETAIL PAGE
   ────────────────────────────────────────────── */

.rf-services-detail-section {
    padding: 80px 0;
    background: var(--rf-white);
}

.rf-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--rf-gray-200);
}
.rf-service-detail:last-child { border: none; }

.rf-service-detail-reverse { direction: rtl; }
.rf-service-detail-reverse > * { direction: ltr; }

.rf-service-detail h2 {
    font-family: var(--rf-font-heading);
    font-size: 1.8rem; font-weight: 800;
    color: var(--rf-dark); margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.rf-service-detail > .rf-service-detail-content > p {
    font-size: 1rem; color: var(--rf-gray-500);
    line-height: 1.75; margin: 0 0 20px;
}

.rf-service-price-hint {
    display: inline-block;
    padding: 6px 16px; margin-bottom: 16px;
    background: var(--rf-gray-100);
    border-radius: var(--rf-radius-full);
    font-size: 0.88rem; color: var(--rf-gray-600);
}
.rf-service-price-hint strong { color: var(--rf-primary); }

/* Code Block Visual */
.rf-code-block {
    background: var(--rf-gray-900);
    border: 1px solid var(--rf-gray-700);
    border-radius: var(--rf-radius-lg);
    overflow: hidden;
    box-shadow: var(--rf-shadow-xl);
}
.rf-code-content {
    padding: 20px; margin: 0;
    font-family: var(--rf-font-mono);
    font-size: 0.82rem; line-height: 1.8;
    color: var(--rf-gray-300);
    overflow-x: auto;
}
.rf-code-content code { font-family: inherit; background: none; padding: 0; }
.rf-code-keyword { color: #C792EA; }
.rf-code-string { color: #C3E88D; }
.rf-code-fn { color: #82AAFF; }
.rf-code-tag { color: #F07178; }
.rf-code-attr { color: #FFCB6B; }

/* Design Preview Visual */
.rf-design-preview {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.rf-design-card {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-md);
    padding: 20px; text-align: center;
    transition: all 0.3s ease;
}
.rf-design-card:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow-md); }
.rf-design-card span { font-size: 0.82rem; color: var(--rf-gray-500); margin-top: 10px; display: block; }
.rf-design-swatch { width: 100%; height: 60px; border-radius: var(--rf-radius-sm); margin-bottom: 10px; }
.rf-design-type { font-family: var(--rf-font-heading); font-size: 2.5rem; font-weight: 800; color: var(--rf-dark); margin-bottom: 8px; }
.rf-design-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 8px; }
.rf-design-layout div { height: 40px; background: var(--rf-gray-200); border-radius: 4px; }

/* Server Stats Visual */
.rf-server-stats {
    display: flex; flex-direction: column; gap: 20px;
    background: var(--rf-gray-900);
    border: 1px solid var(--rf-gray-700);
    border-radius: var(--rf-radius-lg);
    padding: 32px;
}
.rf-server-stat span { font-size: 0.85rem; color: var(--rf-gray-400); margin-top: 8px; display: block; }
.rf-server-stat-bar { height: 8px; background: var(--rf-gray-800); border-radius: 4px; overflow: hidden; }
.rf-server-stat-fill { height: 100%; width: var(--bar-width); border-radius: 4px; transition: width 1s ease; }
.rf-fill-green { background: linear-gradient(90deg, #00D4AA, #34EABB); }
.rf-fill-purple { background: linear-gradient(90deg, #6C3CE1, #8B5CF6); }
.rf-fill-orange { background: linear-gradient(90deg, #FF6B35, #FF8A5C); }

/* Maintenance Checklist Visual */
.rf-maintenance-checklist {
    background: var(--rf-gray-900);
    border: 1px solid var(--rf-gray-700);
    border-radius: var(--rf-radius-lg);
    padding: 28px;
}
.rf-check-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rf-gray-800);
    font-size: 0.9rem; color: var(--rf-gray-400);
}
.rf-check-item:last-child { border: none; }
.rf-check-done .rf-check-icon { color: var(--rf-secondary); font-weight: 700; }

/* SEO Chart Visual */
.rf-seo-chart {
    background: var(--rf-gray-900);
    border: 1px solid var(--rf-gray-700);
    border-radius: var(--rf-radius-lg);
    padding: 28px;
}
.rf-seo-chart-header { font-family: var(--rf-font-heading); font-size: 0.85rem; font-weight: 600; color: var(--rf-gray-400); margin-bottom: 20px; }
.rf-seo-bars { display: flex; align-items: flex-end; gap: 12px; height: 160px; }
.rf-seo-bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.rf-seo-bar-fill { width: 100%; border-radius: 4px 4px 0 0; background: var(--rf-primary); transition: height 1s ease; }
.rf-seo-bar-current { background: var(--rf-secondary); }
.rf-seo-bar span { font-size: 0.72rem; color: var(--rf-gray-500); margin-top: 8px; }
.rf-seo-chart-label { text-align: center; margin-top: 16px; font-family: var(--rf-font-heading); font-size: 1.1rem; font-weight: 700; color: var(--rf-secondary); }

/* API Visual */
.rf-api-visual { text-align: center; padding: 40px 20px; }
.rf-api-node-center {
    display: inline-flex; align-items: center; justify-content: center;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--rf-gradient-primary);
    color: var(--rf-white); font-family: var(--rf-font-heading);
    font-size: 0.95rem; font-weight: 700;
    box-shadow: var(--rf-shadow-glow);
    margin-bottom: 24px;
}
.rf-api-connectors { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.rf-api-node-small {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 20px;
    background: var(--rf-gray-100);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-full);
    font-size: 0.85rem; font-weight: 600; color: var(--rf-gray-600);
    transition: all 0.2s ease;
}
.rf-api-node-small:hover { border-color: var(--rf-primary); color: var(--rf-primary); transform: translateY(-2px); }

/* ──────────────────────────────────────────────
   18. ABOUT PAGE
   ────────────────────────────────────────────── */

.rf-about-story { padding: 80px 0; background: var(--rf-white); }

.rf-about-story-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 60px; align-items: center;
}

.rf-about-story-content p {
    font-size: 1rem; color: var(--rf-gray-500);
    line-height: 1.8; margin: 0 0 16px;
}

.rf-about-story-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.rf-about-stat-card {
    background: var(--rf-gray-100);
    border-radius: var(--rf-radius-md);
    padding: 28px; text-align: center;
}
.rf-about-stat-number {
    font-family: var(--rf-font-heading);
    font-size: 2.5rem; font-weight: 800;
    color: var(--rf-primary);
    display: block;
}
.rf-about-stat-label { font-size: 0.85rem; color: var(--rf-gray-500); display: block; margin-top: 4px; }

/* Values */
.rf-about-values { padding: 80px 0; background: var(--rf-gray-100); }

.rf-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.rf-value-card {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}
.rf-value-card:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow-lg); }
.rf-value-card-icon { font-size: 2rem; margin-bottom: 16px; }
.rf-value-card h3 { font-family: var(--rf-font-heading); font-size: 1.15rem; font-weight: 700; color: var(--rf-dark); margin: 0 0 10px; }
.rf-value-card p { font-size: 0.92rem; color: var(--rf-gray-500); line-height: 1.7; margin: 0; }

/* Tech Stack */
.rf-about-tech { padding: 80px 0; background: var(--rf-gradient-hero); }

.rf-tech-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.rf-tech-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rf-radius-md);
    padding: 20px; text-align: center;
    transition: all 0.2s ease;
}
.rf-tech-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(108,60,225,0.3);
    transform: translateY(-2px);
}
.rf-tech-item span { font-family: var(--rf-font-heading); font-size: 0.9rem; font-weight: 600; color: var(--rf-white); }

/* Process Timeline */
.rf-about-process { padding: 80px 0; background: var(--rf-white); }

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

.rf-process-tl-step { position: relative; padding-top: 20px; }

.rf-process-tl-number {
    font-family: var(--rf-font-heading);
    font-size: 3rem; font-weight: 900;
    color: var(--rf-gray-200); line-height: 1;
    margin-bottom: 12px;
}

.rf-process-tl-step h3 {
    font-family: var(--rf-font-heading);
    font-size: 1.15rem; font-weight: 700;
    color: var(--rf-dark); margin: 0 0 8px;
}

.rf-process-tl-step p {
    font-size: 0.9rem; color: var(--rf-gray-500);
    line-height: 1.7; margin: 0;
}

/* ──────────────────────────────────────────────
   19. CONTACT PAGE
   ────────────────────────────────────────────── */

.rf-contact-page-section { padding: 80px 0; background: var(--rf-white); }

.rf-contact-page-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 60px; align-items: start;
}

.rf-contact-page-info h2 {
    font-family: var(--rf-font-heading);
    font-size: 1.8rem; font-weight: 800;
    color: var(--rf-dark); margin: 0 0 12px;
}
.rf-contact-page-info > p {
    font-size: 1rem; color: var(--rf-gray-500);
    line-height: 1.7; margin: 0 0 32px;
}

.rf-contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.rf-contact-method {
    display: flex; align-items: flex-start; gap: 14px;
}
.rf-contact-method-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.rf-contact-method strong { display: block; font-size: 0.9rem; color: var(--rf-dark); margin-bottom: 2px; }
.rf-contact-method a,
.rf-contact-method span { font-size: 0.9rem; color: var(--rf-gray-500); text-decoration: none; }
.rf-contact-method a:hover { color: var(--rf-primary); }

.rf-contact-social h3 { font-family: var(--rf-font-heading); font-size: 1rem; font-weight: 700; margin: 0 0 12px; }

/* Contact page form (light theme) */
.rf-contact-page-form {
    background: var(--rf-gray-100);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    padding: 36px;
}

.rf-contact-page-form .rf-form-group label { color: var(--rf-dark); }

.rf-contact-page-form .rf-form-group input,
.rf-contact-page-form .rf-form-group select,
.rf-contact-page-form .rf-form-group textarea {
    background: var(--rf-white) !important;
    border: 1px solid var(--rf-gray-200) !important;
    color: var(--rf-dark) !important;
}
.rf-contact-page-form .rf-form-group select { color: var(--rf-gray-500) !important; }
.rf-contact-page-form .rf-form-group select:invalid { color: var(--rf-gray-500) !important; }
.rf-contact-page-form .rf-form-group select.rf-has-value { color: var(--rf-dark) !important; }
.rf-contact-page-form .rf-form-group select {
    -webkit-text-fill-color: currentColor !important;
    opacity: 1 !important;
    line-height: 1.35 !important;
    text-indent: 0 !important;
    -webkit-appearance: menulist !important;
    appearance: menulist !important;
    background-image: none !important;
    padding-right: 12px !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: auto !important;
    font-size: 16px !important;
}
.rf-contact-page-form .rf-form-group select option {
    background: var(--rf-white) !important;
    color: var(--rf-dark) !important;
    display: block;
    font-size: 16px !important;
}
.rf-contact-page-form .rf-form-group select option[value=""] { color: var(--rf-gray-500); }
.rf-contact-page-form .rf-form-group select option:not([value=""]) { color: var(--rf-dark); }
.rf-contact-page-form .rf-form-group input::placeholder,
.rf-contact-page-form .rf-form-group textarea::placeholder { color: var(--rf-gray-400); }

.rf-contact-page-form .rf-form-group input:focus,
.rf-contact-page-form .rf-form-group select:focus,
.rf-contact-page-form .rf-form-group textarea:focus {
    border-color: var(--rf-primary) !important;
    box-shadow: 0 0 0 3px rgba(108,60,225,0.1);
}

.rf-contact-page-form .rf-form-note { color: var(--rf-gray-500); }

/* FAQ on Contact page */
.rf-contact-faq { padding: 80px 0; background: var(--rf-gray-100); }

.rf-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.rf-faq-item {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-md);
    padding: 28px;
}
.rf-faq-item h3 { font-family: var(--rf-font-heading); font-size: 1.05rem; font-weight: 700; color: var(--rf-dark); margin: 0 0 10px; }
.rf-faq-item p { font-size: 0.9rem; color: var(--rf-gray-500); line-height: 1.7; margin: 0; }

/* ──────────────────────────────────────────────
   20. PORTFOLIO PAGE
   ────────────────────────────────────────────── */

.rf-portfolio-section { padding: 80px 0; background: var(--rf-white); }

.rf-portfolio-filter {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 48px; flex-wrap: wrap;
}
.rf-filter-pill {
    padding: 8px 20px;
    background: var(--rf-gray-100);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-full);
    font-family: var(--rf-font-heading);
    font-size: 0.85rem; font-weight: 600;
    color: var(--rf-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}
.rf-filter-pill:hover { border-color: var(--rf-primary); color: var(--rf-primary); }
.rf-filter-pill.active {
    background: var(--rf-primary); border-color: var(--rf-primary);
    color: var(--rf-white);
}

.rf-portfolio-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.rf-portfolio-card {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.rf-portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--rf-shadow-lg); }

.rf-portfolio-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.rf-portfolio-card-featured .rf-portfolio-card-img { min-height: 300px; }

.rf-portfolio-placeholder {
    width: 100%; height: 100%; min-height: 220px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--rf-font-heading); font-size: 1.5rem;
    font-weight: 800; color: rgba(255,255,255,0.9);
    letter-spacing: -0.02em;
}

.rf-portfolio-card-body { padding: 28px; }

.rf-portfolio-tags { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.rf-tag {
    padding: 4px 10px;
    background: var(--rf-gray-100); border-radius: var(--rf-radius-full);
    font-size: 0.75rem; font-weight: 600; color: var(--rf-gray-600);
}

.rf-portfolio-card-body h3 {
    font-family: var(--rf-font-heading);
    font-size: 1.2rem; font-weight: 700;
    color: var(--rf-dark); margin: 0 0 8px;
}
.rf-portfolio-card-body p { font-size: 0.9rem; color: var(--rf-gray-500); line-height: 1.65; margin: 0 0 16px; }

.rf-portfolio-results { display: flex; gap: 24px; }
.rf-portfolio-result { text-align: center; }
.rf-portfolio-result strong {
    display: block; font-family: var(--rf-font-heading);
    font-size: 1.3rem; font-weight: 800; color: var(--rf-primary);
}
.rf-portfolio-result span { font-size: 0.78rem; color: var(--rf-gray-500); }

/* ──────────────────────────────────────────────
   21. GET A QUOTE PAGE
   ────────────────────────────────────────────── */

.rf-quote-section { padding: 80px 0; background: var(--rf-white); }

.rf-quote-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }

.rf-quote-info h2 { font-family: var(--rf-font-heading); font-size: 1.6rem; font-weight: 800; color: var(--rf-dark); margin: 0 0 28px; }

.rf-quote-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.rf-quote-step { display: flex; gap: 16px; }
.rf-quote-step-num {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--rf-gradient-primary); border-radius: 50%;
    font-family: var(--rf-font-heading); font-size: 0.85rem;
    font-weight: 700; color: var(--rf-white);
}
.rf-quote-step strong { display: block; font-size: 0.95rem; color: var(--rf-dark); margin-bottom: 2px; }
.rf-quote-step p { font-size: 0.88rem; color: var(--rf-gray-500); margin: 0; line-height: 1.6; }

.rf-quote-guarantees { background: var(--rf-gray-100); border-radius: var(--rf-radius-md); padding: 24px; }
.rf-quote-guarantees h3 { font-family: var(--rf-font-heading); font-size: 1rem; font-weight: 700; color: var(--rf-dark); margin: 0 0 12px; }
.rf-quote-guarantees ul { list-style: none; padding: 0; margin: 0; }
.rf-quote-guarantees li { padding: 6px 0; font-size: 0.9rem; color: var(--rf-gray-600); }

.rf-quote-form-wrap {
    background: var(--rf-gray-100);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    padding: 36px;
}

.rf-quote-form-wrap .rf-form-group label { color: var(--rf-dark); }
.rf-quote-form-wrap .rf-form-group input,
.rf-quote-form-wrap .rf-form-group select,
.rf-quote-form-wrap .rf-form-group textarea {
    background: var(--rf-white) !important;
    border: 1px solid var(--rf-gray-200) !important;
    color: var(--rf-dark) !important;
}
.rf-quote-form-wrap .rf-form-group select { color: var(--rf-gray-500) !important; }
.rf-quote-form-wrap .rf-form-group select:invalid { color: var(--rf-gray-500) !important; }
.rf-quote-form-wrap .rf-form-group select.rf-has-value { color: var(--rf-dark) !important; }
.rf-quote-form-wrap .rf-form-group select {
    -webkit-text-fill-color: currentColor !important;
    opacity: 1 !important;
    line-height: 1.35 !important;
    text-indent: 0 !important;
    -webkit-appearance: menulist !important;
    appearance: menulist !important;
    background-image: none !important;
    padding-right: 12px !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: auto !important;
    font-size: 16px !important;
}
.rf-quote-form-wrap .rf-form-group select option {
    background: var(--rf-white) !important;
    color: var(--rf-dark) !important;
    display: block;
    font-size: 16px !important;
}
.rf-quote-form-wrap .rf-form-group select option[value=""] { color: var(--rf-gray-500); }
.rf-quote-form-wrap .rf-form-group select option:not([value=""]) { color: var(--rf-dark); }
.rf-quote-form-wrap .rf-form-group input::placeholder,
.rf-quote-form-wrap .rf-form-group textarea::placeholder { color: var(--rf-gray-400); }
.rf-quote-form-wrap .rf-form-group input:focus,
.rf-quote-form-wrap .rf-form-group select:focus,
.rf-quote-form-wrap .rf-form-group textarea:focus { border-color: var(--rf-primary) !important; box-shadow: 0 0 0 3px rgba(108,60,225,0.1); }
.rf-quote-form-wrap .rf-form-note { color: var(--rf-gray-500); }

/* ──────────────────────────────────────────────
   22. FAQ PAGE — Accordion
   ────────────────────────────────────────────── */

.rf-faq-section { padding: 80px 0; background: var(--rf-white); }

.rf-faq-category { margin-bottom: 48px; }
.rf-faq-category:last-child { margin-bottom: 0; }

.rf-faq-category-title {
    font-family: var(--rf-font-heading);
    font-size: 1.4rem; font-weight: 800;
    color: var(--rf-dark); margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--rf-gray-200);
}

.rf-accordion { display: flex; flex-direction: column; gap: 8px; }

.rf-accordion-item {
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.rf-accordion-item:hover { border-color: var(--rf-gray-300); }

.rf-accordion-trigger {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    background: var(--rf-white);
    border: none; cursor: pointer;
    font-family: var(--rf-font-heading);
    font-size: 0.95rem; font-weight: 600;
    color: var(--rf-dark); text-align: left;
}
.rf-accordion-trigger:hover { background: var(--rf-gray-100); }

.rf-accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--rf-gray-400);
}

.rf-accordion-trigger[aria-expanded="true"] .rf-accordion-icon {
    transform: rotate(180deg);
    color: var(--rf-primary);
}

.rf-accordion-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}
.rf-accordion-content.rf-accordion-open {
    max-height: 600px;
    padding: 0 20px 20px;
}

.rf-accordion-content p { font-size: 0.9rem; color: var(--rf-gray-500); line-height: 1.75; margin: 0 0 10px; }
.rf-accordion-content p:last-child { margin: 0; }
.rf-accordion-content ul { padding-left: 20px; margin: 10px 0; }
.rf-accordion-content li { font-size: 0.9rem; color: var(--rf-gray-500); line-height: 1.75; margin-bottom: 4px; }

/* ──────────────────────────────────────────────
   23. CTA BANNER (shared)
   ────────────────────────────────────────────── */

.rf-cta-banner {
    padding: 80px 0;
    background: var(--rf-gradient-hero);
    text-align: center;
}
.rf-cta-banner-inner h2 {
    font-family: var(--rf-font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--rf-white);
    margin: 0 0 12px;
}
.rf-cta-banner-inner p {
    font-size: 1.05rem; color: var(--rf-gray-400);
    max-width: 560px; margin: 0 auto 28px;
    line-height: 1.7;
}

/* ──────────────────────────────────────────────
   24. 404 PAGE
   ────────────────────────────────────────────── */

.rf-404-section {
    min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--rf-gradient-hero);
    padding: 120px 0;
    text-align: center;
}

.rf-404-code {
    font-family: var(--rf-font-heading);
    font-size: clamp(8rem, 20vw, 14rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--rf-primary-light), var(--rf-secondary));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1; margin-bottom: 16px;
    opacity: 0.6;
}

.rf-404-inner h1 {
    font-family: var(--rf-font-heading);
    font-size: 2rem; font-weight: 800;
    color: var(--rf-white); margin: 0 0 12px;
}
.rf-404-inner p { font-size: 1.05rem; color: var(--rf-gray-400); margin: 0; }

.rf-404-links { margin-top: 40px; }
.rf-404-links p { font-size: 0.85rem; color: var(--rf-gray-500); margin: 0 0 12px; }
.rf-404-links ul { list-style: none; padding: 0; display: flex; justify-content: center; gap: 20px; }
.rf-404-links a { color: var(--rf-primary-light); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.rf-404-links a:hover { color: var(--rf-white); text-decoration: underline; }

/* ──────────────────────────────────────────────
   25. LEGAL PAGES (Privacy Policy, Terms)
   ────────────────────────────────────────────── */

.rf-legal-section { padding: 80px 0; background: var(--rf-white); }

.rf-legal-content {
    max-width: 800px; margin: 0 auto;
}
.rf-legal-content h2 {
    font-family: var(--rf-font-heading);
    font-size: 1.5rem; font-weight: 800;
    color: var(--rf-dark); margin: 40px 0 12px;
    padding-top: 20px;
    border-top: 1px solid var(--rf-gray-200);
}
.rf-legal-content h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }

/* ──────────────────────────────────────────────
   26. INTERNAL LINKS SEO BLOCK
   ────────────────────────────────────────────── */

.rf-internal-links {
    padding: 56px 0 80px;
    background: var(--rf-gray-100);
}

.rf-internal-links-inner {
    background: var(--rf-white);
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-lg);
    padding: 28px;
}

.rf-internal-links-inner h2 {
    margin: 0 0 8px;
    font-family: var(--rf-font-heading);
    font-size: 1.35rem;
    color: var(--rf-dark);
}

.rf-internal-links-inner > p {
    margin: 0 0 20px;
    color: var(--rf-gray-500);
    font-size: 0.92rem;
}

.rf-internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.rf-internal-link-card {
    display: block;
    text-decoration: none !important;
    border: 1px solid var(--rf-gray-200);
    border-radius: var(--rf-radius-md);
    padding: 16px;
    background: var(--rf-white);
    transition: all 0.2s ease;
}

.rf-internal-link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(108,60,225,0.35);
    box-shadow: 0 8px 22px rgba(108,60,225,0.12);
}

.rf-internal-link-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--rf-dark);
    font-family: var(--rf-font-heading);
}

.rf-internal-link-card span {
    display: block;
    color: var(--rf-gray-500);
    font-size: 0.86rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .rf-internal-links-grid {
        grid-template-columns: 1fr;
    }
}

.rf-legal-content h3 {
    font-family: var(--rf-font-heading);
    font-size: 1.15rem; font-weight: 700;
    color: var(--rf-dark); margin: 24px 0 8px;
}

.rf-legal-content p {
    font-size: 0.95rem; color: var(--rf-gray-600);
    line-height: 1.8; margin: 0 0 16px;
}

.rf-legal-content ul {
    padding-left: 24px; margin: 0 0 20px;
}
.rf-legal-content li {
    font-size: 0.95rem; color: var(--rf-gray-600);
    line-height: 1.8; margin-bottom: 6px;
}

.rf-legal-content a { color: var(--rf-primary); text-decoration: none; font-weight: 500; }
.rf-legal-content a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────────
   26. INNER PAGE RESPONSIVE
   ────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .rf-service-detail { grid-template-columns: 1fr; }
    .rf-service-detail-reverse { direction: ltr; }
    .rf-about-story-grid { grid-template-columns: 1fr; }
    .rf-values-grid { grid-template-columns: 1fr; }
    .rf-tech-grid { grid-template-columns: repeat(3, 1fr); }
    .rf-process-timeline { grid-template-columns: repeat(2, 1fr); }
    .rf-contact-page-grid { grid-template-columns: 1fr; }
    .rf-portfolio-grid { grid-template-columns: 1fr; }
    .rf-portfolio-card-featured { grid-column: 1; grid-template-columns: 1fr; }
    .rf-quote-grid { grid-template-columns: 1fr; }
    .rf-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .rf-page-hero { padding: 120px 0 60px; }
    .rf-page-hero-short { padding: 110px 0 50px; }
    .rf-about-story-stats { grid-template-columns: repeat(2, 1fr); }
    .rf-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .rf-process-timeline { grid-template-columns: 1fr; }
    .rf-portfolio-results { flex-wrap: wrap; gap: 16px; }
    .rf-design-preview { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .rf-about-story-stats { grid-template-columns: 1fr; }
    .rf-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .rf-design-preview { grid-template-columns: 1fr; }
}
