/*
Theme Name: RSL Consulting Group
Theme URI: https://rslgo.com
Author: ChadWorks
Description: Premium corporate theme for RSL Consulting Group - Strategic Leadership & Vision Planning
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rslgo
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Brand Colors — matched to Vision & Profit Worksheet PDF */
    --rsl-navy: #1B2A4A;
    --rsl-navy-deep: #0F1D33;
    --rsl-navy-mid: #243B5E;
    --rsl-navy-light: #2E4A72;
    --rsl-gold: #C8963E;
    --rsl-gold-light: #D4A94F;
    --rsl-gold-dark: #A67A2E;
    --rsl-teal: #2B7A6F;
    --rsl-teal-dark: #1A6050;
    --rsl-teal-light: #E8F4F0;
    --rsl-white: #FFFFFF;
    --rsl-cream: #FBF7F0;
    --rsl-cream-dark: #F0E8D8;
    --rsl-off-white: #F5F1EA;
    --rsl-light-gray: #E5E0D8;
    --rsl-mid-gray: #6B7280;
    --rsl-dark-gray: #374151;
    --rsl-text: #1A1A2E;
    --rsl-text-light: #4B5563;

    /* Typography — Serif for headings (matching PDF), clean sans for body */
    --rsl-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --rsl-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --rsl-section-pad: clamp(4rem, 8vw, 8rem);
    --rsl-container: 1200px;
    --rsl-gap: clamp(1rem, 2vw, 2rem);

    /* Transitions */
    --rsl-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --rsl-transition: 0.3s var(--rsl-ease);

    /* Radius */
    --rsl-radius: 8px;
    --rsl-radius-lg: 16px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--rsl-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--rsl-text);
    background: var(--rsl-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--rsl-gold);
    text-decoration: none;
    transition: color var(--rsl-transition);
}

a:hover {
    color: var(--rsl-gold-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rsl-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--rsl-navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
    margin-bottom: 1rem;
    color: var(--rsl-text-light);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.rsl-container {
    width: 100%;
    max-width: var(--rsl-container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.rsl-section {
    padding: var(--rsl-section-pad) 0;
}

.rsl-section--dark {
    background: var(--rsl-navy);
    color: var(--rsl-white);
}

.rsl-section--dark h2,
.rsl-section--dark h3,
.rsl-section--dark h4 {
    color: var(--rsl-white);
}

.rsl-section--dark p {
    color: rgba(255, 255, 255, 0.8);
}

.rsl-section--alt {
    background: var(--rsl-cream);
}

.rsl-section--teal {
    background: var(--rsl-teal);
    color: var(--rsl-white);
}

.rsl-section--teal h2,
.rsl-section--teal h3,
.rsl-section--teal h4 {
    color: var(--rsl-white);
}

.rsl-section--teal p {
    color: rgba(255, 255, 255, 0.85);
}

.rsl-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rsl-gold);
    margin-bottom: 1rem;
}

.rsl-section--dark .rsl-section-label {
    color: var(--rsl-gold-light);
}

.rsl-section-title {
    margin-bottom: 1.5rem;
}

.rsl-section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 640px;
    color: var(--rsl-text-light);
    line-height: 1.8;
}

.rsl-text-center {
    text-align: center;
}

.rsl-text-center .rsl-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.rsl-highlight {
    color: var(--rsl-gold);
}

.rsl-grid {
    display: grid;
    gap: var(--rsl-gap);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.rsl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--rsl-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--rsl-radius);
    cursor: pointer;
    transition: all var(--rsl-transition);
    text-decoration: none;
    white-space: nowrap;
}

.rsl-btn--primary {
    background: var(--rsl-gold);
    color: var(--rsl-white);
    border-color: var(--rsl-gold);
}

.rsl-btn--primary:hover {
    background: var(--rsl-gold-dark);
    border-color: var(--rsl-gold-dark);
    color: var(--rsl-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.35);
}

.rsl-btn--outline {
    background: transparent;
    color: var(--rsl-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.rsl-btn--outline:hover {
    background: var(--rsl-white);
    color: var(--rsl-navy);
    border-color: var(--rsl-white);
    transform: translateY(-2px);
}

.rsl-btn--outline-dark {
    background: transparent;
    color: var(--rsl-navy);
    border-color: var(--rsl-navy);
}

.rsl-btn--outline-dark:hover {
    background: var(--rsl-navy);
    color: var(--rsl-white);
    transform: translateY(-2px);
}

.rsl-btn--lg {
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
}

.rsl-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--rsl-transition);
}

