/*
  getrichcourses.com (Build 46) | Crypto Courses | Milano, Italy | EUR
  Theme: DARK NAVY #0B0C1A + Electric Gold #F7C948 (FIRST dark crypto theme!)
  Nav: STICKY TRANSPARENT->SOLID on scroll (transparent over hero, solid after)
  Hero: FULL-VIEWPORT DARK with animated particles + floating course cards
  Ticker: CRYPTO PRICE SCROLLING BAND (NEVER done in 46 builds!)
  Courses: 3-COL CARD GRID with level/duration/lessons badges
  Testimonials: METRIC CARDS with portfolio stats (unique for crypto niche)
  Process: HORIZONTAL NUMBERED STEPS
  Pricing: 3-COL TIER with featured center
  Instructors: 2-COL BIO (FIRST instructor section type!)
  FAQ: Single-col clean accordion
  Footer: 4-COL dark navy
  Fonts: Syne (display) + Nunito Sans (body) - BOTH first use in 46 builds!
  CSS prefix: grc-
  Multi-language: EN + IT (FIRST multi-language in 46 builds!)
*/
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root {
  --grc-bg:      #0B0C1A;
  --grc-surf:    #13142A;
  --grc-card:    #1C1D38;
  --grc-card2:   #232540;
  --grc-gold:    #F7C948;
  --grc-gold2:   #E6B830;
  --grc-goldt:   rgba(247,201,72,.10);
  --grc-goldt2:  rgba(247,201,72,.06);
  --grc-cyan:    #22D3EE;
  --grc-cyant:   rgba(34,211,238,.08);
  --grc-white:   #FFFFFF;
  --grc-smoke:   #D8DCF0;
  --grc-mid:     #8891B0;
  --grc-muted:   #505878;
  --grc-border:  rgba(247,201,72,.10);
  --grc-border2: rgba(255,255,255,.06);
  --grc-nav-h:   68px;
  --grc-max:     1080px;
  --grc-r:       4px;
  --grc-r2:      8px;
  --grc-r3:      16px;
  --grc-fh:      'Syne', system-ui, sans-serif;
  --grc-fb:      'Nunito Sans', system-ui, sans-serif;
  --grc-ease:    all 0.22s cubic-bezier(.4,0,.2,1);
  --grc-sh:      0 4px 24px rgba(0,0,0,.4);
  --grc-sh2:     0 8px 48px rgba(0,0,0,.5);
  --grc-glow:    0 0 24px rgba(247,201,72,.2);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { background:var(--grc-bg); color:var(--grc-smoke); font-family:var(--grc-fb); font-size:1rem; line-height:1.72; overflow-x:hidden; }
img,svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select { font-family:inherit; }
address { font-style:normal; }

h1 { font-family:var(--grc-fh); font-size:clamp(3rem,5.5vw,6.5rem); font-weight:800; line-height:.94; letter-spacing:-.02em; }
h2 { font-family:var(--grc-fh); font-size:clamp(2rem,3.5vw,4rem); font-weight:700; line-height:1; letter-spacing:-.02em; }
h3 { font-family:var(--grc-fh); font-size:1.1rem; font-weight:700; }
p  { font-size:.92rem; line-height:1.82; color:var(--grc-mid); }

/* ============================================================
   STICKY TRANSPARENT->SOLID NAV (FIRST in series!)
   ============================================================ */
.grc-nav {
  position:fixed; top:0; left:0; right:0; height:var(--grc-nav-h);
  background:transparent; z-index:900; transition:background .28s,box-shadow .28s;
}
.grc-nav.grc-nav-solid {
  background:rgba(11,12,26,.96);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--grc-border2);
  box-shadow:0 2px 24px rgba(0,0,0,.5);
}
.grc-nav-frame { max-width:calc(var(--grc-max) + 80px); margin:0 auto; padding:0 2rem; display:flex; align-items:center; justify-content:space-between; height:100%; gap:1rem; }
.grc-nav-logo { font-family:var(--grc-fh); font-size:.96rem; font-weight:800; color:var(--grc-white); letter-spacing:-.01em; white-space:nowrap; }
.grc-nav-logo span { color:var(--grc-gold); }
.grc-nav-links { display:flex; align-items:center; gap:.1rem; }
.grc-nl { font-family:var(--grc-fb); font-size:.9rem; font-weight:700; color:var(--grc-mid); padding:.38rem .72rem; border-radius:var(--grc-r2); transition:var(--grc-ease); white-space:nowrap; }
.grc-nl:hover,.grc-nl.grc-on { color:var(--grc-white); background:rgba(255,255,255,.06); }
.grc-nav-right { display:flex; align-items:center; gap:.5rem; }
.grc-nav-cta { font-family:var(--grc-fb); font-size:.9rem; font-weight:700; color:var(--grc-bg); background:var(--grc-gold); padding:.42rem 1.2rem; border-radius:var(--grc-r2); transition:background .14s; white-space:nowrap; }
.grc-nav-cta:hover { background:var(--grc-gold2); }
/* Language switcher */
.grc-lang-sw { display:flex; align-items:center; gap:.2rem; font-family:var(--grc-fb); font-size:.72rem; font-weight:700; color:var(--grc-muted); }
.grc-lang-sw a { color:var(--grc-muted); padding:.2rem .36rem; border-radius:var(--grc-r); transition:var(--grc-ease); }
.grc-lang-sw a:hover,.grc-lang-sw .grc-lang-on { color:var(--grc-gold); background:var(--grc-goldt); }
.grc-lang-sw span { color:var(--grc-muted); font-size:.6rem; }
/* Mobile */
.grc-ham { display:none; width:36px; height:36px; flex-direction:column; align-items:center; justify-content:center; gap:5px; border-radius:var(--grc-r2); border:1px solid var(--grc-border2); cursor:pointer; }
.grc-ham span { width:15px; height:1.5px; background:var(--grc-smoke); border-radius:2px; display:block; transition:var(--grc-ease); }
.grc-mob-ov { position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:910; opacity:0; pointer-events:none; transition:opacity .22s; }
.grc-mob-ov.grc-ov-on { opacity:1; pointer-events:auto; }
.grc-mob-draw { position:fixed; top:0; right:0; bottom:0; width:280px; background:var(--grc-surf); z-index:920; transform:translateX(100%); transition:transform .28s cubic-bezier(.4,0,.2,1); padding:1.4rem; overflow-y:auto; }
.grc-mob-draw.grc-draw-on { transform:none; }
.grc-draw-hd { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.6rem; padding-bottom:.9rem; border-bottom:1px solid var(--grc-border2); }
.grc-draw-lk { display:flex; align-items:center; justify-content:space-between; padding:.64rem 0; border-bottom:1px solid var(--grc-border2); font-family:var(--grc-fb); font-size:.9rem; font-weight:700; color:var(--grc-mid); transition:color .14s; }
.grc-draw-lk:hover { color:var(--grc-gold); }
.grc-draw-svc-h { font-size:.42rem; font-weight:700; text-transform:uppercase; letter-spacing:.28em; color:var(--grc-muted); margin:1rem 0 .4rem; }

