/* ==========================================
   FFE System Landing Page Custom CSS
   Theme: Luxury Dark Slate & Gold Accent
   ========================================== */

/* Design Tokens & Variables */
:root {
    --bg-deep: #060a0f;
    --bg-dark: #0c121a;
    --bg-card: rgba(19, 29, 41, 0.75);
    --bg-card-hover: rgba(26, 40, 56, 0.9);
    --border-color: rgba(212, 175, 55, 0.15);
    --border-glow: rgba(212, 175, 55, 0.4);
    
    --gold-light: #FFE082;
    --gold-main: #D4AF37;
    --gold-dark: #B58A3D;
    --gold-gradient: linear-gradient(135deg, #FFE082 0%, #D4AF37 50%, #B58A3D 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    
    --text-light: #ffffff;
    --text-body: #c4cfdd;
    --text-muted: #8596b0;
    
    --color-error: #ff4d4d;
    --color-success: #2ecc71;
    --error-glow: 0 0 15px rgba(255, 77, 77, 0.2);
    
    --font-ar: 'Cairo', 'Tajawal', sans-serif;
    --font-en: 'Outfit', 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s ease;
}

/* Reset & Base Rules */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-body);
    font-family: var(--font-ar);
    line-height: 1.7;
    overflow-x: hidden;
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

strong {
    color: var(--text-light);
}

.en-font {
    font-family: var(--font-en);
    direction: ltr;
    display: inline-block;
}

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

.hidden {
    display: none !important;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #1a2533;
    border-radius: 5px;
    border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-main);
}

/* Typography & Utility Styles */
.accent-gold {
    color: var(--gold-main);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    outline: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #060a0f;
    box-shadow: var(--gold-glow);
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--gold-main);
    color: var(--gold-main);
}

.btn-secondary:hover {
    background: var(--gold-gradient);
    color: #060a0f;
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
    text-shadow: none;
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--gold-main);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    animation: reflection-sweep 4s infinite linear;
}

@keyframes reflection-sweep {
    0% { left: -30%; }
    30% { left: 130%; }
    100% { left: 130%; }
}

/* Glassmorphism Panel base */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: var(--transition-normal);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(6, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(6, 10, 15, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    font-family: var(--font-en);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.main-nav a:hover {
    color: var(--text-light);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: transparent;
    border-color: var(--gold-main);
    color: var(--gold-main);
}

.btn-nav:hover {
    background: var(--gold-gradient);
    color: #060a0f;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 15, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    width: 80%;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-body);
}

.mobile-nav-links a:hover {
    color: var(--gold-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(19, 29, 41, 0.3) 0%, rgba(6, 10, 15, 0) 60%);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(6, 10, 15, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.badge-discount {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-features-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feat-icon {
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.05);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-feat-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.hero-feat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-action-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

/* Countdown Counter Styles */
.urgency-counter {
    background: rgba(19, 29, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.urgency-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-num {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-main);
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 48px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.timer-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.timer-dots {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    padding-bottom: 20px;
}

/* Hero Visual & Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    z-index: 2;
    transform: scale(1.15); /* Enlarge the phone mockup significantly on desktop */
    transform-origin: center;
}

.mockup-img {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: var(--transition-slow);
    animation: float-phone 6s ease-in-out infinite;
}

.glow-ring {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80%;
    height: 70%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(6, 10, 15, 0) 70%);
    z-index: -1;
    filter: blur(10px);
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Trust Indicator Bar */
.trust-bar {
    background: rgba(19, 29, 41, 0.9);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trust-message {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Generic Section Elements */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    color: var(--gold-main);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Pain Points Section */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 77, 0.25);
    background: var(--bg-card-hover);
    box-shadow: var(--error-glow);
}

.pain-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 77, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pain-icon {
    width: 32px;
    height: 32px;
}

.pain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Solution Box */
.solution-highlight-box {
    position: relative;
    border-radius: 20px;
    padding: 50px;
    background: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.15) 0%, rgba(19, 29, 41, 0.8) 100%);
    border: 1px solid var(--border-glow);
    box-shadow: var(--gold-glow);
    overflow: hidden;
}

.sol-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(6, 10, 15, 0) 70%);
}

.sol-inner {
    position: relative;
    z-index: 2;
}

.sol-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-gradient);
    color: #060a0f;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.solution-highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
}

