/* ============================================================
   Rankers Digital Solution — Main Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    --rds-primary:   #FF6B2B;
    --rds-secondary: #1A1A2E;
    --rds-accent:    #E94560;
    --rds-text:      #1A1A2E;
    --rds-text-muted:#64748B;
    --rds-bg:        #FFFFFF;
    --rds-bg-alt:    #F8F9FF;
    --rds-border:    #E8ECF0;
    --rds-white:     #FFFFFF;
    --rds-font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --rds-font-display: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    --rds-radius-sm: 8px;
    --rds-radius:    14px;
    --rds-radius-lg: 24px;
    --rds-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --rds-shadow:    0 8px 32px rgba(0,0,0,0.10);
    --rds-shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
    --rds-transition:0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--rds-font);
    color: var(--rds-text);
    background: var(--rds-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--rds-transition); }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ─────────────────────────────────────────────── */
.rds-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rds-section-pad { padding: 80px 0; }
.rds-section     { padding: 90px 0; }

/* ── Section Headers ───────────────────────────────────────── */
.rds-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.rds-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,107,43,0.12), rgba(233,69,96,0.08));
    color: var(--rds-primary);
    border: 1px solid rgba(255,107,43,0.25);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.rds-section-title {
    font-family: var(--rds-font-display);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--rds-secondary);
    max-width: 700px;
    margin: 0 auto 16px;
}
.rds-section-desc {
    font-size: 1.05rem;
    color: var(--rds-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Gradient Text ─────────────────────────────────────────── */
.rds-gradient-text {
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────── */
.rds-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all var(--rds-transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}
.rds-btn-lg  { padding: 15px 32px; font-size: 1rem; }
.rds-btn-full { width: 100%; justify-content: center; }

.rds-btn-primary {
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    color: var(--rds-white);
    box-shadow: 0 4px 20px rgba(255,107,43,0.35);
}
.rds-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,43,0.45);
    color: var(--rds-white);
}
.rds-btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--rds-white);
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}
.rds-btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}
.rds-btn-outline {
    background: transparent;
    color: var(--rds-primary);
    border-color: var(--rds-primary);
}
.rds-btn-outline:hover {
    background: var(--rds-primary);
    color: var(--rds-white);
    transform: translateY(-2px);
}
.rds-btn-white {
    background: var(--rds-white);
    color: var(--rds-primary);
}
.rds-btn-white:hover {
    background: var(--rds-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ── Top Bar ───────────────────────────────────────────────── */
.rds-topbar { padding: 7px 0; font-size: 0.82rem; }
.rds-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.rds-topbar-left, .rds-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.85;
}
.rds-topbar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
}
.rds-topbar-left a:hover { opacity: 1; color: var(--rds-primary); }

/* ── Header ────────────────────────────────────────────────── */
.rds-header {
    position: relative;
    z-index: 1000;
    padding: 0 0;
    transition: all var(--rds-transition);
}
.rds-header.rds-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.rds-header.scrolled {
    box-shadow: 0 4px 32px rgba(0,0,0,0.22);
}
.rds-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

/* Logo */
.rds-logo { flex-shrink: 0; }
.rds-text-logo { display: flex; flex-direction: column; line-height: 1.1; }
.rds-logo-main {
    font-family: var(--rds-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--rds-white);
    letter-spacing: -0.02em;
}
.rds-header .custom-logo { max-height: 50px; width: auto; }

/* Nav */
.rds-nav { flex: 1; display: flex; justify-content: center; }
.rds-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.rds-nav-list li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--rds-radius-sm);
    transition: all var(--rds-transition);
}
.rds-nav-list li a:hover {
    color: var(--rds-primary);
    background: rgba(255,255,255,0.08);
}
.rds-nav-list li.current-menu-item > a { color: var(--rds-primary); }

/* Header CTA */
.rds-header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.rds-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.rds-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--rds-white);
    border-radius: 2px;
    transition: all var(--rds-transition);
}
.rds-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rds-hamburger.is-open span:nth-child(2) { opacity: 0; }
.rds-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rds-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.rds-mobile-overlay.is-active { display: block; }

