h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
.text-center {
            text-align: center;
        }
.header_menu.active {
            color: white;
            background: rgba(230, 162, 60, 0.2);
            border: 1px solid rgba(230, 162, 60, 0.3);
        }
.signals-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
.signals-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(230, 162, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
            z-index: 0;
        }
.signals-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }
.signals-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
.signals-hero h1 .highlight {
            background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
.signals-hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
            font-weight: 400;
        }
.signals-hero-subtitle strong {
            color: #e6a23c;
            font-weight: 700;
        }
.signals-hero-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }
.hero-action-btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
.hero-action-btn.primary {
            background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
            color: white;
            border: none;
        }
.hero-action-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
.hero-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(230, 162, 60, 0.3);
        }
.hero-action-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(230, 162, 60, 0.5);
        }
.who-for-section {
            padding: 6rem 0;
            background-color: var(--light-bg);
        }
.section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
.section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }
.section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), #f59e0b);
            border-radius: 2px;
        }
.section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }
.audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
@media (max-width: 1200px){
.audience-grid {
                grid-template-columns: repeat(3, 1fr);
            }
}
@media (max-width: 992px){
.audience-grid {
                grid-template-columns: repeat(2, 1fr);
            }
}
@media (max-width: 768px){
.audience-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
}
.audience-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
.audience-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), #f59e0b);
        }
.audience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(230, 162, 60, 0.3);
        }
.audience-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            display: inline-block;
        }
.audience-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
.audience-card p {
            color: #475569;
            line-height: 1.6;
            font-size: 1.05rem;
            margin-bottom: 0;
            flex-grow: 1;
        }
.philosophy-section {
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            border-radius: 16px;
            padding: 4rem 3rem;
            margin: 5rem auto 0;
            max-width: 1100px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
.philosophy-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(230, 162, 60, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
            z-index: 0;
        }
.philosophy-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 3rem;
        }
.philosophy-icon {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(230, 162, 60, 0.2), rgba(245, 158, 11, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--accent-color);
            border: 2px solid rgba(230, 162, 60, 0.3);
            animation: pulse 2s infinite ease-in-out;
        }
@keyframes pulse{
0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(230, 162, 60, 0.4);
            }
50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 15px rgba(230, 162, 60, 0);
            }
}
.philosophy-text {
            flex-grow: 1;
        }
.philosophy-text h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
.philosophy-text h3 span {
            background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.philosophy-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
@media (max-width: 992px){
.philosophy-section {
                padding: 3rem 2rem;
            }
.philosophy-content {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
.philosophy-text h3 {
                justify-content: center;
            }
.philosophy-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
}
@media (max-width: 576px){
.philosophy-section {
                padding: 2.5rem 1.5rem;
            }
.philosophy-text h3 {
                font-size: 1.7rem;
            }
.philosophy-text p {
                font-size: 1.1rem;
            }
}
.transparency-section {
            padding: 6rem 0;
            background: white;
        }
.transparency-header {
            text-align: center;
            margin-bottom: 4rem;
        }
.transparency-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
.transparency-header p {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
.signal-components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
.signal-component {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 4px solid var(--accent-color);
            transition: all 0.3s ease;
        }
.signal-component:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-5px);
        }
.signal-component h4 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
.signal-component p {
            color: var(--gray);
            font-size: 0.95rem;
            margin: 0;
        }
.signal-example-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 4rem auto;
            max-width: 800px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
.signal-example-card::before {
            content: "LIVE EXAMPLE";
            position: absolute;
            top: 15px;
            right: -30px;
            background: #82D32B;
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 1px;
        }
.signal-example-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--border-color);
        }