.rsl-btn:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   ANIMATIONS — SCROLL REVEAL
   ========================================================================== */
.rsl-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--rsl-ease), transform 0.7s var(--rsl-ease);
}

.rsl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rsl-reveal--left {
    transform: translateX(-40px);
}

.rsl-reveal--left.is-visible {
    transform: translateX(0);
}

.rsl-reveal--right {
    transform: translateX(40px);
}

.rsl-reveal--right.is-visible {
    transform: translateX(0);
}

.rsl-reveal--scale {
    transform: scale(0.95);
}

.rsl-reveal--scale.is-visible {
    transform: scale(1);
}

/* Stagger children */
.rsl-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--rsl-ease), transform 0.5s var(--rsl-ease);
}

.rsl-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.rsl-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.rsl-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.rsl-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.rsl-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.rsl-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

.rsl-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.rsl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s var(--rsl-ease);
    background: transparent;
}

.rsl-header.is-scrolled {
    background: rgba(11, 29, 58, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.rsl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem clamp(1rem, 3vw, 2rem);
    max-width: var(--rsl-container);
    margin: 0 auto;
}

.rsl-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--rsl-white);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.rsl-logo__mark {
    width: 40px;
    height: 40px;
    background: var(--rsl-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: var(--rsl-white);
    letter-spacing: 0;
}

.rsl-logo__text span {
    color: var(--rsl-gold);
}

.rsl-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rsl-nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.rsl-nav__links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--rsl-transition);
    position: relative;
}

.rsl-nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rsl-gold);
    transition: width var(--rsl-transition);
}

.rsl-nav__links a:hover {
    color: var(--rsl-white);
}

.rsl-nav__links a:hover::after {
    width: 100%;
}

.rsl-nav__cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.rsl-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.rsl-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--rsl-white);
    margin: 5px 0;
    transition: all 0.3s var(--rsl-ease);
    border-radius: 2px;
}

.rsl-menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rsl-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.rsl-menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.rsl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--rsl-navy) 0%, var(--rsl-navy-mid) 50%, var(--rsl-navy-light) 100%);
    overflow: hidden;
}

.rsl-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Geometric animated shapes */
.rsl-hero__shape {
    position: absolute;
    border: 1px solid rgba(200, 150, 62, 0.12);
    border-radius: 50%;
    animation: rsl-float 20s infinite linear;
}

.rsl-hero__shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation-duration: 25s;
}

.rsl-hero__shape--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.rsl-hero__shape--3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    border-color: rgba(200, 150, 62, 0.08);
    animation-duration: 18s;
}

/* Animated grid lines */
.rsl-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 150, 62, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 150, 62, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: rsl-grid-shift 40s infinite linear;
}

@keyframes rsl-float {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes rsl-grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Gradient overlay */
.rsl-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(11, 29, 58, 0.6) 70%);
}

.rsl-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 6rem;
}

.rsl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(200, 150, 62, 0.15);
    border: 1px solid rgba(200, 150, 62, 0.3);
    border-radius: 100px;
    color: var(--rsl-gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: rsl-fadeIn 0.8s 0.2s both;
}

.rsl-hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rsl-gold);
    border-radius: 50%;
    animation: rsl-pulse 2s infinite;
}

@keyframes rsl-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes rsl-fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.rsl-hero__title {
    color: var(--rsl-white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: rsl-fadeIn 0.8s 0.4s both;
}

.rsl-hero__title em {
    font-style: normal;
    color: var(--rsl-gold);
    position: relative;
}

.rsl-hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rsl-gold);
    opacity: 0.4;
    border-radius: 2px;
}

.rsl-hero__desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 560px;
    animation: rsl-fadeIn 0.8s 0.6s both;
}

.rsl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: rsl-fadeIn 0.8s 0.8s both;
}

.rsl-hero__stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: rsl-fadeIn 0.8s 1s both;
}

.rsl-hero__stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--rsl-gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.rsl-hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
.rsl-problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rsl-problem__visual {
    position: relative;
}

.rsl-problem__card {
    background: var(--rsl-white);
    border-radius: var(--rsl-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(11, 29, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.rsl-problem__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rsl-gold) 0%, var(--rsl-gold-light) 100%);
}

