﻿/* ============================================
   RS WEBLABS - UNIFIED STYLESHEET
   ============================================ */

/* WordPress conflict prevention */
#rsw { display: block; width: 100%; max-width: 100%; overflow-x: hidden; background: #050810; }
#rsw *, #rsw *::before, #rsw *::after { box-sizing: border-box; }
#rsw a { text-decoration: none; }
#rsw ul { list-style: none; margin: 0; padding: 0; }
#rsw img { max-width: 100%; height: auto; }
#rsw p { margin: 0; }

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg:    #050810;
  --bg2:   #080d1a;
  --card:  #0d1424;
  --border: rgba(255,255,255,0.07);
  --text:  #e2e8f0;
  --muted: #8892a4;
  --grad1: #7c3aed;
  --grad2: #06b6d4;
  --grad3: #f59e0b;
  --grad4: #ec4899;
  --green: #10b981;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
#rsw a { text-decor#rsw ation: none; color: inherit; }
#rsw ul { list-style: none; }
#rsw img { max-width: 100%; }

/* LAYOUT */
#rsw .container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
#rsw .section    { padding: 100px 0; }
#rsw .sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* GRADIENT TEXT */
#rsw .gradient-text {
  background: linear-gradient(135deg, var(--grad2), var(--grad1), var(--grad4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SECTION TAG */
#rsw .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.4);
  color: #a78bfa; padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
#rsw .section-header { text-align: center; margin-bottom: 60px; }
#rsw .section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
#rsw .section-header p { color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* BUTTONS */
#rsw .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--grad1), var(--grad2));
  color: #fff; padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 0 30px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(124,58,237,0.6); }
#rsw .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; padding: 13px 32px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--grad2); color: var(--grad2); }

/* BADGE */
#rsw .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  color: var(--green); padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem;
}

/* AURORA */
#rsw .aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.aurora::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  border-radius: 50%; animation: auroraMove 8s ease-in-out infinite alternate;
}
.aurora::after {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.2) 0%, transparent 70%);
  border-radius: 50%; animation: auroraMove 10s ease-in-out infinite alternate-reverse;
}
@keyframes auroraMove { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,30px) scale(1.1); } }

@keyframes rotateBorder { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }

@keyframes floatTag { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@keyframes logoScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }


/* ============================================
   HOME PAGE
   ============================================ */

/* HERO */
#rsw .hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: space-between; gap: 4rem;
  padding: 80px 40px; position: relative; overflow: hidden;
}
#rsw .hero-content { position: relative; z-index: 1; flex: 1; max-width: 600px; }
#rsw .hero-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -1px; }
#rsw .hero-content > p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; max-width: 500px; }
#rsw .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
#rsw .hero-visual { position: relative; z-index: 1; flex-shrink: 0; padding-right: 120px; }

/* GLOW CARD */
#rsw .glow-card { width: 380px; height: 380px; position: relative; display: flex; align-items: center; justify-content: center; }
.glow-card::before { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: linear-gradient(135deg, var(--grad1), var(--grad2), var(--grad4), var(--grad3)); animation: rotateBorder 4s linear infinite; z-index: 0; }
.glow-card::after  { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--bg); z-index: 1; }
#rsw .avatar-ring { width: 320px; height: 320px; border-radius: 50%; overflow: hidden; position: relative; z-index: 2; box-shadow: 0 0 60px rgba(124,58,237,0.3); }
#rsw .avatar-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 50%; display: block; }

/* FLOATING TAGS */
#rsw .floating-tags { position: absolute; inset: 0; z-index: 3; }
#rsw .tag { position: absolute; background: rgba(13,20,36,0.9); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; animation: floatTag 3s ease-in-out infinite; }
#rsw .t1 { top: 10%; left: -10%;  animation-delay: 0s;   border-color: rgba(124,58,237,0.4); color: #a78bfa; }
#rsw .t2 { top: 10%; right: -5%;  animation-delay: 0.5s; border-color: rgba(6,182,212,0.4);  color: var(--grad2); }
#rsw .t3 { bottom: 15%; left: -15%; animation-delay: 1s; border-color: rgba(245,158,11,0.4); color: var(--grad3); }
#rsw .t4 { bottom: 15%; right: -5%; animation-delay: 1.5s; border-color: rgba(236,72,153,0.4); color: var(--grad4); }