/* ============================================================
   FULL-VIEWPORT DARK HERO (centered, crypto aesthetic)
   ============================================================ */
.grc-hero { min-height:100vh; background:var(--grc-bg); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; text-align:center; padding:calc(var(--grc-nav-h) + 2rem) 2rem 5rem; }
/* Animated dot grid background */
.grc-hero::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle,rgba(247,201,72,.06) 1px,transparent 1px); background-size:40px 40px; pointer-events:none; animation:grcGridMove 25s linear infinite; }
@keyframes grcGridMove { 0%{background-position:0 0} 100%{background-position:40px 40px} }
/* Gold radial glow at center */
.grc-hero::after { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; background:radial-gradient(ellipse,rgba(247,201,72,.06) 0%,transparent 70%); pointer-events:none; }
.grc-hero-inner { position:relative; z-index:2; max-width:860px; }
.grc-hero-tag { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--grc-fb); font-size:.52rem; font-weight:700; text-transform:uppercase; letter-spacing:.22em; color:var(--grc-gold); background:var(--grc-goldt); border:1px solid var(--grc-border); padding:.22rem .9rem; border-radius:100px; margin-bottom:1.4rem; }
.grc-hero h1 { color:var(--grc-white); margin-bottom:.6rem; }
.grc-hero h1 .grc-hl-gold { color:var(--grc-gold); display:block; }
.grc-hero-sub { max-width:54ch; margin:0 auto 2.2rem; color:var(--grc-mid); font-size:.96rem; }
.grc-hero-acts { display:flex; gap:.7rem; justify-content:center; flex-wrap:wrap; margin-bottom:3rem; }
/* Floating course preview cards (pure CSS) */
.grc-hero-cards { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; position:relative; z-index:2; }
.grc-hero-card { background:var(--grc-card); border:1px solid var(--grc-border); border-radius:var(--grc-r3); padding:.9rem 1.1rem; text-align:left; display:flex; align-items:center; gap:.7rem; animation:grcCardFloat 4s ease-in-out infinite; }
.grc-hero-card:nth-child(2) { animation-delay:.8s; }
.grc-hero-card:nth-child(3) { animation-delay:1.6s; }
@keyframes grcCardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.grc-hc-icon { width:32px; height:32px; background:var(--grc-goldt); border-radius:var(--grc-r); display:flex; align-items:center; justify-content:center; color:var(--grc-gold); flex-shrink:0; }
.grc-hc-nm { font-family:var(--grc-fh); font-size:.76rem; font-weight:700; color:var(--grc-white); }
.grc-hc-meta { font-size:.52rem; color:var(--grc-mid); }

/* ============================================================
   CRYPTO PRICE TICKER BAND (FIRST in 46 builds!)
   ============================================================ */
.grc-ticker { background:var(--grc-surf); border-top:1px solid var(--grc-border); border-bottom:1px solid var(--grc-border); overflow:hidden; padding:.5rem 0; }
.grc-ticker-inner { display:flex; width:max-content; animation:grcTick 40s linear infinite; }
.grc-ticker:hover .grc-ticker-inner { animation-play-state:paused; }
@keyframes grcTick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.grc-tick-item { font-family:var(--grc-fh); font-size:.72rem; font-weight:700; color:var(--grc-mid); padding:0 2rem; border-right:1px solid var(--grc-border2); white-space:nowrap; }
.grc-tick-item.grc-tick-up { color:var(--grc-gold); }
.grc-tick-item.grc-tick-dn { color:#ef4444; }

/* ============================================================
   STATS ROW
   ============================================================ */
.grc-stats-row { max-width:var(--grc-max); margin:0 auto; padding:3.5rem 2rem; display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-bottom:1px solid var(--grc-border2); }
.grc-stat-item { text-align:center; padding:1.2rem; border-right:1px solid var(--grc-border2); }
.grc-stat-item:last-child { border-right:none; }
.grc-stat-n { font-family:var(--grc-fh); font-size:2.8rem; font-weight:800; color:var(--grc-gold); line-height:1; }
.grc-stat-l { font-size:.52rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--grc-muted); margin-top:.3rem; }