.solution-highlight-box p {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 900px;
}

/* How It Works Section */
.how-it-works-section {
    background: rgba(6, 10, 15, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.levels-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    padding: 20px 0;
}

.level-node {
    width: 17%;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 15px;
    transition: var(--transition-normal);
}

.level-node:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
    box-shadow: var(--gold-glow);
}

.level-code {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-main);
    margin-bottom: 5px;
}

.level-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.level-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.level-arrow {
    width: 25px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    margin-top: 50px;
    position: relative;
}

.level-arrow::after {
    content: '';
    position: absolute;
    left: -2px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

.cycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cycle-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    transition: var(--transition-normal);
}

.cycle-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: var(--bg-card);
}

.cycle-num {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.08);
    position: absolute;
    top: 15px;
    left: 20px;
    line-height: 1;
}

.cycle-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.cycle-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Comparison Section */
.comparison-section {
    background: radial-gradient(circle at 90% 80%, rgba(19, 29, 41, 0.25) 0%, rgba(6, 10, 15, 0) 50%);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: right;
}

.comparison-table th, .comparison-table td {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
}

.comparison-table th {
    background: rgba(19, 29, 41, 0.9);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.feature-title {
    color: var(--text-light);
    font-weight: 600;
    width: 25%;
}

.highlight-column {
    background: rgba(212, 175, 55, 0.04);
    border-left: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-right: 1px solid rgba(212, 175, 55, 0.15) !important;
    width: 30%;
}

.comparison-table th.highlight-column {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.font-bold {
    font-weight: 700;
}

/* Custom Check/Cross Indicators */
.check-mark::before {
    content: "✓ ";
    color: var(--color-success);
    font-weight: 900;
    margin-left: 6px;
}

.cross-mark::before {
    content: "✗ ";
    color: var(--color-error);
    font-weight: 900;
    margin-left: 6px;
}

.cross-mark {
    color: var(--text-muted);
}

/* Middle CTA Section */
.middle-cta-section {
    background: radial-gradient(circle at center, rgba(19, 29, 41, 0.8) 0%, rgba(6, 10, 15, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.no-guarantee-note {
    font-size: 0.85rem;
    color: var(--color-error);
    margin-top: 20px;
    font-weight: 600;
}

/* Who is it for Section */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.who-column {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.yes-col {
    border-right: 4px solid var(--color-success);
}

.no-col {
    border-right: 4px solid var(--color-error);
}

.col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.col-icon {
    font-size: 1.8rem;
}

.col-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
}

.who-list {
    list-style: none;
}

.who-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 22px;
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.6;
}

.who-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.yes-col .who-list li::before {
    color: var(--color-success);
}

.no-col .who-list li::before {
    color: var(--color-error);
}

.who-list li strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

/* Free Sample Section */
.free-sample-section {
    background: radial-gradient(circle at 10% 80%, rgba(19, 29, 41, 0.2) 0%, rgba(6, 10, 15, 0) 60%);
}

.english-feature-banner {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.ef-icon {
    font-size: 2rem;
    line-height: 1;
}

.ef-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.ef-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

.sample-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.sample-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sample-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    margin-top: 10px;
}

.sample-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Custom Audio Player */
.custom-audio-player {
    background: #080c12;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.player-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.player-btn:hover {
    color: var(--gold-main);
}

.play-pause-btn {
    width: 46px;
    height: 46px;
    background: var(--gold-gradient);
    color: #060a0f;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.play-pause-btn:hover {
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.play-pause-btn svg {
    width: 24px;
    height: 24px;
}

.player-progress-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.time-display {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 32px;
    text-align: center;
}

.player-progress-bar {
    -webkit-appearance: none;
    appearance: none;
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.player-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.player-progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--text-light);
}

.player-volume-area {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-btn svg {
    width: 18px;
    height: 18px;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--gold-main);
}

.player-track-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 10px;
    margin-top: 10px;
    text-align: center;
}

/* PDF Preview Widget */
.pdf-sample-preview {
    background: #080c12;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pdf-cover-mock {
    width: 120px;
    height: 170px;
    background: linear-gradient(135deg, #111e2d 0%, #070d14 100%);
    border: 2px solid var(--gold-main);
    border-radius: 8px 16px 16px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.pdf-cover-mock::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.pdf-tag {
    font-family: var(--font-en);
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-error);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

.pdf-cover-mock h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.pdf-cover-mock p {
    font-size: 0.75rem;
    color: var(--gold-main);
    margin-bottom: 0;
}

.pdf-action {
    width: 100%;
    text-align: center;
}

.download-counter {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    background: #04070a;
}

.pricing-bg-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(6, 10, 15, 0) 70%);
    pointer-events: none;
}

.pricing-card-wrapper {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.pricing-badge-popular {
    position: absolute;
    top: -18px;
    right: 50%;
    transform: translateX(50%);
    background: var(--gold-gradient);
    color: #060a0f;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pricing-card {
    background: linear-gradient(180deg, #121c29 0%, #080f18 100%);
    border: 2px solid var(--gold-main);
    border-radius: 24px;
    padding: 60px 45px 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--gold-glow);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.pricing-for {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-box {
    margin-bottom: 40px;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.02);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.original-price {
    font-family: var(--font-en);
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-family: var(--font-en);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-main);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.5;
}

.pricing-feat-icon {
    font-size: 1.1rem;
    line-height: 1;
    color: var(--gold-main);
}

.pricing-features li strong {
    color: var(--text-light);
}

.pricing-urgency-note {
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-top: 15px;
}

.no-guarantee-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px !important;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 25px;
    text-align: right;
    font-family: var(--font-ar);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0,0,0,0.1);
}

.faq-answer p {
    padding: 5px 25px 25px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s ease-in-out;
}

/* Support Section */
.support-section {
    background: radial-gradient(circle at 50% 100%, rgba(19, 29, 41, 0.4) 0%, rgba(6, 10, 15, 0) 60%);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 750px;
    margin: 0 auto 50px;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 35px 25px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: block;
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(6, 10, 15, 0) 70%);
    transition: var(--transition-normal);
}

.whatsapp-card:hover .card-glow {
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(6, 10, 15, 0) 70%);
}

.email-card:hover .card-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(6, 10, 15, 0) 70%);
}