/* MARQUEE */
#rsw .marquee-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; overflow: hidden; }
#rsw .marquee-track { display: flex; gap: 3rem; animation: marquee 20s linear infinite; width: max-content; }
#rsw .marquee-track span { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }

/* ABOUT */
#rsw .about { background: var(--bg2); }
#rsw .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
#rsw .about-left h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1.2rem; line-height: 1.2; }
#rsw .about-left > p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
#rsw .about-info { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
#rsw .about-info div { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.9rem; }
#rsw .about-info i { color: var(--grad2); width: 16px; }
#rsw .about-info a { color: var(--muted); }
.about-info a:hover { color: var(--grad2); }
#rsw .social-links { display: flex; gap: 0.8rem; }
#rsw .social-links a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.85rem; transition: all 0.3s; }
.social-links a:hover { border-color: var(--grad2); color: var(--grad2); background: rgba(6,182,212,0.1); }
#rsw .about-right { min-width: 0; }
#rsw .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
#rsw .skill-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; text-align: center; transition: all 0.3s; }
.skill-item:hover { border-color: var(--grad2); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(6,182,212,0.15); }
#rsw .skill-item i { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; background: linear-gradient(135deg, var(--grad1), var(--grad2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#rsw .skill-item span { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
#rsw .exp-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
#rsw .exp-badge { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; text-align: center; }
#rsw .exp-badge span { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, var(--grad2), var(--grad1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
#rsw .exp-badge p { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

/* SERVICES */
#rsw .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
#rsw .service-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: all 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-color: rgba(124,58,237,0.3); }
#rsw .service-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
#rsw .service-icon.wp { background: rgba(33,117,155,0.2);  color: #21759b; }
#rsw .service-icon.sh { background: rgba(149,191,71,0.2);  color: #95bf47; }
#rsw .service-icon.wf { background: rgba(124,58,237,0.2);  color: #a78bfa; }
#rsw .service-icon.eb { background: rgba(229,32,37,0.2);   color: #e52025; }
#rsw .service-icon.am { background: rgba(255,153,0,0.2);   color: #ff9900; }
#rsw .service-icon.cd { background: rgba(6,182,212,0.2);   color: var(--grad2); }
#rsw .service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.8rem; }
#rsw .service-card p  { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
#rsw .card-link { color: var(--grad2); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.card-link:hover { gap: 10px; }

/* PORTFOLIO */
#rsw .portfolio { background: var(--bg2); }
#rsw .portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
#rsw .portfolio-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(124,58,237,0.4); }
#rsw .portfolio-img { height: 280px; overflow: hidden; }
#rsw .portfolio-real-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.4s; }
.portfolio-card:hover .portfolio-real-img { transform: scale(1.03); }
#rsw .portfolio-info { padding: 1.2rem 1.5rem; background: var(--card); }
#rsw .portfolio-info span { font-size: 0.75rem; font-weight: 600; color: var(--grad2); text-transform: uppercase; letter-spacing: 1px; }
#rsw .portfolio-info h3, #rsw .portfolio-info h4 { font-size: 1rem; font-weight: 700; margin-top: 4px; }

/* TESTIMONIALS SWIPER */
#rsw .testiSwiper { padding-bottom: 50px !important; }
#rsw .testiSwiper .testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 2rem; transition: border-color 0.3s, transform 0.3s; }
.testiSwiper .testi-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
#rsw .testi-quote { font-size: 1.8rem; color: var(--grad1); opacity: 0.5; margin-bottom: 0.8rem; }
#rsw .testiSwiper .stars { color: var(--grad3); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
#rsw .testiSwiper p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
#rsw .testiSwiper .testi-author { display: flex; align-items: center; gap: 12px; }
#rsw .testiSwiper .testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--grad1), var(--grad2)); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #fff; flex-shrink: 0; }
#rsw .testiSwiper .testi-author strong { display: block; font-size: 0.9rem; }
#rsw .testiSwiper .testi-author span { font-size: 0.75rem; color: var(--muted); }
#rsw .swiper-button-prev, #rsw .swiper-button-next { color: var(--grad2) !important; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1.2rem !important; }
#rsw .swiper-pagination-bullet { background: var(--muted) !important; opacity: 1; }
#rsw .swiper-pagination-bullet-active { background: linear-gradient(135deg, var(--grad1), var(--grad2)) !important; width: 24px !important; border-radius: 4px !important; }