/* ── Hero ──────────────────────────────────────────────────── */
.rds-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}
.rds-hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rds-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: rds-float 8s ease-in-out infinite;
}
.rds-shape-1 {
    width: 600px; height: 600px;
    background: var(--rds-primary);
    top: -200px; right: -100px;
    animation-delay: 0s;
}
.rds-shape-2 {
    width: 400px; height: 400px;
    background: var(--rds-accent);
    bottom: -100px; left: -80px;
    animation-delay: -3s;
}
.rds-shape-3 {
    width: 250px; height: 250px;
    background: #4F9EFF;
    top: 50%; left: 40%;
    animation-delay: -6s;
}
@keyframes rds-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.rds-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.rds-hero-content { max-width: 560px; }

.rds-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,43,0.15);
    border: 1px solid rgba(255,107,43,0.4);
    color: var(--rds-primary);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}
.rds-hero-headline {
    font-family: var(--rds-font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.rds-hero-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 480px;
}
.rds-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.rds-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.rds-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ── Hero Professional Photo ───────────────────────────────── */
.rds-hero-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Decorative glowing blob behind photo */
.rds-photo-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,43,0.35) 0%, rgba(233,69,96,0.15) 60%, transparent 80%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Spinning decorative rings */
.rds-photo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.14);
    pointer-events: none;
    z-index: 0;
}
.rds-photo-ring-1 {
    width: 380px; height: 380px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: rds-spin-slow 18s linear infinite;
}
.rds-photo-ring-2 {
    width: 440px; height: 440px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: rds-spin-slow 28s linear infinite reverse;
    border-color: rgba(255,107,43,0.10);
}
@keyframes rds-spin-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Photo frame */
.rds-hero-photo-frame {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 360px;
    border-radius: 160px 160px 120px 120px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.15);
    box-shadow:
        0 0 0 8px rgba(255,107,43,0.12),
        0 32px 80px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, rgba(255,107,43,0.2) 0%, rgba(26,26,46,0.8) 100%);
}
.rds-hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Floating name card at the bottom */
.rds-hero-photo-card {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 100px;
    padding: 10px 20px 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 4;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.rds-photo-card-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.3);
    flex-shrink: 0;
    animation: rds-pulse-dot 2s ease-in-out infinite;
}
@keyframes rds-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0.15); }
}
.rds-photo-card-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.rds-photo-card-title {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.2;
}

/* Floating badge top-right */
.rds-hero-photo-badge {
    position: absolute;
    top: 16px;
    right: -10px;
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(255,107,43,0.45);
    z-index: 5;
    animation: rds-float 4s ease-in-out infinite;
    white-space: nowrap;
}


/* Hero Visual */
.rds-hero-visual { position: relative; display: flex; justify-content: center; }
.rds-hero-card-stack { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.rds-hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--rds-radius-lg);
    padding: 28px;
    color: white;
}
.rds-hero-card-main { position: relative; z-index: 2; }
.rds-hero-chart { margin-bottom: 16px; height: 80px; }
.rds-sparkline { width: 100%; height: 100%; }
.rds-hero-card-label { font-size: 0.82rem; opacity: 0.7; margin-bottom: 6px; }
.rds-hero-card-value { font-size: 1.6rem; font-weight: 800; font-family: var(--rds-font-display); }
.rds-hero-card-value small { font-size: 0.75rem; font-weight: 400; opacity: 0.7; }

.rds-hero-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    z-index: 3;
    border-radius: var(--rds-radius);
    animation: rds-float 6s ease-in-out infinite;
}
.rds-hero-card-float-1 { top: -20px; right: -20px; animation-delay: -2s; }
.rds-hero-card-float-2 { bottom: -20px; left: -20px; animation-delay: -4s; }
.rds-card-icon { font-size: 1.8rem; }
.rds-card-num  { font-size: 1.2rem; font-weight: 800; }
.rds-card-lbl  { font-size: 0.72rem; opacity: 0.7; }

/* Hero Stats */
.rds-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 60px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--rds-radius-lg);
    padding: 28px 40px;
    position: relative;
    z-index: 1;
}
.rds-hero-stat { flex: 1; text-align: center; }
.rds-stat-num {
    font-family: var(--rds-font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rds-stat-lbl  { font-size: 0.82rem; opacity: 0.7; margin-top: 4px; }
.rds-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); margin: 0 20px; }