.support-card:hover {
    transform: translateY(-5px);
}

.whatsapp-card:hover {
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
}

.email-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--gold-glow);
}

.sup-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.03);
    transition: var(--transition-fast);
}

.whatsapp-card .sup-icon-box {
    color: var(--color-success);
    background: rgba(46, 204, 113, 0.08);
}

.email-card .sup-icon-box {
    color: var(--gold-main);
    background: rgba(212, 175, 55, 0.08);
}

.sup-icon {
    width: 26px;
    height: 26px;
}

.support-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.support-contact-info {
    display: block;
    font-family: var(--font-en);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    direction: ltr;
}

.support-action-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.whatsapp-card:hover .support-action-text {
    color: var(--color-success);
}

.email-card:hover .support-action-text {
    color: var(--gold-main);
}

/* Social Channels Row */
.social-channels {
    margin-bottom: 60px;
}

.social-channels p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.social-handle {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-main);
    margin-bottom: 20px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: #060a0f;
    background: var(--gold-gradient);
    border-color: var(--gold-main);
    transform: translateY(-3px);
}

/* Closing motivational quote */
.closing-motivational-quote {
    max-width: 680px;
    margin: 40px auto 0;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--gold-main);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer Section */
.main-footer {
    background: #030508;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 60px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-brand-logo {
    height: 64px;
}

