/* ============================================
   MONEYSAVER LANDING PAGE
   Erico Rocha Style - Clean, Direct, Persuasive
   MoneyBelt Brand Colors
   ============================================ */

:root {
    --ms-navy: #001f54;
    --ms-navy-light: #003d8f;
    --ms-green: #00c853;
    --ms-green-dark: #00a843;
    --ms-blue: #5b9bd5;
    --ms-gold: #c9a84c;
    --ms-gold-light: #e0c068;
    --ms-text: #1a1a2e;
    --ms-text-muted: #4a5568;
    --ms-bg-light: #f0f8ff;
    --ms-bg-blue: #e3f2fd;
    --ms-red: #e53935;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ms-text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.ms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.ms-topbar {
    background: var(--ms-navy);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.ms-topbar-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.ms-topbar-cta {
    color: var(--ms-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.ms-topbar-cta:hover {
    color: var(--ms-gold-light);
}

/* ===== NAV ===== */
.ms-nav {
    position: fixed;
    top: 38px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--ms-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.ms-nav-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.ms-nav-logo {
    text-decoration: none;
}

.ms-nav-logo h2 {
    font-weight: 700;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--ms-navy), var(--ms-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ms-nav-btn {
    background: linear-gradient(135deg, var(--ms-green), var(--ms-green-dark));
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.ms-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

/* ===== HERO ===== */
.ms-hero {
    padding: 60px 0 80px;
    background: linear-gradient(165deg, var(--ms-bg-light) 0%, var(--ms-bg-blue) 50%, var(--ms-bg-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ms-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ms-hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.ms-hp1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--ms-green), transparent 70%);
    top: -100px;
    right: -100px;
    animation: msFloat 8s ease-in-out infinite;
}

.ms-hp2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--ms-blue), transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: msFloat 10s ease-in-out infinite reverse;
}

.ms-hp3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--ms-gold), transparent 70%);
    top: 40%;
    left: 50%;
    animation: msFloat 12s ease-in-out infinite;
}

@keyframes msFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

.ms-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ms-navy), var(--ms-navy-light));
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px rgba(0, 31, 84, 0.3);
}

.ms-hero-badge i {
    color: var(--ms-gold);
    font-size: 18px;
}

.ms-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ms-navy);
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.ms-highlight {
    background: linear-gradient(135deg, var(--ms-gold), var(--ms-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ms-hero-sub {
    font-size: 1.15rem;
    color: var(--ms-text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
}

.ms-hero-sub strong {
    color: var(--ms-navy);
}

/* ===== MAIN CTA ===== */
.ms-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--ms-green), var(--ms-green-dark));
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
    position: relative;
    overflow: hidden;
}

.ms-cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: msShimmer 2.5s ease-in-out infinite;
}

@keyframes msShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ms-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.6);
}

.ms-hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ms-hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ms-text-muted);
    font-weight: 500;
}

.ms-hero-trust i {
    color: var(--ms-green);
}

/* ===== SECTION TITLES ===== */
.ms-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ms-navy);
    line-height: 1.3;
    margin-bottom: 32px;
}

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

.ms-text-muted {
    color: var(--ms-text-muted);
    font-weight: 500;
}

/* ===== PAIN SECTION ===== */
.ms-pain {
    padding: 80px 0;
    background: #ffffff;
}

.ms-pain-intro {
    font-size: 1.1rem;
    color: var(--ms-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.ms-pain-intro strong {
    color: var(--ms-navy);
}

/* Check Lists */
.ms-check-list {
    display: flex;
    flex-direction: column;
    
    margin-bottom: 28px;
}

.ms-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    
}

.ms-check-green .ms-check-item i {
    color: var(--ms-green);
    font-size: 18px;
    min-width: 20px;
}

.ms-check-red .ms-check-item i {
    color: var(--ms-red);
    font-size: 18px;
    min-width: 20px;
}

.ms-check-centered {
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ms-pain-why {
    background: var(--ms-bg-light);
    border-left: 4px solid var(--ms-gold);
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
}

.ms-pain-why p {
    font-size: 1.1rem;
    color: var(--ms-text-muted);
    margin-bottom: 8px;
}

.ms-pain-answer {
    font-size: 1.15rem !important;
    color: var(--ms-navy) !important;
    font-weight: 600;
    line-height: 1.6;
}

/* ===== METHOD SECTION ===== */
.ms-method {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ms-navy), var(--ms-navy-light));
    text-align: center;
    color: #ffffff;
}