.rsl-problem__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.rsl-problem__items li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--rsl-text-light);
    line-height: 1.6;
}

.rsl-problem__items li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(200, 150, 62, 0.12);
    border: 2px solid var(--rsl-gold);
    box-sizing: border-box;
}

.rsl-problem__answer h3 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.rsl-problem__answer p {
    font-size: 1.05rem;
    line-height: 1.85;
}

/* ==========================================================================
   FRAMEWORK SECTION
   ========================================================================== */
.rsl-framework {
    position: relative;
}

.rsl-framework__header {
    margin-bottom: 3.5rem;
}

.rsl-framework__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.rsl-framework__item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rsl-radius);
    padding: 2rem;
    transition: all var(--rsl-transition);
    position: relative;
    overflow: hidden;
}

.rsl-framework__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--rsl-gold);
    opacity: 0;
    transition: opacity var(--rsl-transition);
}

.rsl-framework__item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 150, 62, 0.3);
    transform: translateY(-3px);
}

.rsl-framework__item:hover::before {
    opacity: 1;
}

.rsl-framework__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--rsl-teal);
    color: var(--rsl-white);
    font-family: var(--rsl-font-body);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 8px;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.rsl-framework__item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.rsl-framework__item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   PRICING / VALUE LADDER
   ========================================================================== */
.rsl-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.rsl-pricing__card {
    background: var(--rsl-white);
    border-radius: var(--rsl-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(11, 29, 58, 0.06);
    border: 1px solid var(--rsl-light-gray);
    transition: all var(--rsl-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.rsl-pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
}

.rsl-pricing__card--featured {
    border-color: var(--rsl-gold);
    box-shadow: 0 8px 40px rgba(200, 150, 62, 0.15);
}

.rsl-pricing__card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    text-align: center;
    background: var(--rsl-gold);
    color: var(--rsl-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem;
    border-radius: 0 0 var(--rsl-radius) var(--rsl-radius);
}

.rsl-pricing__tier {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rsl-gold);
    margin-bottom: 0.5rem;
}

.rsl-pricing__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rsl-navy);
    margin-bottom: 0.75rem;
}

.rsl-pricing__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rsl-navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.rsl-pricing__price-note {
    font-size: 0.8rem;
    color: var(--rsl-mid-gray);
    margin-bottom: 1.5rem;
}

.rsl-pricing__desc {
    font-size: 0.9rem;
    color: var(--rsl-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rsl-pricing__features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.rsl-pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--rsl-text-light);
    border-bottom: 1px solid var(--rsl-off-white);
}

.rsl-pricing__features li:last-child {
    border-bottom: none;
}

.rsl-pricing__features li::before {
    content: '\2713';
    flex-shrink: 0;
    color: var(--rsl-gold);
    font-weight: 700;
    margin-top: 1px;
}

.rsl-pricing__card .rsl-btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   DIFFERENTIATORS
   ========================================================================== */
.rsl-diff__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rsl-diff__item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.rsl-diff__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--rsl-gold) 0%, var(--rsl-gold-dark) 100%);
    border-radius: var(--rsl-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rsl-white);
    font-size: 1.25rem;
    font-weight: 800;
}

.rsl-diff__text h4 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.rsl-diff__text p {
    font-size: 0.9rem;
    color: var(--rsl-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   ABOUT / CREDIBILITY
   ========================================================================== */
.rsl-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.rsl-about__image {
    position: relative;
    border-radius: var(--rsl-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--rsl-navy);
}

.rsl-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rsl-about__image-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--rsl-gold);
    border-radius: var(--rsl-radius-lg);
    z-index: -1;
}

.rsl-about__content h2 {
    margin-bottom: 1.5rem;
}

.rsl-about__content p {
    font-size: 1.05rem;
    line-height: 1.85;
}

.rsl-about__credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rsl-light-gray);
}

.rsl-about__credential {
    text-align: center;
}

.rsl-about__credential strong {
    display: block;
    font-size: 1.75rem;
    color: var(--rsl-gold);
    font-weight: 800;
}

.rsl-about__credential span {
    font-size: 0.8rem;
    color: var(--rsl-mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.rsl-cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--rsl-navy) 0%, var(--rsl-navy-mid) 100%);
    overflow: hidden;
}