/* ── About ─────────────────────────────────────────────────── */
.rds-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.rds-about-img-wrapper { position: relative; }
.rds-about-placeholder {
    background: linear-gradient(135deg, var(--rds-secondary) 0%, #0F3460 100%);
    border-radius: var(--rds-radius-lg);
    padding: 48px 32px;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.rds-about-placeholder-inner { width: 100%; }
.rds-ap-icon { font-size: 3.5rem; margin-bottom: 16px; }
.rds-ap-text { font-family: var(--rds-font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 32px; }
.rds-ap-metrics { display: flex; justify-content: space-around; }
.rds-ap-metrics div { font-size: 0.9rem; opacity: 0.8; }
.rds-ap-metrics strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--rds-primary); }

.rds-about-badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--rds-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--rds-radius);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--rds-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
}
.rds-about-img-wrapper img {
    width: 100%;
    border-radius: var(--rds-radius-lg);
    object-fit: cover;
    max-height: 480px;
}

.rds-about-para { color: var(--rds-text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.97rem; }
.rds-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.rds-about-feature { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; }
.rds-feature-check {
    width: 24px; height: 24px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ── Services ──────────────────────────────────────────────── */
.rds-services { background: var(--rds-bg); }
.rds-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rds-service-card {
    background: var(--rds-white);
    border: 1px solid var(--rds-border);
    border-radius: var(--rds-radius-lg);
    padding: 32px 24px;
    transition: all var(--rds-transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.rds-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rds-primary), var(--rds-accent));
    transform: scaleX(0);
    transition: transform var(--rds-transition);
    transform-origin: left;
}
.rds-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rds-shadow);
    border-color: transparent;
}
.rds-service-card:hover::before { transform: scaleX(1); }
.rds-service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.rds-service-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--rds-secondary); }
.rds-service-desc  { font-size: 0.87rem; color: var(--rds-text-muted); line-height: 1.6; margin-bottom: 16px; }
.rds-service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600; color: var(--rds-primary);
    transition: gap var(--rds-transition);
}
.rds-service-link:hover { gap: 10px; }

/* ── Stats Section ─────────────────────────────────────────── */
.rds-stats-section { padding: 80px 0; }
.rds-stats-title {
    font-family: var(--rds-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 48px;
    opacity: 0.9;
}
.rds-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--rds-radius-lg);
    overflow: hidden;
}
.rds-stat-item {
    background: rgba(255,255,255,0.04);
    padding: 48px 24px;
    text-align: center;
    transition: background var(--rds-transition);
}
.rds-stat-item:hover { background: rgba(255,255,255,0.08); }
.rds-stat-number {
    font-family: var(--rds-font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.rds-stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; }

/* ── Process ───────────────────────────────────────────────── */
.rds-process { background: var(--rds-bg-alt); }
.rds-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.rds-process-step { position: relative; }
.rds-step-number {
    font-family: var(--rds-font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.8;
}
.rds-step-connector {
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--rds-primary), transparent);
}
.rds-step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--rds-secondary); }
.rds-step-desc  { font-size: 0.88rem; color: var(--rds-text-muted); line-height: 1.65; }

/* ── Why Choose Us ─────────────────────────────────────────── */
.rds-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rds-why-card {
    background: var(--rds-white);
    border: 1px solid var(--rds-border);
    border-radius: var(--rds-radius-lg);
    padding: 32px 28px;
    transition: all var(--rds-transition);
}
.rds-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rds-shadow);
    border-color: rgba(255,107,43,0.2);
}
.rds-why-icon  { font-size: 2.4rem; margin-bottom: 16px; }
.rds-why-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--rds-secondary); }
.rds-why-desc  { font-size: 0.88rem; color: var(--rds-text-muted); line-height: 1.65; }

/* ── Testimonials ──────────────────────────────────────────── */
.rds-testimonials { background: var(--rds-bg); overflow: hidden; }
.rds-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
}
.rds-rating-stars { display: flex; gap: 4px; }
.rds-rating-text  { font-size: 0.92rem; color: var(--rds-text-muted); font-weight: 500; }

