/* ========================================
   CHARTONIX AI — Brand Theme
   Navy Blue | Silver Chrome | Rose Gold
   ======================================== */

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

:root {
    /* Brand Colors — White Theme */
    --navy: #0d1b3e;
    --navy-deep: #ffffff;
    --navy-mid: #f5f6fa;
    --navy-light: #eceef5;
    --navy-surface: #f0f1f8;

    --copper: #b07050;
    --copper-light: #b07050;
    --copper-bright: #c9886d;
    --copper-dark: #954d35;

    --silver: #6b7a99;
    --silver-dark: #8895ac;
    --silver-light: #3a4a68;

    --green: #0ea47e;
    --red: #e04848;
    --gold: #b07050;

    --text: #334155;
    --text-dim: #64748b;
    --white: #0d1b3e;

    --gradient-copper: linear-gradient(135deg, #b07050, #c9886d);
    --gradient-copper-v: linear-gradient(180deg, #b07050, #c9886d);
    --shadow: 0 20px 60px rgba(13, 27, 62, 0.1);
    --shadow-card: 0 4px 24px rgba(13, 27, 62, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* ===== Dark Mode Toggle Button ===== */
.dark-mode-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(139, 149, 172, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: rgba(176, 112, 80, 0.08);
    border-color: var(--copper);
    color: var(--copper);
}

.dm-moon { display: none; }
body.dark-mode .dm-sun { display: none; }
body.dark-mode .dm-moon { display: block; }

/* ===== Dark Mode Overrides ===== */
body.dark-mode {
    background: #0d1220;
    color: #c8d0dc;
}

body.dark-mode .navbar {
    background: rgba(13, 18, 32, 0.9);
    backdrop-filter: blur(16px);
}

body.dark-mode .navbar.scrolled {
    background: rgba(13, 18, 32, 0.95);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .nav-links a { color: #8895ac; }
body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active { color: #fff; }

body.dark-mode .dark-mode-toggle {
    color: #c9886d;
    border-color: rgba(201, 136, 109, 0.3);
}

body.dark-mode .intro {
    background: #0a0e1a;
    background-image: none;
}

body.dark-mode .intro-welcome-text { color: var(--copper); }
body.dark-mode .intro-tagline { color: #e0e6ef; }
body.dark-mode .intro-desc { color: #6b7a99; }

body.dark-mode .hero {
    background: linear-gradient(180deg, #0d1220 0%, #111827 50%, #151d2e 100%);
}

body.dark-mode .hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

body.dark-mode .section { background: #0d1220; }
body.dark-mode .section:nth-child(even) { background: #111827; }
body.dark-mode .faq-section { background: #111827; }
body.dark-mode .testimonials-section { background: #0d1220; }
body.dark-mode .blog-section { background: #111827; }
body.dark-mode .contact-section { background: #0d1220; }
body.dark-mode .newsletter-section { background: #111827; }
body.dark-mode .cta-section { background: #0d1220; }
body.dark-mode .pricing { background: #0d1220; }

body.dark-mode .section-header h2,
body.dark-mode h2, body.dark-mode h3, body.dark-mode h4 { color: #e0e6ef; }

body.dark-mode .section-tag {
    background: rgba(176, 112, 80, 0.15);
    color: var(--copper-bright);
}

body.dark-mode .price-card,
body.dark-mode .testimonial-card,
body.dark-mode .blog-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form-wrap {
    background: #151d2e;
    border-color: rgba(255, 255, 255, 0.06);
    color: #c8d0dc;
}

body.dark-mode .price-card.popular {
    border-color: rgba(176, 112, 80, 0.3);
    background: linear-gradient(180deg, rgba(176, 112, 80, 0.08), #151d2e);
}

body.dark-mode .price-name { color: #8895ac; }
body.dark-mode .price-amount { color: #e0e6ef; }
body.dark-mode .price-desc,
body.dark-mode .price-list li { color: #8895ac; }

body.dark-mode .stat-number { color: #e0e6ef; }
body.dark-mode .stat-label { color: #6b7a99; }

body.dark-mode .faq-q { color: #e0e6ef; }
body.dark-mode .faq-a p { color: #8895ac; }

body.dark-mode .blog-img-placeholder { background: linear-gradient(135deg, #1a2436, #151d2e); }
body.dark-mode .blog-content h3 { color: #e0e6ef; }
body.dark-mode .blog-content p { color: #6b7a99; }

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #1a2436;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e0e6ef;
}

body.dark-mode .contact-info-item h4 { color: #e0e6ef; }
body.dark-mode .contact-info-item p { color: #8895ac; }

body.dark-mode .badge-item {
    background: rgba(176, 112, 80, 0.08);
    border-color: rgba(176, 112, 80, 0.2);
    color: #c8d0dc;
}

body.dark-mode .newsletter-box h3 { color: #e0e6ef; }
body.dark-mode .newsletter-form input {
    background: #1a2436;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e0e6ef;
}

body.dark-mode .cta-box {
    background: linear-gradient(180deg, #151d2e, #1a2436);
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .footer {
    background: #080c16;
    color: #6b7a99;
}

body.dark-mode .footer h4 { color: #c8d0dc; }
body.dark-mode .footer a { color: #6b7a99; }
body.dark-mode .footer a:hover { color: var(--copper-bright); }
body.dark-mode .footer-bottom { border-color: rgba(255, 255, 255, 0.05); }

body.dark-mode .chart-window {
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

body.dark-mode .chat-box {
    background: #151d2e;
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .chat-msg.bot .chat-msg-bubble {
    background: #1a2436;
    color: #c8d0dc;
}

body.dark-mode .chat-input-form {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .chat-input-form input {
    background: #1a2436;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e0e6ef;
}

body.dark-mode .chat-quick-btns button {
    background: rgba(176, 112, 80, 0.1);
    border-color: rgba(176, 112, 80, 0.25);
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.text-copper { color: var(--copper-light); }
.green { color: var(--green) !important; }
.red { color: var(--red) !important; }
.gold { color: var(--gold) !important; }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(176, 112, 80, 0.08);
    border: 1px solid rgba(176, 112, 80, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--copper);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; }

.btn-copper {
    background: var(--gradient-copper);
    color: #fff;
    box-shadow: 0 4px 24px rgba(176, 112, 80, 0.3);
}
.btn-copper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(176, 112, 80, 0.4);
}

/* ===== Try ChartonixAI Button (ChatGPT style) ===== */
.btn-try-chartonix {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    background: #0d1b3e;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-try-chartonix:hover {
    background: #1a2d5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 27, 62, 0.25);
}

.btn-try-chartonix svg {
    transition: transform 0.3s ease;
}

.btn-try-chartonix:hover svg {
    transform: translate(2px, -2px);
}

body.dark-mode .btn-try-chartonix {
    background: #ffffff;
    color: #0d1b3e;
}

body.dark-mode .btn-try-chartonix:hover {
    background: #f0f2f8;
}

.btn-copper:active {
    transform: translateY(0) scale(0.97);
}

.btn-outline-copper {
    background: transparent;
    color: var(--copper);
    border: 1.5px solid rgba(176, 112, 80, 0.3);
}
.btn-outline-copper:hover {
    background: rgba(176, 112, 80, 0.06);
    border-color: var(--copper);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(176, 112, 80, 0.15);
}

.btn-outline-copper:active {
    transform: translateY(0) scale(0.97);
}

.btn-glass {
    background: #ffffff;
    color: var(--navy);
    border: 1.5px solid #dde1ea;
}
.btn-glass:hover {
    background: #f5f6fa;
    border-color: #c0c5d4;
}

/* ===== Cinematic Intro Page ===== */
.intro {
    width: 100%;
    height: 100vh;
    background: #F8F9FA;
    background-image:
        linear-gradient(rgba(13, 27, 62, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 62, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Cursor Following Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 112, 80, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

/* Ambient Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(176, 112, 80, 0.07) 0%, transparent 70%);
    top: -15%; right: -5%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(13, 27, 62, 0.05) 0%, transparent 70%);
    bottom: -10%; left: -5%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139, 149, 172, 0.05) 0%, transparent 70%);
    top: 40%; left: 50%;
    animation: orbFloat3 12s ease-in-out infinite;
}

/* Content */
.intro-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 24px;
    max-width: 800px;
    width: 100%;
    min-height: 400px;
}

/* Parent Company Reveal */
.intro-parent-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.intro-parent-label {
    font-size: 1.1rem;
    color: var(--silver);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0;
    animation: parentLabelIn 0.8s ease 0.5s forwards;
}

.intro-parent-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.intro-parent-name .p-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    background: linear-gradient(135deg, #0d1b3e 0%, #4a5a7a 30%, #8895ac 45%, #b07050 55%, #4a5a7a 70%, #0d1b3e 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pLetterIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmer 5s ease-in-out 3.5s infinite;
    filter: drop-shadow(0 2px 6px rgba(13, 27, 62, 0.1));
}

.intro-parent-name .p-space {
    width: 12px;
}

/* Fade out the whole parent reveal */
.intro-parent-reveal.fade-out {
    animation: parentFadeOut 0.8s ease forwards;
}

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

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

@keyframes parentFadeOut {
    from { opacity: 1; transform: translate(-50%, -50%); }
    to { opacity: 0; transform: translate(-50%, -60%); }
}

/* Welcome Row */
.intro-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: introReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.intro-welcome-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--copper);
    letter-spacing: 10px;
    text-transform: uppercase;
}

.intro-line-left, .intro-line-right {
    display: block;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, #8895ac, transparent);
}

.intro-line-left { animation: lineExpand 1s ease 1s forwards; }
.intro-line-right { animation: lineExpand 1s ease 1s forwards; }

/* Brand — Letter by Letter Reveal */
.intro-brand {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 14px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
    min-height: 1.2em;
}

.intro-brand .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(90deg);
    background: linear-gradient(135deg, #0d1b3e 0%, #4a5a7a 30%, #8895ac 45%, #b07050 55%, #4a5a7a 70%, #0d1b3e 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmer 5s ease-in-out 6s infinite;
    filter: drop-shadow(0 2px 8px rgba(13, 27, 62, 0.15));
}

/* Divider — Silver Chrome */
.intro-divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8895ac, var(--copper), #8895ac, transparent);
    margin: 24px auto;
    animation: dividerExpand 1s ease 2.6s forwards;
}

/* Tagline — Typewriter */
.intro-tagline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
    min-height: 1.8em;
    margin-bottom: 16px;
    opacity: 0;
    animation: introReveal 0.6s ease 2.8s forwards;
}

.intro-tagline .text-copper {
    color: var(--copper);
    font-weight: 600;
}

/* Description */
.intro-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    animation: introReveal 0.8s ease 3.4s forwards;
}

.intro-parent {
    font-size: 0.85rem;
    color: var(--silver);
    margin-top: 12px;
    opacity: 0;
    animation: introReveal 0.8s ease 3.6s forwards;
}

.intro-parent a {
    color: var(--copper);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.intro-parent a:hover {
    color: var(--copper-bright);
    text-decoration: underline;
}

/* CTA Button — Metallic Gradient, Copper Hover */
.intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #0d1b3e, #1a3260, #2a4a7a);
    border: 1px solid rgba(139, 149, 172, 0.3);
    box-shadow: 0 4px 20px rgba(13, 27, 62, 0.15);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: introReveal 0.8s ease 3.8s forwards;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-cta:hover {
    background: linear-gradient(135deg, #b07050, #c9886d, #b07050);
    border-color: rgba(176, 112, 80, 0.4);
    box-shadow: 0 6px 30px rgba(176, 112, 80, 0.3);
    transform: translateY(-2px) scale(1.02);
    letter-spacing: 3px;
}

.cta-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: ctaShine 3s ease-in-out 4.5s infinite;
}

/* Scroll Indicator */
.intro-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: introReveal 0.8s ease 4.2s forwards;
}

.intro-scroll span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(13, 27, 62, 0.25);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #8895ac, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== Intro Keyframes ===== */
@keyframes introReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes letterReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes brandImgReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.9); }
    60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lineExpand {
    to { width: 50px; }
}

@keyframes dividerExpand {
    to { width: 80px; }
}

@keyframes ctaShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 0.8; height: 50px; }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 25px) scale(0.96); }
}

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

/* Typewriter cursor */
.type-cursor {
    color: var(--copper);
    font-weight: 100;
    animation: cursorBlink 0.8s step-end infinite;
    margin-left: 2px;
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: #d8dee3b3;
    transition: var(--transition);
}

.navbar.scrolled {
    background: #d8dee3b3;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7ee;
    box-shadow: 0 2px 16px rgba(13, 27, 62, 0.06);
}

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

.logo { display: flex; align-items: center; }
.logo-img {
    height: 90px;
    width: auto;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: #334155; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-copper);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); transition: var(--transition); }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 50%, #f0f2f8 100%);
}

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

/* Animated Trading Grid */
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(13, 27, 62, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 62, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Mesh Gradient Orbs — Animated */
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.glow-1 {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(176, 112, 80, 0.08) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: meshFloat1 12s ease-in-out infinite;
}
.glow-2 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(13, 27, 62, 0.06) 0%, transparent 70%);
    bottom: -150px; left: -100px;
    animation: meshFloat2 15s ease-in-out infinite;
}
.glow-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(176, 112, 80, 0.05) 0%, transparent 70%);
    top: 40%; left: 20%;
    animation: meshFloat3 10s ease-in-out infinite;
}

@keyframes meshFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.08); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 20px) scale(1.05); }
    66% { transform: translate(20px, -25px) scale(0.92); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
}

/* Horizontal Trading Lines — Animated Pulse */
.hero-lines {
    position: absolute; inset: 0;
}
.h-line {
    position: absolute; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(13, 27, 62, 0.06) 50%, transparent 100%);
    animation: linePulse 4s ease-in-out infinite;
}
.h-line:nth-child(1) { top: 25%; animation-delay: 0s; }
.h-line:nth-child(2) { top: 50%; animation-delay: 1.3s; }
.h-line:nth-child(3) { top: 75%; animation-delay: 2.6s; }

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

.hero-content { position: relative; text-align: center; }

.hero-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease;
}

.welcome-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--copper);
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.welcome-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.hero-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #0d1b3e 20%, #4a5a7a 40%, #b07050 55%, #c9886d 70%, #8a8a8a 85%, #0d1b3e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s both, shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex; gap: 14px; justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* ===== Chart Preview ===== */
.chart-preview {
    margin: 0 auto 56px;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.chart-window {
    background: #0d1b3e;
    border: 1px solid rgba(13, 27, 62, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(13, 27, 62, 0.18);
}

.chart-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px;
    background: #111f45;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-dots { display: flex; gap: 6px; }
.chart-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chart-dots span:nth-child(1) { background: #ff5f57; }
.chart-dots span:nth-child(2) { background: #febc2e; }
.chart-dots span:nth-child(3) { background: #28c840; }

.chart-pair { font-size: 0.85rem; font-weight: 700; color: #eaf1ff; font-family: 'JetBrains Mono', monospace; }
.chart-tf { color: #8a95ad; font-weight: 400; margin-left: 6px; }

.chart-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700; color: #d4a574;
    background: rgba(201, 136, 109, 0.1);
    padding: 4px 14px; border-radius: 50px;
}

.pulse-dot {
    width: 6px; height: 6px;
    background: var(--copper-light);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
.pulse-dot.red { background: var(--red); }
.pulse-dot.gold { background: var(--gold); }

.chart-body { padding: 16px; }
.chart-svg { width: 100%; height: auto; }

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex; justify-content: center; align-items: center; gap: 0;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.stat-item { text-align: center; padding: 0 36px; }

.stat-value { display: flex; align-items: baseline; justify-content: center; gap: 2px; }

.stat-number {
    font-size: 2.2rem; font-weight: 800; color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

.stat-unit {
    font-size: 1.2rem; font-weight: 700; color: var(--copper-light);
}

.stat-label {
    font-size: 0.78rem; color: var(--silver-dark); margin-top: 2px;
}

.stat-divider {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, transparent, rgba(13, 27, 62, 0.12), transparent);
}

/* ===== Trusted ===== */
.trusted {
    padding: 40px 0;
    border-top: 1px solid #e5e7ee;
    border-bottom: 1px solid #e5e7ee;
    background: #ffffff;
}

.trusted-title {
    text-align: center;
    font-size: 0.75rem;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.trusted-row {
    display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap;
}
.trusted-row span {
    font-size: 1rem; font-weight: 700; color: rgba(13, 27, 62, 0.15); letter-spacing: 1px;
}

/* ===== Features ===== */
.features { background: #ffffff; }

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse .feature-text { order: 2; }
.feature-block.reverse .feature-visual { order: 1; }

.feature-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700; color: var(--copper-light);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px;
}

.feature-text h3 {
    font-size: 2rem; font-weight: 800; color: var(--white);
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px;
}

.feature-text > p {
    color: var(--text-dim); margin-bottom: 24px; font-size: 0.95rem;
}

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.check { color: var(--copper-light); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }

/* Analysis Cards */
.card-stack { display: flex; flex-direction: column; gap: 12px; }

.ai-card {
    display: flex; align-items: center; gap: 14px;
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
}
.ai-card:hover { border-color: rgba(176, 112, 80, 0.3); transform: translateX(4px); box-shadow: 0 4px 16px rgba(13, 27, 62, 0.08); }

.ai-card-icon {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-xs); flex-shrink: 0;
}
.ai-card-icon.pattern { background: rgba(176, 112, 80, 0.1); color: var(--copper); }
.ai-card-icon.level { background: rgba(14, 164, 126, 0.1); color: var(--green); }
.ai-card-icon.trend { background: rgba(14, 164, 126, 0.1); color: var(--green); }

.ai-card-text { flex: 1; }
.ai-card-text strong { display: block; font-size: 0.9rem; color: var(--white); }
.ai-card-text span { font-size: 0.8rem; color: var(--silver-dark); }

.ai-card-badge {
    padding: 4px 14px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
}
.ai-card-badge.high { background: rgba(14, 164, 126, 0.1); color: var(--green); }
.ai-card-badge.medium { background: rgba(176, 112, 80, 0.1); color: var(--copper); }

/* Candle Demo */
.candle-demo {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    padding: 40px 32px 24px;
    box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
}

.candle-row {
    display: flex; align-items: flex-end; gap: 16px;
    height: 180px; justify-content: center; position: relative;
}

.candle { display: flex; flex-direction: column; align-items: center; }
.candle .wick { width: 2px; height: 22px; }
.candle .body { width: 20px; border-radius: 2px; }
.candle.green .wick { background: var(--green); }
.candle.green .body { background: var(--green); }
.candle.red .wick { background: var(--red); }
.candle.red .body { background: var(--red); }

.candle.pseudo { border: 1px dashed rgba(0, 206, 160, 0.3); border-radius: 4px; padding: 4px; }
.candle.pseudo .wick { height: 28px; }
.candle.pseudo.o1 { opacity: 0.75; }
.candle.pseudo.o2 { opacity: 0.5; }
.candle.pseudo.o3 { opacity: 0.3; }

.candle-pct {
    font-size: 0.62rem; font-weight: 700; color: var(--green);
    margin-top: 6px; font-family: 'JetBrains Mono', monospace;
}

.candle-divider {
    width: 2px; height: 150px;
    border-left: 2px dashed rgba(176, 112, 80, 0.25);
    margin: 0 10px;
}

.candle-demo-label {
    text-align: center;
    font-size: 0.72rem; font-weight: 700; color: var(--copper-light);
    margin-top: 20px; text-transform: uppercase; letter-spacing: 1.5px;
}

/* Scenario Cards */
.scenario-stack { display: flex; flex-direction: column; gap: 12px; }

.scenario {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
}
.scenario:hover { transform: translateX(4px); }
.scenario.bull:hover { border-color: rgba(14, 164, 126, 0.4); }
.scenario.bear:hover { border-color: rgba(224, 72, 72, 0.4); }
.scenario.side:hover { border-color: rgba(176, 112, 80, 0.4); }

.scenario-head { display: flex; align-items: center; justify-content: center; }

.scenario-tag {
    padding: 4px 14px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.bull-tag { background: rgba(0, 206, 160, 0.1); color: var(--green); }
.bear-tag { background: rgba(255, 100, 100, 0.1); color: var(--red); }
.side-tag { background: rgba(212, 165, 116, 0.1); color: var(--gold); }

.scenario-pct { font-size: 1.4rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }

.scenario-bar { height: 4px; background: #e5e7ee; border-radius: 4px; margin-bottom: 14px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; }
.bull-bar { background: linear-gradient(90deg, var(--green), #38f9d7); }
.bear-bar { background: linear-gradient(90deg, var(--red), #ee5a24); }
.side-bar { background: var(--gradient-copper); }

.scenario-row { display: flex; gap: 20px; }
.scenario-row div { flex: 1; }
.scenario-row span { font-size: 0.68rem; color: var(--silver-dark); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.scenario-row strong { font-size: 0.85rem; color: var(--white); font-family: 'JetBrains Mono', monospace; }

/* ===== How It Works ===== */
.how-section {
    background: linear-gradient(180deg, #f5f6fa 0%, #ffffff 100%);
}

.steps { display: flex; align-items: flex-start; justify-content: center; }

.step { flex: 1; max-width: 300px; text-align: center; padding: 32px 24px; }

.step-arrow { display: flex; align-items: center; padding-top: 80px; }

.step-num {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-copper);
    border-radius: 50%;
    font-size: 0.85rem; font-weight: 800; color: #fff;
    margin: 0 auto 20px;
}

.step-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(176, 112, 80, 0.06);
    border: 1px solid rgba(176, 112, 80, 0.12);
    border-radius: var(--radius);
    color: var(--copper);
    margin: 0 auto 20px;
}

.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--text-dim); }

/* ===== Markets ===== */
.markets { background: #ffffff; }

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

.market-card {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
}
.market-card:hover {
    border-color: rgba(176, 112, 80, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(13, 27, 62, 0.1);
}

.market-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.market-info { display: flex; align-items: center; gap: 10px; }

.market-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem; font-weight: 800; color: #fff;
}
.market-icon.crypto { background: linear-gradient(135deg, #f7931a, #ff9500); }
.market-icon.forex { background: linear-gradient(135deg, var(--navy-light), var(--silver-dark)); }
.market-icon.stock { background: linear-gradient(135deg, var(--green), #38f9d7); }
.market-icon.gold-icon { background: var(--gradient-copper); }

.market-info strong { display: block; font-size: 0.9rem; color: var(--white); }
.market-info span { font-size: 0.73rem; color: var(--silver-dark); }
.market-change { font-size: 0.85rem; font-weight: 700; font-family: 'JetBrains Mono', monospace; }

.market-chart { height: 48px; margin-bottom: 12px; }
.market-chart svg { width: 100%; height: 100%; }

.market-ai { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--silver-dark); }

/* ===== AI Tools ===== */
.tools { background: linear-gradient(180deg, #f5f6fa, #ffffff); }

.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tool-card {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative; overflow: hidden;
    box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 112, 80, 0.3);
    box-shadow: 0 12px 32px rgba(13, 27, 62, 0.1);
}

.tool-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--copper);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-read-more {
    gap: 10px;
}

.tool-read-more svg {
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-read-more svg {
    transform: translateX(3px);
}

/* ===== Tool Modal ===== */
.tool-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.tool-modal.active {
    opacity: 1;
    visibility: visible;
}

.tool-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 62, 0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.tool-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(13, 27, 62, 0.3);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-modal.active .tool-modal-content {
    transform: scale(1) translateY(0);
}

.tool-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 27, 62, 0.05);
    border: none;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.tool-modal-close:hover {
    background: var(--copper);
    color: #ffffff;
    transform: rotate(90deg);
}

.tool-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(176, 112, 80, 0.08);
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-modal-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--copper);
    background: rgba(176, 112, 80, 0.08);
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tool-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.tool-modal-subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.7;
}

.tool-modal-body {
    margin-bottom: 28px;
}

.tool-modal-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tool-modal-body h4:first-child {
    margin-top: 0;
}

.tool-modal-body h4::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--gradient-copper);
    border-radius: 2px;
}

.tool-modal-body ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-modal-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.tool-modal-body ul li::before {
    content: '✓';
    color: var(--copper);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.tool-modal-body p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}

.tool-modal-actions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 149, 172, 0.15);
}

/* Educational Disclaimer Box inside Modal */
.tool-modal-disclaimer {
    margin-top: 24px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(176, 112, 80, 0.06), rgba(176, 112, 80, 0.02));
    border: 1px solid rgba(176, 112, 80, 0.25);
    border-left: 4px solid var(--copper);
    border-radius: 12px;
}

.tool-modal-disclaimer strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: 6px;
}

.tool-modal-disclaimer p {
    font-size: 0.82rem !important;
    color: var(--text-dim) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.tool-modal-disclaimer strong:first-of-type {
    color: var(--navy);
    font-weight: 700;
}

body.dark-mode .tool-modal-disclaimer {
    background: linear-gradient(135deg, rgba(176, 112, 80, 0.1), rgba(176, 112, 80, 0.04));
    border-color: rgba(176, 112, 80, 0.3);
}

/* Dark Mode */
body.dark-mode .tool-modal-content {
    background: #151d2e;
}

body.dark-mode .tool-modal-title {
    color: #e0e6ef;
}

body.dark-mode .tool-modal-body h4 {
    color: #e0e6ef;
}

body.dark-mode .tool-modal-close {
    background: rgba(255, 255, 255, 0.06);
    color: #e0e6ef;
}

@media (max-width: 768px) {
    .tool-modal-content { padding: 36px 24px; }
    .tool-modal-title { font-size: 1.5rem; }
    .tool-modal-actions { flex-direction: column; }
    .tool-modal-actions .btn { width: 100%; }
}
.tool-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-copper);
    transform: scaleX(0);
    transition: var(--transition);
}
.tool-card:hover::before { transform: scaleX(1); }
.tool-card:hover { transform: translateY(-6px); border-color: rgba(176, 112, 80, 0.25); box-shadow: 0 8px 30px rgba(13, 27, 62, 0.1); }

.tool-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(176, 112, 80, 0.08);
    border-radius: var(--radius-sm);
    color: var(--copper);
    margin-bottom: 20px;
}

.tool-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.tool-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

/* ===== Pricing ===== */
.pricing { background: #ffffff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.price-card {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1); }

.price-card.popular {
    border-color: rgba(176, 112, 80, 0.4);
    background: linear-gradient(180deg, rgba(176, 112, 80, 0.04), #ffffff);
}

.popular-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 6px 22px;
    background: var(--gradient-copper);
    border-radius: 50px;
    font-size: 0.7rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.price-name { font-size: 1rem; font-weight: 600; color: var(--silver-dark); margin-bottom: 12px; }

.price-amount {
    font-size: 3rem; font-weight: 900; color: var(--white);
    margin-bottom: 8px; font-family: 'JetBrains Mono', monospace;
}
.price-dollar { font-size: 1.4rem; color: var(--silver-dark); vertical-align: super; }
.price-currency { font-size: 1.4rem; color: var(--silver-dark); vertical-align: super; }
.price-period { font-size: 1rem; color: var(--silver-dark); font-weight: 400; }

.price-desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 28px; }

.price-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }

.pricing-gst {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ===== Billing Toggle (Monthly/Yearly) ===== */
.billing-toggle {
    display: inline-flex;
    margin: 0 auto 40px;
    padding: 6px;
    background: rgba(13, 27, 62, 0.05);
    border: 1px solid rgba(139, 149, 172, 0.2);
    border-radius: 50px;
    gap: 4px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.billing-btn {
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dim);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.billing-btn:hover {
    color: var(--navy);
}

.billing-btn.active {
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(13, 27, 62, 0.2);
}

.save-badge {
    padding: 3px 10px;
    background: var(--gradient-copper);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.billing-btn.active .save-badge {
    background: rgba(255, 255, 255, 0.2);
}

body.dark-mode .billing-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .billing-btn {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .billing-btn:hover {
    color: #ffffff;
}

body.dark-mode .billing-btn.active {
    background: #ffffff;
    color: var(--navy);
}

/* Price Icon */
.price-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.price-period-tag {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    font-family: 'JetBrains Mono', monospace;
}

body.dark-mode .price-value {
    color: #e0e6ef;
}

body.dark-mode .price-period-tag {
    color: rgba(255, 255, 255, 0.5);
}

/* Animated price change */
.price-amount.changing .price-value,
.price-amount.changing .price-period {
    opacity: 0;
    transform: translateY(-6px);
}

.price-amount .price-value,
.price-amount .price-period,
.price-period-tag {
    transition: all 0.3s ease;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: #0d1b3e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    height: 80px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-copper);
    border-radius: 3px;
    animation: loaderFill 2s ease forwards;
}

@keyframes loaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== FAQ ===== */
.faq-section { background: #f8f9fa; }

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(176, 112, 80, 0.25);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--copper);
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-a p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #ffffff; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(176, 112, 80, 0.25);
    box-shadow: 0 8px 32px rgba(13, 27, 62, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f0a500;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-copper);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ===== BLOG ===== */
.blog-section { background: #f8f9fa; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    border-color: rgba(176, 112, 80, 0.25);
    box-shadow: 0 8px 32px rgba(13, 27, 62, 0.08);
    transform: translateY(-4px);
}

.blog-img-placeholder {
    height: 160px;
    background: linear-gradient(135deg, #f0f2f8, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--copper);
    background: rgba(176, 112, 80, 0.08);
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--copper);
    text-decoration: none;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--copper-dark);
}

/* ===== CONTACT ===== */
.contact-section { background: #ffffff; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 0.88rem;
    color: var(--text-dim);
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
    background: rgba(176, 112, 80, 0.04);
    border: 1px solid rgba(176, 112, 80, 0.15);
    border-radius: 50px;
}

.contact-form-wrap {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius);
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #e5e7ee;
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: #f8f9fa;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--copper);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.1);
}

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

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.newsletter-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.newsletter-box p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #e5e7ee;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: #ffffff;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.1);
}

/* ===== MOBILE APP SECTION ===== */
.app-section { background: #ffffff; }

.app-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.app-content .section-tag { margin-bottom: 16px; }

.app-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

body.dark-mode .app-content h2 { color: #e0e6ef; }

.app-content > p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 28px;
}

.app-badges {
    display: flex;
    gap: 14px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 27, 62, 0.25);
}

.app-badge span {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.app-badge strong {
    display: block;
    font-size: 0.9rem;
}

/* Phone Mockup */
.app-visual {
    display: flex;
    justify-content: center;
}

.app-phone {
    width: 220px;
    height: 420px;
    background: #0d1b3e;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(13, 27, 62, 0.25);
    position: relative;
}

.app-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #0d1b3e;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

.app-phone-screen {
    width: 100%;
    height: 100%;
    background: #111f45;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 16px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #eaf1ff;
}

.app-phone-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00cea0;
    box-shadow: 0 0 8px rgba(0, 206, 160, 0.6);
}

.app-phone-chart {
    flex: 1;
    padding: 10px;
}

.app-phone-chart svg {
    width: 100%;
    height: 100%;
}

.app-phone-ai {
    padding: 10px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #d4a574;
    background: rgba(201, 136, 109, 0.08);
    text-align: center;
    letter-spacing: 1px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===== CTA ===== */
.cta-section { padding: 0 0 100px; background: #ffffff; }

.cta-box {
    background: linear-gradient(180deg, #f5f6fa, #eceef5);
    border: 1px solid #dde1ea;
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    position: relative; overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(176, 112, 80, 0.05);
    border-radius: 50%; filter: blur(100px);
    top: -200px; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}

.cta-logo {
    height: 100px;
    margin: 0 auto 28px;
    position: relative;
    filter: drop-shadow(0 4px 16px rgba(13, 27, 62, 0.08));
}

.cta-box h2 {
    font-size: 2.5rem; font-weight: 800; color: var(--white);
    margin-bottom: 12px; position: relative; letter-spacing: -0.5px;
}

.cta-tagline {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 5px;
    color: var(--copper-light); text-transform: uppercase;
    margin-bottom: 16px; position: relative;
}

.cta-box > p { color: var(--text-dim); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; position: relative; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; position: relative; margin-bottom: 16px; }

.cta-small { font-size: 0.78rem; color: var(--silver-dark); position: relative; }

/* ===== Footer ===== */
.footer {
    background: #0d1b3e;
    padding: 80px 0 0;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 0.88rem; color: #8a95ad; line-height: 1.7; margin-bottom: 20px; }

.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06); color: #8a95ad;
    transition: var(--transition);
}
.social-row a:hover { background: var(--copper); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
    font-size: 0.85rem; font-weight: 700; color: #d4a574;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: #8a95ad; }
.footer-col a:hover { color: #d4a574; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: #6b7a99; }
.disclaimer { margin-top: 8px; font-size: 0.7rem; opacity: 0.5; }

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-page {
    padding: 130px 0 80px;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(176, 112, 80, 0.10), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(13, 27, 62, 0.06), transparent 55%),
        linear-gradient(180deg, var(--navy-mid) 0%, #ffffff 50%, var(--navy-mid) 100%);
    min-height: 100vh;
}
body.dark-mode .about-page {
    background: radial-gradient(ellipse at top, #1d2848 0%, #0c1226 60%, #060912 100%);
}

.about-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.about-header h1 {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800; color: var(--navy);
    margin: 14px 0 16px; line-height: 1.18;
}
body.dark-mode .about-header h1 { color: #fff; }

.about-card {
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.22);
    border-radius: 22px;
    padding: 40px 36px;
    margin: 0 auto 28px;
    max-width: 980px;
    box-shadow: 0 14px 44px rgba(13, 27, 62, 0.08);
    position: relative;
}
body.dark-mode .about-card {
    background: rgba(28, 39, 71, 0.90);
    border-color: rgba(176, 112, 80, 0.30);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4);
}
.about-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--copper), var(--copper-bright));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 22px rgba(176, 112, 80, 0.28);
}
.about-card-tag {
    display: inline-block;
    color: var(--copper);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    margin-bottom: 10px;
}
.about-card h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800; color: var(--navy);
    margin: 0 0 16px; line-height: 1.25;
}
body.dark-mode .about-card h2 { color: #fff; }
.about-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 14px;
}
body.dark-mode .about-card p { color: rgba(255,255,255,0.78); }
.about-card-lead { font-size: 1.05rem !important; }

/* Company meta grid */
.about-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 24px 0 28px;
    padding: 22px;
    background: rgba(176, 112, 80, 0.05);
    border: 1px solid rgba(176, 112, 80, 0.15);
    border-radius: 14px;
}
.about-meta-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 5px;
}
.about-meta-value {
    font-size: 0.96rem;
    color: var(--navy);
    font-weight: 600;
}
body.dark-mode .about-meta-value { color: #fff; }
.about-meta-value a { color: var(--copper); text-decoration: none; font-weight: 700; }
.about-meta-value a:hover { text-decoration: underline; }

/* Founder grid */
.about-founder-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    align-items: center;
}
@media (max-width: 600px) {
    .about-founder-grid { grid-template-columns: 1fr; gap: 20px; }
}
.about-founder-avatar {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 14px 40px rgba(176, 112, 80, 0.35);
    margin: 0 auto;
}
.about-founder-title {
    color: var(--copper);
    font-weight: 700;
    margin-bottom: 14px !important;
    font-size: 0.95rem !important;
}
.about-founder-bio { font-size: 0.97rem !important; }

/* Mission pillars */
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}
.about-pillar {
    background: rgba(176, 112, 80, 0.05);
    border: 1px solid rgba(176, 112, 80, 0.15);
    border-radius: 14px;
    padding: 22px 20px;
}
.about-pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.about-pillar h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
}
body.dark-mode .about-pillar h4 { color: #fff; }
.about-pillar p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    color: var(--text-dim) !important;
    margin: 0 !important;
}

/* Product features list */
.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}
.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}
body.dark-mode .about-feature-list li { color: rgba(255,255,255,0.82); }
.about-tick {
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: rgba(14, 164, 126, 0.14);
    color: #0a8460;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Contact grid */
.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 22px;
}
.about-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(176, 112, 80, 0.05);
    border: 1px solid rgba(176, 112, 80, 0.18);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.about-contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(176, 112, 80, 0.45);
}
.about-contact-item svg { color: var(--copper); flex-shrink: 0; }
.about-contact-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    margin-bottom: 3px;
}
.about-contact-value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}
body.dark-mode .about-contact-value { color: #fff; }

.about-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .about-page { padding: 110px 0 60px; }
    .about-card { padding: 30px 22px; border-radius: 18px; }
    .about-meta-grid { padding: 16px; }
}

/* ============================================================
   FOOTER DISCLAIMER BOX
   Paste this at the END of your css/style.css
   ============================================================ */

.footer-disclaimer-box {
    margin: 0 0 32px 0;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid rgba(176, 112, 80, 0.5);
    border-radius: 12px;
}

.footer-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--copper);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-disclaimer-header svg {
    flex-shrink: 0;
    color: var(--copper);
}

.footer-disclaimer-intro {
    font-size: 0.82rem;
    color: #8a95ad;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-disclaimer-intro strong {
    color: #b0b8cc;
    font-weight: 600;
}

.footer-disclaimer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .footer-disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .footer-disclaimer-box {
        padding: 20px 18px;
    }
}

.footer-disclaimer-col {
    padding: 16px 18px;
    border-radius: 8px;
}

.footer-disclaimer-col.not {
    background: rgba(224, 72, 72, 0.05);
    border: 1px solid rgba(224, 72, 72, 0.12);
}

.footer-disclaimer-col.responsibility {
    background: rgba(176, 112, 80, 0.05);
    border: 1px solid rgba(176, 112, 80, 0.12);
}

.footer-disclaimer-col-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.footer-disclaimer-col.not .footer-disclaimer-col-title {
    color: #e04848;
}

.footer-disclaimer-col.not .footer-disclaimer-col-title svg {
    color: #e04848;
}

.footer-disclaimer-col.responsibility .footer-disclaimer-col-title {
    color: var(--copper);
}

.footer-disclaimer-col.responsibility .footer-disclaimer-col-title svg {
    color: var(--copper);
}

.footer-disclaimer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-disclaimer-col ul li {
    font-size: 0.79rem;
    color: #6b7a99;
    line-height: 1.5;
    padding-left: 12px;
    position: relative;
}

.footer-disclaimer-col ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}

.footer-disclaimer-sebi {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.79rem;
    color: #6b7a99;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer-sebi svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(176, 112, 80, 0.5);
}

.footer-disclaimer-sebi strong {
    color: #9ca8be;
    font-weight: 600;
}

/* ===== Back to Top ===== */
.back-top {
    position: fixed; bottom: 100px; right: 32px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gradient-copper);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 136, 109, 0.35);
    z-index: 999;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-4px); }

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 96px;
    z-index: 999;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-copper);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 24px rgba(176, 112, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(176, 112, 80, 0.5);
}

.chat-toggle::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00cea0;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open { display: none; }
.chat-widget.open .chat-icon-close { display: block; }

.chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    max-height: 500px;
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: 20px;
    box-shadow: 0 16px 60px rgba(13, 27, 62, 0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: chatSlideUp 0.3s ease;
}

.chat-widget.open .chat-box {
    display: flex;
}

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

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--navy);
    color: #fff;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00cea0;
    box-shadow: 0 0 8px rgba(0, 206, 160, 0.6);
}

.chat-header-info strong {
    display: block;
    font-size: 0.88rem;
}

.chat-header-info span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.chat-minimize {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
}

.chat-minimize:hover { color: #fff; }

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 280px;
    min-height: 200px;
}

.chat-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.chat-msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.chat-msg.bot .chat-msg-avatar {
    background: var(--gradient-copper);
    color: #fff;
}

.chat-msg.user .chat-msg-avatar {
    background: var(--navy);
    color: #fff;
}

.chat-msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 260px;
}

.chat-msg.bot .chat-msg-bubble {
    background: #f0f2f8;
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-msg-bubble {
    background: var(--navy);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-quick-btns {
    display: flex;
    gap: 6px;
    padding: 0 16px 10px;
    flex-wrap: wrap;
}

.chat-quick-btns button {
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--copper);
    background: rgba(176, 112, 80, 0.06);
    border: 1px solid rgba(176, 112, 80, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.chat-quick-btns button:hover {
    background: rgba(176, 112, 80, 0.12);
    border-color: var(--copper);
}

.chat-input-form {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #e5e7ee;
    background: #fafbfc;
}

.chat-input-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e5e7ee;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    color: var(--text);
    transition: border-color 0.2s;
}

.chat-input-form input:focus {
    border-color: var(--copper);
}

.chat-input-form button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-copper);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-input-form button:hover {
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .chat-box { width: 300px; right: -20px; }
    .chat-widget { right: 20px; bottom: 20px; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .feature-block { grid-template-columns: 1fr; gap: 48px; }
    .feature-block.reverse .feature-text { order: 1; }
    .feature-block.reverse .feature-visual { order: 2; }
    .market-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        padding: 24px; gap: 16px;
        border-bottom: 1px solid #e5e7ee;
        box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
    }
    .intro-parent-name { font-size: 1.4rem; letter-spacing: 1px; }
    .intro-parent-label { font-size: 0.9rem; }
    .intro-brand { font-size: 2.8rem; letter-spacing: 8px; }
    .intro-tagline { font-size: 1.1rem; }
    .intro-desc { font-size: 0.85rem; }
    .intro-scroll { bottom: 24px; }
    .orb { display: none; }
    .hero { padding: 100px 0 40px; }
    .hero-brand { font-size: 1.5rem; letter-spacing: 8px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-tagline { font-size: 0.82rem; letter-spacing: 4px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-logo-img { height: 220px; }
    .hero-welcome { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 0; }
    .stat-item { padding: 12px 20px; min-width: 140px; }
    .stat-divider { display: none; }
    .section { padding: 64px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { display: none; }
    .market-grid, .tools-grid, .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .app-box { grid-template-columns: 1fr; text-align: center; }
    .app-badges { justify-content: center; }
    .app-phone { width: 180px; height: 340px; }
    .newsletter-form { flex-direction: column; }
    .trusted-row { gap: 20px; }
    .trusted-row span { font-size: 0.85rem; }
    .cta-box { padding: 48px 24px; }
    .cta-box h2 { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .intro-brand { font-size: 2rem; letter-spacing: 5px; }
    .intro-tagline { font-size: 0.95rem; }
    .hero-brand { font-size: 1.2rem; letter-spacing: 6px; }
    .hero h1 { font-size: 1.4rem; }
    .container { padding: 0 16px; }
}

/* ============================================================
   ADD THESE STYLES TO YOUR css/style.css
   Paste at the end of the file (before last closing brace if any)
   ============================================================ */

/* ── Intro Badge — DATA · INSIGHTS · GROWTH ── */
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 22px;
    background: rgba(176, 112, 80, 0.07);
    border: 1px solid rgba(176, 112, 80, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
    opacity: 0;
    animation: introReveal 0.8s ease 2.3s forwards;
}

.intro-badge span {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--copper);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.intro-badge-dot {
    color: rgba(176, 112, 80, 0.35) !important;
    letter-spacing: 0 !important;
    font-size: 1rem !important;
}

/* ── Hero H1 — Main headline ── */
.hero-h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@media (max-width: 768px) {
    .hero-h1 { font-size: 2rem; letter-spacing: -0.5px; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 1.6rem; }
}

/* ── Hero Subtitle ── */
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.75;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@media (max-width: 768px) {
    .hero-subtitle { font-size: 0.92rem; }
}

/* ── Intro tagline — stays at fixed min-height so layout doesn't jump ── */
#introTagline {
    min-height: 2.4em;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE IMPROVEMENTS
   ============================================================ */

/* TABLETS — 1024px and below */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .navbar { padding: 12px 0; }
    .logo-img { height: 60px; }
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2rem; }
}

/* SMALL TABLETS / LARGE PHONES — 768px and below */
@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 18px; }

    /* Navbar Mobile */
    .navbar { padding: 10px 0; }
    .navbar.scrolled { padding: 8px 0; }
    .logo-img { height: 50px; }
    .nav-actions { display: flex !important; gap: 8px; }
    .nav-actions .btn-outline-copper { display: none; }
    .nav-actions .dark-mode-toggle { width: 32px; height: 32px; }
    .btn-try-chartonix { padding: 8px 14px; font-size: 0.78rem; }
    .btn-try-chartonix svg { width: 12px; height: 12px; }

    /* Intro Page */
    .intro { padding: 80px 16px 60px; min-height: 100vh; }
    .intro-content { padding: 20px 0; max-width: 100%; }
    .intro-welcome { gap: 12px; margin-bottom: 16px; }
    .intro-welcome-text { font-size: 0.7rem !important; letter-spacing: 4px !important; }
    .intro-line-left, .intro-line-right { width: 30px !important; }
    .intro-brand { font-size: 2.5rem !important; letter-spacing: 6px !important; }
    .intro-tagline { font-size: 1.1rem !important; padding: 0 8px; }
    .intro-desc { font-size: 0.88rem !important; padding: 0 12px; line-height: 1.7; }
    .intro-cta { padding: 12px 28px; font-size: 0.85rem; }
    .intro-scroll { bottom: 16px; }
    .intro-scroll span { font-size: 0.7rem; }

    /* Hero */
    .hero { padding: 80px 0 50px; }
    .hero-buttons { gap: 12px; }
    .hero-buttons .btn { width: 100%; max-width: 280px; padding: 14px 24px; font-size: 0.9rem; }
    .chart-preview { margin: 30px auto; max-width: 100%; }
    .chart-toolbar { padding: 10px 14px; }
    .chart-pair { font-size: 0.75rem; }
    .chart-live { font-size: 0.65rem; padding: 3px 10px; }
    .stat-value { gap: 1px; }
    .stat-number { font-size: 1.6rem !important; }
    .stat-unit { font-size: 0.95rem !important; }
    .stat-label { font-size: 0.7rem !important; }

    /* Sections */
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.5rem; line-height: 1.3; padding: 0 10px; }
    .section-tag { font-size: 0.65rem; padding: 4px 14px; }
    .section-desc { font-size: 0.88rem; padding: 0 10px; }

    /* Features */
    .feature-block { gap: 32px; }
    .feature-text h3 { font-size: 1.4rem; line-height: 1.3; }
    .feature-text p { font-size: 0.9rem; }
    .feature-label { font-size: 0.7rem; }
    .check-list li { font-size: 0.85rem; gap: 8px; }

    /* How It Works */
    .step { padding: 28px 22px; max-width: 320px; }
    .step h3 { font-size: 1.05rem; }
    .step p { font-size: 0.85rem; }

    /* Tools Grid */
    .tools-grid { gap: 16px; max-width: 100%; }
    .tool-card { padding: 24px 20px; }
    .tool-card h3 { font-size: 1rem; }
    .tool-card p { font-size: 0.83rem; line-height: 1.6; }
    .tool-icon { width: 44px; height: 44px; margin-bottom: 14px; }
    .tool-read-more { font-size: 0.78rem; margin-top: 12px; }

    /* Pricing */
    .pricing-grid { gap: 16px; }
    .price-card { padding: 28px 22px; }
    .price-icon { font-size: 1.6rem; }
    .price-name { font-size: 1.1rem; }
    .price-period-tag { font-size: 0.72rem; }
    .price-amount { gap: 2px; }
    .price-value { font-size: 2.2rem !important; }
    .price-currency { font-size: 1rem !important; }
    .price-period { font-size: 0.78rem !important; }
    .price-list { gap: 10px; margin-bottom: 20px; }
    .price-list li { font-size: 0.82rem; }

    /* Billing Toggle */
    .billing-toggle { padding: 4px; gap: 2px; margin-bottom: 28px; }
    .billing-btn { padding: 8px 16px; font-size: 0.78rem; gap: 6px; }
    .save-badge { font-size: 0.6rem; padding: 2px 7px; }

    /* FAQ */
    .faq-q { padding: 14px 18px; font-size: 0.88rem; }
    .faq-item.open .faq-a { padding: 0 18px 14px; }
    .faq-a p { font-size: 0.84rem; }

    /* Blog */
    .blog-card { max-width: 100%; }
    .blog-content { padding: 18px; }
    .blog-content h3 { font-size: 0.98rem; }
    .blog-content p { font-size: 0.8rem; }
    .blog-img-placeholder { height: 130px; }

    /* Mobile App */
    .app-content h2 { font-size: 1.6rem; }
    .app-content > p { font-size: 0.88rem; }
    .app-badges { flex-direction: column; gap: 10px; align-items: center; }
    .app-badge { width: 100%; max-width: 240px; justify-content: center; }
    .app-phone { width: 160px; height: 320px; }

    /* Newsletter */
    .newsletter-box h3 { font-size: 1.3rem; }
    .newsletter-box p { font-size: 0.85rem; }
    .newsletter-form input { padding: 12px 16px; }

    /* CTA */
    .cta-box { padding: 36px 20px; border-radius: 16px; }
    .cta-box h2 { font-size: 1.4rem !important; line-height: 1.3; }
    .cta-tagline { font-size: 0.7rem; letter-spacing: 3px; }
    .cta-box > p { font-size: 0.85rem; padding: 0 6px; margin-bottom: 24px; }
    .cta-buttons .btn { width: 100%; max-width: 260px; padding: 12px 24px; }

    /* Footer */
    .footer { padding: 50px 0 24px; }
    .footer-grid { gap: 28px; }
    .footer-brand p { font-size: 0.85rem; }
    .footer-col h4 { font-size: 0.92rem; margin-bottom: 14px; }
    .footer-col ul li { font-size: 0.85rem; margin-bottom: 8px; }
    .footer-bottom { padding-top: 24px; }
    .footer-bottom p { font-size: 0.78rem; text-align: center; }
    .disclaimer { font-size: 0.7rem !important; }

    /* Disclaimer Box */
    .footer-disclaimer-box { padding: 18px 16px; }
    .footer-disclaimer-intro { font-size: 0.78rem; }
    .footer-disclaimer-grid { grid-template-columns: 1fr; gap: 14px; }
    .footer-disclaimer-col-title { font-size: 0.78rem; }
    .footer-disclaimer-col ul li { font-size: 0.72rem; }
    .footer-disclaimer-sebi { font-size: 0.72rem; padding: 10px 12px; }

    /* Modals */
    .tool-modal-content { padding: 32px 22px; max-height: 88vh; }
    .tool-modal-icon { width: 52px; height: 52px; margin-bottom: 14px; }
    .tool-modal-tag { font-size: 0.6rem; padding: 3px 10px; }
    .tool-modal-title { font-size: 1.4rem; line-height: 1.25; }
    .tool-modal-subtitle { font-size: 0.88rem; margin-bottom: 20px; }
    .tool-modal-body h4 { font-size: 0.9rem; margin-top: 18px; }
    .tool-modal-body ul li { font-size: 0.83rem; }
    .tool-modal-body p { font-size: 0.85rem; }
    .tool-modal-disclaimer { padding: 14px 16px; margin-top: 18px; }
    .tool-modal-disclaimer strong { font-size: 0.82rem; }
    .tool-modal-disclaimer p { font-size: 0.76rem !important; }
    .tool-modal-actions { flex-direction: column; gap: 10px; }
    .tool-modal-actions .btn { width: 100%; }
    .tool-modal-close { top: 14px; right: 14px; width: 32px; height: 32px; }

    /* Chat Widget */
    .chat-widget { right: 14px; bottom: 14px; }
    .chat-toggle { width: 50px; height: 50px; }
    .chat-toggle::after { width: 11px; height: 11px; }
    .chat-box { width: calc(100vw - 28px); right: 0; max-width: 360px; }
    .chat-messages { max-height: 240px; min-height: 180px; }
    .chat-quick-btns { padding: 0 14px 8px; }
    .chat-quick-btns button { font-size: 0.68rem; padding: 5px 10px; }

    /* WhatsApp Button — repositioned to avoid overlap */
    .whatsapp-btn { left: 14px; bottom: 14px; width: 48px; height: 48px; }
    .whatsapp-btn svg { width: 22px; height: 22px; }

    /* Back to Top */
    .back-top { right: 14px; bottom: 78px; width: 40px; height: 40px; }
}

/* SMALL PHONES — 480px and below */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    /* Navbar */
    .logo-img { height: 42px; }
    .btn-try-chartonix { padding: 7px 12px; font-size: 0.72rem; }
    .nav-actions .dark-mode-toggle { width: 28px; height: 28px; }

    /* Intro */
    .intro { padding: 70px 14px 50px; }
    .intro-brand { font-size: 1.9rem !important; letter-spacing: 4px !important; }
    .intro-tagline { font-size: 1rem !important; }
    .intro-desc { font-size: 0.82rem !important; }
    .intro-cta { padding: 11px 24px; font-size: 0.8rem; letter-spacing: 1.5px; }

    /* Sections */
    .section { padding: 40px 0; }
    .section-header h2 { font-size: 1.3rem; }
    .section-tag { font-size: 0.62rem; }

    /* Hero */
    .hero { padding: 70px 0 40px; }

    /* Stats */
    .hero-stats { gap: 0; padding: 0 8px; }
    .stat-item { padding: 10px 12px !important; min-width: 0 !important; flex: 1 1 50%; }
    .stat-number { font-size: 1.4rem !important; }

    /* Pricing */
    .price-card { padding: 24px 18px; }
    .price-value { font-size: 1.9rem !important; }
    .billing-btn { padding: 7px 12px; font-size: 0.72rem; }
    .save-badge { display: none; }

    /* CTA */
    .cta-box { padding: 28px 16px; }
    .cta-box h2 { font-size: 1.2rem !important; }

    /* Modal */
    .tool-modal { padding: 12px; }
    .tool-modal-content { padding: 26px 18px; border-radius: 18px; }
    .tool-modal-title { font-size: 1.2rem; }

    /* Chat */
    .chat-box { width: calc(100vw - 24px); }
    .chat-msg-bubble { max-width: 200px; font-size: 0.8rem; }

    /* WhatsApp + Chat positioning */
    .whatsapp-btn { width: 44px; height: 44px; }
    .whatsapp-btn svg { width: 20px; height: 20px; }
    .chat-toggle { width: 46px; height: 46px; }
}

/* EXTRA SMALL PHONES — 360px and below */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .intro-brand { font-size: 1.6rem !important; letter-spacing: 3px !important; }
    .intro-tagline { font-size: 0.9rem !important; }
    .section-header h2 { font-size: 1.15rem; }
    .price-card { padding: 20px 14px; }
    .price-value { font-size: 1.7rem !important; }
}

/* ============================================================
   MOBILE OVERFLOW FIX — Prevent horizontal scroll
   ============================================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Disable hero background animations on mobile to prevent shake/lag */
@media (max-width: 768px) {
    .hero-grid {
        animation: none !important;
    }
    .hero-glow,
    .glow-1, .glow-2, .glow-3 {
        animation: none !important;
    }
    .h-line {
        animation: none !important;
    }
    .orb,
    .orb-1, .orb-2, .orb-3 {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    /* Welcome text — fix overflow */
    .hero-welcome,
    .welcome-line + .welcome-text + .welcome-line {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }
    .welcome-text {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
        white-space: normal !important;
        text-align: center;
        flex: 1 1 auto;
    }
    .welcome-line {
        width: 30px !important;
        flex-shrink: 0;
    }

    /* Hero H1 - prevent overflow */
    .hero-h1 {
        font-size: 1.7rem !important;
        padding: 0 10px;
        word-wrap: break-word;
    }

    /* Hero subtitle */
    .hero-subtitle {
        padding: 0 16px;
        font-size: 0.88rem !important;
        word-wrap: break-word;
    }

    /* Hero buttons */
    .hero-buttons {
        padding: 0 16px;
    }

    /* Chart preview — prevent overflow */
    .chart-preview {
        padding: 0 16px;
        max-width: 100%;
    }

    .chart-window {
        max-width: 100%;
        overflow: hidden;
    }

    /* Intro page text — proper centering */
    .intro-welcome {
        padding: 0 16px;
        flex-wrap: wrap;
    }

    .intro-welcome-text {
        white-space: normal !important;
        text-align: center;
        flex: 1 1 auto;
    }

    /* Container padding fix */
    .container {
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Prevent any wide elements */
    section, .section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Intro brand letters - prevent overflow */
    .intro-brand .letter {
        display: inline-block;
    }

    /* Hero stats fix */
    .hero-stats {
        flex-wrap: wrap;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 0.62rem !important;
        letter-spacing: 1.5px !important;
    }

    .welcome-line {
        width: 22px !important;
    }

    .hero-h1 {
        font-size: 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.82rem !important;
        padding: 0 14px;
    }

    /* Make sure intro brand fits */
    .intro-brand {
        word-break: break-all;
        max-width: 100%;
    }
}

/* ============================================================
   FINAL MOBILE OVERRIDE — HIGHEST PRIORITY
   Prevents ALL horizontal overflow on mobile
   ============================================================ */
@media (max-width: 768px) {
    /* Force everything to fit within viewport */
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Sections only — keep nav open for dropdown menu */
    body > section,
    section, footer, header,
    main, article, aside {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Navbar must NOT have overflow hidden (would block dropdown menu) */
    .navbar {
        max-width: 100vw !important;
        overflow: visible !important;
    }

    /* Hamburger menu — must be clickable */
    .hamburger {
        display: flex !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        position: relative !important;
        padding: 8px !important;
    }

    .hamburger span {
        pointer-events: none !important;
    }

    /* Mobile dropdown menu — when active */
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(24px) !important;
        padding: 24px !important;
        gap: 16px !important;
        border-bottom: 1px solid #e5e7ee !important;
        box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08) !important;
        z-index: 1000 !important;
    }

    body.dark-mode .nav-links.active {
        background: rgba(13, 18, 32, 0.98) !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Hero section fix */
    .hero {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero text — NO overflow */
    .hero h1,
    .hero-h1 {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.65 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-welcome {
        flex-wrap: wrap !important;
        gap: 8px !important;
        max-width: 100% !important;
    }

    .welcome-text {
        font-size: 0.6rem !important;
        letter-spacing: 1.5px !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
        max-width: 70% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .welcome-line {
        width: 20px !important;
        flex-shrink: 0 !important;
    }

    /* Buttons inside hero */
    .hero-buttons {
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 8px !important;
        gap: 10px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        font-size: 0.88rem !important;
        padding: 13px 20px !important;
    }

    /* Chart preview */
    .chart-preview {
        width: 100% !important;
        max-width: 100% !important;
        margin: 30px 0 !important;
        padding: 0 !important;
    }

    .chart-window {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Stats - ensure they fit */
    .hero-stats {
        flex-wrap: wrap !important;
        max-width: 100% !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .stat-item {
        flex: 0 0 calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        padding: 12px 8px !important;
        min-width: 0 !important;
    }

    .stat-divider {
        display: none !important;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section-desc {
        font-size: 0.85rem !important;
        line-height: 1.65 !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* All grids - single column on mobile */
    .pricing-grid,
    .tools-grid,
    .market-grid,
    .feature-block,
    .blog-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        width: 100% !important;
        gap: 16px !important;
    }

    /* Cards - full width */
    .price-card,
    .tool-card,
    .market-card,
    .blog-card,
    .feature-block > div {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Footer */
    .footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    /* Intro page mobile */
    .intro {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 60px 16px !important;
        overflow-x: hidden !important;
    }

    .intro-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .intro-brand {
        font-size: 2rem !important;
        letter-spacing: 4px !important;
        word-break: keep-all !important;
        max-width: 100% !important;
    }

    .intro-tagline {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .intro-desc {
        font-size: 0.85rem !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
        padding: 0 8px !important;
    }

    /* Modals - mobile fit */
    .tool-modal,
    .blog-modal {
        padding: 12px !important;
    }

    .tool-modal-content {
        max-width: calc(100vw - 24px) !important;
        width: 100% !important;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column !important;
        max-width: 100% !important;
    }

    .newsletter-form input {
        width: 100% !important;
    }

    /* App section */
    .app-box {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .app-phone {
        max-width: 200px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* CTA */
    .cta-box {
        max-width: 100% !important;
        padding: 32px 20px !important;
    }
}

/* Extra small phones - 480px */
@media (max-width: 480px) {
    .hero h1, .hero-h1 {
        font-size: 1.4rem !important;
    }

    .section-header h2 {
        font-size: 1.3rem !important;
    }

    .intro-brand {
        font-size: 1.7rem !important;
        letter-spacing: 3px !important;
    }
}

/* ============================================================
   TESTIMONIALS PAGE — site-themed (light bg, navy text, copper accents)
   ============================================================ */
.testimonials-page {
    padding: 130px 0 80px;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(176, 112, 80, 0.10), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(13, 27, 62, 0.06), transparent 55%),
        linear-gradient(180deg, var(--navy-mid) 0%, #ffffff 50%, var(--navy-mid) 100%);
    overflow: hidden;
    min-height: 100vh;
}
body.dark-mode .testimonials-page {
    background: radial-gradient(ellipse at top, #1d2848 0%, #0c1226 60%, #060912 100%);
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}
.testimonials-header h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin: 14px 0 16px;
    line-height: 1.2;
}
body.dark-mode .testimonials-header h1 { color: #fff; }

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.ts-stat { text-align: center; }
.ts-stat-num {
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--copper);
    font-family: 'JetBrains Mono', 'Inter', monospace;
    line-height: 1;
    margin-bottom: 6px;
}
.ts-stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== Marquee rows ===== */
.testimonial-marquee {
    overflow: hidden;
    padding: 14px 0;
    margin-bottom: 8px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonial-track {
    display: flex;
    gap: 22px;
    width: max-content;
    padding: 8px 0;
}
.testimonial-marquee-left .testimonial-track {
    animation: tsScrollLeft 80s linear infinite;
}
.testimonial-marquee-right .testimonial-track {
    animation: tsScrollRight 80s linear infinite;
}
.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}
@keyframes tsScrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes tsScrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ===== Testimonial card ===== */
.testimonial-card {
    flex-shrink: 0;
    width: 360px;
    min-height: 240px;
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.22);
    border-radius: 20px;
    padding: 30px 28px 22px;
    box-shadow: 0 10px 32px rgba(13, 27, 62, 0.09);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 27, 62, 0.14);
    border-color: rgba(176, 112, 80, 0.45);
}
body.dark-mode .testimonial-card {
    background: rgba(28, 39, 71, 0.92);
    border-color: rgba(176, 112, 80, 0.30);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
    color: var(--copper);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 0.6;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: -6px;
    opacity: 0.9;
}

.testimonial-text {
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.1px;
    flex: 1;
    margin: 0;
    font-feature-settings: "kern" 1, "liga" 1;
}
body.dark-mode .testimonial-text { color: #f1f5f9; font-weight: 500; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(13, 27, 62, 0.07);
}
body.dark-mode .testimonial-author { border-top-color: rgba(255,255,255,0.07); }

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--copper-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(176, 112, 80, 0.30);
}
.testimonial-author-info { display: flex; flex-direction: column; line-height: 1.2; }
.testimonial-author-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.testimonial-author-role { color: var(--text-dim); font-size: 0.78rem; margin-top: 2px; }
body.dark-mode .testimonial-author-name { color: #fff; }

.testimonials-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* ===== Review form ===== */
.ts-form-wrap {
    margin: 56px auto 40px;
    max-width: 760px;
}
.ts-form-card {
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.28);
    border-radius: 22px;
    padding: 32px 32px 26px;
    box-shadow: 0 16px 50px rgba(13, 27, 62, 0.10);
}
body.dark-mode .ts-form-card {
    background: rgba(28, 39, 71, 0.92);
    border-color: rgba(176, 112, 80, 0.35);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}
.ts-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
}
body.dark-mode .ts-form-card h3 { color: #fff; }
.ts-form-sub {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin: 0 0 22px;
}
.ts-form { display: flex; flex-direction: column; gap: 14px; }
.ts-form-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
}
@media (max-width: 540px) {
    .ts-form-row { grid-template-columns: 1fr; }
}
.ts-form input,
.ts-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f7f8fc;
    border: 1px solid rgba(13, 27, 62, 0.10);
    border-radius: 12px;
    color: var(--navy);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: border-color 0.25s ease, background 0.25s ease;
    resize: vertical;
}
.ts-form input::placeholder,
.ts-form textarea::placeholder { color: rgba(13, 27, 62, 0.40); font-weight: 400; }
.ts-form input:focus,
.ts-form textarea:focus {
    outline: none;
    border-color: var(--copper);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(176, 112, 80, 0.12);
}
body.dark-mode .ts-form input,
body.dark-mode .ts-form textarea {
    background: rgba(13, 27, 62, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}
body.dark-mode .ts-form input::placeholder,
body.dark-mode .ts-form textarea::placeholder { color: rgba(255, 255, 255, 0.40); }

.ts-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}
.ts-rating-input {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ts-rating-label {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
}
.ts-star-btn {
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: rgba(13, 27, 62, 0.18);
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}
.ts-star-btn:hover { transform: scale(1.15); }
.ts-star-btn.active { color: #f5b301; }
body.dark-mode .ts-star-btn { color: rgba(255,255,255,0.20); }

.ts-form-msg {
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 6px;
    min-height: 18px;
}
.ts-form-msg.success { color: #0a8460; }
.ts-form-msg.error { color: #c43030; }

/* ===== Star display on testimonial cards ===== */
.ts-stars-display {
    display: inline-flex;
    gap: 2px;
    color: #f5b301;
    font-size: 0.95rem;
    line-height: 1;
}
.ts-stars-display .star-empty { color: rgba(13, 27, 62, 0.15); }
body.dark-mode .ts-stars-display .star-empty { color: rgba(255,255,255,0.15); }

/* ===== Recent community reviews (user submissions) ===== */
.ts-recent-wrap {
    margin: 30px auto 50px;
    max-width: 1200px;
    padding: 0 4px;
}
.ts-recent-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 18px;
}
.ts-recent-pulse {
    width: 9px; height: 9px;
    background: #0ea47e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(14, 164, 126, 0.7);
    animation: tsRecentPulse 1.6s infinite;
}
@keyframes tsRecentPulse {
    0%   { box-shadow: 0 0 0 0 rgba(14, 164, 126, 0.65); }
    70%  { box-shadow: 0 0 0 10px rgba(14, 164, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 164, 126, 0); }
}
.ts-recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}
.ts-recent-grid .testimonial-card {
    width: 100%;
    animation: tsRecentDrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-color: rgba(14, 164, 126, 0.40);
    box-shadow: 0 12px 36px rgba(14, 164, 126, 0.12);
}
@keyframes tsRecentDrop {
    from { transform: translateY(-16px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.ts-recent-grid .testimonial-card .testimonial-avatar {
    background: linear-gradient(135deg, #0ea47e, #22c55e);
    box-shadow: 0 4px 12px rgba(14, 164, 126, 0.30);
}
.ts-recent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(176, 112, 80, 0.14);
    color: var(--copper-dark);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
}
body.dark-mode .ts-recent-badge {
    background: rgba(176, 112, 80, 0.22);
    color: var(--copper-bright);
}

@media (max-width: 768px) {
    .testimonials-page { padding: 110px 0 60px; }
    .testimonial-card { width: 280px; padding: 22px 20px 18px; }
    .testimonials-stats { gap: 24px; margin-top: 28px; }
    .testimonial-marquee-left .testimonial-track,
    .testimonial-marquee-right .testimonial-track { animation-duration: 60s; }
}

/* ============================================================
   LIVE USERS DASHBOARD SECTION — site-themed (light, navy + copper)
   ============================================================ */
.dashboard-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-mid) 0%, #ffffff 50%, var(--navy-light) 100%);
    color: var(--navy);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}
.dash-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(176, 112, 80, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 112, 80, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.dash-container {
    position: relative; z-index: 1;
    max-width: 1400px; margin: 0 auto; padding: 30px 20px;
}
.dash-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px; padding: 20px 30px;
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(13, 27, 62, 0.08);
}
.dash-header .dash-logo {
    grid-column: 2;
    text-align: center;
}
.dash-header .dash-live-indicator {
    grid-column: 3;
    justify-self: end;
}
.dash-logo {
    font-size: 24px; font-weight: 700;
    background: linear-gradient(90deg, var(--copper), var(--copper-bright), var(--copper-dark));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dash-live-indicator {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(224, 72, 72, 0.10);
    border: 1px solid rgba(224, 72, 72, 0.35); border-radius: 50px;
    font-size: 14px; font-weight: 700; color: #c43030;
    letter-spacing: 1px;
}
.dash-live-dot {
    width: 10px; height: 10px;
    background: #e04848; border-radius: 50%;
    animation: dashPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dashPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 72, 72, 0.7); }
    50%      { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 10px rgba(224, 72, 72, 0); }
}
.dash-main-counter {
    text-align: center; padding: 60px 20px;
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.25);
    border-radius: 24px;
    margin-bottom: 30px; position: relative; overflow: hidden;
    box-shadow: 0 16px 50px rgba(13, 27, 62, 0.10);
}
.dash-main-counter::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(176, 112, 80, 0.10) 0%, transparent 50%);
    animation: dashRotate 20s linear infinite;
    z-index: 0;
}
@keyframes dashRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.dash-counter-label {
    font-size: 16px; text-transform: uppercase; letter-spacing: 3px;
    color: var(--copper); margin-bottom: 20px; position: relative; z-index: 1;
    font-weight: 700;
}
.dash-counter-number {
    font-size: clamp(60px, 12vw, 140px); font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper-bright) 50%, var(--copper) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px; position: relative; z-index: 1;
    letter-spacing: -3px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}
.dash-counter-subtitle {
    font-size: 18px; color: var(--text-dim);
    position: relative; z-index: 1;
}
.dash-growth-badge {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 15px;
    padding: 8px 16px; background: rgba(14, 164, 126, 0.12);
    border: 1px solid rgba(14, 164, 126, 0.32); border-radius: 50px;
    color: #0a8460; font-weight: 700; font-size: 14px;
    position: relative; z-index: 1;
}
.dash-stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-bottom: 30px;
}
.dash-stat-card {
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.20);
    border-radius: 16px; padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(13, 27, 62, 0.06);
}
.dash-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 27, 62, 0.12);
    border-color: rgba(176, 112, 80, 0.5);
}
.dash-stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 15px;
}
.dash-icon-green  { background: rgba(14, 164, 126, 0.14); }
.dash-icon-blue   { background: rgba(176, 112, 80, 0.16); }
.dash-icon-purple { background: rgba(201, 136, 109, 0.18); }
.dash-icon-orange { background: rgba(255, 180, 100, 0.20); }
.dash-icon-copper { background: rgba(154, 95, 65, 0.18); }

.dash-stat-label {
    font-size: 13px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
    font-weight: 600;
}
.dash-stat-value {
    font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 5px;
}
.dash-stat-change { font-size: 13px; color: #0a8460; font-weight: 600; }

.dash-activity-section {
    background: #ffffff;
    border: 1px solid rgba(176, 112, 80, 0.20);
    border-radius: 16px; padding: 25px;
    box-shadow: 0 4px 16px rgba(13, 27, 62, 0.06);
}
.dash-section-title {
    font-size: 18px; font-weight: 700; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px; color: var(--navy);
}
.dash-activity-item {
    display: flex; align-items: center; gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 27, 62, 0.07);
    animation: dashSlideIn 0.5s ease;
}
.dash-activity-item:last-child { border-bottom: none; }
@keyframes dashSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.dash-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--copper-bright));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(176, 112, 80, 0.30);
}
.dash-activity-text { flex: 1; font-size: 14px; color: var(--text); }
.dash-activity-text strong { color: var(--navy); font-weight: 700; }
.dash-activity-time { font-size: 12px; color: var(--text-dim); }

/* ===== Dark mode mirror — when site toggles dark, dashboard goes dark too ===== */
body.dark-mode .dashboard-section {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2540 50%, #050a1f 100%);
    color: #fff;
}
body.dark-mode .dash-header,
body.dark-mode .dash-main-counter,
body.dark-mode .dash-stat-card,
body.dark-mode .dash-activity-section {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(176, 112, 80, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
body.dark-mode .dash-section-title,
body.dark-mode .dash-stat-value { color: #fff; }
body.dark-mode .dash-counter-subtitle { color: #cbd5e1; }
body.dark-mode .dash-stat-label { color: #94a3b8; }
body.dark-mode .dash-activity-text { color: #cbd5e1; }
body.dark-mode .dash-activity-text strong { color: #fff; }
body.dark-mode .dash-activity-time { color: #64748b; }
body.dark-mode .dash-activity-item { border-bottom-color: rgba(255,255,255,0.06); }

@media (max-width: 600px) {
    .dashboard-section { padding: 50px 0; }
    .dash-header {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    .dash-header .dash-logo,
    .dash-header .dash-live-indicator {
        grid-column: 1;
        justify-self: center;
    }
    .dash-main-counter { padding: 40px 15px; }
    .dash-stat-value { font-size: 26px; }
}