.rsl-cta-banner__inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.rsl-cta-banner__inner h2 {
    color: var(--rsl-white);
    margin-bottom: 1rem;
}

.rsl-cta-banner__inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.rsl-cta-banner__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 150, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200, 150, 62, 0.08) 0%, transparent 50%);
}

/* ==========================================================================
   BLOG / LATEST INSIGHTS
   ========================================================================== */
.rsl-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rsl-post-card {
    background: var(--rsl-white);
    border-radius: var(--rsl-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.06);
    transition: all var(--rsl-transition);
    border: 1px solid var(--rsl-light-gray);
}

.rsl-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.1);
}

.rsl-post-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--rsl-off-white);
}

.rsl-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--rsl-ease);
}

.rsl-post-card:hover .rsl-post-card__image img {
    transform: scale(1.05);
}

.rsl-post-card__body {
    padding: 1.75rem;
}

.rsl-post-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--rsl-mid-gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.rsl-post-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.rsl-post-card__title a {
    color: var(--rsl-navy);
    text-decoration: none;
    transition: color var(--rsl-transition);
}

.rsl-post-card__title a:hover {
    color: var(--rsl-gold);
}

.rsl-post-card__excerpt {
    font-size: 0.9rem;
    color: var(--rsl-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.rsl-footer {
    background: var(--rsl-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.rsl-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.rsl-footer__brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.rsl-footer h4 {
    color: var(--rsl-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.rsl-footer__links {
    list-style: none;
}

.rsl-footer__links li {
    margin-bottom: 0.6rem;
}

.rsl-footer__links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--rsl-transition);
}

.rsl-footer__links a:hover {
    color: var(--rsl-gold);
}

.rsl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SINGLE POST & PAGE
   ========================================================================== */
.rsl-page-header {
    background: linear-gradient(135deg, var(--rsl-navy) 0%, var(--rsl-navy-mid) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.rsl-page-header h1 {
    color: var(--rsl-white);
    margin-bottom: 0.75rem;
}

.rsl-page-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}

.rsl-content-area {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 3vw, 2rem);
}

.rsl-content-area h2 { margin: 2rem 0 1rem; }
.rsl-content-area h3 { margin: 1.5rem 0 0.75rem; }

.rsl-content-area p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.rsl-content-area ul,
.rsl-content-area ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.rsl-content-area li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.rsl-content-area img {
    border-radius: var(--rsl-radius);
    margin: 2rem 0;
}

.rsl-content-area blockquote {
    border-left: 4px solid var(--rsl-gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--rsl-off-white);
    border-radius: 0 var(--rsl-radius) var(--rsl-radius) 0;
    font-style: italic;
    color: var(--rsl-text);
}

/* ==========================================================================
   BLOG ARCHIVE
   ========================================================================== */
.rsl-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.rsl-404 {
    text-align: center;
    padding: 10rem 0;
}

.rsl-404__number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--rsl-gold);
    opacity: 0.2;
    line-height: 1;
}

.rsl-404 h1 {
    margin: 1rem 0;
}

.rsl-404 p {
    margin-bottom: 2rem;
}

/* ==========================================================================
   WOOCOMMERCE OVERRIDES
   ========================================================================== */
.woocommerce .products ul,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product a img {
    border-radius: var(--rsl-radius);
}

.woocommerce ul.products li.product .price {
    color: var(--rsl-navy);
    font-weight: 700;
    font-size: 1.25rem;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .checkout-button,
.woocommerce #payment #place_order {
    background: var(--rsl-gold) !important;
    color: var(--rsl-white) !important;
    border: none !important;
    border-radius: var(--rsl-radius) !important;
    padding: 0.875rem 2rem !important;
    font-weight: 600 !important;
    font-family: var(--rsl-font-body) !important;
    transition: all var(--rsl-transition) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .cart .button:hover,
.woocommerce .checkout-button:hover,
.woocommerce #payment #place_order:hover {
    background: var(--rsl-gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.35);
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--rsl-gold) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--rsl-gold) !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .rsl-hero__stats {
        gap: 2rem;
    }

    .rsl-problem__grid,
    .rsl-about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rsl-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .rsl-nav__links,
    .rsl-nav__cta {
        display: none;
    }

    .rsl-menu-toggle {
        display: block;
    }

    /* Mobile menu */
    .rsl-nav.is-open .rsl-nav__links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 29, 58, 0.98);
        backdrop-filter: blur(12px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .rsl-nav.is-open .rsl-nav__links a {
        font-size: 1.25rem;
        color: var(--rsl-white);
    }

    .rsl-nav.is-open .rsl-nav__cta {
        display: inline-flex;
        position: fixed;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }

    .rsl-hero__content {
        padding-top: 5rem;
    }

    .rsl-hero__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .rsl-hero__stat {
        min-width: 120px;
    }

    .rsl-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .rsl-diff__grid {
        grid-template-columns: 1fr;
    }

    .rsl-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rsl-footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .rsl-posts__grid,
    .rsl-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rsl-hero__title {
        font-size: 2rem;
    }

    .rsl-hero__actions {
        flex-direction: column;
    }

    .rsl-hero__actions .rsl-btn {
        width: 100%;
        justify-content: center;
    }

    .rsl-about__credentials {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   WORDPRESS ADMIN BAR OFFSET
   ========================================================================== */
body.admin-bar .rsl-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .rsl-header {
        top: 46px;
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
:focus-visible {
    outline: 2px solid var(--rsl-gold);
    outline-offset: 2px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rsl-gold);
    color: var(--rsl-white);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--rsl-radius) var(--rsl-radius);
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    color: var(--rsl-white);
}

/* ==========================================================================
   BRAND ELEMENTS — Diagonal Lines, Diamond, PDF-matched patterns
   ========================================================================== */

/* Diagonal gold lines — decorative element from cover page */
.rsl-diag-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.rsl-diag-lines::before,
.rsl-diag-lines::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 40px;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, var(--rsl-gold), transparent);
    opacity: 0.25;
    transform: rotate(25deg);
    transform-origin: top right;
}