.rds-testimonials-slider { overflow: hidden; position: relative; }
.rds-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.rds-testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--rds-white);
    border: 1px solid var(--rds-border);
    border-radius: var(--rds-radius-lg);
    padding: 32px;
    transition: all var(--rds-transition);
    flex-shrink: 0;
}
.rds-testimonial-card:hover { box-shadow: var(--rds-shadow); border-color: rgba(255,107,43,0.2); }
.rds-testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rds-testi-quote {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--rds-text-muted);
    margin-bottom: 24px;
    position: relative;
    font-style: italic;
    quotes: none;
}
.rds-quote-icon  { position: absolute; top: -8px; left: -4px; }
.rds-testi-author { display: flex; align-items: center; gap: 14px; }
.rds-testi-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.rds-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rds-testi-initials {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}
.rds-testi-name { display: block; font-weight: 700; font-size: 0.92rem; color: var(--rds-secondary); }
.rds-testi-role { font-size: 0.78rem; color: var(--rds-text-muted); margin-top: 2px; }

.rds-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.rds-slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--rds-bg-alt);
    border: 1px solid var(--rds-border);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--rds-transition);
    cursor: pointer;
}
.rds-slider-btn:hover { background: var(--rds-primary); color: white; border-color: var(--rds-primary); }
.rds-slider-dots { display: flex; gap: 8px; }
.rds-slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rds-border);
    cursor: pointer;
    transition: all var(--rds-transition);
}
.rds-slider-dot.is-active { background: var(--rds-primary); width: 24px; border-radius: 4px; }

