:root{
  --rg-primary:#4b83ff;--rg-accent:#3B82F6;--rg-bg:#F0F6FF;--rg-dark:#0F2044;
  --rg-text:#0F2044;--rg-muted:#64748B;--rg-border:#E5E7EB;--rg-teal:#0F766E;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Inter',sans-serif;color:var(--rg-text);line-height:1.5;background:#fff}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
.rg-container{max-width:1200px;margin:0 auto;padding:0 24px}
.rg-blue{color:var(--rg-blue,#4b83ff);color:#4b83ff}
.rg-muted{color:#475569}
.rg-eyebrow{font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--rg-primary);margin:0 0 16px;text-align:center}

/* Buttons */
.rg-btn{display:inline-flex;align-items:center;gap:8px;padding:12px 22px;border-radius:999px;font-weight:600;font-size:14px;border:1px solid transparent;cursor:pointer;transition:all .25s ease;text-decoration:none}
.rg-btn-primary{background:var(--rg-primary);color:#fff}
.rg-btn-primary:hover{background:#1E40AF;transform:scale(1.02);box-shadow:0 12px 24px -8px rgba(29,78,216,.45)}
.rg-btn-dark{background:var(--rg-dark);color:#fff}
.rg-btn-dark:hover{transform:scale(1.02);box-shadow:0 12px 24px -8px rgba(15,32,68,.45)}
.rg-btn-outline{background:transparent;color:var(--rg-primary);border-color:var(--rg-primary)}
.rg-btn-outline:hover{background:var(--rg-primary);color:#fff}
.rg-btn-white{background:#fff;color:var(--rg-primary)}
.rg-btn-lg{padding:16px 32px;font-size:15px}
.rg-btn-sm{padding:9px 16px;font-size:13px}
.rg-pulse{animation:rgPulse 2.4s ease-in-out infinite}
@keyframes rgPulse{0%,100%{box-shadow:0 0 0 0 rgba(29,78,216,.5)}50%{box-shadow:0 0 0 14px rgba(29,78,216,0)}}

/* Header */
.rg-header{position:sticky;top:0;left:0;right:0;height:70px;background:#fff;border-bottom:1px solid var(--rg-border);box-shadow:0 1px 3px rgba(0,0,0,.04);z-index:100;animation:rgFade .3s ease}
@keyframes rgFade{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.rg-header-inner{display:flex;align-items:center;justify-content:space-between;height:100%}
.rg-logo{display:flex;align-items:center;gap:10px}
.rg-logo-icon{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,#14B8A6,#0F766E);color:#fff;display:grid;place-items:center;font-weight:800;font-family:'Inter',sans-serif}
.rg-logo-text strong{display:block;font-size:15px;font-weight:800;line-height:1.1}
.rg-logo-text small{display:block;font-size:9px;font-weight:600;color:#64748B;letter-spacing:.14em}
.rg-logo-light .rg-logo-text strong,.rg-logo-light .rg-logo-text small{color:#fff}
.rg-logo-light .rg-logo-text small{color:#94A3B8}

.rg-nav-list{display:flex;list-style:none;gap:28px;margin:0;padding:0;align-items:center}
.rg-nav-list>li{position:relative}
.rg-nav-list>li>a{font-size:14px;font-weight:500;color:#1F2937;padding:8px 0;position:relative;display:inline-flex;align-items:center;gap:6px}
.rg-nav-list>li>a i{font-size:10px}
.rg-nav-list>li>a::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--rg-primary);transition:width .25s ease}
.rg-nav-list>li>a:hover::after{width:100%}

.rg-mega{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(10px);background:#fff;width:460px;border-radius:14px;box-shadow:0 22px 60px -20px rgba(15,32,68,.25);padding:14px;opacity:0;visibility:hidden;transition:opacity .2s ease,transform .2s ease;z-index:120}
.has-dropdown:hover .rg-mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.rg-mega-item{display:flex;gap:14px;padding:12px;border-radius:10px;transition:background .2s}
.rg-mega-item:hover{background:#F1F5F9}
.rg-mega-ico{width:42px;height:42px;border-radius:8px;display:grid;place-items:center;flex-shrink:0}
.rg-mega-item h5{margin:0 0 4px;font-size:14px;font-weight:700;display:flex;align-items:center;gap:8px}
.rg-mega-item p{margin:0;font-size:12px;color:#64748B;line-height:1.4}
.rg-badge{font-size:10px;font-weight:700;padding:2px 8px;border-radius:999px}
.rg-badge-green{background:#10B981;color:#fff}

.rg-header-cta{display:flex;align-items:center;gap:10px}
.rg-burger{display:none;background:none;border:none;font-size:22px;cursor:pointer}

/* Mobile menu */
.rg-mobile-menu{position:fixed;inset:0;background:#fff;z-index:200;padding:24px;transform:translateX(100%);transition:transform .3s ease;display:flex;flex-direction:column;gap:20px}
.rg-mobile-menu.open{transform:translateX(0)}
.rg-mobile-head{display:flex;justify-content:space-between;align-items:center}
.rg-close{background:none;border:none;font-size:24px;cursor:pointer}
.rg-mobile-menu ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.rg-mobile-menu ul li>a{display:block;padding:14px 8px;font-size:16px;font-weight:600;border-bottom:1px solid #F1F5F9}
.rg-mobile-cta{justify-content:center;margin-top:auto}

/* Mobile mega submenu */
.rg-mega-mobile{display:none;flex-direction:column;gap:8px;padding:8px 0 8px 8px;margin:0 0 4px;border-left:2px solid #E2E8F0}
.has-dropdown-mobile.open .rg-mega-mobile{display:flex}
.has-dropdown-mobile>a{display:flex;align-items:center;justify-content:space-between}
.has-dropdown-mobile>a>i{font-size:12px;transition:transform .25s ease}
.has-dropdown-mobile.open>a>i{transform:rotate(180deg)}
.rg-mega-mobile .rg-mega-item{display:flex;gap:12px;padding:10px;border-radius:10px;background:#F8FAFC;margin-bottom:4px}
.rg-mega-mobile .rg-mega-item:hover{background:#F1F5F9}
.rg-mega-mobile .rg-mega-ico{width:38px;height:38px;border-radius:8px;display:grid;place-items:center;flex-shrink:0;font-size:14px}
.rg-mega-mobile .rg-mega-item h5{margin:0 0 2px;font-size:13px;font-weight:700}
.rg-mega-mobile .rg-mega-item p{margin:0;font-size:12px;color:#64748B;line-height:1.4}

@media (max-width:1024px){
  .rg-nav,.rg-header-cta .rg-btn{display:none}
  .rg-burger{display:block}
  .rg-header{height:60px}
}

/* Hero */
.rg-hero{background:linear-gradient(180deg,#EFF6FF 0%,#DBEAFE 100%);padding:80px 0 90px;text-align:center;position:relative;overflow:hidden}
.rg-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 30%,rgba(59,130,246,.12),transparent 50%),radial-gradient(circle at 80% 70%,rgba(29,78,216,.10),transparent 50%);animation:rgBgShift 12s ease-in-out infinite alternate}
@keyframes rgBgShift{to{background-position:30% 70%,70% 30%}}
.rg-hero>.rg-container{position:relative}
.rg-hero-title{font-size:clamp(28px,3.8vw,42px);line-height:1.12;font-weight:800;margin:0 0 14px;letter-spacing:-.02em;animation:rgRise .6s .25s both}
.rg-hero-sub{font-size:clamp(15px,1.4vw,17px);color:#475569;max-width:620px;margin:0 auto 24px;line-height:1.55;animation:rgRise .6s .35s both}
.rg-hero-title .rg-blue{color:var(--rg-accent)}
@keyframes rgRise{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
.rg-check-row{list-style:none;padding:0;margin:0 0 30px;display:flex;flex-wrap:wrap;justify-content:center;gap:18px 28px;font-size:14px;color:#1F2937;animation:rgRise .6s .55s both}
.rg-check-row i{color:#10B981;margin-right:6px}
.rg-social-proof{margin-top:30px;display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}
.rg-avatars{display:flex}
.rg-avatars span{width:36px;height:36px;border-radius:50%;border:2px solid #fff;display:grid;place-items:center;font-size:12px;font-weight:700;color:#fff;margin-left:-8px}
.rg-avatars span:first-child{margin-left:0}
.rg-social-proof em{color:#475569;font-size:14px}

/* Sections */
.rg-section{padding:90px 0}
.rg-section-title{font-size:clamp(28px,3.5vw,40px);line-height:1.15;font-weight:800;text-align:center;margin:0 0 12px;letter-spacing:-.01em}
.rg-section-sub{text-align:center;color:#64748B;font-size:16px;max-width:680px;margin:0 auto 50px}

/* Trusted / Marquee */
.rg-trusted{padding:70px 0;background:#fff}
.rg-trusted-head{text-align:center;margin-bottom:40px}
.rg-trusted h3{font-size:20px;color:#475569;font-weight:600;margin:0 0 6px}
.rg-trusted p{color:#94A3B8;margin:0}
.rg-marquee{overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent)}
.rg-marquee-track{display:flex;gap:80px;animation:rgScroll 28s linear infinite;width:max-content}
.rg-marquee-track span{font-size:24px;font-weight:700;color:#94A3B8;filter:grayscale(1);white-space:nowrap}
@keyframes rgScroll{to{transform:translateX(-50%)}}

/* Before/After */
.rg-ba-section{background:linear-gradient(180deg,#FFFFFF 0%,#F8FAFC 100%)}
.rg-ba-grid{display:grid;grid-template-columns:1fr auto 1fr;gap:40px;align-items:start;max-width:1100px;margin:0 auto}
.rg-ba-col h4{display:flex;align-items:center;gap:10px;font-size:20px;font-weight:700;margin:0 0 8px}
.rg-ba-before h4{color:#DC2626}
.rg-ba-after h4{color:#059669}
.rg-ba-badge{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:999px;font-size:13px;color:#fff}
.rg-ba-badge-x{background:#DC2626;box-shadow:0 6px 14px -4px rgba(220,38,38,.45)}
.rg-ba-badge-check{background:#10B981;box-shadow:0 6px 14px -4px rgba(16,185,129,.45)}
.rg-ba-sub{color:#64748B;margin:0 0 22px;font-size:14px}
.rg-ba-card{display:flex;gap:14px;padding:20px;border-radius:16px;background:#fff;border:1px solid var(--rg-border);margin-bottom:16px;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;position:relative;overflow:hidden}
.rg-ba-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;border-radius:4px 0 0 4px;transition:width .3s ease}
.rg-ba-before .rg-ba-card::before{background:linear-gradient(180deg,#F87171,#DC2626)}
.rg-ba-after .rg-ba-card::before{background:linear-gradient(180deg,#34D399,#059669)}
.rg-ba-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px -18px rgba(15,23,42,.18)}
.rg-ba-card:hover::before{width:6px}
.rg-ba-before .rg-ba-card{border-color:#FECACA;background:linear-gradient(180deg,#FEF2F2 0%,#FFF5F5 100%)}
.rg-ba-after .rg-ba-card{border-color:#BBF7D0;background:linear-gradient(180deg,#F0FDF4 0%,#F7FEF9 100%)}
.rg-ba-ico{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:12px;font-size:16px;background:#fff}
.rg-ba-before .rg-ba-ico{color:#DC2626;box-shadow:inset 0 0 0 1px #FECACA}
.rg-ba-after .rg-ba-ico{color:#059669;box-shadow:inset 0 0 0 1px #BBF7D0}
.rg-ba-card h5{margin:0 0 4px;font-size:15px;font-weight:700;color:#0F172A}
.rg-ba-card p{margin:0;font-size:13px;color:#475569;line-height:1.5}
.rg-ba-arrow{font-size:20px;color:#fff;margin-top:90px;width:48px;height:48px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--rg-accent),var(--rg-primary));box-shadow:0 10px 24px -8px rgba(37,99,235,.5);animation:rgPulseArrow 2s ease-in-out infinite}
@keyframes rgPulseArrow{0%,100%{transform:translateX(0)}50%{transform:translateX(6px)}}

/* Stats */
.rg-stats{padding:80px 0;background:#DBEAFE;text-align:center}
.rg-stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin:40px 0}
.rg-stat-card{background:#fff;border-radius:18px;padding:36px 24px;box-shadow:0 10px 30px -15px rgba(15,32,68,.15)}
.rg-stat-card i{font-size:28px;color:var(--rg-primary);margin-bottom:12px}
.rg-stat-card h3{font-size:48px;font-weight:800;margin:0;color:var(--rg-dark);display:inline-block}
.rg-stat-card span{font-size:28px;font-weight:800;color:var(--rg-primary)}
.rg-stat-card p{margin:8px 0 0;color:#64748B;font-size:14px}

/* Features */
.rg-feature{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin:60px 0}
.rg-feature-text h3{font-size:clamp(24px,2.6vw,32px);font-weight:800;margin:0 0 16px;line-height:1.2}
.rg-feature-text p{color:#475569;margin:0 0 20px;font-size:15px}
.rg-feature-img{border-radius:24px;padding:32px;display:grid;place-items:center;min-height:300px}
.rg-feature-img img{border-radius:12px;box-shadow:0 20px 40px -20px rgba(0,0,0,.2)}

/* ATS Upload Section */
.rg-ats{background:linear-gradient(180deg,#EFF6FF,#fff);padding:90px 0}
.rg-ats-card{max-width:880px;margin:0 auto;background:#fff;border:1px solid var(--rg-border);border-radius:24px;padding:42px;box-shadow:0 30px 60px -30px rgba(15,32,68,.18);text-align:center}
.rg-ats-card h2{font-size:clamp(26px,3vw,36px);font-weight:800;margin:0 0 10px}
.rg-ats-card p.rg-ats-sub{color:#475569;margin:0 auto 28px;max-width:560px}
.rg-ats-form{display:flex;flex-direction:column;gap:14px;align-items:stretch;max-width:560px;margin:0 auto}
.rg-ats-drop{border:2px dashed #BFDBFE;border-radius:16px;padding:38px 20px;background:#F8FBFF;cursor:pointer;transition:all .25s}
.rg-ats-drop:hover{background:#EFF6FF;border-color:var(--rg-primary)}
.rg-ats-drop i{font-size:36px;color:var(--rg-primary);display:block;margin-bottom:10px}
.rg-ats-drop strong{display:block;font-size:16px;margin-bottom:4px}
.rg-ats-drop small{color:#64748B;font-size:13px}
.rg-ats-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.rg-ats-row input,.rg-ats-row textarea,.rg-ats-form textarea{width:100%;padding:12px 14px;border:1px solid var(--rg-border);border-radius:10px;font-family:inherit;font-size:14px;outline:none;transition:border .2s}
.rg-ats-row input:focus,.rg-ats-form textarea:focus{border-color:var(--rg-primary)}
.rg-ats-form textarea{min-height:110px;resize:vertical}
.rg-ats-card .rg-btn{align-self:center;margin-top:6px}
@media (max-width:600px){.rg-ats-row{grid-template-columns:1fr}.rg-ats-card{padding:28px 20px}}

/* Dark CTA */
.rg-cta-dark{background:#0F2044;color:#fff;padding:90px 0;text-align:center;position:relative;overflow:hidden}
.rg-cta-dark::before{content:"";position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px);background-size:24px 24px;opacity:.5}
.rg-cta-dark>.rg-container{position:relative}
.rg-cta-dark h2{font-size:clamp(28px,3.6vw,44px);font-weight:800;margin:0 0 16px;line-height:1.15}
.rg-cta-dark p{color:#CBD5E1;max-width:560px;margin:0 auto 28px}

/* Bento */
.rg-bento{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:180px;gap:18px}
.rg-bento-card{background:#F8FAFC;border-radius:18px;padding:24px;display:flex;flex-direction:column;justify-content:flex-end;transition:transform .25s,box-shadow .25s;position:relative;overflow:hidden}
.rg-bento-card:hover{transform:scale(1.02);box-shadow:0 18px 40px -18px rgba(29,78,216,.3)}
.rg-bento-card h4{margin:0 0 4px;font-size:17px;font-weight:700}
.rg-bento-card p{margin:0;font-size:13px;color:#475569}
.rg-bento-card .rg-badge{position:absolute;top:16px;right:16px}
.rg-bento-lg{grid-column:span 2;grid-row:span 2;background:linear-gradient(135deg,#DBEAFE,#BFDBFE)}

/* Who */
.rg-who-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.rg-who-card{background:#fff;border:1px solid var(--rg-border);border-radius:16px;padding:28px;text-align:center;transition:transform .25s,box-shadow .25s}
.rg-who-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px -14px rgba(15,32,68,.15)}
.rg-who-card i{font-size:28px;color:var(--rg-primary);margin-bottom:10px}
.rg-who-card h4{margin:0;font-size:15px}

/* Testimonials */
.rg-testimonials{background:#EFF6FF;padding:90px 0}
.rg-carousel{display:flex;gap:24px;overflow:hidden;scroll-snap-type:x mandatory;transition:transform .6s ease}
.rg-tcard{flex:0 0 calc(33.333% - 16px);background:#fff;border-radius:18px;padding:28px;box-shadow:0 12px 30px -16px rgba(15,32,68,.15)}
.rg-stars{color:#F59E0B;margin-bottom:14px;letter-spacing:2px}
.rg-tcard p{margin:0 0 20px;color:#1F2937;font-size:15px;line-height:1.6}
.rg-tmeta{display:flex;align-items:center;gap:12px}
.rg-avatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:700;font-size:13px}
.rg-tmeta strong{display:block;font-size:14px}
.rg-tmeta small{color:#64748B;font-size:12px}
.rg-dots{display:flex;justify-content:center;gap:8px;margin-top:24px}
.rg-dots button{width:10px;height:10px;border-radius:50%;border:none;background:#CBD5E1;cursor:pointer}
.rg-dots button.active{background:var(--rg-primary);width:28px;border-radius:6px}

/* Pricing */
.rg-tabs{display:inline-flex;background:#F1F5F9;border-radius:999px;padding:4px;margin:0 auto 36px;gap:4px;justify-content:center}
.rg-tabs{display:flex;width:fit-content;margin-left:auto;margin-right:auto}
.rg-tabs button{background:transparent;border:none;padding:10px 22px;border-radius:999px;font-weight:600;font-size:13px;cursor:pointer;color:#475569;display:inline-flex;align-items:center;gap:6px}
.rg-tabs button.active{background:var(--rg-primary);color:#fff}
.rg-tabs button span{font-size:11px;background:#10B981;color:#fff;padding:2px 8px;border-radius:999px}
.rg-price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.rg-price-card{background:#fff;border:1px solid var(--rg-border);border-radius:20px;padding:32px;position:relative;display:flex;flex-direction:column;gap:14px}
.rg-price-card h4{margin:0;font-size:18px;font-weight:700}
.rg-price strong{font-size:38px;font-weight:800;letter-spacing:-.02em}
.rg-price span{color:#64748B;margin-left:4px}
.rg-price-card ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px;font-size:14px;flex:1}
.rg-price-card ul li::before{content:"✓";color:#10B981;margin-right:8px;font-weight:700}
.rg-price-pop{background:var(--rg-primary);color:#fff;border-color:var(--rg-primary)}
.rg-price-pop .rg-price span{color:#CBD5E1}
.rg-price-pop ul li::before{color:#BFDBFE}
.rg-pop{position:absolute;top:-12px;right:24px;background:#10B981;color:#fff;font-size:11px;font-weight:700;padding:5px 12px;border-radius:999px}
.rg-price-dark{background:var(--rg-dark);color:#fff;border-color:var(--rg-dark)}
.rg-price-dark .rg-price span{color:#94A3B8}

/* FAQ */
.rg-faq{background:#EFF6FF;padding:90px 0}
.rg-acc{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.rg-acc-item{background:#fff;border:1px solid var(--rg-border);border-radius:14px;overflow:hidden}
.rg-acc-q{width:100%;background:none;border:none;text-align:left;padding:20px 24px;display:flex;justify-content:space-between;align-items:center;font-size:15px;font-weight:600;cursor:pointer;color:var(--rg-dark)}
.rg-acc-q i{transition:transform .25s}
.rg-acc-item.open .rg-acc-q i{transform:rotate(45deg);color:var(--rg-primary)}
.rg-acc-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.rg-acc-a p{padding:0 24px 20px;margin:0;color:#475569;font-size:14px;line-height:1.6}

/* Blog */
.rg-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.rg-blog-card{background:#fff;border:1px solid var(--rg-border);border-radius:16px;overflow:hidden;transition:transform .25s,box-shadow .25s;display:flex;flex-direction:column}
.rg-blog-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px -20px rgba(15,32,68,.18)}
.rg-blog-thumb{height:180px}
.rg-blog-card .rg-blog-cat{display:inline-block;margin:18px 22px 0;font-size:11px;font-weight:700;color:var(--rg-primary);letter-spacing:.1em;text-transform:uppercase}
.rg-blog-card h4{margin:8px 22px;font-size:17px;line-height:1.3}
.rg-blog-card p{margin:0 22px 14px;color:#64748B;font-size:14px;flex:1}
.rg-blog-card a{margin:0 22px 22px;color:var(--rg-primary);font-weight:600;font-size:13px;display:inline-flex;align-items:center;gap:6px}

/* Footer */
.rg-footer{background:#0F2044;color:#CBD5E1;padding:70px 0 0}
.rg-footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:36px}
.rg-footer-brand p{font-size:14px;line-height:1.6;margin:18px 0;color:#94A3B8}
.rg-subscribe{position:relative;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:6px 6px 6px 40px;display:flex;align-items:center;margin-bottom:18px}
.rg-subscribe>i{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:#94A3B8}
.rg-subscribe input{flex:1;background:transparent;border:none;color:#fff;font-size:14px;outline:none;padding:6px 4px}
.rg-subscribe input::placeholder{color:#94A3B8}
.rg-subscribe button{background:linear-gradient(135deg,#14B8A6,#0F766E);color:#fff;border:none;padding:9px 18px;border-radius:999px;font-weight:600;font-size:13px;cursor:pointer;display:inline-flex;gap:6px;align-items:center}
.rg-socials{display:flex;gap:10px}
.rg-socials a{width:34px;height:34px;border:1px solid rgba(255,255,255,.2);border-radius:50%;display:grid;place-items:center;color:#CBD5E1;transition:all .2s}
.rg-socials a:hover{background:#fff;color:var(--rg-dark)}
.rg-footer-col h4{color:#fff;font-size:15px;margin:0 0 18px;font-weight:700}
.rg-footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;font-size:14px}
.rg-footer-col ul a{color:#CBD5E1;transition:color .2s}
.rg-footer-col ul a:hover{color:#fff}
.rg-contact-list li{display:flex;align-items:flex-start;gap:10px;color:#CBD5E1;font-size:14px}
.rg-contact-list li i{color:#94A3B8;margin-top:3px}
.rg-footer-col .rg-btn{margin-top:18px}
.rg-footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:60px;padding:20px 0}
.rg-footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;font-size:13px;color:#94A3B8;flex-wrap:wrap;gap:8px}
.rg-footer-bottom a:hover{color:#fff}

/* Reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}

/* Responsive */
@media (max-width:1024px){
  .rg-feature{grid-template-columns:1fr;gap:30px}
  .rg-feature-right{direction:ltr}
  .rg-bento{grid-template-columns:repeat(2,1fr)}
  .rg-bento-lg{grid-column:span 2;grid-row:span 1}
  .rg-who-grid{grid-template-columns:repeat(2,1fr)}
  .rg-price-grid,.rg-blog-grid,.rg-stats-grid{grid-template-columns:1fr}
  .rg-footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .rg-ba-grid{grid-template-columns:1fr}
  .rg-ba-arrow{transform:rotate(90deg);margin:8px auto;text-align:center}
  .rg-tcard{flex:0 0 100%}
}
@media (max-width:600px){
  .rg-section{padding:60px 0}
  .rg-footer-grid{grid-template-columns:1fr}
  .rg-bento{grid-template-columns:1fr}
  .rg-bento-lg{grid-column:span 1}
  .rg-who-grid{grid-template-columns:1fr}
  .rg-check-row{gap:10px 16px;font-size:13px}
}


/* ============================================================
   RESUMEGROW FIXES — appended
   ============================================================ */

/* ---- FIX 1: Features section text-side (Careerflow-style) ---- */
.feature-text-side,
.feature-content,
.features-section .text-col,
.rg-feature .rg-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 40px 48px 40px 0;
}

.feature-label,
.rg-feature .rg-feature-text .rg-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #374151;
}

.feature-heading,
.rg-feature .rg-feature-text h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
  margin: 0;
}

.feature-heading .highlight,
.rg-feature .rg-feature-text h3 .rg-blue {
  color: #3B82F6;
}

.feature-body,
.rg-feature .rg-feature-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #6B7280;
  margin: 0;
  max-width: 480px;
}

.feature-cta-btn,
.rg-feature .rg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid #4b83ff;
  border-radius: 8px;
  color: #4b83ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  width: fit-content;
  transition: all 0.2s ease;
}

.feature-cta-btn:hover,
.rg-feature .rg-btn-outline:hover {
  background: #4b83ff;
  color: #fff;
}

.feature-row,
.rg-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid #F1F5F9;
}

.feature-row:last-child,
.rg-feature:last-child {
  border-bottom: none;
}

.feature-row.reverse .feature-text-side,
.rg-feature.rg-feature-right .rg-feature-text {
  padding: 40px 0 40px 48px;
  order: 2;
}

.rg-feature.rg-feature-right .rg-feature-img {
  order: 1;
}

.feature-image-side,
.rg-feature .rg-feature-img {
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-side img,
.rg-feature .rg-feature-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ---- FIX 2: Features mobile (text on top, image below) ---- */
@media (max-width: 768px) {
  .feature-row,
  .feature-row.reverse,
  .rg-feature,
  .rg-feature.rg-feature-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 40px 20px !important;
  }

  .feature-text-side,
  .feature-row.reverse .feature-text-side,
  .rg-feature .rg-feature-text,
  .rg-feature.rg-feature-right .rg-feature-text {
    order: 1 !important;
    padding: 0 !important;
    text-align: center;
  }

  .feature-image-side,
  .feature-row.reverse .feature-image-side,
  .rg-feature .rg-feature-img,
  .rg-feature.rg-feature-right .rg-feature-img {
    order: 2 !important;
  }

  .feature-heading,
  .rg-feature .rg-feature-text h3 {
    font-size: 22px !important;
  }

  .feature-body,
  .rg-feature .rg-feature-text p {
    font-size: 15px !important;
    max-width: 100% !important;
    text-align: center;
  }

  .feature-label,
  .rg-feature .rg-feature-text .rg-eyebrow {
    justify-content: center;
  }

  .feature-cta-btn,
  .rg-feature .rg-btn-outline {
    margin: 0 auto;
  }

  .feature-image-side,
  .rg-feature .rg-feature-img {
    padding: 20px !important;
    width: 100% !important;
  }

  .features-section .section-heading,
  .rg-features .rg-section-title {
    font-size: 26px !important;
    padding: 0 16px;
  }
}

/* ---- FIX 3: Header mobile responsiveness ---- */
@media (max-width: 1024px) {
  .site-header .nav-links,
  .site-header nav ul,
  .header-nav,
  .rg-header .rg-nav {
    display: none !important;
  }

  .hamburger-btn,
  .rg-burger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }

  .site-header .header-inner,
  .site-header .header-container,
  .rg-header .rg-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    height: 64px !important;
    width: 100% !important;
  }

  .header-right .contact-btn,
  .rg-header-cta .rg-btn-dark {
    display: none !important;
  }
}

/* ---- Mobile menu overlay (uses theme classes .rg-mobile-menu / .open) ---- */
.rg-mobile-menu {
  position: fixed !important;
  top: 0;
  right: 0;
  width: 100vw; max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
  transform: translateX(100%) !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0.35s;
}

.rg-mobile-menu.open {
  transform: translateX(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0s;
}

.rg-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.rg-mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  text-decoration: none;
  border-bottom: 1px solid #F1F5F9;
}

.rg-mobile-menu ul li a:hover {
  color: #4b83ff;
}

.rg-mobile-menu .rg-mobile-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0F2044;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

/* ---- FIX 4: Custom logo styling ---- */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.custom-logo-link img.custom-logo {
  height: 48px !important;
  width: auto !important;
  max-height: 48px;
  display: block;
}

.rg-footer .custom-logo-link img.custom-logo {
  height: 44px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
}

/* ---- FIX 5: Footer mobile responsiveness ---- */
@media (max-width: 768px) {
  .footer-grid,
  .footer-columns,
  footer .grid,
  .rg-footer .rg-footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    padding: 40px 20px !important;
  }

  .footer-col-brand,
  .footer-about-col,
  .rg-footer-brand {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }

  .footer-logo,
  .footer-logo .custom-logo-link,
  .footer-logo-fallback,
  .rg-footer-brand .rg-logo,
  .rg-footer-brand .custom-logo-link {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-tagline,
  .footer-description,
  .rg-footer-brand p {
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 12px auto !important;
    max-width: 320px !important;
  }

  .footer-subscribe,
  .footer-email-row,
  .rg-subscribe {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .footer-subscribe input,
  .footer-email-input,
  .rg-subscribe input {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
  }

  .footer-subscribe button,
  .subscribe-btn,
  .rg-subscribe button {
    width: 100% !important;
    max-width: 320px !important;
  }

  .footer-social-icons,
  .footer-socials,
  .rg-socials {
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  .rg-footer-col {
    text-align: center;
  }

  .rg-footer-col h4 {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }

  .rg-footer-col li a {
    font-size: 13px !important;
    padding: 4px 0 !important;
  }

  .footer-bottom-bar,
  .footer-copyright-row,
  .rg-footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 20px !important;
    font-size: 12px !important;
  }
}

/* ---- FIX: hide mobile menu overlay on desktop/laptop ---- */
@media (min-width: 1025px) {
  .rg-mobile-menu,
  .rg-mobile-menu.open {
    display: none !important;
    transform: translateX(100%) !important;
  }
  .rg-burger { display: none !important; }
}

/* ---- FIX: constrain custom logo size in header & footer ---- */
.rg-header .custom-logo-link,
.rg-header-inner .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  max-height: 48px !important;
}
.rg-header .custom-logo-link img,
.rg-header .custom-logo-link img.custom-logo,
.rg-header-inner img.custom-logo {
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}

.rg-footer .custom-logo-link,
.rg-footer-brand .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  max-height: 56px !important;
}
.rg-footer .custom-logo-link img,
.rg-footer .custom-logo-link img.custom-logo,
.rg-footer-brand img.custom-logo {
  height: 48px !important;
  width: auto !important;
  max-height: 48px !important;
  max-width: 200px !important;
  object-fit: contain !important;
  display: block !important;
  filter: none !important; /* keep original colors on the colored logo */
}

/* ---- FIX: smaller mobile logo only (laptop/desktop unchanged) ---- */
@media (max-width: 768px) {
  .rg-header .custom-logo-link,
  .rg-header-inner .custom-logo-link {
    max-height: 36px !important;
  }
  .rg-header img.custom-logo,
  .rg-header .custom-logo-link img.custom-logo,
  .rg-header-inner img.custom-logo {
    height: 30px !important;
    max-height: 30px !important;
    max-width: 130px !important;
  }

  .rg-footer .custom-logo-link img.custom-logo,
  .rg-footer-brand img.custom-logo {
    height: 36px !important;
    max-height: 36px !important;
    max-width: 160px !important;
  }
}

/* ---- FIX: footer description + subscribe responsive ---- */
@media (max-width: 768px) {
  /* Description under logo */
  .rg-footer-brand p {
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 14px auto !important;
    max-width: 100% !important;
    padding: 0 8px !important;
  }

  /* Subscribe form: stack vertically, remove pill shape */
  .rg-subscribe {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;
    padding: 14px !important;
    margin: 0 auto 18px !important;
    max-width: 340px !important;
    position: static !important;
  }

  .rg-subscribe > i {
    position: static !important;
    transform: none !important;
    text-align: center !important;
    font-size: 18px !important;
    color: #94A3B8 !important;
    display: block !important;
    margin-bottom: 4px !important;
  }

  .rg-subscribe input {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: #fff !important;
  }

  .rg-subscribe input::placeholder {
    color: #94A3B8 !important;
  }

  .rg-subscribe button {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  /* Social icons centered */
  .rg-socials {
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
}

/* ---- FIX v7: Mobile menu full-screen + logo inside mobile menu ---- */
.rg-mobile-menu {
  width: 100vw !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  padding: 20px 24px 32px !important;
}
.rg-mobile-menu .rg-mobile-head {
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F5F9;
}
.rg-mobile-menu .custom-logo-link {
  display: inline-flex !important;
  align-items: center;
  max-height: 40px;
}
.rg-mobile-menu img.custom-logo,
.rg-mobile-menu .custom-logo-link img.custom-logo {
  height: 34px !important;
  max-height: 34px !important;
  width: auto !important;
  max-width: 160px !important;
}
.rg-mobile-menu ul {
  margin-top: 16px !important;
}

/* ============================================
   SERVICES BENTO GRID — Careerflow-inspired
   ============================================ */
.rg-services-bento { padding: 80px 0; background: #fff; }
.rg-bento-header { text-align: center; margin-bottom: 48px; }
.rg-bento-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #3B82F6; margin-bottom: 12px; }
.rg-bento-heading { font-size: 40px; font-weight: 800; color: #0F172A; line-height: 1.2; margin-bottom: 16px; }
.rg-bento-heading .rg-blue { color: #3B82F6; }
.rg-bento-sub { font-size: 16px; color: #64748B; max-width: 500px; margin: 0 auto; }

.rg-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 32px;
}

.rg-card-1 { grid-column: span 3; }
.rg-card-2 { grid-column: span 2; }
.rg-card-3 { grid-column: span 1; }
.rg-card-4 { grid-column: span 2; }
.rg-card-5 { grid-column: span 4; }
.rg-card-6 { grid-column: span 2; }
.rg-card-7 { grid-column: span 2; }
.rg-card-8 { grid-column: span 2; }

.rg-bento-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 28px 28px 0 28px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.rg-card-title { font-size: 18px; font-weight: 700; color: #0F172A; margin: 0 0 20px 0; line-height: 1.3; position: relative; z-index: 2; }
.rg-card-1 .rg-card-title { font-size: 22px; color: #0F172A; }

.rg-bento-card:hover { background: #DBEAFE; border-color: rgba(59,130,246,0.25); box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 8px 32px rgba(59,130,246,0.15), 0 0 0 4px rgba(59,130,246,0.06); }
.rg-card-1 { background: #F8FAFC; }

.rg-bento-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.12), transparent 80%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: 1;
}
.rg-bento-card:hover::after { opacity: 1; }

/* Card 1 — ATS */
.rg-card-1-illustration { flex: 1; display: flex; align-items: flex-end; padding-bottom: 0; }
.rg-resume-mock { display: flex; gap: 0; background: #fff; border-radius: 12px 12px 0 0; box-shadow: 0 -4px 30px rgba(0,0,0,0.2); overflow: hidden; width: 100%; min-height: 200px; }
.rg-resume-left { flex: 1; padding: 16px; border-right: 1px solid #F1F5F9; }
.rg-resume-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.rg-avatar-circle { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #6366F1, #8B5CF6); flex-shrink: 0; }
.rg-resume-meta { flex: 1; }
.rg-mline { height: 7px; background: #E2E8F0; border-radius: 4px; margin-bottom: 5px; }
.rg-ml-dark { background: #CBD5E1; }
.rg-resume-section-label { font-size: 11px; font-weight: 700; color: #374151; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.rg-check-icon { width: 14px; height: 14px; background: #10B981; color: #fff; border-radius: 50%; font-size: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.rg-keyword-chip { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 9px; font-weight: 600; background: #D1FAE5; color: #065F46; margin-bottom: 4px; }
.rg-chip-blue { background: #DBEAFE; color: #1E40AF; }
.rg-chip-sm { font-size: 8px; }
.rg-score-panel { width: 160px; flex-shrink: 0; padding: 16px; background: #FAFBFC; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.rg-score-label { font-size: 10px; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.5px; }
.rg-circle-score { position: relative; display: flex; align-items: center; justify-content: center; }
.rg-circle-num { position: absolute; font-size: 14px; font-weight: 800; color: #10B981; }
.rg-breakdown { width: 100%; }
.rg-breakdown-row { margin-bottom: 8px; }
.rg-breakdown-label { font-size: 9px; color: #94A3B8; display: block; margin-bottom: 3px; }
.rg-bbar { height: 4px; background: #E2E8F0; border-radius: 2px; overflow: hidden; }
.rg-bbar-fill { height: 100%; background: #10B981; border-radius: 2px; }

/* Card 2 */
.rg-card-2-illustration { flex: 1; display: flex; align-items: flex-end; padding-bottom: 0; justify-content: center; }
.rg-doc-stack { position: relative; width: 100%; height: 160px; }
.rg-doc-back { position: absolute; bottom: 0; right: 10px; width: 75%; background: #CBD5E1; border-radius: 10px 10px 0 0; padding: 12px; opacity: 0.5; }
.rg-doc-front { position: absolute; bottom: 0; left: 10px; width: 80%; background: #fff; border-radius: 10px 10px 0 0; padding: 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.rg-doc-header-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.rg-doc-name { font-size: 10px; font-weight: 700; color: #374151; }
.rg-verified-row { display: flex; align-items: center; gap: 5px; margin-top: 8px; }
.rg-v-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; }
.rg-v-text { font-size: 9px; font-weight: 600; color: #059669; }

/* Card 3 */
.rg-interview-illustration { flex: 1; display: flex; align-items: flex-end; padding-bottom: 0; }
.rg-qa-panel { width: 100%; background: #fff; border-radius: 10px 10px 0 0; padding: 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.rg-qa-header { font-size: 11px; font-weight: 700; color: #0F172A; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #F1F5F9; }
.rg-qa-item { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid #F8FAFC; }
.rg-play-btn { width: 22px; height: 22px; background: #DBEAFE; color: #4b83ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 7px; flex-shrink: 0; }
.rg-play-active { background: #4b83ff; color: #fff; }

/* Card 4 */
.rg-coverletter-illustration { flex: 1; position: relative; display: flex; align-items: flex-end; padding-bottom: 0; }
.rg-sparkle-icon { position: absolute; top: 0; right: 20px; width: 48px; height: 48px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border: 2px solid #BFDBFE; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #3B82F6; box-shadow: 0 4px 12px rgba(59,130,246,0.15); z-index: 3; }
.rg-letter-mock { width: 100%; background: #fff; border-radius: 10px 10px 0 0; padding: 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.rg-letter-top-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.rg-letter-doc-icon { font-size: 14px; }
.rg-letter-title-text { font-size: 11px; font-weight: 700; color: #374151; }
.rg-letter-greeting { font-size: 12px; font-weight: 600; color: #0F172A; margin-bottom: 4px; }

/* Card 5 */
.rg-linkedin-illustration { flex: 1; position: relative; display: flex; align-items: flex-end; padding-bottom: 0; }
.rg-li-table-mock { width: 100%; background: #fff; border-radius: 10px 10px 0 0; overflow: hidden; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.rg-li-table-header { display: flex; gap: 6px; padding: 8px 12px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; }
.rg-li-filter { font-size: 9px; font-weight: 600; color: #64748B; padding: 3px 8px; background: #fff; border: 1px solid #E2E8F0; border-radius: 4px; }
.rg-li-cols { display: grid; grid-template-columns: 2fr 1.5fr 1fr; padding: 4px 12px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; gap:6px; }
.rg-li-col-head { font-size: 9px; font-weight: 700; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; }
.rg-li-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr; padding: 6px 12px; border-bottom: 1px solid #F1F5F9; align-items: center; gap:6px; }
.rg-li-cell { font-size: 10px; color: #374151; font-weight: 500; }
.rg-cell-name { display: flex; align-items: center; gap: 6px; }
.rg-cell-na { color: #94A3B8; }
.rg-li-mini-avatar { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; }
.rg-av-1 { background: linear-gradient(135deg,#F97316,#FB923C); }
.rg-av-2 { background: linear-gradient(135deg,#8B5CF6,#6366F1); }
.rg-av-3 { background: linear-gradient(135deg,#10B981,#0D9488); }
.rg-av-4 { background: linear-gradient(135deg,#3B82F6,#0EA5E9); }
.rg-chat-popup { position: absolute; bottom: 20px; right: 0; width: 220px; background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); border: 1px solid #E2E8F0; z-index: 2; }
.rg-chat-msg-row { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 8px; justify-content: flex-end; }
.rg-chat-recv { flex: 1; }
.rg-chat-bubble-msg { background: #F1F5F9; border-radius: 8px 8px 8px 2px; padding: 6px 10px; font-size: 11px; color: #0F172A; font-weight: 600; display: inline-block; }
.rg-chat-sent-row { display: flex; align-items: center; gap: 6px; }
.rg-chat-bubble-sent { background: #4b83ff; color: #fff; border-radius: 8px 8px 2px 8px; padding: 6px 10px; font-size: 11px; font-weight: 500; }
.rg-chat-avatar-sm { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }

/* Card 6 */
.rg-coaching-illustration { flex: 1; display: flex; align-items: flex-end; }
.rg-pitch-mock { width: 100%; background: #fff; border-radius: 10px 10px 0 0; padding: 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.rg-pitch-header { margin-bottom: 6px; }
.rg-pitch-label { font-size: 10px; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.5px; }
.rg-pitch-greeting { font-size: 13px; font-weight: 600; color: #0F172A; margin-bottom: 4px; }
.rg-pitch-highlight { margin-top: 8px; }

/* Card 7 */
.rg-review-illustration { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; padding-bottom: 20px; }
.rg-skill-pills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rg-skill-chip { padding: 8px 10px; border-radius: 10px; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.rg-chip-count { margin-left: auto; background: rgba(255,255,255,0.5); border-radius: 6px; padding: 1px 5px; font-size: 10px; }
.rg-skill-blue  { background:#DBEAFE; color:#4b83ff; }
.rg-skill-green { background:#D1FAE5; color:#065F46; }
.rg-skill-teal  { background:#CCFBF1; color:#0F766E; }
.rg-skill-red   { background:#FEE2E2; color:#991B1B; }
.rg-overall-bar { display: flex; align-items: center; gap: 8px; }
.rg-ob-label { font-size: 9px; color: #64748B; white-space: nowrap; }
.rg-ob-track { flex: 1; height: 5px; background: #E2E8F0; border-radius: 3px; overflow: hidden; }
.rg-ob-fill { height: 100%; background: linear-gradient(90deg, #3B82F6, #10B981); border-radius: 3px; }
.rg-ob-pct { font-size: 11px; font-weight: 700; color: #3B82F6; }

/* Card 8 */
.rg-exec-illustration { flex: 1; display: flex; align-items: flex-end; padding-bottom: 0; }
.rg-template-pair { display: flex; gap: 8px; align-items: flex-end; width: 100%; }
.rg-template-card { flex: 1; border-radius: 8px 8px 0 0; overflow: hidden; box-shadow: 0 -4px 16px rgba(0,0,0,0.1); }
.rg-tmpl-header { padding: 10px; min-height: 50px; display: flex; align-items: flex-end; }
.rg-tmpl-h-yellow { background: #FCD34D; }
.rg-tmpl-h-dark   { background: #1E293B; }
.rg-tmpl-name { font-size: 12px; font-weight: 800; color: #0F172A; }
.rg-tmpl-name-white { color: #fff; }
.rg-tmpl-body { background: #fff; padding: 8px; display: flex; flex-direction: column; gap: 5px; }

/* Responsive */
@media (min-width: 769px) and (max-width: 1100px) {
  .rg-bento-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .rg-card-1 { grid-column: span 2 !important; }
  .rg-card-5 { grid-column: span 2 !important; }
}
@media (max-width: 768px) {
  .rg-bento-grid { grid-template-columns: 1fr !important; gap: 10px !important; padding: 0 16px !important; }
  .rg-card-1, .rg-card-2, .rg-card-3, .rg-card-4, .rg-card-5, .rg-card-6, .rg-card-7, .rg-card-8 { grid-column: span 1 !important; min-height: 200px !important; }
  .rg-bento-heading { font-size: 28px !important; }
  .rg-resume-mock { flex-direction: column; }
  .rg-score-panel { width: 100%; }
  .rg-chat-popup { position: relative; width: 100%; margin-top: 10px; bottom:auto; right:auto; }
  .rg-template-pair { gap: 6px; }
}

/* ============================================================
   RESOURCES MEGA MENU (Careerflow-style)
   ============================================================ */
.rg-has-mega { position: relative; list-style: none; }

.rg-nav-resources {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  color: #0F172A; padding: 8px 4px; border: none; background: none;
  position: relative; white-space: nowrap; text-decoration: none;
}
.rg-nav-resources:hover { color: #4b83ff; }
.rg-chevron {
  width: 12px; height: 12px; font-size: 11px;
  transition: transform 0.25s ease; color: #64748B; flex-shrink: 0;
}
.rg-nav-resources[aria-expanded="true"] .rg-chevron { transform: rotate(180deg); color: #4b83ff; }
.rg-nav-resources[aria-expanded="true"] { color: #4b83ff; }
.rg-nav-resources::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #4b83ff; transform: scaleX(0);
  transition: transform 0.25s ease; transform-origin: left;
}
.rg-nav-resources:hover::after,
.rg-nav-resources[aria-expanded="true"]::after { transform: scaleX(1); }

.rg-mega-dropdown {
  position: absolute; top: 100%; left: 50%;
  width: 560px; background: #ffffff; border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 28px 32px; z-index: 9999;
  border-top: 3px solid #4b83ff;
  margin-top: 16px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
/* Hover bridge: invisible buffer so cursor can travel from trigger to panel */
.rg-mega-dropdown::after {
  content: ''; position: absolute; top: -19px; left: 0; right: 0; height: 20px;
  background: transparent;
}
.rg-has-mega:hover .rg-mega-dropdown,
.rg-has-mega:focus-within .rg-mega-dropdown,
.rg-has-mega.rg-open .rg-mega-dropdown,
.rg-mega-dropdown.rg-open {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.rg-mega-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 10px; height: 10px; background: #4b83ff;
  transform: translateX(-50%) rotate(45deg);
}

.rg-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; justify-content: center; }
.rg-mega-col { padding: 0 28px; }
.rg-mega-col:first-child { padding-left: 0; border-right: 1px solid #F1F5F9; }
.rg-mega-col:last-child { padding-right: 0; }

.rg-mega-col-title {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: #94A3B8;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid #F1F5F9; line-height: 1;
}

.rg-mega-dropdown .rg-mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; text-decoration: none;
  color: inherit; transition: background 0.18s ease;
  margin-bottom: 2px; margin-left: -10px; margin-right: -10px;
}
.rg-mega-dropdown .rg-mega-item:hover { background: #EFF6FF; }
.rg-mega-item-icon {
  width: 28px; height: 28px; border-radius: 6px; background: #EFF6FF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.18s ease;
  color: #3B82F6; font-size: 13px;
}
.rg-mega-dropdown .rg-mega-item:hover .rg-mega-item-icon { background: #DBEAFE; }
.rg-mega-item-text {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: #0F172A; transition: color 0.18s ease; line-height: 1.2;
}
.rg-mega-dropdown .rg-mega-item:hover .rg-mega-item-text { color: #4b83ff; }

.rg-has-mega:hover .rg-nav-resources,
.rg-has-mega:focus-within .rg-nav-resources,
.rg-has-mega.rg-open .rg-nav-resources { color: var(--nav-resources-accent, #7C3AED); }
.rg-has-mega:hover .rg-nav-resources::after,
.rg-has-mega:focus-within .rg-nav-resources::after,
.rg-has-mega.rg-open .rg-nav-resources::after { transform: scaleX(1); }
.rg-has-mega:hover .rg-chevron,
.rg-has-mega:focus-within .rg-chevron,
.rg-has-mega.rg-open .rg-chevron { transform: rotate(180deg); color: var(--nav-resources-accent, #7C3AED); }

@media (max-width: 1200px) {
  .rg-mega-dropdown { width: 600px; padding: 24px; }
  .rg-mega-col { padding: 0 20px; }
}
@media (max-width: 1024px) {
  .rg-has-mega, .rg-nav-resources, .rg-mega-dropdown { display: none !important; }
}

/* Mobile accordion for resources */
.has-dropdown-mobile.open .rg-mega-mobile { display: block; }

/* ============================================================
   v30.2 — Footer hover, Send button, Testimonial rotator,
   Scroll-to-top button
   ============================================================ */
:root {
  --footer-link-hover: #D5E6FD;
  --rg-primary: #4b83ff;
  --rg-primary-hover: #3a6fe0;
}

/* Footer link hover (overrides earlier rules) */
.rg-footer .rg-footer-col ul a:hover,
.rg-footer .rg-footer-col ul a:focus,
.rg-footer-bottom a:hover,
.rg-footer-bottom a:focus,
.rg-socials a:hover,
.rg-socials a:focus {
  color: var(--footer-link-hover) !important;
}
.rg-socials a:hover,
.rg-socials a:focus {
  background: transparent;
  border-color: var(--footer-link-hover);
}

/* Newsletter Send button */
.rg-subscribe .rg-send-btn,
.rg-subscribe button.rg-send-btn {
  background: var(--rg-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  transition: background .2s ease, transform .2s ease;
}
.rg-subscribe .rg-send-btn:hover,
.rg-subscribe .rg-send-btn:focus {
  background: var(--rg-primary-hover) !important;
  transform: translateY(-1px);
}

/* Testimonial rotator */
.rg-testimonial-rotator { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rg-testimonial-track {
  position: relative; min-height: 28px; max-width: 560px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.rg-testimonial-quote {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .5s ease;
  font-style: italic; color: inherit; text-align: center;
}
.rg-testimonial-quote.is-active { opacity: 1; position: relative; }
.rg-testimonial-dots { display: flex; gap: 8px; }
.rg-testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,0.45); cursor: pointer; transition: background .2s, transform .2s;
}
.rg-testimonial-dots button.is-active { background: var(--rg-primary); transform: scale(1.3); }

/* Scroll-to-top button */
.rg-back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px;
  border-radius: 50%; border: none; cursor: pointer;
  background: var(--rg-primary); color: #fff; font-size: 18px;
  box-shadow: 0 6px 20px rgba(75,131,255,0.45);
  display: grid; place-items: center; z-index: 9998;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s ease;
}
.rg-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.rg-back-to-top:hover, .rg-back-to-top:focus { background: var(--rg-primary-hover); }
@media (max-width: 640px) {
  .rg-back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* Newsletter CTA send button on blog/single pages */
.rg-cta__btn.rg-send-btn,
.bl-news-btn.rg-send-btn,
.newsletter-btn.rg-send-btn {
  background: var(--rg-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.rg-cta__btn.rg-send-btn:hover,
.bl-news-btn.rg-send-btn:hover,
.newsletter-btn.rg-send-btn:hover {
  background: var(--rg-primary-hover) !important;
}
