/* ============================================================
   RETRO GYM SOLUTIONS — SCOREAPP LONG-FORM LANDING PAGE
   v1.0.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

/* ── RESET (scoped) ── */
.rgsa-wrap *,
.rgsa-wrap *::before,
.rgsa-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   ROOT TOKENS
   ============================================================ */
.rgsa-wrap {
    --rg-bg:        #0b0717;
    --rg-bg2:       #130b25;
    --rg-bg3:       #1a1035;
    --rg-border:    rgba(140,80,255,0.25);
    --rg-cyan:      #00f0ff;
    --rg-cyan2:     #00b8c4;
    --rg-pink:      #ff2d9b;
    --rg-magenta:   #c91fff;
    --rg-purple:    #8040ff;
    --rg-text:      #e8deff;
    --rg-muted:     rgba(180,160,220,0.6);
    --rg-font-h:    'Bebas Neue', 'Impact', sans-serif;
    --rg-font-b:    'Barlow', 'Trebuchet MS', sans-serif;
    --rg-font-c:    'Barlow Condensed', sans-serif;

    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: var(--rg-bg);
    color: var(--rg-text);
    font-family: var(--rg-font-b);
    font-size: 17px;
    line-height: 1.6;
}

/* ── WordPress theme override ── */
.rgsa-wrap a { color: var(--rg-cyan); text-decoration: none; }
.rgsa-wrap a:hover { color: var(--rg-pink); }
.rgsa-wrap img { max-width: 100%; height: auto; display: block; }
.rgsa-wrap button { cursor: pointer; }

/* ============================================================
   ATMOSPHERE
   ============================================================ */
