/* Stocks Page Styles */
:root {
    --primary-red: #FF444F;
    --dark-bg: #0E0E0E;
    --darker-bg: #414652;
    --light-bg: #F4F4F6;
    --text-dark: #333333;
    --text-light: #999999;
    --text-white: #FFFFFF;
    --border-color: #E6E9E9;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] {
    --light-bg: #F4F4F6;
    --text-dark: #333333;
    --border-color: #E6E9E9;
    --bg-dark: #ffffff;
    --bg-darker: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
}

[data-theme="dark"] {
    --light-bg: #0a0a0a;
    --text-dark: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    border-radius: 0;
}

/* Scrolled state - add rounded corners and padding */
.hero-section.hero-scrolled {
    margin: 0 20px;
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section.hero-scrolled {
        margin: 0 40px;
        border-radius: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-section.hero-scrolled {
        margin: 0 60px;
        border-radius: 40px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    will-change: transform, opacity;
    transition: opacity 0.1s ease-out;
    margin-top: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.75rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0px;
}

.hero-btn-primary {
    background: #FF444F;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 68, 79, 0.35);
}

.hero-btn-primary:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 68, 79, 0.45);
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-device {
    margin-top: 0rem;
    display: flex;
    justify-content: center;
    /* margin-bottom: -10px; */
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.device-mockup {
    width: 400px;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: -35px;
}

.device-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Why Trade Section */
.why-trade-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .why-trade-section {
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    border-radius: 12px;
    padding: 2.5rem 2.5rem 0rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-dark {
    background: #0E0E0E;
    color: #ffffff;
}

.feature-dark .feature-title,
.feature-dark .feature-desc {
    color: #ffffff;
}

[data-theme="light"] .feature-dark {
    background: #0E0E0E;
    color: #ffffff;
}

.feature-light {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-light {
    background: #ffffff;
    color: #333333;
    border: 1px solid #E6E9E9;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .feature-light {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-red {
    background: #FF444F;
    color: #ffffff;
}

.feature-red .feature-title,
.feature-red .feature-desc {
    color: #ffffff;
}

[data-theme="light"] .feature-red {
    background: #FF444F;
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-image {
    display: flex;
    justify-content: flex-end;
}

.feature-img {
    max-width: 250px;
    object-fit: contain;
}

.feature-light img{
    max-width: 150%;
    width: 100%;
}

/* What We Offer Section */
.what-offer-section {
    padding: 5rem 2rem;
    background: #F4F4F6;
    position: relative;
    z-index: 1;
}

.section-stocks-steps {
    padding-bottom: 2vh;
}

[data-theme="dark"] .what-offer-section {
    background: var(--bg-darker);
}

.offer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

[data-theme="dark"] .offer-section-title {
    color: #ffffff;
}

/* Stocks Cards Sticky Animation */
.stocks-cards {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stocks-step-trigger {
    position: absolute;
    inset: 0;
    z-index: -1;
    height: 100%;
}

.stocks-card-wrapper {
    position: sticky;
    top: 0%;
}

.stocks-card-wrapper.stocks-wrapper-1 {
    top: 15%;
    z-index: 1;
}

.stocks-card-wrapper.stocks-wrapper-2 {
    top: 18%;
    z-index: 2;
}

.stocks-card-wrapper.stocks-wrapper-3 {
    top: 21%;
    z-index: 3;
}

.stocks-card-wrapper.stocks-wrapper-4 {
    top: 24%;
    z-index: 4;
}

.stocks-card-wrapper.stocks-wrapper-5 {
    top: 27%;
    z-index: 5;
}

.stocks-card-wrapper.stocks-wrapper-6 {
    top: 30%;
    z-index: 6;
}

.stocks-card {
    position: static;
    border-radius: 24px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    margin-bottom: 15vh;
    transition: all 0.4s ease;
}

.stocks-card-wrapper.stocks-wrapper-3 .stocks-card {
    margin-bottom: 15vh;
}

.stocks-card-wrapper.stocks-wrapper-6 .stocks-card {
    margin-bottom: 5vh;
}

.stocks-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stocks-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stocks-card-bg-red {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B73 50%, #FF444F 100%);
    background-image: url('minor_pairs_bg.jpg');
    background-size: cover;
    background-position: center;
}

.stocks-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stocks-card-overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stocks-card-dark {
    background: #1a1a2e;
}

.stocks-card-red {
    background: #FF444F;
}

.stocks-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 4rem;
    gap: 2rem;
}

.stocks-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    min-width: 180px;
}

.stocks-card-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    text-align: left;
}

/* Responsive Stocks Cards */
@media (max-width: 768px) {
    .section-stocks-steps {
        padding-bottom: 2rem;
    }
    
    .stocks-card-wrapper {
        position: static !important;
        z-index: auto !important;
    }
    
    .stocks-card {
        margin-bottom: 1.5rem !important;
        position: static !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .stocks-card-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
    }
    
    .stocks-card-title {
        font-size: 1.5rem;
    }
    
    .stocks-card-desc {
        font-size: 0.95rem;
    }
    
    .offer-section-title {
        font-size: 2rem;
    }
}

/* Stocks Table Section */
.stocks-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .stocks-section {
    background: var(--bg-dark);
}

.table-container {
    max-width: 1400px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .table-container {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #E6E9E9;
}

[data-theme="dark"] .table-container {
    background: var(--bg-card);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Trading Specifications Table */
.ts-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-search-wrapper {
    margin-bottom: 1.5rem;
}

.ts-search-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ts-search-input {
    padding: 0.75rem 1rem;
    border: 1px solid #E6E9E9;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 280px;
    background: #ffffff;
    color: #333;
    transition: border-color 0.2s ease;
}

.ts-search-input:focus {
    outline: none;
    border-color: #FF444F;
}

[data-theme="dark"] .ts-search-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ts-search-results {
    font-size: 0.9rem;
    color: #666;
}

[data-theme="dark"] .ts-search-results {
    color: rgba(255, 255, 255, 0.6);
}

.ts-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #E6E9E9;
}

[data-theme="dark"] .ts-table-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.ts-table-scroll {
    overflow-x: auto;
}

.ts-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.ts-th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    background: #F4F4F6;
    white-space: nowrap;
    position: relative;
}

[data-theme="dark"] .ts-th {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.ts-th-main {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 140px;
}

.ts-th-wide {
    min-width: 220px;
}

.ts-th-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.ts-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: #1a1a2e;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    width: 200px;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ts-th-content:hover .ts-tooltip {
    display: block;
}

.ts-row {
    border-bottom: 1px solid #E6E9E9;
    transition: background 0.2s ease;
}

[data-theme="dark"] .ts-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ts-row:hover {
    background: #F8F9FA;
}

[data-theme="dark"] .ts-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ts-td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
}

[data-theme="dark"] .ts-td {
    color: rgba(255, 255, 255, 0.9);
}

.ts-td-main {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 1;
    font-weight: 600;
}

[data-theme="dark"] .ts-td-main {
    background: #0a0a0a;
}

.ts-row:hover .ts-td-main {
    background: #F8F9FA;
}

[data-theme="dark"] .ts-row:hover .ts-td-main {
    background: rgba(255, 255, 255, 0.03);
}

.ts-td-wide {
    min-width: 220px;
}

.ts-instrument {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ts-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Pagination */
.ts-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.ts-page-buttons {
    display: flex;
    gap: 0.25rem;
}

.ts-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ts-page-btn:hover {
    background: #F4F4F6;
}

.ts-page-btn.active {
    background: #1a1a2e;
    color: #ffffff;
}

[data-theme="dark"] .ts-page-btn {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .ts-page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .ts-page-btn.active {
    background: #FF444F;
    color: #ffffff;
}

.ts-page-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ts-page-next:hover {
    background: #F4F4F6;
}

[data-theme="dark"] .ts-page-next {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .ts-page-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Disclaimer */
.ts-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: #F8F9FA;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

[data-theme="dark"] .ts-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
}

.ts-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
}

[data-theme="dark"] .ts-info-icon {
    filter: invert(1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .faq-section {
    background: var(--bg-darker);
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    line-height: 1.2;
}

[data-theme="dark"] .faq-title {
    color: var(--text-primary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #d6dadb;
}

[data-theme="dark"] .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid #d6dadb;
}

[data-theme="dark"] .faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
    gap: 20px;
}

[data-theme="light"] .faq-question {
    color: #333333;
}

[data-theme="dark"] .faq-question {
    color: var(--text-primary);
}

.faq-question span {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
}

.faq-question:hover {
    color: #FF444F;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--text-light);
    stroke-width: 2;
    width: 24px;
    height: 24px;
}

[data-theme="light"] .faq-icon {
    stroke: #999999;
}

[data-theme="dark"] .faq-icon {
    stroke: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #414652;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

[data-theme="light"] .faq-answer p {
    color: #414652;
}

[data-theme="dark"] .faq-answer p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: #FF444F;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #0E0E0E;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Footer Breaker CTA Section */
.footer-breaker-section {
    position: relative;
    overflow: hidden;
    background: #ff6347;
    padding: 0;
    margin: 0;
}

.footer-breaker-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-breaker-grid {
    z-index: 9999999999;
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
}

.fb-box {
    background: transparent;
    border: 1px solid rgba(200, 40, 20, 0.2);
    position: relative;
}

.fb-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 2;
    opacity: 0.7;
    filter: blur(6px);
    transition: opacity 0.3s ease, filter 0.3s ease;
    will-change: transform, filter, opacity;
}

.fb-icon.scroll-visible {
    filter: blur(0px);
    opacity: 1;
}

.fb-icon-1 {
    top: 5%;
    left: 20%;
}

.fb-icon-2 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.fb-icon-3 {
    top: 5%;
    right: 20%;
}

.fb-icon-4 {
    top: 35%;
    left: 8%;
    transform: translateY(-50%);
}

.fb-icon-5 {
    top: 35%;
    right: 8%;
    transform: translateY(-50%);
}

.fb-icon-6 {
    bottom: 5%;
    left: 20%;
}

.fb-icon-7 {
    bottom: 5%;
    right: 20%;
}

.fb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 99, 71, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-breaker-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 20px;
}

.fb-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fb-button {
    display: inline-block;
    padding: 18px 48px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fb-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        width: 300px;
        
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow-x: auto;
    }

    .stocks-card-wrapper {
        position: relative !important;
        top: auto !important;
    }

    .stocks-card {
        margin-bottom: 2rem;
    }

    .ts-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ts-pagination {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .ts-page-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ts-page-btn {
        min-width: 40px;
    }

    .fb-heading {
        font-size: 2rem;
    }
    
    .fb-button {
        padding: 14px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .footer-breaker-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    
    .fb-icon {
        width: 100px;
        height: 100px;
    }
    
    .fb-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .footer-breaker-container {
        min-height: 400px;
    }
    
    .footer-breaker-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .fb-icon {
        width: 60px;
        height: 60px;
    }
    
    .fb-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .footer-breaker-content {
        padding: 60px 20px;
    }
}