.footer-logo h3 {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.credits-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   Responsive Media Queries
   ========================================== */

/* Tablet & iPad Pro */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .levels-flow {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .level-node {
        width: 80%;
    }
    
    .level-arrow {
        width: 2px;
        height: 25px;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .level-arrow::after {
        left: -4px;
        top: 18px;
        transform: rotate(-45deg);
    }
    
    .cycle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sample-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Header toggling */
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-cta .btn-nav {
        width: auto;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    /* Hero layout responsive ordering (visual goes above text) */
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1; /* Display image above text on mobile */
        margin-bottom: 10px;
    }
    
    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mockup-wrapper {
        max-width: 290px;
        margin: 0 auto;
        transform: scale(1); /* Reset desktop scale enlarge on mobile screen */
    }
    
    .hero-title {
        font-size: 1.95rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-feat-item {
        text-align: right;
    }
    
    .hero-action-box {
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .trust-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .trust-cta {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solution-highlight-box {
        padding: 30px 20px;
    }
    
    .solution-highlight-box h3 {
        font-size: 1.35rem;
    }
    
    .solution-highlight-box p {
        font-size: 0.95rem;
    }
    
    .level-node {
        width: 100%;
    }
    
    .cycle-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide Horizontal Comparison Table on Mobile to avoid scroll */
    .table-wrapper {
        display: none !important;
    }
    
    /* Display vertical responsive comparison cards on mobile instead */
    .mobile-comparison-cards {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Support grid */
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 40px 20px 30px;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .english-feature-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    /* Free Sample Container mobile spacing adjustment */
    .free-sample-container {
        padding: 35px 20px;
    }

    .free-sample-container h3 {
        font-size: 1.45rem;
    }

    .form-input-row {
        flex-direction: column;
        gap: 12px;
    }

    .sample-input-premium {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
    }

    .sample-submit-btn-premium {
        width: 100%;
    }

    .downloads-flex-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .download-btn-prem {
        width: 100%;
        justify-content: center;
    }

    .sample-success-state-premium {
        padding: 20px 15px;
    }

    .sample-success-state-premium h4 {
        font-size: 1.15rem;
    }
}

/* ==========================================
   FFE System Refined Custom Styles & Mobile Views
   ========================================== */

/* Mobile Comparison Cards Styling (Hidden on Desktop) */
.mobile-comparison-cards {
    display: none;
    width: 100%;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-normal);
}

.comp-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    background: var(--bg-card-hover);
}

.comp-card-header {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 10px;
    margin-bottom: 5px;
    text-align: right;
}

.comp-card-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    text-align: right;
}

.ffe-row {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.other-row {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.comp-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.comp-value {
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

/* Centralized Free Sample Lead Capture Box Styling */
.free-sample-container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 40px;
    border: 1px solid var(--border-glow);
    box-shadow: var(--gold-glow);
    text-align: center;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
}

.sample-box-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(6, 10, 15, 0) 70%);
    pointer-events: none;
}

.sample-box-inner {
    position: relative;
    z-index: 2;
}

.card-badge-center {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold-gradient);
    color: #060a0f;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: none;
}

.free-sample-container h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
}

.sample-intro-text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 35px;
}

/* Form Styles */
.free-sample-form-center {
    max-width: 680px;
    margin: 0 auto;
}

.form-input-row {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.sample-input-premium {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-ar);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.sample-input-premium:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), inset 0 2px 4px rgba(0,0,0,0.3);
    background: rgba(0, 0, 0, 0.6);
}

.sample-submit-btn-premium {
    padding: 16px 32px !important;
    font-size: 1rem !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.form-note-premium {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Success download section */
.sample-success-state-premium {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 18px;
    padding: 35px;
    max-width: 720px;
    margin: 0 auto;
    animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon-large {
    width: 60px;
    height: 60px;
    background: var(--color-success);
    color: #060a0f;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.sample-success-state-premium h4 {
    font-size: 1.35rem;
    color: var(--color-success) !important;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 0.95rem !important;
    color: var(--text-body) !important;
    line-height: 1.6;
    margin-bottom: 25px !important;
}

.downloads-flex-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.download-btn-prem {
    padding: 14px 28px !important;
    font-size: 0.95rem !important;
    border-radius: 50px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-subtext {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

/* Download Counter styling */
.download-counter-wrapper {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.download-counter-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pulse-counter-initial {
    color: var(--gold-main);
    font-weight: 700;
    font-family: var(--font-en);
}

/* Live Counter pulse animation */
.pulse-counter {
    animation: pulseKeyframe 0.8s ease;
    display: inline-block;
    color: var(--gold-light) !important;
}

@keyframes pulseKeyframe {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); text-shadow: 0 0 15px var(--gold-main); }
    100% { transform: scale(1); }
}

/* Premium Motivational Banner at the end */
.closing-motivational-quote-premium {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 50px 40px;
    border: 1px solid var(--border-glow);
    box-shadow: var(--gold-glow);
    text-align: center;
    overflow: hidden;
}

.quote-premium-glow {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(6, 10, 15, 0) 70%);
    pointer-events: none;
}

.quote-premium-inner {
    position: relative;
    z-index: 2;
}

.quote-title-sa {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-text-sa {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-btn-wrapper {
    margin-bottom: 20px;
}

.quote-author-sa {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