.ms-method-eyebrow {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.ms-method-logo h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(135deg, var(--ms-gold), var(--ms-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.ms-method-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.ms-method-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.ms-method-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
}

.ms-method-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.ms-method-item i {
    color: var(--ms-green);
    font-size: 20px;
    min-width: 24px;
}

/* ===== REALITY SECTION ===== */
.ms-reality {
    padding: 80px 0;
    background: #ffffff;
}

.ms-reality-box {
    text-align: center;
}

.ms-reality-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ms-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.ms-reality-text {
    font-size: 1.1rem;
    color: var(--ms-text-muted);
    margin-bottom: 28px;
}

.ms-reality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.ms-reality-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ms-bg-light);
    border: 1px solid var(--ms-bg-blue);
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ms-navy);
}

.ms-reality-item i {
    color: var(--ms-blue);
    font-size: 20px;
    min-width: 24px;
}

.ms-reality-result {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ms-navy);
    margin-bottom: 16px;
}

.ms-reality-contrast {
    background: var(--ms-bg-light);
    border-radius: 14px;
    padding: 28px;
    margin-top: 28px;
    border: 2px solid var(--ms-bg-blue);
}

.ms-reality-contrast p {
    font-size: 1.05rem;
    color: var(--ms-text-muted);
    margin-bottom: 8px;
}

.ms-reality-key {
    font-size: 1.3rem !important;
    color: var(--ms-navy) !important;
}

/* ===== LEARN SECTION ===== */
.ms-learn {
    padding: 80px 0;
    background: var(--ms-bg-light);
}

.ms-learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.ms-learn-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    border: 2px solid var(--ms-bg-blue);
    transition: all 0.3s;
    text-align: center;
}

.ms-learn-card:hover {
    border-color: var(--ms-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.15);
}

.ms-learn-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ms-green), var(--ms-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

.ms-learn-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ms-navy);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ms-learn-card p {
    font-size: 0.95rem;
    color: var(--ms-text-muted);
    line-height: 1.6;
}

/* ===== IMAGINE SECTION ===== */
.ms-imagine {
    padding: 80px 0;
    background: #ffffff;
}

.ms-imagine-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.ms-imagine-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ms-text);
    padding: 12px 20px;
    background: var(--ms-bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--ms-green);
    transition: all 0.3s;
}

.ms-imagine-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.15);
}

.ms-imagine-item i {
    color: var(--ms-green);
    font-size: 20px;
    min-width: 24px;
}

.ms-imagine-insight {
    text-align: center;
    background: linear-gradient(135deg, var(--ms-bg-light), var(--ms-bg-blue));
    border-radius: 14px;
    padding: 28px;
    max-width: 600px;
    margin: 0 auto;
}

.ms-imagine-insight p {
    font-size: 1.1rem;
    color: var(--ms-text-muted);
    margin-bottom: 6px;
}

.ms-insight-key {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--ms-navy) !important;
}

/* ===== MISTAKE SECTION ===== */
.ms-mistake {
    padding: 80px 0;
    background: var(--ms-bg-light);
}

.ms-mistake-box {
    max-width: 700px;
    margin: 0 auto;
}

.ms-mistake-quote {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    text-align: center;
    border: 2px solid var(--ms-bg-blue);
    position: relative;
}

.ms-mistake-quote i {
    color: var(--ms-gold);
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.ms-mistake-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--ms-navy);
    font-weight: 600;
}

.ms-mistake-truth {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ms-navy);
    text-align: center;
    margin-bottom: 8px;
}

.ms-mistake-sub {
    font-size: 1.05rem;
    color: var(--ms-text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.ms-mistake-cta {
    font-size: 1.2rem;
    text-align: center;
    color: var(--ms-green-dark);
    margin-top: 24px;
}

/* ===== AUDIENCE SECTION ===== */
.ms-audience {
    padding: 80px 0;
    background: #ffffff;
}

.ms-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.ms-audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ms-bg-light);
    border: 1px solid var(--ms-bg-blue);
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ms-navy);
    transition: all 0.3s;
}

.ms-audience-item:hover {
    border-color: var(--ms-green);
    transform: translateY(-2px);
}

.ms-audience-item i {
    color: var(--ms-green);
    font-size: 20px;
    min-width: 24px;
}

/* ===== RECEIVE SECTION ===== */
.ms-receive {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ms-navy), var(--ms-navy-light));
    color: #ffffff;
}

.ms-receive .ms-section-title {
    color: #ffffff;
}

.ms-receive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.ms-receive-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.ms-receive-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.ms-receive-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--ms-green), var(--ms-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

/* ===== INSTRUCTORS ===== */
.ms-instructors {
    padding: 80px 0;
    background: var(--ms-bg-light);
}

.ms-instructors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.ms-instructor-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid var(--ms-bg-blue);
    transition: all 0.3s;
}