/* ============================================================
   COURSE CARDS 3-COL GRID
   ============================================================ */
.grc-courses-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:2.5rem; }
.grc-course-card { background:var(--grc-card); border:1px solid var(--grc-border2); border-radius:var(--grc-r3); overflow:hidden; transition:var(--grc-ease); position:relative; }
.grc-course-card:hover { border-color:var(--grc-gold); box-shadow:var(--grc-glow); transform:translateY(-3px); }
.grc-cc-img { height:150px; background:var(--grc-surf); position:relative; overflow:hidden; }
.grc-cc-img img { width:100%; height:100%; object-fit:cover; opacity:.4; transition:opacity .3s; }
.grc-course-card:hover .grc-cc-img img { opacity:.6; }
.grc-cc-badges { position:absolute; top:.7rem; left:.7rem; display:flex; gap:.3rem; }
.grc-cc-level { font-family:var(--grc-fb); font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:.1rem .44rem; border-radius:100px; }
.grc-cc-level.grc-lv-beg { background:rgba(34,211,238,.15); color:var(--grc-cyan); }
.grc-cc-level.grc-lv-int { background:rgba(247,201,72,.15); color:var(--grc-gold); }
.grc-cc-level.grc-lv-adv { background:rgba(239,68,68,.15); color:#ef4444; }
.grc-cc-bestseller { font-family:var(--grc-fb); font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; background:var(--grc-gold); color:var(--grc-bg); padding:.1rem .44rem; border-radius:100px; }
.grc-cc-bd { padding:1.2rem; }
.grc-cc-nm { font-family:var(--grc-fh); font-size:.96rem; font-weight:700; color:var(--grc-white); margin-bottom:.3rem; }
.grc-cc-meta { display:flex; gap:.8rem; margin-bottom:.5rem; }
.grc-cc-meta-item { font-size:.52rem; color:var(--grc-muted); display:flex; align-items:center; gap:.2rem; }
.grc-cc-meta-item svg { color:var(--grc-muted); }
.grc-cc-p { font-size:.76rem; line-height:1.68; margin-bottom:.9rem; }
.grc-cc-foot { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--grc-border2); padding-top:.8rem; }
.grc-cc-price { font-family:var(--grc-fh); font-size:1.1rem; font-weight:800; color:var(--grc-gold); }
.grc-cc-lk { font-size:.72rem; font-weight:700; color:var(--grc-mid); display:flex; align-items:center; gap:.2rem; transition:color .14s; }
.grc-course-card:hover .grc-cc-lk { color:var(--grc-gold); }

/* ============================================================
   TESTIMONIALS WITH METRIC CARDS
   ============================================================ */
.grc-testi-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:2.5rem; }
.grc-tq { background:var(--grc-card); border:1px solid var(--grc-border2); border-radius:var(--grc-r3); padding:1.6rem; transition:var(--grc-ease); }
.grc-tq:hover { border-color:var(--grc-border); }
.grc-tq-course { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--grc-gold); margin-bottom:.7rem; display:flex; align-items:center; gap:.3rem; }
.grc-tq-q { font-family:var(--grc-fh); font-size:.88rem; font-weight:400; color:var(--grc-smoke); line-height:1.65; font-style:italic; margin-bottom:.9rem; }
.grc-tq-metric { background:var(--grc-goldt); border:1px solid var(--grc-border); border-radius:var(--grc-r2); padding:.44rem .7rem; margin-bottom:.9rem; font-family:var(--grc-fh); font-size:.78rem; font-weight:700; color:var(--grc-gold); display:flex; align-items:center; gap:.4rem; }
.grc-tq-who { font-family:var(--grc-fb); font-size:.76rem; font-weight:700; color:var(--grc-white); }
.grc-tq-city { font-size:.6rem; color:var(--grc-muted); }

/* ============================================================
   HORIZONTAL PROCESS STEPS
   ============================================================ */
.grc-steps-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:2.5rem; position:relative; }
.grc-steps-row::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:1px; background:var(--grc-border2); z-index:0; }
.grc-step { text-align:center; padding:0 1rem; position:relative; z-index:1; }
.grc-step-num { width:56px; height:56px; background:var(--grc-card); border:2px solid var(--grc-border); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto .9rem; font-family:var(--grc-fh); font-size:.88rem; font-weight:800; color:var(--grc-gold); transition:var(--grc-ease); }
.grc-step:hover .grc-step-num { background:var(--grc-gold); color:var(--grc-bg); border-color:var(--grc-gold); }
.grc-step-h { font-family:var(--grc-fh); font-size:.88rem; font-weight:700; color:var(--grc-white); margin-bottom:.3rem; }
.grc-step-p { font-size:.76rem; line-height:1.7; }

/* ============================================================
   PRICING 3-COL TIERS
   ============================================================ */