/* ── Team ──────────────────────────────────────────────────── */
.rds-team { background: var(--rds-bg-alt); }
.rds-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rds-team-card {
    background: var(--rds-white);
    border-radius: var(--rds-radius-lg);
    overflow: hidden;
    border: 1px solid var(--rds-border);
    transition: all var(--rds-transition);
}
.rds-team-card:hover { transform: translateY(-6px); box-shadow: var(--rds-shadow); border-color: transparent; }
.rds-team-photo {
    height: 220px;
    background: linear-gradient(135deg, var(--rds-secondary) 0%, #0F3460 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.rds-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.rds-team-initials {
    font-family: var(--rds-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    background: linear-gradient(135deg, var(--rds-primary), var(--rds-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rds-team-linkedin {
    position: absolute;
    bottom: 12px; right: 12px;
    width: 36px; height: 36px;
    background: #0077B5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--rds-transition);
}
.rds-team-card:hover .rds-team-linkedin { opacity: 1; transform: translateY(0); }
.rds-team-info { padding: 24px 20px; }
.rds-team-name { font-size: 1rem; font-weight: 700; color: var(--rds-secondary); margin-bottom: 4px; }
.rds-team-role {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rds-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.rds-team-bio { font-size: 0.84rem; color: var(--rds-text-muted); line-height: 1.6; }

/* ── CTA Banner ────────────────────────────────────────────── */
.rds-cta-banner {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    text-align: center;
}
.rds-cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.rds-cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.rds-cta-shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.rds-cta-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.rds-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.rds-cta-title {
    font-family: var(--rds-font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}
.rds-cta-desc { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; line-height: 1.65; }

/* ── Contact ───────────────────────────────────────────────── */
.rds-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.rds-contact-info { background: var(--rds-secondary); color: white; border-radius: var(--rds-radius-lg); padding: 48px 40px; }
.rds-contact-info-title  { font-family: var(--rds-font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.rds-contact-info-subtitle { font-size: 0.9rem; opacity: 0.75; margin-bottom: 32px; line-height: 1.6; }
.rds-contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.rds-contact-detail {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 0.9rem;
}
.rds-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(255,107,43,0.2);
    border-radius: var(--rds-radius-sm);
    display: flex; align-items: center; justify-content: center;
}
.rds-contact-detail strong { display: block; font-weight: 600; margin-bottom: 2px; }
.rds-contact-detail a { opacity: 0.85; }
.rds-contact-detail a:hover { color: var(--rds-primary); opacity: 1; }
.rds-contact-guarantee { display: flex; flex-direction: column; gap: 10px; }
.rds-guarantee-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.87rem; opacity: 0.85;
}

/* Form */
.rds-contact-form-wrapper {
    background: var(--rds-white);
    border-radius: var(--rds-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--rds-shadow);
    border: 1px solid var(--rds-border);
}
.rds-form-row { display: flex; gap: 20px; }
.rds-form-row-2 > * { flex: 1; }
.rds-form-group { margin-bottom: 20px; }
.rds-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rds-secondary);
    margin-bottom: 6px;
}
.rds-form-group label span { color: var(--rds-accent); }
.rds-form-group input,
.rds-form-group select,
.rds-form-group textarea {
    width: 100%;
    background: var(--rds-bg-alt);
    border: 1.5px solid var(--rds-border);
    border-radius: var(--rds-radius-sm);
    padding: 12px 16px;
    font-family: var(--rds-font);
    font-size: 0.92rem;
    color: var(--rds-text);
    transition: border-color var(--rds-transition), box-shadow var(--rds-transition);
    outline: none;
}
.rds-form-group input:focus,
.rds-form-group select:focus,
.rds-form-group textarea:focus {
    border-color: var(--rds-primary);
    box-shadow: 0 0 0 3px rgba(255,107,43,0.12);
    background: var(--rds-white);
}
.rds-form-group textarea { resize: vertical; }

.rds-form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--rds-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.rds-form-message.is-success { background: #F0FFF4; border: 1px solid #86EFAC; color: #166534; display: block; }
.rds-form-message.is-error   { background: #FFF1F2; border: 1px solid #FDA4AF; color: #9F1239; display: block; }

@keyframes rds-spin { to { transform: rotate(360deg); } }
.rds-spinner { animation: rds-spin 0.8s linear infinite; }

/* ── Footer ────────────────────────────────────────────────── */
.rds-footer-main { padding: 72px 0 48px; }
.rds-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.rds-footer-logo {
    font-family: var(--rds-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}
.rds-footer-about { font-size: 0.87rem; opacity: 0.7; line-height: 1.7; margin: 16px 0 24px; }
.rds-social-links { display: flex; gap: 10px; }
.rds-social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--rds-transition);
    opacity: 0.8;
}
.rds-social-links a:hover { background: var(--rds-primary); opacity: 1; transform: translateY(-2px); }
.rds-footer-heading { font-size: 0.88rem; font-weight: 700; color: white; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.rds-footer-links li { margin-bottom: 10px; }
.rds-footer-links a { font-size: 0.87rem; opacity: 0.7; transition: opacity var(--rds-transition); }
.rds-footer-links a:hover { opacity: 1; color: var(--rds-primary); }
.rds-footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; opacity: 0.75; margin-bottom: 14px; }
.rds-footer-contact-list svg { flex-shrink: 0; margin-top: 2px; }
.rds-footer-contact-list a:hover { color: var(--rds-primary); opacity: 1; }
.rds-footer-badge { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.rds-footer-badge span { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); }

.rds-footer-bottom { padding: 20px 0; }
.rds-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.82rem;
    opacity: 0.6;
}
.rds-footer-bottom-inner p { display: flex; align-items: center; gap: 12px; }
.rds-footer-bottom-inner a:hover { color: var(--rds-primary); opacity: 1; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.rds-page-hero {
    background: linear-gradient(135deg, var(--rds-secondary), #0F3460);
    padding: 80px 0;
    color: white;
}
.rds-page-hero h1 {
    font-family: var(--rds-font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
}
.rds-post-meta-top { font-size: 0.85rem; opacity: 0.7; margin-bottom: 12px; display: flex; gap: 16px; }
.rds-page-content, .rds-single-content { max-width: 780px; }
.rds-page-content h2, .rds-entry-content h2 { font-size: 1.6rem; font-weight: 700; margin: 28px 0 12px; color: var(--rds-secondary); }
.rds-page-content p, .rds-entry-content p { margin-bottom: 16px; line-height: 1.75; color: var(--rds-text-muted); }
.rds-single-thumbnail { margin-bottom: 32px; border-radius: var(--rds-radius-lg); overflow: hidden; }
.rds-single-thumbnail img { width: 100%; max-height: 500px; object-fit: cover; }
.rds-post-nav { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rds-border); }

/* ── Blog ──────────────────────────────────────────────────── */
.rds-blog-page { padding: 60px 0; }
.rds-posts-loop { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.rds-post-card { background: var(--rds-white); border: 1px solid var(--rds-border); border-radius: var(--rds-radius-lg); overflow: hidden; transition: all var(--rds-transition); }
.rds-post-card:hover { box-shadow: var(--rds-shadow); transform: translateY(-4px); }
.rds-post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.rds-post-body { padding: 24px; }
.rds-post-meta { font-size: 0.78rem; color: var(--rds-text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.rds-post-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.rds-post-title a { color: var(--rds-secondary); }
.rds-post-title a:hover { color: var(--rds-primary); }
.rds-post-excerpt { font-size: 0.88rem; color: var(--rds-text-muted); margin-bottom: 16px; line-height: 1.6; }
.rds-pagination { margin-top: 48px; display: flex; justify-content: center; }

/* ── Blog Home Section ─────────────────────────────────────── */
.rds-blog-home { background: var(--rds-bg-alt); }

.rds-blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.rds-blog-home-card {
    background: var(--rds-white);
    border-radius: var(--rds-radius-lg);
    border: 1px solid var(--rds-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--rds-transition);
}
.rds-blog-home-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rds-shadow);
    border-color: transparent;
}

/* Thumbnail */
.rds-blog-thumb-link { display: block; }
.rds-blog-thumb {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rds-secondary) 0%, #0F3460 100%);
}
.rds-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.rds-blog-home-card:hover .rds-blog-thumb img { transform: scale(1.05); }

.rds-blog-thumb-placeholder { display: flex; align-items: center; justify-content: center; }
.rds-blog-no-thumb { color: rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.rds-blog-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
    pointer-events: none;
}

.rds-blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rds-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
    transition: background var(--rds-transition);
}
.rds-blog-cat:hover { background: var(--rds-accent); }

/* Body */
.rds-blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rds-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.rds-blog-date,
.rds-blog-readtime {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--rds-text-muted);
    font-weight: 500;
}

.rds-blog-title {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--rds-secondary);
    margin: 0;
}
.rds-blog-title a { color: inherit; }
.rds-blog-title a:hover { color: var(--rds-primary); }

.rds-blog-excerpt {
    font-size: 0.87rem;
    color: var(--rds-text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.rds-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--rds-border);
    margin-top: auto;
}

.rds-blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rds-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rds-border);
}
.rds-author-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rds-secondary);
}