.rgsa-scanlines {
    position: fixed; inset: 0; z-index: 999; pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 3px,
        rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
    );
}
.rgsa-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,240,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,240,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
}
.rgsa-glow {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none; z-index: 0;
}
.rgsa-glow-top {
    width: 800px; height: 500px;
    background: rgba(160,40,255,0.22);
    top: -120px; left: 50%; transform: translateX(-50%);
    animation: rgPulse 8s ease-in-out infinite alternate;
}
.rgsa-glow-mid {
    width: 600px; height: 400px;
    background: rgba(0,200,255,0.10);
    top: 40%; right: -150px;
    animation: rgPulse 10s ease-in-out infinite alternate-reverse;
}
.rgsa-glow-bot {
    width: 700px; height: 400px;
    background: rgba(255,45,155,0.12);
    bottom: 200px; left: -150px;
    animation: rgPulse 9s ease-in-out infinite alternate;
}
.rgsa-glow-form {
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(140,40,255,0.3) 0%, transparent 70%);
    top: -100px; left: 50%; transform: translateX(-50%);
    filter: blur(80px);
}
@keyframes rgPulse {
    from { opacity: 0.6; transform: scale(1) translateX(-50%); }
    to   { opacity: 1;   transform: scale(1.12) translateX(-50%); }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.rgsa-container {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto;
    padding: 0 32px;
}
.rgsa-container-narrow {
    max-width: 800px;
}
.rgsa-section {
    position: relative;
    padding: 100px 0;
}

/* ============================================================
   STICKY NAV
   ============================================================ */
.rgsa-nav {
    position: sticky; top: 0; left: 0; right: 0;
    z-index: 500;
    background: rgba(11,7,23,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rg-border);
    padding: 12px 32px;
}
.rgsa-nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
}
.rgsa-nav-logo {
    height: 38px; width: auto;
    filter: drop-shadow(0 0 8px rgba(0,240,255,0.4));
}
.rgsa-nav-cta {
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 13px;
    letter-spacing: 2px;
    color: var(--rg-bg) !important;
    background: linear-gradient(135deg, var(--rg-cyan), var(--rg-cyan2));
    padding: 9px 20px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(0,240,255,0.3);
}
.rgsa-nav-cta:hover {
    background: linear-gradient(135deg, var(--rg-pink), var(--rg-magenta));
    box-shadow: 0 0 30px rgba(255,45,155,0.5);
    color: white !important;
    transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.rgsa-hero {
    min-height: 92vh;
    display: flex; align-items: center;
    padding: 80px 0 100px;
    text-align: center;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(130,30,255,0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 90%, rgba(255,45,155,0.12) 0%, transparent 60%),
        var(--rg-bg);
}
.rgsa-hero-badge {
    display: inline-block;
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 12px; letter-spacing: 3px;
    color: var(--rg-cyan);
    border: 1px solid var(--rg-cyan);
    padding: 6px 18px; margin-bottom: 32px;
    animation: heroFadeUp 0.8s ease both;
}
.rgsa-hero-logo {
    margin: 0 auto 40px;
    height: 70px; width: auto;
    filter: drop-shadow(0 0 20px rgba(0,240,255,0.5));
    animation: heroFadeUp 0.9s ease both;
}
.rgsa-hero-h1 {
    font-family: var(--rg-font-h);
    font-size: clamp(52px, 10vw, 110px);
    line-height: 0.92;
    letter-spacing: 2px;
    color: var(--rg-text);
    margin-bottom: 28px;
    animation: heroFadeUp 1s ease both;
}
.rgsa-hero-sub {
    font-size: clamp(16px, 2.2vw, 21px);
    color: var(--rg-muted);
    max-width: 620px; margin: 0 auto 40px;
    line-height: 1.6;
    animation: heroFadeUp 1.1s ease both;
}
.rgsa-hero-sub strong { color: var(--rg-text); }
.rgsa-hero-bullets {
    display: inline-flex; flex-direction: column;
    gap: 10px; margin: 0 auto 44px;
    text-align: left;
    animation: heroFadeUp 1.2s ease both;
}
.rgsa-hb-item {
    font-family: var(--rg-font-c);
    font-size: 16px; font-weight: 600;
    color: var(--rg-text); letter-spacing: 0.5px;
}
.rgsa-check {
    color: var(--rg-cyan);
    margin-right: 8px;
    text-shadow: 0 0 8px var(--rg-cyan);
}
.rgsa-hero-proof {
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
    font-size: 14px; color: var(--rg-muted);
    margin-top: 20px;
    animation: heroFadeUp 1.5s ease both;
}
.rgsa-proof-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rg-cyan);
    box-shadow: 0 0 8px var(--rg-cyan);
    animation: rgBlink 1.5s ease infinite;
}
@keyframes rgBlink {
    0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.rgsa-hero-proof strong { color: var(--rg-text); }
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.rgsa-btn {
    display: inline-block;
    font-family: var(--rg-font-h);
    letter-spacing: 2px; font-size: 20px;
    padding: 18px 48px;
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    transition: all 0.25s;
    border: none; outline: none;
    text-decoration: none !important;
    position: relative; overflow: hidden;
}
.rgsa-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.07);
    opacity: 0; transition: opacity 0.2s;
}
.rgsa-btn:hover::after { opacity: 1; }
.rgsa-btn-hero {
    background: linear-gradient(135deg, var(--rg-pink) 0%, var(--rg-magenta) 100%);
    color: white !important;
    box-shadow: 0 0 50px rgba(255,45,155,0.5), 0 4px 30px rgba(201,31,255,0.4);
    font-size: 22px;
}
.rgsa-btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 70px rgba(255,45,155,0.7), 0 8px 40px rgba(201,31,255,0.6);
}
.rgsa-btn-arrow { margin-left: 8px; }
.rgsa-btn-submit {
    width: 100%; margin-top: 10px;
    background: linear-gradient(135deg, var(--rg-pink) 0%, var(--rg-magenta) 100%);
    color: white !important;
    font-size: 20px;
    box-shadow: 0 0 40px rgba(255,45,155,0.45);
}
.rgsa-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(255,45,155,0.65);
}

/* ============================================================
   TICKER
   ============================================================ */