.grc-price-trio { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:2.5rem; align-items:start; }
.grc-price-card { background:var(--grc-card); border:1px solid var(--grc-border2); border-radius:var(--grc-r3); padding:2rem; position:relative; }
.grc-price-card.grc-pfeat { border-color:var(--grc-gold); background:var(--grc-card2); box-shadow:var(--grc-glow); }
.grc-feat-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); font-family:var(--grc-fb); font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; background:var(--grc-gold); color:var(--grc-bg); padding:.18rem .7rem; border-radius:100px; white-space:nowrap; }
.grc-pc-nm { font-family:var(--grc-fh); font-size:1.3rem; font-weight:700; color:var(--grc-white); margin-bottom:.1rem; }
.grc-pc-scope { font-size:.6rem; color:var(--grc-muted); margin-bottom:.7rem; }
.grc-pc-price { font-family:var(--grc-fh); font-size:3.2rem; font-weight:800; color:var(--grc-gold); line-height:1; letter-spacing:-.02em; }
.grc-pc-per { font-size:.5rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--grc-muted); margin-bottom:.3rem; }
.grc-pc-tag2 { font-size:.76rem; color:var(--grc-mid); border-top:1px solid var(--grc-border2); padding-top:.6rem; margin-top:.4rem; }
.grc-pc-inc { display:flex; flex-direction:column; gap:.24rem; margin:1.2rem 0 1.4rem; }
.grc-pc-row { display:flex; align-items:flex-start; gap:.3rem; font-size:.76rem; color:var(--grc-mid); }
.grc-pc-row svg { color:var(--grc-gold); flex-shrink:0; margin-top:.04rem; }

/* ============================================================
   INSTRUCTORS 2-COL (FIRST section type in 46 builds!)
   ============================================================ */
.grc-instr-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:2.5rem; }
.grc-instr-card { background:var(--grc-card); border:1px solid var(--grc-border2); border-radius:var(--grc-r3); padding:1.8rem; display:flex; gap:1.3rem; align-items:flex-start; }
.grc-instr-photo { width:72px; height:72px; border-radius:50%; object-fit:cover; border:2px solid var(--grc-border); flex-shrink:0; opacity:.7; }
.grc-instr-nm { font-family:var(--grc-fh); font-size:1.1rem; font-weight:700; color:var(--grc-white); margin-bottom:.1rem; }
.grc-instr-role { font-size:.6rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--grc-gold); margin-bottom:.5rem; }
.grc-instr-bio { font-size:.8rem; line-height:1.74; margin-bottom:.7rem; }
.grc-instr-creds { display:flex; flex-direction:column; gap:.18rem; }
.grc-instr-cr { display:flex; align-items:flex-start; gap:.3rem; font-size:.72rem; color:var(--grc-mid); }
.grc-instr-cr svg { color:var(--grc-gold); flex-shrink:0; margin-top:.04rem; }

/* ============================================================
   COURSE SERVICE PAGE
   ============================================================ */
.grc-svc-layout { max-width:var(--grc-max); margin:0 auto; padding:5rem 2rem; display:grid; grid-template-columns:1fr 230px; gap:5rem; align-items:start; }
.grc-svc-bdy h2 { font-family:var(--grc-fh); font-size:1.5rem; font-weight:700; color:var(--grc-gold); margin:2.5rem 0 .5rem; }
.grc-svc-bdy p { margin-bottom:.88rem; }
.grc-svc-inc-list { display:flex; flex-direction:column; gap:.38rem; margin-bottom:1.4rem; }
.grc-svc-inc-row { display:flex; align-items:flex-start; gap:.45rem; font-size:.86rem; color:var(--grc-smoke); }
.grc-svc-inc-row svg { color:var(--grc-gold); flex-shrink:0; margin-top:.1rem; }
.grc-svc-del { background:var(--grc-goldt); border-left:3px solid var(--grc-gold); padding:.72rem .9rem; border-radius:0 var(--grc-r) var(--grc-r) 0; margin-bottom:1.2rem; }
.grc-svc-del p { margin:0; font-size:.82rem; color:var(--grc-mid); }
/* Course meta bar */
.grc-course-meta { display:flex; gap:1.5rem; flex-wrap:wrap; margin:1rem 0 1.5rem; padding:1rem; background:var(--grc-card); border-radius:var(--grc-r2); border:1px solid var(--grc-border2); }
.grc-cm-item { display:flex; flex-direction:column; align-items:center; gap:.1rem; }
.grc-cm-v { font-family:var(--grc-fh); font-size:1.3rem; font-weight:700; color:var(--grc-gold); line-height:1; }
.grc-cm-l { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--grc-muted); }
.grc-aside-box { background:var(--grc-card); border:1px solid var(--grc-border); border-radius:var(--grc-r3); overflow:hidden; position:sticky; top:calc(var(--grc-nav-h) + 1.5rem); }
.grc-aside-img img { width:100%; height:80px; object-fit:cover; opacity:.3; display:block; }
.grc-aside-bd { padding:1.2rem; }
.grc-aside-from { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em; color:var(--grc-muted); margin-bottom:.2rem; }
.grc-aside-price { font-family:var(--grc-fh); font-size:.96rem; font-weight:800; color:var(--grc-gold); margin-bottom:.8rem; }
.grc-other-h { font-size:.42rem; font-weight:700; text-transform:uppercase; letter-spacing:.22em; color:var(--grc-muted); margin:1.4rem 0 .5rem; }
.grc-other-lk { display:flex; align-items:center; gap:.38rem; font-size:.76rem; color:var(--grc-mid); padding:.34rem 0; border-bottom:1px solid var(--grc-border2); transition:color .14s; }
.grc-other-lk:hover { color:var(--grc-gold); }