.rsl-diag-lines::after {
    right: 60px;
    opacity: 0.15;
}

.rsl-diag-line {
    position: absolute;
    top: -50%;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, var(--rsl-gold), transparent);
    transform: rotate(25deg);
    transform-origin: top right;
}

.rsl-diag-line:nth-child(1) { right: 80px; opacity: 0.12; }
.rsl-diag-line:nth-child(2) { right: 100px; opacity: 0.08; }
.rsl-diag-line:nth-child(3) { right: 130px; opacity: 0.05; }

/* Diamond brand mark */
.rsl-diamond {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--rsl-gold);
    transform: rotate(45deg);
}

.rsl-diamond--lg {
    width: 24px;
    height: 24px;
}

.rsl-diamond--sm {
    width: 10px;
    height: 10px;
}

/* Gold separator line — matching PDF horizontal rules */
.rsl-gold-rule {
    width: 80px;
    height: 3px;
    background: var(--rsl-gold);
    border: none;
    margin: 1.5rem 0;
}

.rsl-text-center .rsl-gold-rule {
    margin-left: auto;
    margin-right: auto;
}

/* Teal accent bar — matching PDF "THE 10 VISION ELEMENTS" style */
.rsl-teal-bar {
    background: var(--rsl-teal);
    color: var(--rsl-white);
    padding: 0.75rem 1.5rem;
    font-family: var(--rsl-font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--rsl-radius) var(--rsl-radius) 0 0;
}

/* Teal left-border callout — matching PDF guiding questions boxes */
.rsl-callout {
    border-left: 4px solid var(--rsl-teal);
    background: var(--rsl-teal-light);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--rsl-radius) var(--rsl-radius) 0;
}

.rsl-callout--gold {
    border-left-color: var(--rsl-gold);
    background: var(--rsl-cream);
    font-style: italic;
}

/* Value ladder connector */
.rsl-value-ladder {
    position: relative;
    padding-left: 2rem;
}

.rsl-value-ladder::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--rsl-gold) 0%, var(--rsl-teal) 100%);
}

.rsl-value-ladder__step {
    position: relative;
    padding: 1rem 0;
}

.rsl-value-ladder__step::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--rsl-gold);
    margin-left: -4px;
}

/* Process steps — matching PDF "YOUR NEXT STEPS" numbered circles */
.rsl-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rsl-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.rsl-step__number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--rsl-gold);
    color: var(--rsl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--rsl-font-body);
    font-size: 0.95rem;
}

