/* ========================================
   Orouj AI Business Analyzer
   Luxury Modern Minimal Premium Design
   ======================================== */

/* CSS Variables */
:root {
    --primary: #0D2B2B;
    --primary-light: #1a3f3f;
    --primary-dark: #081f1f;
    --gold: #C9A84C;
    --gold-light: #d4b76a;
    --gold-dark: #a88a3d;
    --white: #FFFFFF;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e8eaed;
    --gray-300: #dadce0;
    --gray-400: #bdc1c6;
    --gray-500: #9aa0a6;
    --gray-600: #80868b;
    --gray-700: #5f6368;
    --gray-800: #3c4043;
    --gray-900: #202124;
    --success: #34a853;
    --warning: #fbbc04;
    --danger: #ea4335;
    --info: #4285f4;

    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--primary);
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden { display: none !important; }
.gold-text { color: var(--gold); }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201,168,76,0.35);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 1.15rem;
    padding: 18px 40px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

/* ========================================
   LOADING OVERLAY
   ======================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-content {
    text-align: center;
    padding: 2rem;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201,168,76,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

#loading-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.loading-progress-bar {
    width: 280px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.3s ease;
}

.loading-stage {
    font-size: 0.9rem;
    color: var(--gray-400);
    min-height: 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-400);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 140px;
    transition: all var(--transition-normal);
}
.stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ========================================
   QUIZ SECTION
   ======================================== */
.quiz {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--primary);
}

.quiz-container {
    width: 100%;
    max-width: 720px;
}

.quiz-header {
    margin-bottom: 2rem;
}

.quiz-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

#progress-percent {
    color: var(--gold);
    font-weight: 700;
}

.quiz-progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.quiz-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.quiz-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    border-radius: var(--radius-full);
}

.question-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.question-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.question-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.question-hint {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Options */
.question-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: right;
}
.option-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(201,168,76,0.4);
}
.option-btn.selected {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
    color: var(--gold);
}
.option-btn .option-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.option-btn.selected .option-radio {
    border-color: var(--gold);
    background: var(--gold);
}
.option-btn.selected .option-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Input */
.question-input {
    width: 100%;
}

.question-input input,
.question-input textarea,
.question-input select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-normal);
    outline: none;
}
.question-input input:focus,
.question-input textarea:focus,
.question-input select:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}
.question-input input::placeholder,
.question-input textarea::placeholder {
    color: var(--gray-500);
}
.question-input textarea {
    min-height: 120px;
    resize: vertical;
}
.question-input select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239aa0a6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 3rem;
}
.question-input select option {
    background: var(--primary);
    color: var(--white);
}

/* Quiz Navigation */
.quiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.quiz-dots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.quiz-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}
.quiz-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: var(--radius-full);
}
.quiz-dot.answered {
    background: var(--gold-light);
}

/* ========================================
   REPORT SECTION
   ======================================== */
.report {
    min-height: 100vh;
    background: var(--off-white);
    color: var(--gray-900);
    padding: 0;
}

.report-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.report-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.report-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.report-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.report-date {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.report-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Report Cards */
.report-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    page-break-inside: avoid;
}

.report-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-section-title .section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.report-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.report-section p:last-child {
    margin-bottom: 0;
}

/* Score Circle */
.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.score-circle {
    width: 180px;
    height: 180px;
    position: relative;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-circle-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 8;
}

.score-circle-progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.score-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-600);
}

/* SWOT Grid */
.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.swot-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid;
}
.swot-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.swot-card ul {
    list-style: none;
    padding: 0;
}
.swot-card li {
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    position: relative;
    padding-right: 1.25rem;
}
.swot-card li::before {
    content: '\2022';
    position: absolute;
    right: 0;
    color: inherit;
    font-weight: 900;
}

.swot-strengths {
    background: rgba(52,168,83,0.08);
    border-color: rgba(52,168,83,0.2);
}
.swot-strengths h4 { color: var(--success); }

.swot-weaknesses {
    background: rgba(234,67,53,0.08);
    border-color: rgba(234,67,53,0.2);
}
.swot-weaknesses h4 { color: var(--danger); }

.swot-opportunities {
    background: rgba(66,133,244,0.08);
    border-color: rgba(66,133,244,0.2);
}
.swot-opportunities h4 { color: var(--info); }

.swot-threats {
    background: rgba(251,188,4,0.08);
    border-color: rgba(251,188,4,0.2);
}
.swot-threats h4 { color: #b06000; }

/* Plan Cards */
.plan-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.plan-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}
.plan-card ul {
    list-style: none;
}
.plan-card li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-right: 1.5rem;
}
.plan-card li::before {
    content: '\2713';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 900;
}

/* Quick Wins */
.quick-wins {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.quick-win-item {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-right: 4px solid var(--gold);
}
.quick-win-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.quick-win-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}
.tool-item .tool-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.tool-item .tool-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Report Actions */
.report-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    flex-wrap: wrap;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

/* Orouj Recommendation */
.orouj-recommendation {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.rec-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rec-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    line-height: 1.8;
    color: var(--gray-700);
}

/* CTA Card */
.cta-card {
    max-width: 900px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
}
.cta-services span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Report Footer */
.report-footer {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
    font-size: 0.85rem;
    border-top: 1px solid var(--gray-200);
}
.report-footer strong {
    color: var(--primary);
}

/* ========================================
   TOAST
   ======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 10000;
    transition: transform var(--transition-normal);
}
.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201,168,76,0.3);
    font-weight: 600;
    min-width: 280px;
    text-align: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}
.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}
.animate-slideIn {
    animation: slideIn 0.5s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    .stat-card {
        padding: 1rem 1.25rem;
        min-width: 100px;
    }
    .stat-number {
        font-size: 1.8rem;
    }

    .question-card {
        padding: 1.5rem;
    }
    .question-number {
        font-size: 3rem;
    }
    .question-text {
        font-size: 1.15rem;
    }

    .quiz-nav {
        flex-wrap: wrap;
    }
    .quiz-dots {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .swot-grid {
        grid-template-columns: 1fr;
    }

    .report-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .report-actions .btn-primary,
    .report-actions .btn-secondary {
        width: 100%;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .quick-wins {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    .quiz {
        padding: 1rem;
    }
    .report-section {
        padding: 1.25rem;
    }
}

/* Print Styles for PDF */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    .report {
        background: white !important;
    }
    .report-header {
        background: #0D2B2B !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .report-section {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    .report-actions,
    .cta-card,
    .orouj-recommendation,
    .report-footer {
        display: none !important;
    }
    .score-circle-progress {
        stroke: #C9A84C !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