/* ============================================================
   BUILDER
   ============================================================ */
.grc-build-wrap { max-width:var(--grc-max); margin:0 auto; padding:4rem 2rem 8rem; display:grid; grid-template-columns:1fr 260px; gap:4rem; align-items:start; }
.grc-bld-sec { margin-bottom:2.2rem; }
.grc-bld-lbl { display:block; font-family:var(--grc-fb); font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.24em; color:var(--grc-gold); margin-bottom:.9rem; }
.grc-pick { background:var(--grc-card); border:1.5px solid var(--grc-border2); border-radius:var(--grc-r2); padding:.78rem 1rem; display:flex; align-items:center; gap:.65rem; cursor:pointer; user-select:none; transition:var(--grc-ease); margin-bottom:.4rem; }
.grc-pick:hover { border-color:var(--grc-gold); }
.grc-pick.grc-picked { border-color:var(--grc-gold); background:var(--grc-goldt); }
.grc-pick-box { width:16px; height:16px; border:1.5px solid var(--grc-muted); border-radius:var(--grc-r); flex-shrink:0; transition:var(--grc-ease); }
.grc-pick.grc-picked .grc-pick-box { background:var(--grc-gold); border-color:var(--grc-gold); }
.grc-pick-nm { font-size:.84rem; color:var(--grc-mid); flex:1; }
.grc-pick.grc-picked .grc-pick-nm { color:var(--grc-smoke); font-weight:700; }
.grc-pick-pr { font-size:.7rem; font-weight:700; color:var(--grc-gold); white-space:nowrap; }
.grc-adn-wrap { display:flex; flex-wrap:wrap; gap:.4rem; }
.grc-adn-chip { background:var(--grc-card); border:1.5px solid var(--grc-border2); border-radius:100px; padding:.44rem .88rem; cursor:pointer; user-select:none; transition:var(--grc-ease); }
.grc-adn-chip:hover { border-color:var(--grc-gold); }
.grc-adn-chip.grc-chip-on { border-color:var(--grc-gold); background:var(--grc-goldt); }
.grc-chip-nm { font-size:.8rem; font-weight:600; color:var(--grc-mid); }
.grc-adn-chip.grc-chip-on .grc-chip-nm { color:var(--grc-smoke); }
.grc-chip-pr { font-size:.58rem; color:var(--grc-muted); }
.grc-adn-chip.grc-chip-on .grc-chip-pr { color:var(--grc-gold); }
.grc-hrs-box { background:var(--grc-card); border:1.5px solid var(--grc-border2); border-radius:var(--grc-r2); padding:.9rem 1rem; }
.grc-hrs-hd { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.grc-hrs-lbl { font-size:.82rem; color:var(--grc-mid); }
.grc-hrs-val { font-family:var(--grc-fh); font-size:1.8rem; font-weight:800; color:var(--grc-gold); line-height:1; }
.grc-hrs-slider { -webkit-appearance:none; width:100%; height:3px; background:var(--grc-card2); border-radius:2px; cursor:pointer; }
.grc-hrs-slider::-webkit-slider-thumb { -webkit-appearance:none; width:18px; height:18px; border-radius:50%; background:var(--grc-gold); cursor:pointer; }
.grc-hrs-note { font-size:.64rem; color:var(--grc-muted); margin-top:.4rem; }
.grc-receipt { background:var(--grc-card); border:1px solid var(--grc-border); border-radius:var(--grc-r3); overflow:hidden; position:sticky; top:calc(var(--grc-nav-h) + 1.5rem); }
.grc-receipt-top { background:rgba(247,201,72,.06); padding:.82rem 1.1rem; border-bottom:1px solid var(--grc-border2); }
.grc-receipt-lbl { font-family:var(--grc-fh); font-size:.72rem; font-weight:700; color:var(--grc-muted); }
.grc-receipt-lines { padding:.8rem 1.1rem; min-height:56px; }
.grc-receipt-empty { font-size:.74rem; color:var(--grc-muted); font-style:italic; }
.grc-receipt-ln { display:flex; justify-content:space-between; gap:.5rem; font-size:.74rem; margin-bottom:.35rem; }
.grc-receipt-lnm { color:var(--grc-muted); }
.grc-receipt-lpr { font-weight:700; color:var(--grc-gold); }
.grc-receipt-foot { border-top:1px solid var(--grc-border2); padding:.82rem 1.1rem; }
.grc-receipt-tot { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:.82rem; }
.grc-receipt-totl { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--grc-muted); }
.grc-receipt-totv { font-family:var(--grc-fh); font-size:2.6rem; font-weight:800; color:var(--grc-gold); line-height:1; letter-spacing:-.02em; }
.grc-receipt-go { display:block; width:100%; background:var(--grc-gold); color:var(--grc-bg); font-family:var(--grc-fb); font-size:.88rem; font-weight:700; padding:.76rem; border-radius:var(--grc-r2); border:none; cursor:pointer; transition:background .14s; }
.grc-receipt-go:hover:not(:disabled) { background:var(--grc-gold2); }
.grc-receipt-go:disabled { opacity:.2; cursor:not-allowed; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.grc-co-wrap { max-width:860px; margin:0 auto; padding:5rem 2rem; display:grid; grid-template-columns:1fr 230px; gap:4rem; align-items:start; }
.grc-fg { margin-bottom:.6rem; }
.grc-fl { display:block; font-family:var(--grc-fb); font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--grc-muted); margin-bottom:.28rem; }
.grc-fi { width:100%; background:var(--grc-card); border:1.5px solid var(--grc-border2); border-radius:var(--grc-r2); padding:.64rem .9rem; color:var(--grc-smoke); font-size:.9rem; transition:border-color .15s; }
.grc-fi:focus { outline:none; border-color:var(--grc-gold); box-shadow:0 0 0 3px var(--grc-goldt); }
.grc-fi::placeholder { color:var(--grc-muted); }
.grc-fi option { background:var(--grc-card); }
.grc-agree { display:flex; align-items:flex-start; gap:.5rem; font-size:.78rem; color:var(--grc-mid); margin:.88rem 0; line-height:1.6; }
.grc-agree input { margin-top:.12rem; accent-color:var(--grc-gold); }
.grc-agree a { color:var(--grc-gold); }
.grc-co-sum { background:var(--grc-card); border:1px solid var(--grc-border); border-radius:var(--grc-r3); overflow:hidden; position:sticky; top:calc(var(--grc-nav-h) + 1.5rem); }
.grc-co-sum-hd { background:rgba(247,201,72,.06); padding:.7rem 1rem; border-bottom:1px solid var(--grc-border2); }
.grc-co-sum-hl { font-family:var(--grc-fb); font-size:.72rem; font-weight:700; color:var(--grc-muted); }
.grc-co-sum-bd { padding:.84rem 1rem; }
.grc-co-ln { display:flex; justify-content:space-between; gap:1rem; font-size:.74rem; margin-bottom:.35rem; }
.grc-co-lnm { color:var(--grc-muted); }
.grc-co-lpr { font-weight:700; color:var(--grc-gold); }
.grc-co-div { border:none; border-top:1px solid var(--grc-border2); margin:.5rem 0; }
.grc-co-tot { display:flex; justify-content:space-between; align-items:flex-end; }
.grc-co-totl { font-size:.44rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--grc-muted); }
.grc-co-totv { font-family:var(--grc-fh); font-size:2.2rem; font-weight:800; color:var(--grc-gold); line-height:1; }