.rsl-step__content h4 {
    font-family: var(--rsl-font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.rsl-step__content p {
    font-size: 0.9rem;
    margin: 0;
}

/* Comparison table — matching PDF comparable products table */
.rsl-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.rsl-compare-table th {
    background: var(--rsl-navy);
    color: var(--rsl-white);
    padding: 0.875rem 1.25rem;
    text-align: left;
    font-family: var(--rsl-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rsl-compare-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--rsl-light-gray);
    font-size: 0.9rem;
    color: var(--rsl-text-light);
}

.rsl-compare-table tr:nth-child(even) td {
    background: var(--rsl-cream);
}

.rsl-compare-table tr.is-highlighted td {
    background: rgba(200, 150, 62, 0.08);
    font-weight: 600;
    color: var(--rsl-navy);
}

/* Hero update: use PDF cover-page navy gradient + diagonal lines */
.rsl-hero {
    background: linear-gradient(135deg, var(--rsl-navy-deep) 0%, var(--rsl-navy) 50%, var(--rsl-navy-mid) 100%);
}

/* ==========================================================================
   CONTACT FORMS — Toggle Panel
   ========================================================================== */
.rsl-contact {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rsl-radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    backdrop-filter: blur(8px);
}

/* Toggle buttons */
.rsl-contact__toggle {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--rsl-radius);
    padding: 4px;
    margin-bottom: 2rem;
}

.rsl-contact__toggle-btn {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-family: var(--rsl-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    border-radius: calc(var(--rsl-radius) - 2px);
    cursor: pointer;
    transition: color 0.3s var(--rsl-ease);
    position: relative;
    z-index: 2;
}

.rsl-contact__toggle-btn.is-active {
    color: var(--rsl-navy);
}

.rsl-contact__toggle-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--rsl-gold);
    border-radius: calc(var(--rsl-radius) - 2px);
    transition: transform 0.35s var(--rsl-ease);
    z-index: 1;
}

.rsl-contact__toggle-indicator.is-right {
    transform: translateX(100%);
}

/* Form visibility */
.rsl-contact__form {
    display: none;
}

.rsl-contact__form.is-active {
    display: block;
    animation: rsl-formFadeIn 0.35s var(--rsl-ease);
}

@keyframes rsl-formFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form grid */
.rsl-form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rsl-form-grid--2 { grid-template-columns: 1fr 1fr; }
.rsl-form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 600px) {
    .rsl-form-grid--2,
    .rsl-form-grid--3 {
        grid-template-columns: 1fr;
    }
}

/* Section labels within form */
.rsl-form-section-label {
    font-family: var(--rsl-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rsl-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(200, 150, 62, 0.25);
}

.rsl-form-section-label:first-of-type {
    margin-top: 0;
}

/* Fields */
.rsl-form-field {
    margin-bottom: 0.5rem;
}

.rsl-form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.rsl-required {
    color: var(--rsl-gold);
}

.rsl-form-field input,
.rsl-form-field select,
.rsl-form-field textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: var(--rsl-font-body);
    font-size: 0.9rem;
    color: var(--rsl-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rsl-radius);
    transition: border-color 0.25s var(--rsl-ease), background 0.25s var(--rsl-ease);
    outline: none;
}

.rsl-form-field input::placeholder,
.rsl-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.rsl-form-field input:focus,
.rsl-form-field select:focus,
.rsl-form-field textarea:focus {
    border-color: var(--rsl-gold);
    background: rgba(255, 255, 255, 0.08);
}

.rsl-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8963E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.rsl-form-field select option {
    background: var(--rsl-navy);
    color: var(--rsl-white);
}

.rsl-form-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Validation error state */
.rsl-form-field.has-error input,
.rsl-form-field.has-error select,
.rsl-form-field.has-error textarea {
    border-color: #ff4466;
}

.rsl-form-field.has-error label {
    color: #ff8899;
}

/* Submit button */
.rsl-contact__submit {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

.rsl-contact__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Success / Error messages */
.rsl-contact__message {
    padding: 1rem 1.5rem;
    border-radius: var(--rsl-radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.rsl-contact__message--success {
    background: rgba(43, 122, 111, 0.2);
    border: 1px solid var(--rsl-teal);
    color: #7eddc8;
}

.rsl-contact__message--error {
    background: rgba(255, 68, 102, 0.15);
    border: 1px solid rgba(255, 68, 102, 0.4);
    color: #ff8899;
}