.signal-example-header h3 {
            margin: 0;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
.signal-example-badge {
            background: rgba(230, 162, 60, 0.1);
            color: var(--accent-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
.signal-example-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
.signal-detail {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 1.25rem;
        }
.signal-detail-label {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
.signal-detail-value {
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 700;
        }
.signal-detail-value.long {
            color: #82D32B;
        }
.signal-detail-value.short {
            color: #ff4d4f;
        }
.signal-comment {
            background: #fff8e1;
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 4px solid var(--accent-color);
            font-style: italic;
            color: #854d0e;
        }
.execution-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
        }
.execution-section .section-title h2 {
            color: white;
        }
.execution-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }
.execution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
.execution-card {
            background: var(--signal-transparent-bg);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            backdrop-filter: blur(10px);
        }
.execution-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(230, 162, 60, 0.3);
        }
.execution-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
.execution-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
.execution-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }
.execution-features li {
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
.execution-features i {
            color: #82D32B;
            font-size: 0.9rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
.instruments-section {
            padding: 6rem 0;
            background: white;
        }
.instruments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
.instrument-card {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
.instrument-card.gold {
            border-color: rgba(230, 162, 60, 0.3);
        }
.instrument-card.bitcoin {
            border-color: rgba(245, 158, 11, 0.3);
        }
.instrument-card.forex {
            border-color: rgba(42, 90, 140, 0.3);
        }
.instrument-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
.instrument-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
.instrument-card.gold .instrument-icon {
            color: var(--instrument-gold);
        }
.instrument-card.bitcoin .instrument-icon {
            color: var(--instrument-bitcoin);
        }
.instrument-card.forex .instrument-icon {
            color: var(--instrument-forex);
        }
.instrument-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
.instrument-symbol {
            display: inline-block;
            background: rgba(0, 0, 0, 0.05);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
.instrument-card p {
            color: #475569;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
.instrument-benefits {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0;
            text-align: left;
        }
.instrument-benefits li {
            margin-bottom: 0.75rem;
            color: var(--gray);
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
.instrument-benefits i {
            color: #82D32B;
            font-size: 0.9rem;
            margin-top: 3px;
            flex-shrink: 0;
        }
.risk-section {
            padding: 6rem 0;
            background: var(--light-bg);
        }
.risk-accordion {
            max-width: 1000px;
            margin: 3rem auto;
        }
.accordion-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
.accordion-header {
            padding: 1.5rem 2rem;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
        }
.accordion-header:hover {
            background: #f8fafc;
        }
.accordion-header.active {
            background: var(--light-bg);
            border-bottom: 2px solid var(--accent-color);
        }
.accordion-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: var(--accent-color);
        }
.accordion-header.active .accordion-icon {
            transform: rotate(180deg);
        }
.accordion-content {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
.accordion-content.active {
            padding: 2rem;
            max-height: 1000px;
        }
.accordion-content ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
.accordion-content li {
            margin-bottom: 0.75rem;
            padding-left: 1.8rem;
            position: relative;
            color: #475569;
            line-height: 1.5;
        }
.accordion-content li i {
            position: absolute;
            left: 0;
            top: 3px;
            color: #82D32B;
        }
.signals-cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            text-align: center;
        }
.signals-cta-section h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
.signals-cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
.signals-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
.footer {
            background: var(--dark-bg);
            color: white;
        }
.footer-main {
            padding: 4rem 0;
        }
.footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
.footer-brand {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
.footer-logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
        }
.footer-logo {
            width: 40px;
            height: 40px;
            border-radius: 6px;
        }
.footer-brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
.footer-tagline {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
.footer-social {
            display: flex;
            gap: 1rem;
        }
.social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
.social-link:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
.footer-middle {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }
.footer-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
.footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
.footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
.footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }
.footer-cta {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            margin-bottom: 3rem;
        }
.cta-content h4 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
.cta-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }
.footer-cta-btn {
            background: linear-gradient(135deg, var(--accent-color), #f59e0b);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }
.footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 2rem 0;
        }
.footer-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
.company-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
.company-name {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
.company-address {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.5;
        }
.risk-warning {
            background: rgba(230, 162, 60, 0.1);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
        }
.risk-warning p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
.copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
.language-flag {
            display: flex;
            align-items: center;
            padding: 5px 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            color: white;
            text-decoration: none;
            gap: 8px;
        }
.language-flag:hover {
            background: rgba(255, 255, 255, 0.15);
        }
.language-flag .lang-code {
            font-weight: 600;
            color: white;
        }
.language-flag i {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
.mobile-language-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }
.mobile-language-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
.mobile-language-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
@keyframes fadeInUp{
from {
                opacity: 0;
                transform: translateY(20px);
            }
to {
                opacity: 1;
                transform: translateY(0);
            }
}
.animated {
            animation: fadeInUp 0.6s ease forwards;
        }
.refresh-signal-btn,
        .copy-signal-btn {
            background: rgba(230, 162, 60, 0.1);
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            margin: 0 10px;
        }
.refresh-signal-btn:hover,
        .copy-signal-btn:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 162, 60, 0.3);
        }
.signal-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
@media (max-width: 992px){
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
.signals-hero h1 {
                font-size: 2.8rem;
            }
.signals-hero-subtitle {
                font-size: 1.1rem;
            }
.footerdivs_top > .topleftalign:last-child {
                display: none;
            }
.audience-grid {
                grid-template-columns: repeat(2, 1fr);
            }
.execution-grid,
            .instruments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
.signal-example-content {
                grid-template-columns: 1fr;
            }
}
@media (max-width: 768px){
.signals-hero {
                padding: 80px 0 40px;
            }
.signals-hero h1 {
                font-size: 2.4rem;
            }
.signals-hero-actions {
                flex-direction: column;
                align-items: center;
            }
.hero-action-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
.audience-grid,
            .execution-grid,
            .instruments-grid {
                grid-template-columns: 1fr;
            }
.signal-example-card {
                padding: 2rem;
                margin: 2rem auto;
            }
.signal-example-card::before {
                font-size: 0.7rem;
                right: -35px;
                padding: 5px 35px;
            }
.accordion-header {
                padding: 1.25rem 1.5rem;
                font-size: 1rem;
            }
.accordion-content {
                padding: 0 1.5rem;
            }
.accordion-content.active {
                padding: 1.5rem;
            }
.signals-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
.signals-cta-section h2 {
                font-size: 2.2rem;
            }
.footer-top {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
.footer-middle {
                grid-template-columns: 1fr;
                text-align: center;
            }
.footer-links a {
                justify-content: center;
            }
.signal-actions {
                flex-direction: column;
                align-items: center;
            }
.refresh-signal-btn,
            .copy-signal-btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
                margin: 5px 0;
            }
.current-language .lang-name {
                display: none;
            }
}
@media (max-width: 576px){
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
.signals-hero h1 {
                font-size: 2rem;
            }
.signals-hero-subtitle {
                font-size: 1rem;
            }
.audience-card,
            .execution-card,
            .instrument-card {
                padding: 2rem 1.5rem;
            }
.signal-example-card {
                padding: 1.5rem;
            }
.signal-example-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
.language-flag {
                padding: 6px 10px;
                font-size: 13px;
            }
}
@media (max-width: 480px){
.signals-hero h1 {
                font-size: 1.8rem;
            }
.signals-hero-subtitle {
                font-size: 1rem;
            }
.hero-badge {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
}

/* =========================
   TRADING PAGE: extracted inline styles
   ========================= */

/* Generic spacing helpers (page-scoped) */
.trading-mt-20 { margin-top: 20px; }
.trading-mt-3rem { margin-top: 3rem; }
.trading-mt-1rem { margin-top: 1rem; }
.trading-mt-1_5rem { margin-top: 1.5rem; }
.trading-mt-2rem { margin-top: 2rem; }
.trading-mb-1rem { margin-bottom: 1rem; }
.trading-mb-0_5rem { margin-bottom: 0.5rem; }
.trading-mb-0 { margin-bottom: 0; }
.trading-m-0 { margin: 0; }

/* -------- Signal example action row -------- */
.signal-actions { margin-top: 20px; } /* replaces inline style */

/* -------- Center blocks spacing -------- */
.text-center { text-align: center; } /* if not already in your CSS */
.text-center.trading-mt-3rem { margin-top: 3rem; }

/* -------- Transparency guarantee block -------- */
.transparency-guarantee {
  background: #e6f7e6;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #82D32B;
}
.transparency-guarantee h4 {
  color: #2d5c2d;
  margin-bottom: 1rem;
}
.transparency-guarantee p {
  color: #475569;
  margin: 0;
}

/* -------- Execution section title overrides -------- */
.execution-section .section-title h2 { color: #fff; }
.execution-section .section-title .section-subtitle { color: rgba(255,255,255,0.9); }

/* -------- Execution benefit pill -------- */
.execution-benefit {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  display: inline-block;
}
.execution-benefit p {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
}

/* -------- Exposure grid + badges -------- */
.exposure-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.exposure-badge {
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}

.exposure-badge--commodities {
  background: linear-gradient(135deg, #e6a23c 0%, #b87333 100%);
}
.exposure-badge--crypto {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.exposure-badge--fx {
  background: linear-gradient(135deg, #2a5a8c 0%, #1a3a5f 100%);
}

/* -------- Risk section: list icon color extraction -------- */
.risk-ok-icon { color: #82D32B; }

/* -------- Risk philosophy card -------- */
.risk-philosophy {
  background: #f0f7ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid var(--primary-color);
}
.risk-philosophy h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.risk-philosophy p { margin: 0; color: #475569; }

/* -------- Card grid blocks inside accordion -------- */
.accordion-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.accordion-mini-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.accordion-mini-card h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.accordion-mini-card p { color: #475569; margin: 0; font-size: 0.9rem; }

/* -------- “Our in-house system combines” grid -------- */
.inhouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

/* -------- Avoid section -------- */
.avoid-section {
  background: #fff8e1;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid #e6a23c;
}
.avoid-section h4 { color: #854d0e; margin-bottom: 0.5rem; }
.avoid-section ul { color: #854d0e; margin: 0; }

/* -------- Risk profiles grid + cards -------- */
.risk-profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.risk-profile {
  padding: 1.5rem;
  border-radius: 8px;
}

.risk-profile--low {
  background: linear-gradient(135deg, #e6f7e6 0%, #c6f7c6 100%);
  border-left: 4px solid #82D32B;
}
.risk-profile--mid {
  background: linear-gradient(135deg, #fff8e1 0%, #ffeebc 100%);
  border-left: 4px solid #e6a23c;
}
.risk-profile--high {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
  border-left: 4px solid #ff4d4f;
}

.risk-profile h4 { margin-bottom: 0.5rem; }
.risk-profile--low h4 { color: #2d5c2d; }
.risk-profile--mid h4 { color: #854d0e; }
.risk-profile--high h4 { color: #cc0000; }

.risk-profile p {
  color: #475569;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.risk-profile-meta {
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
.risk-profile--low .risk-profile-meta { background: rgba(130, 211, 43, 0.2); }
.risk-profile--mid .risk-profile-meta { background: rgba(230, 162, 60, 0.2); }
.risk-profile--high .risk-profile-meta { background: rgba(255, 77, 79, 0.2); }

/* -------- Service models grid + premium ribbon -------- */
.service-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-model-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  text-align: center;
}

.service-model-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.service-model-card h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.service-model-card p { color: #475569; margin: 0 0 1rem 0; font-size: 0.95rem; }

.service-model-meta {
  background: rgba(130, 211, 43, 0.1);
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.service-model-card--premium {
  border-color: var(--accent-color);
  position: relative;
}
.service-model-card--premium .service-model-icon,
.service-model-card--premium h4 { color: var(--accent-color); }

.premium-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* -------- Performance expectation tiles -------- */
.performance-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.performance-tile {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
}

.performance-tile__value {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.performance-tile__title {
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.performance-tile__note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.performance-tile--low {
  background: linear-gradient(135deg, #e6f7e6 0%, #c6f7c6 100%);
}
.performance-tile--low .performance-tile__value { color: #82D32B; }
.performance-tile--low .performance-tile__title { color: #2d5c2d; }
.performance-tile--low .performance-tile__note { color: #666; }

.performance-tile--mid {
  background: linear-gradient(135deg, #fff8e1 0%, #ffeebc 100%);
}
.performance-tile--mid .performance-tile__value { color: #e6a23c; }
.performance-tile--mid .performance-tile__title { color: #854d0e; }
.performance-tile--mid .performance-tile__note { color: #666; }

.performance-tile--high {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
}
.performance-tile--high .performance-tile__value { color: #ff4d4f; }
.performance-tile--high .performance-tile__title { color: #cc0000; }
.performance-tile--high .performance-tile__note { color: #666; }

/* -------- Risk disclaimer box -------- */
.risk-disclaimer {
  background: #fff8e1;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #e6a23c;
  margin-top: 1.5rem;
}
.risk-disclaimer h4 { color: #854d0e; margin-bottom: 1rem; }
.risk-disclaimer p { margin: 0; color: #854d0e; line-height: 1.6; }