/* ============================================================
   FAQ
   ============================================================ */
.grc-faq-stack { max-width:700px; margin:2.5rem auto 0; }
.grc-faq-item { border-bottom:1px solid var(--grc-border2); }
.grc-faq-qbtn { width:100%; display:flex; align-items:center; justify-content:space-between; gap:.8rem; padding:.9rem 0; cursor:pointer; text-align:left; background:none; }
.grc-faq-qtxt { font-family:var(--grc-fb); font-size:.88rem; font-weight:700; color:var(--grc-mid); transition:color .15s; line-height:1.4; }
.grc-faq-item.grc-fq-open .grc-faq-qtxt { color:var(--grc-smoke); }
.grc-faq-ico { width:22px; height:22px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--grc-muted); transition:var(--grc-ease); }
.grc-faq-item.grc-fq-open .grc-faq-ico { color:var(--grc-gold); transform:rotate(45deg); }
.grc-faq-ans { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.grc-faq-item.grc-fq-open .grc-faq-ans { max-height:220px; }
.grc-faq-atxt { font-size:.84rem; color:var(--grc-mid); padding:.1rem 0 1rem; line-height:1.8; }

/* ============================================================
   PAGE CAP
   ============================================================ */
.grc-pagecap { padding:calc(var(--grc-nav-h) + 4rem) 2rem 4rem; text-align:center; background:var(--grc-bg); border-bottom:1px solid var(--grc-border2); position:relative; overflow:hidden; }
.grc-pagecap::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle,rgba(247,201,72,.04) 1px,transparent 1px); background-size:32px 32px; pointer-events:none; }
.grc-pagecap-label { font-family:var(--grc-fb); font-size:.48rem; font-weight:700; text-transform:uppercase; letter-spacing:.28em; color:var(--grc-gold); background:var(--grc-goldt); border:1px solid var(--grc-border); padding:.2rem .82rem; border-radius:100px; display:inline-block; margin-bottom:.8rem; position:relative; }
.grc-pagecap h1 { color:var(--grc-white); max-width:18ch; margin:0 auto; position:relative; }
.grc-pagecap-sub { color:var(--grc-mid); max-width:52ch; margin:.6rem auto 0; font-size:.95rem; position:relative; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.grc-legal { max-width:800px; margin:0 auto; padding:5rem 2rem 8rem; }
.grc-legal h2 { font-family:var(--grc-fh); font-size:1.5rem; font-weight:700; color:var(--grc-gold); margin:2.8rem 0 .5rem; }
.grc-legal h3 { font-family:var(--grc-fb); font-size:.92rem; font-weight:700; color:var(--grc-smoke); margin:1.4rem 0 .3rem; }
.grc-legal p { margin-bottom:.88rem; font-size:.9rem; }
.grc-legal ul { padding-left:1.2rem; margin:.4rem 0 .88rem; }
.grc-legal li { font-size:.9rem; list-style:disc; color:var(--grc-mid); line-height:1.72; margin-bottom:.26rem; }
.grc-legal a { color:var(--grc-gold); }
.grc-legal table { width:100%; border-collapse:collapse; font-size:.84rem; margin:.88rem 0 1.2rem; }
.grc-legal th { background:var(--grc-card); color:var(--grc-smoke); padding:.5rem .9rem; text-align:left; font-family:var(--grc-fb); font-size:.56rem; text-transform:uppercase; letter-spacing:.06em; border:1px solid var(--grc-border2); }
.grc-legal td { padding:.5rem .9rem; border:1px solid var(--grc-border2); color:var(--grc-mid); }
.grc-legal address { background:var(--grc-goldt); border-left:3px solid var(--grc-gold); padding:.88rem 1.1rem; font-size:.86rem; color:var(--grc-mid); line-height:1.86; margin:.88rem 0; border-radius:0 var(--grc-r) var(--grc-r) 0; }
.grc-legal-eff { display:inline-block; font-size:.68rem; color:var(--grc-muted); background:var(--grc-card); border:1px solid var(--grc-border2); padding:.24rem .7rem; border-radius:100px; margin-bottom:1.5rem; }
.grc-result { min-height:74vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:6rem 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.grc-btn-gold { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--grc-fb); font-size:.9rem; font-weight:700; color:var(--grc-bg); background:var(--grc-gold); padding:.7rem 2rem; border-radius:var(--grc-r2); transition:background .14s; border:none; cursor:pointer; white-space:nowrap; }
.grc-btn-gold:hover { background:var(--grc-gold2); }
.grc-btn-dark { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--grc-fb); font-size:.9rem; font-weight:700; color:var(--grc-smoke); background:var(--grc-card); padding:.7rem 2rem; border-radius:var(--grc-r2); border:1.5px solid var(--grc-border); transition:var(--grc-ease); white-space:nowrap; }
.grc-btn-dark:hover { border-color:var(--grc-gold); color:var(--grc-gold); }
.grc-btn-outline { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--grc-fb); font-size:.9rem; font-weight:700; color:var(--grc-smoke); background:transparent; padding:.68rem 1.9rem; border-radius:var(--grc-r2); border:1.5px solid var(--grc-border); transition:var(--grc-ease); white-space:nowrap; }
.grc-btn-outline:hover { border-color:var(--grc-gold); color:var(--grc-gold); }
.grc-btn-outline-sm { display:inline-flex; align-items:center; gap:.35rem; font-family:var(--grc-fb); font-size:.82rem; font-weight:700; color:var(--grc-mid); background:transparent; padding:.5rem 1.2rem; border-radius:var(--grc-r2); border:1.5px solid var(--grc-border2); transition:var(--grc-ease); white-space:nowrap; }
.grc-btn-outline-sm:hover { border-color:var(--grc-gold); color:var(--grc-gold); }
.grc-btn-gold-sm { display:inline-flex; align-items:center; gap:.35rem; font-family:var(--grc-fb); font-size:.82rem; font-weight:700; color:var(--grc-bg); background:var(--grc-gold); padding:.5rem 1rem; border-radius:var(--grc-r2); transition:background .14s; border:none; cursor:pointer; white-space:nowrap; }
.grc-btn-gold-sm:hover { background:var(--grc-gold2); }

