﻿:root {
    --gold: #D4AF37;
    --gold-light: #F4D06F;
    --gold-dark: #AA8C2C;
    --dark-blue: #0B1321;
    --darker-blue: #050A12;
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --white: #FFFFFF;

    --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
    --font-subheading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --transition: all 0.3s ease;
    --transition-transform: transform 0.3s ease;
    --transition-color: color 0.3s ease, opacity 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--dark-blue);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
}

.section-padding {
    padding: 120px 0;
}

.bg-darker {
    background-color: var(--darker-blue);
}

.bg-main-gradient {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, rgba(11, 19, 33, 0.95), rgba(11, 19, 33, 0.8));
    backdrop-filter: blur(10px);
    will-change: padding, background;
    contain: layout style;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(5, 10, 18, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-logo {
    width: 180px;
    height: 41px;
    object-fit: contain;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.desktop-nav ul {
    display: flex;
    gap: 35px;
}

.desktop-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    position: relative;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--gold);
    opacity: 1;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--gold);
}

.divider-v {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

/* Hamburger animation when menu is open */
.mobile-menu-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 10, 18, 0.98);
    padding: 100px 30px 30px;
    text-align: center;
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
}

.mobile-nav a.active {
    border-bottom-color: var(--gold);
}

.mobile-lang {
    padding: 30px 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.mobile-lang button {
    background: none;
    border: none;
    color: inherit;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang button:hover {
    color: var(--gold);
}

/* Hero Section */
#hero {
    height: 100vh;
    min-height: 700px;
    background: url('img/hero-bg.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 10, 18, 0.3), rgba(5, 10, 18, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-family: var(--font-subheading);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    /* Prevent wrapping issues on smaller screens */
}

/* Section Header */
.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header.center-text {
    text-align: center;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--gold);
    margin: 0 auto;
}

.section-header:not(.center-text) .divider {
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.two-col {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 500;
    font-family: var(--font-subheading);
}

.text-content p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Image Box / Features */
.image-box {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-box:hover .feature-img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: var(--white);
    text-align: center;
}

.highlight-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 700;
    margin: 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Opportunity */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.opp-card {
    background: var(--dark-blue);
    padding: 40px;
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease;
    contain: content;
}

.opp-card:hover {
    transform: translateY(-5px);
}

.opp-card h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.check-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.check-list li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    display: inline-block;
}

/* Charts */
.chart-container-wrapper {
    margin: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.chart-container-wrapper h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--gold);
}

.chart-box {
    position: relative;
    height: 400px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.chart-box canvas {
    display: block;
    max-width: 100% !important;
}

/* Chart Sources */
.chart-sources {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-align: center;
}

.source-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.source-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.source-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition);
}

.source-links a:hover {
    color: var(--gold);
}

.source-links .no-link {
    text-decoration: none;
    cursor: default;
}

.source-links .no-link:hover {
    color: var(--text-muted);
}