.rds-blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--rds-primary);
    transition: gap var(--rds-transition);
    white-space: nowrap;
}
.rds-blog-read-link:hover { gap: 8px; color: var(--rds-primary); }

/* "View All" CTA */
.rds-blog-home-cta {
    text-align: center;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 1100px) {
    .rds-blog-home-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .rds-blog-home-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .rds-blog-home-grid { grid-template-columns: 1fr; }
    .rds-blog-thumb     { height: 190px; }
}

/* ── Animations ────────────────────────────────────────────── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"]  { transform: translateX(24px); }
[data-animate].is-visible   { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1100px) {
    .rds-container       { padding: 0 20px; }
    .rds-services-grid   { grid-template-columns: repeat(2, 1fr); }
    .rds-team-grid       { grid-template-columns: repeat(2, 1fr); }
    .rds-stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .rds-footer-grid     { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
    .rds-hero-inner      { gap: 40px; }
    .rds-hero-card-stack { max-width: 340px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .rds-section, .rds-section-pad { padding: 72px 0; }
    .rds-section-header             { margin-bottom: 40px; }

    .rds-topbar          { display: none; }

    .rds-hero                { min-height: auto; padding: 80px 0 56px; }
    .rds-hero-inner          { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .rds-hero-visual         { display: none; }
    .rds-hero-has-photo      { display: flex !important; justify-content: center; align-items: center; order: -1; min-height: 320px; }
    .rds-hero-photo-wrap     { max-width: 260px; margin: 0 auto; }
    .rds-hero-photo-frame    { width: 220px; height: 270px; border-radius: 130px 130px 100px 100px; }
    .rds-photo-ring-1        { width: 260px; height: 260px; }
    .rds-photo-ring-2        { width: 310px; height: 310px; }
    .rds-photo-glow          { width: 220px; height: 220px; }
    .rds-hero-photo-badge    { right: -8px; top: 12px; font-size: 0.70rem; }
    .rds-hero-content        { max-width: 100%; }
    .rds-hero-actions        { justify-content: center; }
    .rds-trust-badges        { justify-content: center; }
    .rds-hero-stats          { padding: 24px 20px; margin-top: 40px; flex-wrap: wrap; gap: 12px; }
    .rds-hero-stat           { flex: 1 1 40%; }
    .rds-stat-divider        { display: none; }

    .rds-about-grid      { grid-template-columns: 1fr; gap: 40px; }
    .rds-about-features  { grid-template-columns: 1fr 1fr; }

    .rds-process-steps   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .rds-step-connector  { display: none; }

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

    .rds-testimonials-track { flex-wrap: nowrap; }
    .rds-testimonial-card   { min-width: calc(50% - 12px); }

    .rds-contact-grid    { grid-template-columns: 1fr; gap: 32px; }

    .rds-footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile landscape / large phones */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .rds-container { padding: 0 16px; }
    .rds-section, .rds-section-pad { padding: 60px 0; }
    .rds-section-header { margin-bottom: 32px; }
    .rds-section-desc   { font-size: 0.97rem; }

    /* Header */
    .rds-header-inner   { padding: 14px 0; }
    .rds-nav            { display: none; }
    .rds-hamburger      { display: flex; }
    .rds-header-cta .rds-btn:not(.rds-btn-icon) { display: none; }

    /* Mobile slide-in menu */
    .rds-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(300px, 82vw);
        background: var(--rds-secondary);
        padding: 72px 28px 40px;
        z-index: 1001;
        box-shadow: -8px 0 40px rgba(0,0,0,0.35);
        overflow-y: auto;
    }
    .rds-nav.is-open .rds-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .rds-nav.is-open .rds-nav-list li { width: 100%; }
    .rds-nav.is-open .rds-nav-list li a {
        display: block;
        padding: 13px 16px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .rds-nav.is-open .rds-nav-list li:last-child a { border-bottom: none; }

    /* Hero */
    .rds-hero                { padding: 72px 0 48px; }
    .rds-hero-headline       { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .rds-hero-subtext        { font-size: 1rem; }
    .rds-hero-stats          { padding: 20px 16px; }
    .rds-stat-num            { font-size: 1.8rem; }
    .rds-hero-has-photo      { display: flex !important; justify-content: center; align-items: center; order: -1; min-height: 280px; }
    .rds-hero-photo-wrap     { max-width: 210px; margin: 0 auto; }
    .rds-hero-photo-frame    { width: 190px; height: 230px; border-radius: 110px 110px 80px 80px; }
    .rds-photo-ring-1        { width: 230px; height: 230px; }
    .rds-photo-ring-2        { width: 275px; height: 275px; }
    .rds-photo-glow          { width: 190px; height: 190px; }
    .rds-hero-photo-badge    { font-size: 0.65rem; padding: 5px 10px; right: -6px; top: 10px; }
    .rds-hero-photo-card     { padding: 8px 14px 8px 10px; gap: 7px; }
    .rds-photo-card-name     { font-size: 0.78rem; }
    .rds-photo-card-title    { font-size: 0.66rem; }

    /* About */
    .rds-about-features { grid-template-columns: 1fr; }
    .rds-about-placeholder { min-height: 280px; padding: 32px 20px; }

    /* Services */
    .rds-services-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .rds-service-card   { padding: 24px 18px; }

    /* Stats */
    .rds-stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .rds-stat-item      { padding: 36px 16px; }

    /* Process */
    .rds-process-steps  { grid-template-columns: 1fr; gap: 20px; }

    /* Why */
    .rds-why-grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .rds-why-card       { padding: 24px 20px; }

    /* Testimonials */
    .rds-testimonial-card { min-width: calc(100% - 0px); padding: 24px 20px; }

    /* Contact */
    .rds-contact-info   { padding: 32px 24px; }
    .rds-contact-form-wrapper { padding: 32px 24px; }
    .rds-form-row       { flex-direction: column; gap: 0; }

    /* CTA */
    .rds-cta-banner     { padding: 64px 0; }
    .rds-cta-title      { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    /* Footer */
    .rds-footer-main    { padding: 56px 0 36px; }
    .rds-footer-grid    { grid-template-columns: 1fr 1fr; gap: 28px; }
    .rds-footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

    /* Blog */
    .rds-posts-loop     { grid-template-columns: 1fr; }

    /* Buttons – larger touch targets */
    .rds-btn            { padding: 13px 22px; min-height: 48px; }
    .rds-btn-lg         { padding: 15px 28px; }
}

/* Mobile portrait */
@media (max-width: 540px) {
    html { font-size: 14.5px; }
    .rds-container { padding: 0 14px; }

    .rds-section, .rds-section-pad { padding: 52px 0; }
    .rds-section-badge  { font-size: 0.72rem; }

    /* Hero */
    .rds-hero           { padding: 64px 0 44px; }
    .rds-hero-headline  { font-size: clamp(1.75rem, 8.5vw, 2.3rem); letter-spacing: -0.01em; }
    .rds-hero-subtext   { font-size: 0.95rem; }
    .rds-hero-actions   { flex-direction: column; align-items: center; }
    .rds-hero-actions .rds-btn { width: 100%; max-width: 320px; justify-content: center; }
    .rds-hero-stats     { flex-direction: column; align-items: stretch; gap: 0; padding: 0; background: none; border: none; backdrop-filter: none; margin-top: 32px; }
    .rds-hero-stat      { padding: 16px 20px; background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
    .rds-hero-stat:first-child { border-radius: 14px 14px 0 0; }
    .rds-hero-stat:last-child  { border-radius: 0 0 14px 14px; border-bottom: none; }
    .rds-hero-has-photo      { display: flex !important; justify-content: center; align-items: center; order: -1; min-height: 240px; }
    .rds-hero-photo-wrap     { max-width: 170px; margin: 0 auto; }
    .rds-hero-photo-frame    { width: 160px; height: 195px; border-radius: 90px 90px 68px 68px; border-width: 3px; }
    .rds-photo-ring-1        { width: 195px; height: 195px; }
    .rds-photo-ring-2        { display: none; }
    .rds-photo-glow          { width: 160px; height: 160px; }
    .rds-hero-photo-badge    { font-size: 0.60rem; padding: 4px 8px; right: -4px; top: 6px; gap: 3px; }
    .rds-hero-photo-badge svg { display: none; }
    .rds-hero-photo-card     { padding: 6px 10px 6px 8px; gap: 6px; bottom: -8px; }
    .rds-photo-card-name     { font-size: 0.72rem; }
    .rds-photo-card-title    { font-size: 0.60rem; }

    /* Services – single col on small phones */
    .rds-services-grid  { grid-template-columns: 1fr; }

    /* Stats */
    .rds-stats-grid     { grid-template-columns: 1fr 1fr; }
    .rds-stat-item      { padding: 28px 12px; }
    .rds-stat-number    { font-size: 2rem; }

    /* Why – single col */
    .rds-why-grid       { grid-template-columns: 1fr; }

    /* Team – single col */
    .rds-team-grid      { grid-template-columns: 1fr; }

    /* Contact info card */
    .rds-contact-info   { padding: 28px 18px; }
    .rds-contact-form-wrapper { padding: 28px 18px; }

    /* Footer – single col */
    .rds-footer-grid    { grid-template-columns: 1fr; gap: 24px; }
    .rds-footer-main    { padding: 48px 0 28px; }

    /* About */
    .rds-about-badge-float { position: static; margin-top: 16px; display: inline-flex; }
    .rds-about-img-wrapper { text-align: center; }

    /* Process */
    .rds-step-number    { font-size: 2.5rem; }

    /* Logo */
    .rds-logo-main      { font-size: 1.1rem; }

    /* Nav CTA button show on mobile */
    .rds-header-cta     { gap: 8px; }
}