/* ============================================================
   UTILITIES
   ============================================================ */
.grc-shell { max-width:var(--grc-max); margin:0 auto; padding:0 2rem; }
.grc-slab { padding:8rem 0; }
.grc-slab-sm { padding:5rem 0; }
.grc-eyebrow { font-family:var(--grc-fb); font-size:.48rem; font-weight:700; text-transform:uppercase; letter-spacing:.28em; color:var(--grc-gold); display:inline-block; }
.grc-rise { opacity:0; transform:translateY(14px); transition:opacity .48s ease,transform .48s ease; }
.grc-rise.grc-vis { opacity:1; transform:none; }
.grc-center { text-align:center; }

/* ============================================================
   COOKIE + CHAT
   ============================================================ */
.grc-ck-bar { position:fixed; bottom:0; left:0; right:0; background:var(--grc-surf); border-top:2px solid var(--grc-gold); z-index:9999; padding:.9rem 2rem; display:none; gap:1rem; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.grc-ck-bar p { font-size:.78rem; color:var(--grc-mid); margin:0; }
.grc-ck-bar a { color:var(--grc-gold); }
.grc-ck-btns { display:flex; gap:.4rem; flex-shrink:0; }
.grc-ck-yes { background:var(--grc-gold); color:var(--grc-bg); font-family:var(--grc-fb); font-size:.76rem; font-weight:700; padding:.38rem .92rem; border:none; border-radius:var(--grc-r); cursor:pointer; }
.grc-ck-no  { background:transparent; color:var(--grc-muted); font-family:var(--grc-fb); font-size:.76rem; padding:.38rem .92rem; border:1px solid var(--grc-border2); border-radius:var(--grc-r); cursor:pointer; }
.grc-chat-fab { position:fixed; bottom:4.5rem; right:1.5rem; z-index:9990; width:52px; height:52px; background:var(--grc-gold); border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--grc-glow); cursor:pointer; border:none; transition:var(--grc-ease); }
.grc-chat-fab:hover { background:var(--grc-gold2); transform:scale(1.06); }
.grc-chatpop { position:fixed; bottom:7.5rem; right:1.5rem; z-index:9989; width:272px; background:var(--grc-card); border:1px solid var(--grc-border); border-radius:var(--grc-r3); box-shadow:var(--grc-sh2); opacity:0; pointer-events:none; transform:translateY(8px) scale(.97); transition:opacity .2s,transform .22s; overflow:hidden; }
.grc-chatpop.grc-cp-on { opacity:1; pointer-events:auto; transform:none; }
.grc-chatpop-hd { background:var(--grc-goldt); padding:.9rem 1rem; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--grc-border2); }
.grc-chatpop-nm { font-family:var(--grc-fh); font-size:.88rem; font-weight:700; color:var(--grc-white); }
.grc-chatpop-sub { font-size:.52rem; color:var(--grc-mid); }
.grc-chatpop-x { color:var(--grc-mid); }
.grc-chatpop-bd { padding:.88rem; }
.grc-chat-done { display:none; text-align:center; padding:.7rem; font-size:.82rem; color:var(--grc-gold); font-weight:700; }
.grc-chat-inp { width:100%; background:var(--grc-surf); border:1px solid var(--grc-border2); border-radius:var(--grc-r); padding:.44rem .76rem; font-size:.8rem; color:var(--grc-smoke); margin-bottom:.36rem; resize:none; }
.grc-chat-send { width:100%; background:var(--grc-gold); color:var(--grc-bg); font-family:var(--grc-fb); font-size:.78rem; font-weight:700; padding:.48rem; border-radius:var(--grc-r); border:none; cursor:pointer; }