.rgsa-ticker-wrap {
    position: relative; z-index: 2;
    background: linear-gradient(135deg, var(--rg-pink), var(--rg-magenta));
    overflow: hidden; padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rgsa-ticker {
    display: flex; gap: 40px; white-space: nowrap;
    animation: rgTicker 25s linear infinite;
    width: max-content;
}
.rgsa-ticker span {
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 13px;
    letter-spacing: 2px; color: white;
}
.rgsa-ticker-dot { color: rgba(255,255,255,0.5) !important; }
@keyframes rgTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER ELEMENTS
   ============================================================ */
.rgsa-section-badge {
    display: inline-block;
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 11px; letter-spacing: 4px;
    padding: 5px 16px; margin-bottom: 24px;
}
.rgsa-badge-cyan {
    color: var(--rg-cyan);
    border: 1px solid var(--rg-cyan);
    box-shadow: 0 0 12px rgba(0,240,255,0.15);
}
.rgsa-badge-pink {
    color: var(--rg-pink);
    border: 1px solid var(--rg-pink);
    box-shadow: 0 0 12px rgba(255,45,155,0.15);
}
.rgsa-section-h2 {
    font-family: var(--rg-font-h);
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95; letter-spacing: 1.5px;
    margin-bottom: 28px;
}
.rgsa-section-intro {
    font-size: 18px; color: var(--rg-muted);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 60px;
}
.rgsa-gradient-text {
    background: linear-gradient(135deg, var(--rg-cyan) 0%, var(--rg-purple) 50%, var(--rg-cyan) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0,240,255,0.3));
}
.rgsa-gradient-text-pink {
    background: linear-gradient(135deg, var(--rg-pink) 0%, var(--rg-magenta) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(255,45,155,0.3));
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.rgsa-pain {
    background: linear-gradient(180deg, var(--rg-bg) 0%, var(--rg-bg2) 50%, var(--rg-bg) 100%);
}
.rgsa-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.rgsa-pain-card {
    background: rgba(255,45,155,0.06);
    border: 1px solid rgba(255,45,155,0.2);
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}
.rgsa-pain-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--rg-pink);
    transition: height 0.3s;
}
.rgsa-pain-card:hover::before { height: 100%; }
.rgsa-pain-card:hover {
    border-color: var(--rg-pink);
    background: rgba(255,45,155,0.1);
    transform: translateY(-4px);
}
.rgsa-pain-icon { font-size: 32px; margin-bottom: 16px; }
.rgsa-pain-card h3 {
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 18px;
    letter-spacing: 1px;
    color: var(--rg-text); margin-bottom: 10px;
}
.rgsa-pain-card p { color: var(--rg-muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.rgsa-solution {
    background: var(--rg-bg);
}
.rgsa-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.rgsa-sol-card {
    background: rgba(0,240,255,0.04);
    border: 1px solid var(--rg-border);
    padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: all 0.3s;
}
.rgsa-sol-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rg-cyan), var(--rg-purple));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
}
.rgsa-sol-card:hover::after { transform: scaleX(1); }
.rgsa-sol-card:hover {
    border-color: rgba(0,240,255,0.4);
    background: rgba(0,240,255,0.08);
    transform: translateY(-4px);
}
.rgsa-sol-num {
    font-family: var(--rg-font-h);
    font-size: 60px; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,240,255,0.2);
    position: absolute; top: 16px; right: 20px;
}
.rgsa-sol-card h3 {
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 18px;
    letter-spacing: 1px; margin-bottom: 12px;
    color: var(--rg-cyan);
}
.rgsa-sol-card p { color: var(--rg-muted); font-size: 15px; line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.rgsa-how {
    background: linear-gradient(180deg, var(--rg-bg) 0%, var(--rg-bg2) 100%);
}
.rgsa-steps {
    display: flex; flex-direction: column;
    gap: 0; max-width: 680px;
}
.rgsa-step {
    display: flex; gap: 32px; align-items: flex-start;
    position: relative;
}
.rgsa-step-num {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--rg-pink), var(--rg-magenta));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--rg-font-h); font-size: 30px; color: white;
    position: relative; z-index: 1;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    box-shadow: 0 0 30px rgba(255,45,155,0.4);
}
.rgsa-step-line {
    position: absolute;
    left: 32px; top: 64px;
    width: 1px; height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--rg-pink) 0%, rgba(140,40,255,0.3) 100%);
    z-index: 0;
}
.rgsa-step-line-end { background: transparent; }
.rgsa-step-content {
    padding: 8px 0 48px;
}
.rgsa-step-content h3 {
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 22px; letter-spacing: 1px;
    color: var(--rg-text); margin-bottom: 8px;
}
.rgsa-step-content p { color: var(--rg-muted); font-size: 16px; line-height: 1.65; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.rgsa-proof {
    background: var(--rg-bg);
}
.rgsa-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-bottom: 64px;
}
.rgsa-testi-card {
    background: var(--rg-bg2);
    border: 1px solid var(--rg-border);
    padding: 36px 32px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.rgsa-testi-card:hover {
    border-color: rgba(0,240,255,0.4);
    transform: translateY(-4px);
}
.rgsa-testi-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 100px; line-height: 1;
    color: rgba(0,240,255,0.07);
    position: absolute; top: 10px; left: 20px;
}
.rgsa-testi-stars {
    color: #ffd700; font-size: 16px;
    letter-spacing: 2px; margin-bottom: 18px;
    text-shadow: 0 0 8px rgba(255,215,0,0.4);
}
.rgsa-testi-card > p {
    color: var(--rg-text); font-size: 15px;
    line-height: 1.7; font-style: italic;
    margin-bottom: 24px; position: relative; z-index: 1;
}
.rgsa-testi-author {
    display: flex; align-items: center; gap: 14px;
}
.rgsa-testi-avatar {
    width: 44px; height: 44px; border-radius: 0;
    background: linear-gradient(135deg, var(--rg-purple), var(--rg-pink));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--rg-font-h); font-size: 15px; color: white;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
    flex-shrink: 0;
}
.rgsa-testi-author strong {
    display: block; font-size: 15px; color: var(--rg-text);
}
.rgsa-testi-author span {
    font-size: 13px; color: var(--rg-muted);
}
.rgsa-stats-bar {
    display: flex; align-items: center;
    justify-content: center; gap: 0;
    background: var(--rg-bg2);
    border: 1px solid var(--rg-border);
    flex-wrap: wrap;
}
.rgsa-stat {
    text-align: center; padding: 36px 48px;
    flex: 1; min-width: 140px;
}
.rgsa-stat-num {
    font-family: var(--rg-font-h);
    font-size: 52px; line-height: 1;
    background: linear-gradient(135deg, var(--rg-cyan), var(--rg-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.rgsa-stat-num span {
    font-size: 28px;
}
.rgsa-stat-label {
    font-family: var(--rg-font-c);
    font-weight: 600; font-size: 13px; letter-spacing: 2px;
    color: var(--rg-muted); text-transform: uppercase;
}
.rgsa-stat-divider {
    width: 1px; height: 60px;
    background: var(--rg-border);
    align-self: center;
}

/* ============================================================
   EQUIPMENT GRID
   ============================================================ */
.rgsa-equipment {
    background: linear-gradient(180deg, var(--rg-bg2) 0%, var(--rg-bg3) 50%, var(--rg-bg2) 100%);
}
.rgsa-equip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.rgsa-equip-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--rg-border);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.rgsa-equip-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,45,155,0.06), rgba(0,240,255,0.06));
    opacity: 0; transition: opacity 0.3s;
}
.rgsa-equip-card:hover {
    border-color: rgba(255,45,155,0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255,45,155,0.15);
}
.rgsa-equip-card:hover::after { opacity: 1; }
.rgsa-equip-icon { font-size: 36px; margin-bottom: 16px; }
.rgsa-equip-card h3 {
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 18px; letter-spacing: 1px;
    color: var(--rg-text); margin-bottom: 10px;
    position: relative; z-index: 1;
}
.rgsa-equip-card p {
    color: var(--rg-muted); font-size: 14px; line-height: 1.6;
    position: relative; z-index: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.rgsa-faq {
    background: var(--rg-bg);
}
.rgsa-faq-list {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid var(--rg-border);
}
.rgsa-faq-item {
    border-bottom: 1px solid var(--rg-border);
    transition: background 0.2s;
}
.rgsa-faq-item:last-child { border-bottom: none; }
.rgsa-faq-item.open {
    background: rgba(0,240,255,0.04);
}
.rgsa-faq-q {
    width: 100%; text-align: left;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
    background: transparent; border: none;
    padding: 24px 28px;
    font-family: var(--rg-font-c);
    font-weight: 700; font-size: 17px; letter-spacing: 0.5px;
    color: var(--rg-text);
    transition: color 0.2s;
}
.rgsa-faq-q:hover, .rgsa-faq-item.open .rgsa-faq-q {
    color: var(--rg-cyan);
}
.rgsa-faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--rg-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; line-height: 1;
    color: var(--rg-cyan);
    transition: all 0.3s;
}
.rgsa-faq-item.open .rgsa-faq-icon {
    background: var(--rg-cyan);
    color: var(--rg-bg);
    content: '−';
    transform: rotate(45deg);
}
.rgsa-faq-a {
    display: none;
    padding: 0 28px 24px;
}
.rgsa-faq-a p {
    color: var(--rg-muted); font-size: 16px; line-height: 1.7;
}
.rgsa-faq-item.open .rgsa-faq-a { display: block; }