/* CONTACT */
#rsw .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
#rsw .contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
#rsw .contact-item { display: flex; align-items: center; gap: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem 1.5rem; transition: border-color 0.3s; }
.contact-item:hover { border-color: var(--grad2); }
#rsw .contact-item i { font-size: 1.2rem; color: var(--grad2); width: 20px; text-align: center; }
#rsw .contact-item strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
#rsw .contact-item span, #rsw .contact-item span a { font-size: 0.82rem; color: var(--muted); }
.contact-item span a:hover { color: var(--grad2); }
#rsw .contact-form { display: flex; flex-direction: column; gap: 1rem; }
#rsw .form-row { display: flex; gap: 16px; }
#rsw .form-row input { flex: 1; min-width: 0; }
.contact-form input,
#rsw .contact-form textarea {
  background: var(--card); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 14px 18px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: all 0.3s; outline: none; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--grad2); box-shadow: 0 0 0 3px rgba(6,182,212,0.1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
#rsw .contact-form textarea { resize: vertical; }
#rsw .contact-form button { justify-content: center; width: 100%; }

/* ============================================
   SERVICE PAGES
   ============================================ */

/* SERVICE HERO */
#rsw .wp-hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; }
#rsw .wp-hero-inner { display: flex; align-items: flex-end; gap: 4rem; padding: 80px 40px; width: 100%; }
#rsw .wp-hero-content { flex: 1; position: relative; z-index: 1; }
#rsw .wp-hero-content h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.35; margin-bottom: 1.2rem; letter-spacing: -1px; }
#rsw .wp-hero-content > p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.8rem; max-width: 540px; }
#rsw .hero-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 2rem; }
#rsw .hero-checklist li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); padding: 0.3rem 0; }
#rsw .hero-checklist li i { color: var(--green); font-size: 0.9rem; flex-shrink: 0; }

/* SERVICE HERO CARD */
#rsw .wp-hero-visual { flex-shrink: 0; width: 420px; position: relative; z-index: 1; }
#rsw .wp-hero-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 2rem; position: relative; overflow: hidden; text-align: center; box-shadow: 0 0 60px rgba(124,58,237,0.2); }
.wp-hero-card::before { content: ''; position: absolute; inset: 0; border-radius: 24px; padding: 1px; background: linear-gradient(135deg, var(--grad1), var(--grad2), var(--grad4)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: rotateBorder 4s linear infinite; }
#rsw .wp-badge-offer { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--grad3), var(--grad4)); color: #fff; font-size: 0.8rem; font-weight: 800; padding: 6px 14px; border-radius: 50px; }
#rsw .wp-logo-wrap { margin: 1rem 0; }
#rsw .wp-big-icon { font-size: 5rem; background: linear-gradient(135deg, var(--grad1), var(--grad2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#rsw .wp-card-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem; }
#rsw .wp-card-sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.2rem; }
#rsw .wp-trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 1.2rem; }
#rsw .trust-badge { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 0.6rem 0.3rem; text-align: center; }
#rsw .trust-badge i { display: block; font-size: 1rem; color: var(--grad2); margin-bottom: 4px; }
#rsw .trust-badge span { font-size: 0.65rem; color: var(--muted); }
#rsw .wp-card-cta { font-size: 0.78rem; color: var(--muted); font-style: italic; }
#rsw .wp-hero-features { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
#rsw .wp-feat-item { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 0.7rem 1rem; font-size: 0.85rem; transition: border-color 0.3s; }
.wp-feat-item:hover { border-color: var(--grad2); }
#rsw .wp-feat-item i { color: var(--green); }

/* CLIENT LOGOS */
#rsw .logos-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 40px; overflow: hidden; }
#rsw .logos-label { text-align: center; color: var(--muted); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; }
#rsw .logos-track-wrap { overflow: hidden; }
#rsw .logos-track { display: flex; align-items: center; gap: 60px; animation: logoScroll 25s linear infinite; width: max-content; }
#rsw .logos-track img { height: 50px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.65; transition: all 0.3s; padding: 4px; }
.logos-track img:hover { opacity: 1; transform: scale(1.05); }

/* WHY US */
#rsw .why-us { background: var(--bg2); }
#rsw .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; }
#rsw .why-visual { padding-top: 0.5rem; }
#rsw .why-content h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
#rsw .why-content > p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
#rsw .why-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
#rsw .why-list li { display: flex; gap: 1rem; align-items: flex-start; }
#rsw .why-list li > i { color: var(--green); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
#rsw .why-list li div strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
#rsw .why-list li div p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
#rsw .legal-box { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--grad2); border-radius: 12px; padding: 1.2rem 1.5rem; }
#rsw .legal-box h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
#rsw .legal-box h3 i { color: var(--grad2); }
#rsw .legal-box p { color: var(--muted); font-size: 0.82rem; line-height: 1.7; }
#rsw .stats-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
#rsw .stats-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; text-align: center; transition: all 0.3s; }
.stats-card:hover { border-color: var(--grad2); transform: translateY(-4px); }
#rsw .stats-card span { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, var(--grad2), var(--grad1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
#rsw .stats-card p { color: var(--muted); font-size: 0.82rem; margin-top: 4px; }
#rsw .top-design-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 1.5rem; }
#rsw .top-design-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
#rsw .design-previews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
#rsw .design-prev { height: auto; border-radius: 12px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s; }
.design-prev:hover { transform: scale(1.03); }
#rsw .design-prev img { width: 100%; height: auto; object-fit: contain; display: block; border-radius: 12px; }
#rsw .p1 { background: linear-gradient(135deg, rgba(124,58,237,0.6), rgba(6,182,212,0.4)); }
#rsw .p2 { background: linear-gradient(135deg, rgba(236,72,153,0.5), rgba(124,58,237,0.5)); }
#rsw .p3 { background: linear-gradient(135deg, rgba(6,182,212,0.5), rgba(16,185,129,0.4)); }
#rsw .p4 { background: linear-gradient(135deg, rgba(245,158,11,0.5), rgba(236,72,153,0.4)); }
#rsw .prev-label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); padding: 6px 10px; font-size: 0.7rem; font-weight: 600; }

/* FEATURES */
#rsw .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
#rsw .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; transition: all 0.3s; }
.feature-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
#rsw .feat-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(124,58,237,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
#rsw .feat-icon i { font-size: 1.3rem; background: linear-gradient(135deg, var(--grad1), var(--grad2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#rsw .feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
#rsw .feature-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* SERVICE PORTFOLIO */
#rsw .wp-portfolio { background: var(--bg2); }
#rsw .wp-portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
#rsw .wp-port-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all 0.3s; }
.wp-port-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(124,58,237,0.4); }
#rsw .wp-port-img { overflow: hidden; }
#rsw .wp-port-img img { width: 100%; height: 200px; object-fit: cover; object-position: top; transition: transform 0.4s; display: block; }
.wp-port-card:hover .wp-port-img img { transform: scale(1.06); }
#rsw .wp-port-info { padding: 1rem 1.2rem; }
#rsw .wp-port-info h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
#rsw .wp-port-info span { font-size: 0.75rem; color: var(--grad2); font-weight: 600; }

/* OTHER SERVICES */
#rsw .other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
#rsw .other-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: all 0.3s; }
.other-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
#rsw .other-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
#rsw .other-icon.eb { background: rgba(229,32,37,0.15);  color: #e52025; }
#rsw .other-icon.sh { background: rgba(149,191,71,0.15);  color: #95bf47; }
#rsw .other-icon.am { background: rgba(255,153,0,0.15);   color: #ff9900; }
#rsw .other-icon.wf { background: rgba(124,58,237,0.15);  color: #a78bfa; }
#rsw .other-icon.wp { background: rgba(33,117,155,0.15);  color: #21759b; }
#rsw .other-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
#rsw .other-card p  { color: var(--muted); font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.6rem; }
#rsw .other-link { font-size: 0.8rem; color: var(--grad2); font-weight: 600; display: flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.other-card:hover .other-link { gap: 8px; }

/* PRICING */
#rsw .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
#rsw .pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem 2rem; position: relative; transition: all 0.3s; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
#rsw .pricing-card.featured { border-color: rgba(124,58,237,0.5); background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.05)); box-shadow: 0 0 40px rgba(124,58,237,0.2); }
#rsw .plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--grad1), var(--grad2)); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 6px 20px; border-radius: 50px; white-space: nowrap; }
#rsw .plan-name { font-size: 1rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
#rsw .plan-price { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.5rem; background: linear-gradient(135deg, var(--grad2), var(--grad1)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#rsw .plan-price span { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
#rsw .plan-price small { font-size: 1rem; -webkit-text-fill-color: var(--muted); color: var(--muted); }
#rsw .plan-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
#rsw .plan-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; flex: 1; }
#rsw .plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
#rsw .plan-features li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
#rsw .plan-btn { width: 100%; justify-content: center; text-align: center; margin-top: auto; }

/* COMPATIBILITY SLIDER */
#rsw .compat-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; overflow: hidden; }
#rsw .compat-label { text-align: center; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1.8rem; }
#rsw .compat-track-wrap { overflow: hidden; }
#rsw .compat-track { display: flex; align-items: center; gap: 60px; animation: logoScroll 20s linear infinite; width: max-content; }
#rsw .compat-track img { height: 50px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; transition: all 0.3s; padding: 4px; }
.compat-track img:hover { opacity: 1; }
.compat-track-wrap:hover .compat-track { animation-play-state: paused; }

/* HERO COMPAT SLIDER */
#rsw .compat-hero-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.8rem; }
#rsw .compat-hero-track-wrap { overflow: hidden; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
#rsw .compat-hero-track { display: flex; align-items: center; gap: 40px; animation: logoScrollReverse 15s linear infinite; width: max-content; }
#rsw .compat-hero-track img { height: 36px; width: auto; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.75; transition: opacity 0.3s; }
.compat-hero-track img:hover { opacity: 1; }
.compat-hero-track-wrap:hover .compat-hero-track { animation-play-state: paused; }

/* SCROLL REVEAL */
#rsw .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
#rsw .reveal.visible { opacity: 1; transform: translateY(0); }

/* EBAY OVERRIDES */
#rsw .ebay-badge { background: rgba(229,32,37,0.1); border-color: rgba(229,32,37,0.3); color: #ff6b6b; }
#rsw .ebay-icon { color: #e52025 !important; -webkit-text-fill-color: #e52025 !important; }
.ebay-card::before { background: linear-gradient(135deg, #e52025, #f59e0b, #06b6d4); }
#rsw .ebay-official-logo { font-size: 4rem; font-weight: 900; letter-spacing: -3px; line-height: 1; display: inline-block; }
#rsw .ebay-logo-badge { height: 18px; width: auto; vertical-align: middle; filter: brightness(0) invert(1); opacity: 0.9; }

/* SHOPIFY OVERRIDES */
#rsw .shopify-icon { color: #95bf47 !important; -webkit-text-fill-color: #95bf47 !important; }
.shopify-card::before { background: linear-gradient(135deg, #95bf47, #5e8e3e, #06b6d4); }

/* ACCESSIBILITY */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--grad2); outline-offset: 3px; border-radius: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  #rsw .features-grid { grid-template-columns: repeat(3, 1fr); }
  #rsw .wp-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  #rsw .other-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 1024px) {
  /* Home hero */
  #rsw .hero { flex-direction: column; text-align: center; padding: 60px 2rem; gap: 3rem; }
  #rsw .hero-content { max-width: 100%; }
  #rsw .hero-content > p { margin: 0 auto 2rem; }
  #rsw .hero-btns { justify-content: center; }
  #rsw .hero-visual { padding-right: 60px; }
  #rsw .glow-card { width: 320px; height: 320px; }
  #rsw .avatar-ring { width: 260px; height: 260px; }
  /* Home sections */
  #rsw .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  #rsw .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Service pages */
  #rsw .wp-hero-inner { flex-direction: column; text-align: center; padding: 60px 2rem; }
  #rsw .wp-hero-visual { width: 100%; max-width: 480px; }
  #rsw .hero-checklist { justify-items: start; }
  #rsw .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  #rsw .features-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 768px) {
  #rsw .container { padding: 0 1.5rem; }
  #rsw .section { padding: 60px 0; }
  /* Home */
  #rsw .hero { padding: 40px 1.5rem; }
  #rsw .hero-content h1 { font-size: 2.2rem; }
  #rsw .hero-visual { padding-right: 30px; }
  #rsw .glow-card { width: 260px; height: 260px; }
  #rsw .avatar-ring { width: 210px; height: 210px; }
  #rsw .t1, #rsw .t2, #rsw .t3, #rsw .t4 { display: none; }
  #rsw .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  #rsw .skills-grid { grid-template-columns: repeat(3, 1fr); }
  #rsw .services-grid { grid-template-columns: repeat(2, 1fr); }
  #rsw .portfolio-grid { grid-template-columns: 1fr; }
  #rsw .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  #rsw .form-row { flex-direction: column; gap: 12px; }
  /* Service pages */
  #rsw .wp-portfolio-grid { grid-template-columns: 1fr; }
  #rsw .other-grid { grid-template-columns: 1fr; }
  #rsw .pricing-grid { grid-template-columns: 1fr; }
  #rsw .hero-checklist { grid-template-columns: 1fr; }
  #rsw .stats-card-grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 480px) {
  #rsw .services-grid { grid-template-columns: 1fr; }
  #rsw .skills-grid { grid-template-columns: repeat(2, 1fr); }
  #rsw .features-grid { grid-template-columns: 1fr; }
  #rsw .hero-btns { flex-direction: column; align-items: center; }
  #rsw .hero-btns a { width: 100%; text-align: center; justify-content: center; }
  #rsw .wp-trust-badges { grid-template-columns: repeat(2, 1fr); }
}



/* PROCESS FLOWCHART - PREMIUM TIMELINE */
#rsw .process-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.process-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#rsw .process-box h3 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 1.4rem; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
#rsw .process-box h3 i { color: var(--grad2); }

#rsw .process-timeline { position: relative; display: flex; flex-direction: column; gap: 0; }

/* Vertical glowing line - stops before last step */
#rsw .process-line {
  position: absolute;
  left: 19px; top: 20px;
  height: calc(100% - 60px);
  width: 2px;
  background: linear-gradient(180deg, var(--grad1), var(--grad2), var(--grad4));
  opacity: 0.4;
  border-radius: 2px;
}

#rsw .pt-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-bottom: 0.6rem;
}

/* Icon + dot column */
#rsw .pt-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}
#rsw .pt-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.2));
  border: 1px solid rgba(124,58,237,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--grad2);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.pt-step:hover .pt-icon {
  background: linear-gradient(135deg, var(--grad1), var(--grad2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
  transform: scale(1.1);
}
#rsw .pt-dot { display: none; }
#rsw .pt-icon.launch { background: linear-gradient(135deg, var(--grad1), var(--grad2)); color: #fff; border-color: transparent; box-shadow: 0 0 20px rgba(124,58,237,0.5); }

/* Card */
#rsw .pt-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(6,182,212,0.05));
  opacity: 0;
  transition: opacity 0.3s;
}
.pt-step:hover .pt-card {
  border-color: rgba(124,58,237,0.35);
  transform: translateX(4px);
}
.pt-step:hover .pt-card::before { opacity: 1; }
#rsw .pt-card.final { border-color: rgba(6,182,212,0.3); }
#rsw .pt-num {
  font-size: 0.65rem; font-weight: 800;
  color: var(--grad2); letter-spacing: 1px;
  display: block; margin-bottom: 2px;
  opacity: 0.7;
}
#rsw .pt-card strong { display: block; font-size: 0.82rem; margin-bottom: 2px; }
#rsw .pt-card p { color: var(--muted); font-size: 0.72rem; line-height: 1.5; margin: 0; }

/* ============================================
   REVIEWS SLIDER - PREMIUM DESIGN
   ============================================ */
#rsw .reviews { background: var(--bg); }

#rsw .rvSwiper { padding-bottom: 56px !important; padding-top: 8px !important; }
#rsw .rvSwiper .swiper-wrapper { align-items: stretch; }
#rsw .rvSwiper .swiper-slide { height: auto; }

/* Card */
#rsw .rv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.rv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--grad1), var(--grad2), var(--grad4));
  opacity: 0;
  transition: opacity 0.3s;
}
.rv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(124,58,237,0.3);
}
.rv-card:hover::before { opacity: 1; }

/* Top row: avatar + name + platform */
#rsw .rv-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
#rsw .rv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad1), var(--grad2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(124,58,237,0.4);
}
#rsw .rv-meta { flex: 1; min-width: 0; }
#rsw .rv-name { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#rsw .rv-role { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 1px; }

/* Platform logo */
#rsw .rv-platform { flex-shrink: 0; }
#rsw .rv-platform svg { height: 18px; width: auto; display: block; }

/* Stars */
#rsw .rv-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--grad3);
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}
.rv-stars::after {
  content: '5.0';
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grad3);
  letter-spacing: 0;
}

/* Review text */
#rsw .rv-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  flex: 1;
}

/* Swiper controls */
#rsw .rv-prev, #rsw .rv-next { color: var(--grad2) !important; }
.rv-prev::after, .rv-next::after { font-size: 1.1rem !important; }
#rsw .rv-pagination .swiper-pagination-bullet { background: var(--muted) !important; opacity: 1; }
#rsw .rv-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--grad1), var(--grad2)) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Platform logo image in review card */
#rsw .rv-platform-img { height: 28px; width: auto; border-radius: 6px; display: block; }