/* ============================================================
   DARK FOOTER 4-COL
   ============================================================ */
.grc-foot { background:var(--grc-surf); border-top:1px solid var(--grc-border2); }
.grc-foot-top { max-width:var(--grc-max); margin:0 auto; padding:4.5rem 2rem 2.5rem; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2rem; }
.grc-foot-logo { font-family:var(--grc-fh); font-size:.96rem; font-weight:800; color:var(--grc-white); }
.grc-foot-logo span { color:var(--grc-gold); }
.grc-foot-tagline { font-size:.76rem; color:var(--grc-muted); margin-top:.2rem; max-width:24ch; line-height:1.72; margin-bottom:.9rem; }
.grc-foot-soc { display:flex; gap:.4rem; flex-wrap:wrap; }
.grc-foot-soc a { width:30px; height:30px; border:1px solid var(--grc-border2); border-radius:var(--grc-r); display:flex; align-items:center; justify-content:center; color:var(--grc-muted); transition:var(--grc-ease); }
.grc-foot-soc a:hover { border-color:var(--grc-gold); color:var(--grc-gold); }
.grc-foot-col-h { font-family:var(--grc-fb); font-size:.4rem; font-weight:700; text-transform:uppercase; letter-spacing:.28em; color:var(--grc-muted); margin-bottom:.9rem; }
.grc-foot-links { display:flex; flex-direction:column; gap:.46rem; }
.grc-foot-links a { font-size:.8rem; color:var(--grc-muted); transition:color .14s; }
.grc-foot-links a:hover { color:var(--grc-gold); }
.grc-foot-ct a { display:flex; align-items:flex-start; gap:.38rem; font-size:.78rem; color:var(--grc-muted); transition:color .14s; margin-bottom:.5rem; }
.grc-foot-ct a:hover { color:var(--grc-gold); }
.grc-foot-ct svg { color:var(--grc-muted); flex-shrink:0; margin-top:.04rem; }
.grc-foot-btm { border-top:1px solid var(--grc-border2); max-width:var(--grc-max); margin:0 auto; padding:1.2rem 2rem; display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.grc-foot-copy { font-size:.6rem; color:var(--grc-muted); }
.grc-foot-leg { display:flex; gap:1.1rem; flex-wrap:wrap; }
.grc-foot-leg a { font-size:.6rem; color:var(--grc-muted); transition:color .14s; }
.grc-foot-leg a:hover { color:var(--grc-gold); }
.grc-foot-disc { font-size:.56rem; color:var(--grc-muted); max-width:100%; line-height:1.7; margin-top:.8rem; padding-top:.8rem; border-top:1px solid var(--grc-border2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .grc-nav-links,.grc-nav-cta,.grc-lang-sw { display:none; }
  .grc-ham { display:flex; }
  .grc-courses-grid { grid-template-columns:1fr 1fr; }
  .grc-testi-grid { grid-template-columns:1fr; }
  .grc-steps-row { grid-template-columns:1fr 1fr; }
  .grc-steps-row::before { display:none; }
  .grc-price-trio { grid-template-columns:1fr; }
  .grc-instr-grid { grid-template-columns:1fr; }
  .grc-build-wrap,.grc-co-wrap,.grc-svc-layout { grid-template-columns:1fr; gap:2.5rem; }
  .grc-foot-top { grid-template-columns:1fr 1fr; gap:2rem; }
  .grc-stats-row { grid-template-columns:1fr 1fr; }
  .grc-shell,.grc-build-wrap,.grc-co-wrap { padding-left:1.4rem; padding-right:1.4rem; }
  .grc-svc-layout { padding:4rem 1.4rem; }
}
@media (max-width:640px) {
  .grc-courses-grid { grid-template-columns:1fr; }
  .grc-steps-row { grid-template-columns:1fr; }
  .grc-foot-top { grid-template-columns:1fr; }
  .grc-stats-row { grid-template-columns:repeat(2,1fr); }
}