.ms-instructor-card:hover {
    border-color: var(--ms-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ms-instructor-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--ms-navy), var(--ms-navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 32px;
    border: 3px solid var(--ms-gold);
    box-shadow: 0 8px 20px rgba(0, 31, 84, 0.3);
}

.ms-instructor-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ms-navy);
    margin-bottom: 4px;
}

.ms-instructor-role {
    font-size: 0.85rem;
    color: var(--ms-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.ms-instructor-bio {
    font-size: 0.95rem;
    color: var(--ms-text-muted);
    line-height: 1.6;
}

/* ===== TRANSFORM SECTION ===== */
.ms-transform {
    padding: 80px 0;
    background: #ffffff;
}

.ms-transform-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.ms-transform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ms-bg-light), var(--ms-bg-blue));
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ms-navy);
    transition: all 0.3s;
}

.ms-transform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.15);
}

.ms-transform-item i {
    color: var(--ms-gold);
    font-size: 16px;
}

.ms-transform-closing {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ms-text-muted);
    line-height: 1.7;
}

.ms-transform-closing strong {
    color: var(--ms-navy);
    font-size: 1.4rem;
}

/* ===== CHOICES SECTION ===== */
.ms-choices {
    padding: 80px 0;
    background: var(--ms-bg-light);
}

.ms-choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 750px;
    margin: 0 auto;
}

.ms-choice {
    border-radius: 16px;
    padding: 32px;
}

.ms-choice-bad {
    background: #fff5f5;
    border: 2px solid #fecaca;
}

.ms-choice-good {
    background: #f0fff4;
    border: 2px solid #a7f3d0;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.15);
}

.ms-choice-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.ms-choice-bad .ms-choice-title {
    color: var(--ms-red);
}

.ms-choice-good .ms-choice-title {
    color: var(--ms-green-dark);
}

.ms-choice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ms-choice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.ms-choice-bad .ms-choice-item i {
    color: var(--ms-red);
    font-size: 16px;
    min-width: 20px;
}

.ms-choice-good .ms-choice-item i {
    color: var(--ms-green);
    font-size: 16px;
    min-width: 20px;
}

/* ===== FINAL CTA ===== */
.ms-final-cta {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--ms-navy) 0%, #0d1b3e 50%, var(--ms-navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ms-final-box {
    position: relative;
    z-index: 2;
}

.ms-final-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ms-fp {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.ms-fp1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--ms-green), transparent 70%);
    top: -80px;
    right: -80px;
    animation: msFloat 8s ease-in-out infinite;
}

.ms-fp2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--ms-gold), transparent 70%);
    bottom: -60px;
    left: -60px;
    animation: msFloat 10s ease-in-out infinite reverse;
}

.ms-fp3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--ms-blue), transparent 70%);
    top: 50%;
    left: 50%;
    animation: msFloat 12s ease-in-out infinite;
}

.ms-final-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ms-final-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.ms-cta-final {
    padding: 20px 48px;
    font-size: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.5);
}

.ms-cta-final:hover {
    box-shadow: 0 14px 50px rgba(0, 200, 83, 0.7);
}

.ms-final-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.ms-final-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.ms-final-trust i {
    color: var(--ms-green);
}

/* ===== FOOTER ===== */
.ms-footer {
    background: #0a0a1a;
    padding: 40px 0 20px;
    color: rgba(255, 255, 255, 0.7);
}

.ms-footer-brand {
    text-align: center;
    margin-bottom: 24px;
}

.ms-footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--ms-gold);
    margin-bottom: 8px;
}

.ms-footer-brand p {
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.ms-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.ms-footer-link {
    color: var(--ms-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.ms-footer-link:hover {
    color: var(--ms-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ms-hero-title {
        font-size: 1.8rem;
    }

    .ms-hero-trust {
        display: block;
        margin-left: 30%;
    }

    .ms-section-title {
        font-size: 1.6rem;
    }

    .ms-method-logo h2 {
        font-size: 2.5rem;
    }

    .ms-reality-grid {
        grid-template-columns: 1fr;
    }

    .ms-choices-grid {
        grid-template-columns: 1fr;
    }

    .ms-instructors-grid {
        grid-template-columns: 1fr;
    }

    .ms-final-title {
        font-size: 1.8rem;
    }

    .ms-cta-main {
        padding: 8px 14px;
        font-size: 2.5vw;
    }

    .ms-topbar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .ms-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ms-hero-title {
        font-size: 1.5rem;
    }

    .ms-section-title {
        font-size: 1.3rem;
    }

    .ms-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .ms-final-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .ms-learn-grid {
        grid-template-columns: 1fr;
    }

    .ms-audience-grid {
        grid-template-columns: 1fr;
    }

    .ms-receive-grid {
        grid-template-columns: 1fr;
    }
}