/* Data Summary */
.data-summary {
    margin-top: 20px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.data-summary p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.data-summary strong {
    color: var(--gold);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.structure-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.structure-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.structure-item h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Assets */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.asset-card {
    background: var(--darker-blue);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    contain: content;
}

.asset-img-container {
    height: 250px;
    overflow: hidden;
}

.asset-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.asset-card:hover .asset-img-container img {
    transform: scale(1.1);
}

.asset-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.asset-card.premium {
    background: linear-gradient(to bottom, var(--darker-blue), #121824);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.asset-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.asset-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.location {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.asset-body {
    padding: 25px;
}

.asset-body p {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.example-box {
    margin-top: 25px;
    padding: 18px;
    background: rgba(212, 175, 55, 0.08);
    font-size: 0.9rem;
    border-left: 3px solid var(--gold);
    line-height: 1.5;
}

/* Financials */
.financials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.financials-wrapper > * {
    min-width: 0;
    overflow: hidden;
}

.fin-calc {
    background: var(--dark-blue);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-row.highlight {
    color: var(--gold);
    font-weight: 700;
    border-color: var(--gold);
}

.roi-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-blue);
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 1.1rem;
}

.fin-details {
    margin-top: 35px;
}

.fin-details h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.roi-viz {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.roi-viz .chart-box {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.roi-table th {
    text-align: left;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.roi-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.positive {
    color: #4CAF50;
    font-weight: 700;
}

/* Agent Section */
.agent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.perks-list {
    margin: 25px 0;
}

.perks-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.perks-list li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2rem;
    top: 2px;
}

.earnings-table {
    margin-top: 35px;
    background: var(--darker-blue);
    padding: 25px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.earnings-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.earnings-row.head {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 15px;
    margin-bottom: 5px;
}

/* Updated Steps List for "Next Steps" with fix for clipping */
.steps-list {
    counter-reset: steps;
    padding: 20px 0;
    /* Add padding to prevent clipping */
    list-style: none;
}

.steps-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    font-size: 1.05rem;
    padding-right: 10px;
    /* Right padding as buffer */
}

.steps-list li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: -5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-persons {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.person h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.1rem;
}

.person p {
    color: var(--gold);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--dark-blue);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-footer {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* RTL Support - Arabic */
[dir="rtl"] {
    text-align: right;
    font-family: 'Inter', sans-serif;
    /* You might want a dedicated arabic font for better aesthetics, but Inter works */
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .steps-list li {
    padding-left: 0;
    padding-right: 60px;
}

[dir="rtl"] .steps-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .check-list li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .check-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .perks-list li {
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .perks-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .example-box {
    border-left: none;
    border-right: 3px solid var(--gold);
}

[dir="rtl"] .roi-table th {
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .financials-wrapper {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {

    .agent-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 80px 0;
    }

    .contact-persons {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header-container {
        position: relative;
    }

    header {
        padding: 15px 0;
    }

    .logo-img-link {
        flex-shrink: 0;
    }

    .main-logo {
        width: 140px;
        height: 32px;
    }

    .hero-content h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .hero-content .subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Mobile: use smaller hero image */
    #hero {
        background-image: url('img/hero-bg-mobile.webp');
        min-height: 600px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-right a {
        margin: 0 15px;
    }

    .earnings-row span,
    .earnings-row.head span {
        font-size: 0.8rem;
    }

    .feature-overlay h3 {
        font-size: 1.2rem;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .opp-cards {
        gap: 20px;
    }

    .opp-card {
        padding: 25px 20px;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    /* Charts responsive */
    .chart-container-wrapper {
        padding: 15px;
        margin: 30px 0;
    }

    .chart-container-wrapper h3 {
        font-size: 1.1rem;
    }

    .chart-box {
        height: 280px;
    }

    .source-links {
        gap: 10px;
    }

    .source-links a {
        font-size: 0.75rem;
    }

    .data-summary {
        padding: 15px;
    }

    .data-summary p {
        font-size: 0.85rem;
    }

    .roi-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .roi-table {
        min-width: 500px;
    }

    .roi-table th,
    .roi-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .structure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .structure-item {
        padding: 20px;
    }

    /* Financial Model & ROI responsive */
    .fin-calc {
        padding: 20px;
    }

    .fin-calc h3,
    .roi-viz h3 {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .calc-row {
        flex-wrap: wrap;
        gap: 4px;
        padding: 14px 0;
        font-size: 0.9rem;
    }

    .calc-row .value {
        font-size: 0.9rem;
        word-break: break-all;
    }

    .roi-badge {
        font-size: 0.95rem;
        padding: 6px 16px;
    }

    .fin-details {
        margin-top: 25px;
    }

    .fin-details h4 {
        font-size: 0.95rem;
    }

    .fin-details ul li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .earnings-table {
        padding: 15px;
    }

    .earnings-table h4 {
        font-size: 0.95rem;
    }

    .earnings-row {
        gap: 8px;
    }

    .perks-list li {
        font-size: 0.9rem;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .perks-list li::before {
        font-size: 1.2rem;
    }

    .steps-list li {
        padding-left: 45px;
        font-size: 0.9rem;
        margin-bottom: 22px;
    }

    .steps-list li::before {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .agent-info h3,
    .next-steps h3 {
        font-size: 1.15rem;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-container {
        gap: 40px;
    }
}

/* Disclaimer Styling */
.footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Ensure footer links wrap nicely on mobile */
@media (max-width: 768px) {
    .footer-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Fix for random line above Amit Gupta */
    .person {
        border-top: none !important;
    }
}

/* Additional mobile fixes */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .chart-box {
        height: 220px;
    }

    .chart-container-wrapper {
        padding: 10px;
        margin: 20px 0;
    }

    .chart-container-wrapper h3 {
        font-size: 0.95rem;
    }

    .source-label {
        font-size: 0.7rem;
    }

    .source-links a {
        font-size: 0.7rem;
    }

    /* Financial Model deep mobile */
    .fin-calc {
        padding: 15px;
    }

    .fin-calc h3,
    .roi-viz h3 {
        font-size: 1rem;
    }

    .calc-row {
        flex-direction: column;
        gap: 2px;
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .calc-row .value {
        color: var(--gold-light);
        font-size: 0.85rem;
    }

    .roi-badge {
        font-size: 0.85rem;
        padding: 5px 14px;
        margin-top: 15px;
    }

    .fin-details ul li {
        font-size: 0.82rem;
    }

    .earnings-table {
        padding: 12px;
    }

    .earnings-row {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 5px;
        padding: 10px 0;
    }

    .earnings-row span,
    .earnings-row.head span {
        font-size: 0.72rem;
    }

    .roi-table {
        min-width: 420px;
    }

    .roi-table th,
    .roi-table td {
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .steps-list li {
        padding-left: 40px;
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: -2px;
    }

    .perks-list li {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 18px;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}