/* ============================================================
   FINAL CTA / FORM
   ============================================================ */
.rgsa-cta-section {
    background: linear-gradient(180deg, var(--rg-bg) 0%, var(--rg-bg3) 100%);
    text-align: center;
}
.rgsa-cta-box {
    position: relative; z-index: 2;
    background: var(--rg-bg2);
    border: 1px solid rgba(140,40,255,0.5);
    padding: 72px 64px;
    box-shadow:
        0 0 80px rgba(140,40,255,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05);
}
.rgsa-cta-box::before, .rgsa-cta-box::after {
    content: ''; position: absolute;
    width: 20px; height: 20px;
    border-color: var(--rg-cyan); border-style: solid;
}
.rgsa-cta-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.rgsa-cta-box::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.rgsa-cta-h2 {
    font-family: var(--rg-font-h);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 0.95; letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.rgsa-cta-sub {
    font-size: 17px; color: var(--rg-muted);
    max-width: 560px; margin: 0 auto 44px;
    line-height: 1.65;
}

/* ── FORM ── */
.rgsa-form { text-align: left; }
.rgsa-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 16px;
}
.rgsa-field { display: flex; flex-direction: column; gap: 7px; }
.rgsa-field-full { margin-bottom: 20px; }
.rgsa-field label {
    font-family: var(--rg-font-c);
    font-weight: 600; font-size: 13px; letter-spacing: 2px;
    color: var(--rg-cyan);
}
.rgsa-field input {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--rg-border);
    color: var(--rg-text);
    font-family: var(--rg-font-b); font-size: 16px;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    border-radius: 0;
    width: 100%;
}
.rgsa-field input::placeholder { color: rgba(180,160,220,0.35); }
.rgsa-field input:focus {
    border-color: var(--rg-cyan);
    box-shadow: 0 0 20px rgba(0,240,255,0.15);
}
.rgsa-msg {
    padding: 14px 18px; margin: 0 0 16px;
    font-family: var(--rg-font-c); font-size: 15px; font-weight: 600;
    letter-spacing: 0.5px;
}
.rgsa-msg.success {
    background: rgba(0,240,255,0.1);
    border: 1px solid var(--rg-cyan);
    color: var(--rg-cyan);
}
.rgsa-msg.error {
    background: rgba(255,45,155,0.1);
    border: 1px solid var(--rg-pink);
    color: var(--rg-pink);
}
.rgsa-form-note {
    text-align: center; margin-top: 14px;
    font-size: 13px; color: var(--rg-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.rgsa-footer {
    position: relative; z-index: 2;
    background: #060410;
    border-top: 1px solid var(--rg-border);
    padding: 48px 32px;
    text-align: center;
}
.rgsa-footer-logo {
    height: 40px; width: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 8px rgba(0,240,255,0.3));
    opacity: 0.8;
}
.rgsa-footer p {
    color: var(--rg-muted); font-size: 13px;
    margin-bottom: 6px;
}
.rgsa-footer a { color: var(--rg-cyan); }
.rgsa-footer a:hover { color: var(--rg-pink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .rgsa-section { padding: 70px 0; }
    .rgsa-container { padding: 0 20px; }
    .rgsa-nav { padding: 10px 20px; }
    .rgsa-nav-logo { height: 30px; }
    .rgsa-nav-cta { font-size: 11px; padding: 8px 14px; }
    .rgsa-cta-box { padding: 44px 24px; }
    .rgsa-form-row { grid-template-columns: 1fr; }
    .rgsa-stats-bar { flex-direction: column; }
    .rgsa-stat-divider { width: 60px; height: 1px; }
    .rgsa-hero { min-height: unset; padding: 60px 0 70px; }
    .rgsa-steps { gap: 0; }
    .rgsa-testi-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
    .rgsa-btn { font-size: 16px; padding: 16px 32px; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); }
    .rgsa-hero-bullets { gap: 8px; }
    .rgsa-section-h2 { font-size: 34px; }
    .rgsa-pain-grid,
    .rgsa-solution-grid,
    .rgsa-equip-grid,
    .rgsa-testimonials { grid-template-columns: 1fr; }
}
