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

 /* ── Design Tokens (Figma spec) ── */
 :root {
     --bg: #0C0D29;
     /* Midnight */
     --bg-surface: #0f1c2e;
     --card: #111C2E;
     /* Card surface */
     --card-hover: #162438;
     --blue: #3DB8E6;
     /* Diamond Blue */
     --blue-light: #4FC3F7;
     /* Electric Blue */
     --blue-btn: #2196d3;
     /* Button blue */
     --blue-glow: rgba(61, 184, 230, 0.35);
     --green: #22C55E;
     --amber: #F59E0B;
     --red: #EF4444;
     --white: #ffffff;
     --text-muted: #7a9bbf;
     --text-dim: #4e6a88;
     --border: rgba(255, 255, 255, 0.07);
     --border-card: rgba(61, 184, 230, 0.18);
     --border-active: #3DB8E6;
     --radius-sm: 8px;
     --radius-md: 12px;
     --radius-lg: 16px;
     --radius-xl: 24px;

     /* Additional color variables */
     --trustpilot-green: #00b67a;
     --trustpilot-star: #04DA8D;
     --text-light: #c8ddf0;
     --text-lighter: #e0eef8;
     --gradient-primary: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     --gradient-blue-light: linear-gradient(83deg, #1046843b, #5f95c77d);
     --shadow-primary: 0 0 8px rgba(74, 144, 226, 0.8), 0 0 60px rgba(74, 144, 226, 0.6), 0 0 90px rgba(74, 144, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
     --shadow-primary-hover: 0 0 40px rgba(74, 144, 226, 1), 0 0 80px rgba(74, 144, 226, 0.8), 0 0 120px rgba(74, 144, 226, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
     --border-blue-25: rgba(61, 184, 230, 0.25);
     --border-blue-15: rgba(61, 184, 230, 0.15);
     --border-blue-08: rgba(61, 184, 230, 0.08);
     --border-blue-07: rgba(61, 184, 230, 0.07);
     --border-blue-10: rgba(61, 184, 230, 0.1);
     --shadow-inset-white: inset 0 1px 0 rgba(255, 255, 255, 0.05);
     --bg-card-transparent: rgb(7 14 26 / 7%);
     --bg-hover-white: rgba(255, 255, 255, 0.07);
     --border-quickline: rgba(43, 199, 255, 0.15);
     --bg-check: #2f509d;
     --color-bitcoin: #f7931a;
     --color-paypal: #009cde;
     --color-stripe: #635bff;
 }

 body {
     font-family: 'Inter', system-ui, sans-serif;
     /* background: var(--bg); */
     color: var(--white);
     min-height: 100vh;
     padding: 0 20px 20px 20px;
     background-image: url('../image/backgroundImage.png');
     background-size: 100% 100%;
     background-repeat: no-repeat;
 }

 h1,
 h2,
 h3,
 h4,
 .logo-text .l1,
 .panel-name {
     font-family: 'Space Grotesk', sans-serif;
 }

 /* ════════════════════════════════
       NAVBAR
    ════════════════════════════════ */
 nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 80px;
     padding: 0 35px;
     background: transparent;
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
     position: sticky;
     top: 0;
     z-index: 100;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     flex-shrink: 0;
 }

 .logo svg {
     width: 45px;
     height: 45px;
 }

 .logo-text .l1 {
     font-size: 18px;
     font-weight: 700;
     color: var(--white);
     letter-spacing: 1px;
     line-height: 1.2;
 }

 .logo-text .l2 {
     font-size: 12px;
     font-weight: 400;
     color: var(--white);
     letter-spacing: 3px;
     text-transform: uppercase;
     display: flex;
     align-items: center;
 }

 .line-left,
 .line-right {
     height: 1px;
     background: var(--white);
     flex: 1;
 }

 .line-left {
     margin-right: 5px;
 }

 .line-right {
     margin-left: 5px;
 }

 .MenuSec {
     display: flex;
     gap: 50px;
     align-items: center;
 }

 .nav-links {
     display: flex;
     gap: 32px;
     list-style: none;
     /* position: absolute; */
     /* left: 50%; */
     /* transform: translateX(-50%); */
 }

 .nav-links a {
     font-size: 15px;
     font-weight: 400;
     color: var(--white);
     text-decoration: none;
     transition: color .15s;
     letter-spacing: 1px;
     white-space: nowrap;
 }

 .nav-links a:hover {
     color: var(--blue);
 }

 .nav-links a.active {
     color: var(--white);
     border-bottom: 2px solid var(--blue);
     padding-bottom: 6px;
 }

 .nav-right {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .btn-ghost {
     background: none;
     border: none;
     color: var(--white);
     font-size: 15px;
     font-weight: 400;
     cursor: pointer;
     padding: 8px 16px;
     border-radius: var(--radius-sm);
 }

 .btn-ghost:hover {
     background: var(--bg-hover-white);
 }

 /* Primary CTA: gradient blue with strong glow effect */
 .btn-primary {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 10px;
     padding: 10px 35px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     box-shadow: var(--shadow-primary);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .btn-primary:hover {
     box-shadow: var(--shadow-primary-hover);
     transform: translateY(-2px) scale(1.02);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 4px;
 }

 .hamburger span {
     display: block;
     width: 22px;
     height: 2px;
     background: var(--white);
     border-radius: 2px;
 }

 /* ════════════════════════════════
       TOP SECTION (hero + panel, unified dark bg)
    ════════════════════════════════ */
 .top-section {
     position: relative;
     overflow: hidden;
     padding-bottom: 64px;
 }

 /* Candlestick chart background */
 .chart-bg {
     position: absolute;
     right: -20px;
     top: -10px;
     width: 52%;
     height: 110%;
     opacity: 0.15;
     pointer-events: none;
 }

 /* Trustpilot badge – top right */
 .tp-badge {
     position: absolute;
     top: 20px;
     right: 48px;
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 18px;
     font-weight: 500;
     color: #c8ddf0;
     z-index: 2;
 }

 .tp-star-icon svg {
     width: 30px;
     height: 30px;
 }

 .tp-badge .score {
     font-weight: 700;
     color: #e0eef8;
 }

 .tp-badge .stars {
     color: var(--trustpilot-green);
     font-size: 18px;
     letter-spacing: 1px;
 }

 /* Hero text */
 .hero-text {
     position: relative;
     z-index: 2;
     text-align: center;
     padding: 105px 24px 48px;
 }

 .hero-text h1 {
     font-size: clamp(28px, 3.5vw, 55px);
     font-weight: 800;
     line-height: 1.12;
     margin-bottom: 12px;
     color: var(--white);
 }

 .hero-text p {
     font-size: 20px;
     color: var(--white);
     font-weight: 400;
     margin-top: 25px;
 }

 /* ── Challenge Panel ── */
 .challenge-panel {
     position: relative;
     z-index: 2;
     padding: 0 40px;
     margin-top: 20px;
 }

 /* Panel box: card bg #111C2E, radius 16px, shadow, blue border */
 .panel-box {
     /* background: var(--card); */
     border: 1px solid var(--border-blue-25);
     border-radius: var(--radius-lg);
     padding: 28px 24px 45px;
     box-shadow:
         0 0 0 1px var(--border-blue-08),
         0 0 60px var(--border-blue-07),
         var(--shadow-inset-white);
 }

 .panel-label {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
 }

 .panel-label svg {
     width: 35px;
     height: 35px;
 }

 .panel-name {
     font-size: 30px;
     font-weight: 400;
     color: var(--white);
 }

 .panel-name .funded {
     color: var(--blue);
 }

 /* ── Cards grid ── */
 .cards-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 12px;
     margin-bottom: 24px;
     margin-top: 15px;
 }

 /* Card: bg #111C2E, border subtle, radius 16px */
 .c-card {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     cursor: pointer;
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
 }

 .c-card:hover:not(.active) {
     border-color: var(--border-blue-25);
     transform: translateY(-2px);
     box-shadow: 0 4px 20px var(--border-blue-10);
 }

 .c-card.active {
     border-color: var(--border-active);
     background: linear-gradient(150deg, var(--border-blue-10) 0%, rgba(10, 28, 52, 0.95) 100%);
     box-shadow:
         0 0 0 1.5px var(--blue),
         0 8px 32px var(--border-blue-25);
 }

 /* Most Popular badge */
 .badge-popular {
     position: absolute;
     top: -11px;
     left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(90deg, #3DB8E6, #4FC3F7);
     color: #fff;
     font-size: 9px;
     font-weight: 700;
     padding: 3px 10px;
     border-radius: 20px;
     white-space: nowrap;
     display: flex;
     align-items: center;
     gap: 4px;
     letter-spacing: 0.3px;
     font-family: 'Space Grotesk', sans-serif;
 }

 .popularTag svg {
     width: 20px;
     height: 20px;
 }

 .popularTag {
     text-align: center;
     border-radius: 10px;
     padding: 13px 30px;
     width: 90%;
     margin: auto auto 10px auto;
     background: var(--gradient-blue-light);
 }

 .popularTaginner {
     display: flex;
     justify-content: center;
     gap: 10px;
     align-items: center;
     font-size: 13px;
 }

 .popularTaginner div {
     width: 20px;
     height: 20px;
 }

 .popularTagPrice {
     font-size: 15px;
     margin-top: 3px;
 }

 .c-amount {
     font-size: clamp(24px, 2.4vw, 32px);
     font-weight: 700;
     color: #c8ddf0;
     margin-bottom: 2px;
     font-family: 'Space Grotesk', sans-serif;
     text-align: center;
 }

 .c-price {
     font-size: clamp(24px, 2.4vw, 26px);
     font-weight: 400;
     color: var(--white);
     margin-bottom: 14px;
     text-align: center;
     line-height: 1;
     font-family: 'Space Grotesk', sans-serif;
     margin-top: 10px;
 }

 .c-stats {
     display: flex;
     flex-direction: column;
     gap: 10px;
     border-top: 1px solid var(--border-blue-15);
     padding-top: 15px;
 }

 .s-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 14px;
     border-bottom: 1px solid var(--border-blue-15);
     padding-bottom: 10px;
 }

 .s-row:last-child {
     border-bottom: unset;
 }

 .s-row .lbl {
     color: #c8ddf0;
 }

 .s-row .val {
     color: #c8ddf0;
     font-weight: 600;
 }

 /* Continue button: gradient, rounded XL, glow */
 .continue-wrap {
     text-align: center;
 }

 .btn-continue {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 10px;
     padding: 15px 100px;
     font-size: 17px;
     font-weight: 600;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     box-shadow: var(--shadow-primary);
     transition: all 0.3s ease;
     letter-spacing: 0.3px;
     position: relative;
     overflow: hidden;
 }

 .btn-continue:hover {
     box-shadow: var(--shadow-primary-hover);
     transform: translateY(-2px) scale(1.02);
 }

 /* ════════════════════════════════
       RECENT PAYOUTS  (light section)
    ════════════════════════════════ */
 .payouts-section {
     /* background: #f4f7fb; */
     padding: 28px;
     border: 1px solid var(--border-blue-25);
     box-shadow: 0 0 0 1px var(--border-blue-08),
         0 0 60px var(--border-blue-07),
         var(--shadow-inset-white);
     margin: 0 40px;
     border-radius: var(--radius-lg);
 }

 .payouts-header {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 40px;
     margin: 0 auto 28px;
 }

 .payouts-header h2 {
     font-size: 30px;
     font-weight: 400;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .tp-inline {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     font-size: 18px;
     color: #c8ddf0;
 }

 .tp-sm-icon svg {
     width: 30px;
     height: 30px;
 }

 .tp-inline .stars {
     color: var(--trustpilot-green);
     font-size: 18px;
     letter-spacing: 1px;
 }

 .tp-inline .score {
     font-weight: 400;
     color: #c8ddf0;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     margin: 0 auto 36px;
 }

 /* Review card: white bg, radius 16px, shadow */
 .r-card {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-lg);
     padding: 18px 16px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
 }

 .r-top {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 10px;
 }

 .r-avatar {
     width: 60px;
     height: 60px;
 }

 .r-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 .r-info {
     flex: 1;
     min-width: 0;
     align-self: center;
 }

 .r-name {
     font-size: 21px;
     font-weight: 700;
     color: var(--white);
 }

 .r-amount {
     font-size: 21px;
     font-weight: 900;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .r-pay {
     margin-left: auto;
     flex-shrink: 0;
     align-self: flex-end;
 }

 .r-pay img {
     width: 70px;
     height: 30px;
 }

 .r-text {
     font-size: 14px;
     color: var(--white);
     line-height: 1.55;
 }

 .r-stars {
     color: #c4f0fe;
     font-size: 16px;
     margin-top: 8px;
     letter-spacing: 1px;
 }

 .starRating {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 10px;
 }

 .starRating p {
     font-size: 14px;
 }

 /* Quick payouts */
 .quick-pay {
     margin: 0 auto;
     padding-top: 28px;
     text-align: center;
 }

 .quick-pay h3 {
     font-size: 30px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .quickpayHead {
     width: 90%;
     margin: auto;
     display: flex;
     align-items: center;
 }

 .quickline-left,
 .quickline-right {
     height: 1px;
     background: var(--border-quickline);
     flex: 1;
 }

 .quickline-left {
     margin-right: 10px;
 }

 .quickline-right {
     margin-left: 10px;
 }

 .pay-logos {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px 100px;
     flex-wrap: wrap;
     margin-top: 20px;
 }

 .pay-logos .pl {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .pl img {
     width: 100px;
     height: 40px;
 }

 /* Stripe */
 .stripe-text {
     color: var(--color-stripe);
     font-style: italic;
     font-size: 22px;
     font-weight: 900;
     letter-spacing: -0.5px;
 }

 /* Bitcoin */
 .btc-circle {
     width: 26px;
     height: 26px;
     background: var(--color-bitcoin);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 14px;
     font-weight: 700;
 }

 .btc-text {
     font-size: 17px;
     font-weight: 700;
     color: var(--white);
 }

 /* PayPal */
 .pp-circle {
     width: 26px;
     height: 26px;
     background: var(--color-paypal);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 11px;
     font-weight: 700;
 }

 .pp-text .a {
     color: #003087;
     font-size: 17px;
     font-weight: 800;
 }

 .pp-text .b {
     color: #009cde;
     font-size: 17px;
     font-weight: 800;
 }

 /* ════════════════════════════════
       TRADER BENEFITS
    ════════════════════════════════ */
 .benefits-section {
     /* background: var(--bg-surface); */
     padding: 48px 24px 52px;
     text-align: center;
     border: 1px solid var(--border-blue-25);
     margin: 40px;
     border-radius: var(--radius-lg);
     position: relative;
 }

 .benefits-section h2 {
     font-size: 30px;
     font-weight: 800;
     color: var(--white);
     position: absolute;
     left: 0;
     right: 0;
     top: -20px;
     width: 26%;
     margin: auto;
     backdrop-filter: blur(12px);
 }

 .benefits-row {
     display: flex;
     justify-content: center;
     gap: 40px;
     margin: 0 auto;
 }

 .b-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 22px;
     font-weight: 500;
     color: #c8ddf0;
 }

 /* Check icon: circle with checkmark, green success color */
 .b-check {
     width: 25px;
     height: 25px;
     border-radius: 3px;
     background: var(--bg-check);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 15px;
     color: var(--white);
 }

 /* ════════════════════════════════
       AFFILIATE HERO SECTION
    ════════════════════════════════ */
 .affiliate-hero-section {
     padding: 100px 40px 60px;
     position: relative;
     z-index: 1;
     text-align: center;
 }

 .affiliate-hero-container {
     max-width: 1000px;
     margin: 0 auto;
 }

 .affiliate-hero-title {
     font-size: clamp(36px, 5vw, 56px);
     font-weight: 800;
     color: var(--white);
     margin-bottom: 24px;
     font-family: 'Space Grotesk', sans-serif;
     line-height: 1.2;
 }

 .affiliate-hero-subtitle {
     font-size: clamp(16px, 2vw, 20px);
     color: var(--text-muted);
     line-height: 1.6;
     max-width: 900px;
     margin: 0 auto;
 }

 /* Responsive styles for affiliate hero */
 @media (max-width: 768px) {
     .affiliate-hero-section {
         padding: 80px 24px 40px;
     }

     .affiliate-hero-title {
         font-size: 36px;
         margin-bottom: 20px;
     }

     .affiliate-hero-subtitle {
         font-size: 16px;
     }
 }

 @media (max-width: 480px) {
     .affiliate-hero-section {
         padding: 60px 20px 30px;
     }

     .affiliate-hero-title {
         font-size: 28px;
         margin-bottom: 16px;
     }

     .affiliate-hero-subtitle {
         font-size: 14px;
     }
 }

 /* ════════════════════════════════
       AFFILIATE BENEFITS SECTION
    ════════════════════════════════ */
 .affiliate-benefits-section {
     padding: 20px 40px;
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
 }

 .affiliate-benefits-section-banner {
     position: absolute;
     width: 42%;
     right: 5%;
     top: 4%;
 }

 .affiliate-benefits-section-banner img {
     width: 100%;
     height: auto;
     object-fit: cover;
 }

 .affiliate-benefits-section-banner-mobile{
    display: none;
 }

 .affiliate-benefits-container {
     /* max-width: 800px; */
     /* margin: 0 auto; */
     text-align: center;
 }

 .affiliate-benefits-title {
     font-size: clamp(32px, 4vw, 48px);
     font-weight: 800;
     color: var(--white);
     margin-bottom: 16px;
     font-family: 'Space Grotesk', sans-serif;
 }

 .affiliate-benefits-subtitle {
     font-size: 16px;
     color: var(--text-muted);
     line-height: 1.6;
     margin-bottom: 48px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .affiliate-benefits-list {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
 }

 .affiliate-benefit-item {
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 20px;
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     transition: border-color .2s, box-shadow .2s, transform .15s;
     width: 48%;
 }

 .affiliate-benefit-item:hover {
     border-color: var(--border-blue-25);
     transform: translateY(-2px);
     box-shadow: 0 4px 20px var(--border-blue-10);
 }

 .affiliate-benefit-icon {
     flex-shrink: 0;
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .affiliate-benefit-icon svg {
     width: 60px;
     height: 60px;
 }

 .affiliate-benefit-text {
     font-size: 18px;
     font-weight: 500;
     color: var(--white);
     text-align: left;
 }

 /* Responsive styles for affiliate benefits */
 @media (max-width: 768px) {

     .affiliate-benefits-title {
         font-size: 32px;
     }

     .affiliate-benefits-subtitle {
         font-size: 14px;
         margin-bottom: 36px;
     }

     .affiliate-benefits-list {
         max-width: 100%;
     }

     .affiliate-benefit-item {
         padding: 16px;
         gap: 16px;
     }

     .affiliate-benefit-icon {
         width: 50px;
         height: 50px;
     }

     .affiliate-benefit-icon svg {
         width: 50px;
         height: 50px;
     }

     .affiliate-benefit-text {
         font-size: 16px;
     }
 }

 @media (max-width: 480px) {
     .affiliate-benefits-section {
         padding: 40px 20px;
     }

     .affiliate-benefits-title {
         font-size: 28px;
     }

     .affiliate-benefits-subtitle {
         font-size: 13px;
         margin-bottom: 28px;
     }

     .affiliate-benefit-item {
         padding: 14px;
         gap: 12px;
     }

     .affiliate-benefit-icon {
         width: 45px;
         height: 45px;
     }

     .affiliate-benefit-icon svg {
         width: 45px;
         height: 45px;
     }

     .affiliate-benefit-text {
         font-size: 15px;
     }
 }

 /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
 .site-footer {
     /* background: var(--bg); */
     padding: 40px 24px 0;
     text-align: center;
 }

 .footer-tpp {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 18px;
 }

 .footer-tpp .stars {
     color: var(--trustpilot-green);
     font-size: 18px;
     letter-spacing: 1px;
 }

 .footer-tpp .score {
     font-weight: 700;
     color: #c8ddf0;
 }

 /* ════════════════════════════════
       MOBILE NAV
    ════════════════════════════════ */
 .mobile-nav {
     display: none;
     flex-direction: column;
     background: var(--card);
     border-bottom: 1px solid var(--border);
     padding: 12px 20px 16px;
     position: fixed;
     width: 100%;
     z-index: 9999;
     left: 0;
     top: 80px;
 }

 .mobile-nav.open {
     display: flex;
 }

 .mobile-nav a {
     color: var(--text-muted);
     text-decoration: none;
     font-size: 15px;
     font-weight: 500;
     padding: 11px 0;
     border-bottom: 1px solid var(--border);
 }

 .mobile-nav a:hover {
     color: var(--white);
 }

 .mobile-nav .btn-primary {
     margin-top: 12px;
     width: 100%;
     text-align: center;
     padding: 13px;
     font-size: 15px;
 }


 /* ═══════════════════════════
       HERO
    ═══════════════════════════ */
 .hero {
     padding: 100px 40px;
     /* display: grid; */
     /* grid-template-columns: 1fr 420px; */
     /* gap: 48px; */
     align-items: center;
     position: relative;
     border-bottom: 1px solid var(--border-blue-25);
 }

 /* Background glow */
 body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     pointer-events: none;
     background:
         radial-gradient(ellipse 55% 45% at 30% 25%, rgba(61, 184, 230, 0.09) 0%, transparent 65%),
         radial-gradient(ellipse 40% 35% at 75% 15%, rgba(29, 78, 216, 0.07) 0%, transparent 60%),
         radial-gradient(ellipse 30% 30% at 60% 70%, rgba(61, 184, 230, 0.05) 0%, transparent 60%);
     z-index: 0;
 }

 .hero-left {
     position: relative;
     z-index: 1;
     width: 50%;
     text-align: center;
 }

 .hero-left h1 {
     font-size: clamp(30px, 4vw, 50px);
     font-weight: 800;
     line-height: 1.12;
     letter-spacing: 1px;
     margin-bottom: 16px;
 }

 .hero-left h1>span {
     color: #92bfec !important;
 }

 .hero-left p {
     font-size: 18px;
     background: linear-gradient(90deg, var(--white), #5ca9f5);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 28px;
     line-height: 1.65;
     /* width: 50%; */
 }

 .hero-buttons {
     margin-bottom: 44px;
 }

 .btn-hero {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 10px;
     padding: 10px 35px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     box-shadow: var(--shadow-primary);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .btn-hero:hover {
     box-shadow: var(--shadow-primary-hover);
     transform: translateY(-2px) scale(1.02);
 }

 .btn-ghostt {
     font-size: 14px;
     font-weight: 400;
     color: var(--white);
     background: none;
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: var(--radius-sm);
     padding: 10px 30px;
     cursor: pointer;
     transition: border-color .2s, color .2s;
     margin-top: 15px;
 }

 .btn-ghostt:hover {
     border-color: var(--blue);
     color: var(--white);
 }

 .hero-stats {
     display: flex;
     justify-content: center;
 }

 .hs-item {
     width: 25%;
     text-align: center;
     border-right: 1px solid var(--border-blue-25);
     border-left: 1px solid var(--border-blue-25);
 }

 .hs-value {
     font-size: 30px;
     color: #91deff;
 }

 .hs-label {
     font-size: 14px;
     margin-top: 10px;
 }

 .hs-stars {
     font-size: 14px;
 }

 .hs-star {
     color: var(--amber);
     font-size: 11px;
 }

 /* Hero right panel */
 .hero-right {
     position: absolute;
     z-index: 1;
     top: 5%;
     right: 5%;
     width: 45%;
 }

 .hero-right img {
     width: 100%;
     height: auto;
     object-fit: cover;
 }

 .trading-card {
     background: linear-gradient(145deg, #0d1c2e, #0a1628);
     border: 1px solid var(--card-border);
     border-radius: var(--radius-xl);
     padding: 22px 24px;
     position: relative;
     overflow: hidden;
 }

 .trading-card::before {
     content: '';
     position: absolute;
     top: -40px;
     right: -40px;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(61, 184, 230, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .tc-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 16px;
 }

 .tc-balance-label {
     font-size: 10px;
     color: var(--text-muted);
     letter-spacing: .06em;
     margin-bottom: 4px;
 }

 .tc-balance {
     font-size: 26px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .tc-change {
     font-size: 12px;
     color: var(--green);
     font-weight: 600;
 }

 /* Diamond in card */
 .card-diamond {
     width: 80px;
     height: 80px;
     flex-shrink: 0;
     filter: drop-shadow(0 0 16px rgba(61, 184, 230, 0.5));
 }

 .card-diamond svg {
     width: 100%;
     height: 100%;
 }

 /* Mini chart */
 .mini-chart {
     margin-bottom: 16px;
 }

 .mini-chart svg {
     width: 100%;
     height: 80px;
 }

 .tc-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
 }

 .tc-stat {
     background: rgba(255, 255, 255, 0.04);
     border-radius: var(--radius-sm);
     padding: 10px 14px;
     border: 1px solid var(--border);
 }

 .tc-stat-label {
     font-size: 10px;
     color: var(--text-muted);
     margin-bottom: 3px;
 }

 .tc-stat-value {
     font-size: 14px;
     font-weight: 700;
     color: var(--white);
 }

 .tc-stat-value.green {
     color: var(--green);
 }

 .tc-stat-value.blue {
     color: var(--blue);
 }

 /* ═══════════════════════════
       PAGE WRAPPER (2-col layout)
    ═══════════════════════════ */
 .page-body {
     margin: 60px 40px;
     display: grid;
     grid-template-columns: 1fr;
     gap: 48px;
     position: relative;
     z-index: 1;
 }

 .howItworkMain {
     grid-template-columns: 1fr !important;
 }

 .howItworkMainSec {
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-lg);
     padding: 20px;
 }

 .whyTradersChoose {
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-lg);
     padding: 20px;
     margin-top: 55px;
     margin-bottom: 0 !important;
 }

 .chooseYourChallenge {
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-lg);
     padding: 20px;
 }

 .page-left {
     min-width: 0;
 }

 /* ═══════════════════════════
       HOW IT WORKS
    ═══════════════════════════ */

 .section {
     margin-bottom: 20px;
 }

 .section-title {
     font-size: 30px;
     font-weight: 800;
     text-align: center;
 }

 .section-sub {
     font-size: 14px;
     margin-bottom: 24px;
     margin-top: 10px;
     line-height: 1.6;
     background: linear-gradient(90deg, var(--white), #5ca9f5);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-align: center;
 }

 .challenge-phaseTabs {
     display: flex;
     gap: 10px;
     margin-bottom: 24px;
     justify-content: center;
 }

 .phase-tab {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 12px 24px;
     cursor: pointer;
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     color: var(--white);
     font-size: 16px;
     font-weight: 500;
     font-family: 'Space Grotesk', sans-serif;
 }

 .phase-tab:hover:not(.active) {
     border-color: var(--border-blue-25);
     transform: translateY(-2px);
     box-shadow: 0 4px 20px var(--border-blue-10);
 }

 .phase-tab.active {
     border-color: var(--border-active);
     background: linear-gradient(150deg, var(--border-blue-10) 0%, rgba(10, 28, 52, 0.95) 100%);
     box-shadow:
         0 0 0 1.5px var(--blue),
         0 8px 32px var(--border-blue-25);
 }

 /* Phase Content Styles */
 .phase-content {
     display: none;
 }

 .phase-content.active {
     display: block;
 }

 .steps {
     display: flex;
     justify-content: space-between;
     gap: 20px;
     position: relative;
 }

 .step {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     text-align: center;
     width: 100%;
 }

 .step-icon svg {
     width: 56px;
     height: 56px;
     margin: auto auto 10px;
 }

 .step-num {
     position: absolute;
     top: 38px;
     right: calc(50% - 36px);
     width: 18px;
     height: 18px;
     border-radius: 50%;
     background: var(--blue);
     font-size: 9px;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #000;
 }

 .step-title {
     font-size: 20px;
     font-weight: 400;
     margin-bottom: 10px;
 }

 .step-desc {
     font-size: 14px;
     line-height: 1.55;
 }

 /* ═══════════════════════════
       WHY CHOOSE
    ═══════════════════════════ */
 .why-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
     margin-top: 20px;
 }

 .why-card {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     display: flex;
     justify-content: center;
     gap: 20px;
     align-items: center;
 }

 .why-icon {
     font-size: 22px;
     flex-shrink: 0;
 }

 .why-icon svg {
     width: 30px;
     height: 30px;
     margin-top: 7px;
 }

 .why-label {
     font-size: 20px;
     font-weight: 400;
 }

 .why-desc {
     font-size: 11px;
     color: var(--text-muted);
 }

 /* ═══════════════════════════
       CHALLENGE TABLE STYLES
    ═══════════════════════════ */
 .challenge-table {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-lg);
     overflow-x: auto;
     margin-top: 20px;
 }

 .table-header {
     display: grid;
     grid-template-columns: 190px repeat(7, 1fr);
     background: linear-gradient(135deg, rgba(61, 184, 230, 0.1) 0%, rgba(10, 28, 52, 0.8) 100%);
     border-bottom: 1px solid var(--border-blue-25);
 }

 .table-row {
     display: grid;
     grid-template-columns: 190px repeat(7, 1fr);
     border-bottom: 1px solid var(--border-blue-15);
 }

 .table-row:last-child {
     border-bottom: none;
 }

 .table-cell {
     padding: 16px 12px;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 500;
     color: var(--white);
     border-right: 1px solid var(--border-blue-15);
     min-width: 100%;
 }

 .table-cell:last-child {
     border-right: none;
 }

 .header-cell {
     font-size: 16px;
     font-weight: 700;
     color: var(--blue);
     font-family: 'Space Grotesk', sans-serif;
     background: rgba(61, 184, 230, 0.05);
     border: 2px solid transparent;
 }

 .row-label {
     font-weight: 600;
     color: var(--text-light);
     background: rgba(61, 184, 230, 0.03);
     padding-left: 20px;
 }

 .buy-row {
     background: rgba(61, 184, 230, 0.02);
 }

 .table-buy-btn {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 25px;
     padding: 10px 0px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     transition: all 0.3s ease;
     min-width: 100px;
     box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
 }

 .table-buy-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 16px rgba(74, 144, 226, 0.5);
 }

 .table-buy-btn.active {
     background: linear-gradient(135deg, #00C3FF 0%, #0096DC 100%);
     box-shadow: 0 4px 20px rgba(0, 195, 255, 0.6);
     transform: translateY(-2px) scale(1.05);
 }

 /* Active column highlighting - matches mobile card styling */
 .table-cell.active-column {
     background: linear-gradient(150deg, var(--border-blue-10) 0%, rgba(10, 28, 52, 0.95) 100%);
     border-left: 2px solid var(--blue);
     border-right: 2px solid var(--blue);
 }

 .header-cell.active-column {
     background: linear-gradient(150deg, var(--border-blue-10) 0%, rgba(10, 28, 52, 0.95) 100%);
     border-top: 2px solid var(--blue);
     border-left: 2px solid var(--blue);
     border-right: 2px solid var(--blue);
     border-top-left-radius: 12px;
     border-top-right-radius: 12px;
 }

 .row-label.active-column {
     background: rgba(61, 184, 230, 0.03);
 }

 /* Last row active column - add bottom border and rounded corners */
 .buy-row .table-cell.active-column {
     border-bottom: 1.5px solid var(--blue);
     border-bottom-left-radius: 12px;
     border-bottom-right-radius: 12px;
 }

 /* ═══════════════════════════
       MOBILE CHALLENGE LAYOUT
    ═══════════════════════════ */
 .mobile-challenge-layout {
     display: none;
 }

 .mobile-features-list {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     margin-bottom: 20px;
 }

 .mobile-feature-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 12px 0;
     border-bottom: 1px solid var(--border-blue-15);
 }

 .mobile-feature-item:last-child {
     border-bottom: none;
 }

 .feature-check {
     width: 24px;
     height: 24px;
     border-radius: 50%;
     background: var(--bg-check);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 14px;
     font-weight: 700;
     flex-shrink: 0;
 }

 .feature-text {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .feature-label {
     font-size: 16px;
     color: var(--text-light);
     text-transform: capitalize;
 }

 .feature-value {
     font-size: 16px;
     font-weight: 600;
     color: var(--white);
 }

 .mobile-cards-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
 }

 .mobile-challenge-card {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .mobile-challenge-card:hover:not(.active) {
     border-color: var(--border-blue-25);
     transform: translateY(-2px);
     box-shadow: 0 4px 20px var(--border-blue-10);
 }

 .mobile-challenge-card.active {
     border-color: var(--border-active);
     background: linear-gradient(150deg, var(--border-blue-10) 0%, rgba(10, 28, 52, 0.95) 100%);
     box-shadow: 0 0 0 1.5px var(--blue), 0 8px 32px var(--border-blue-25);
 }

 .mobile-card-amount {
     font-size: 24px;
     font-weight: 700;
     color: var(--text-light);
     margin-bottom: 8px;
     font-family: 'Space Grotesk', sans-serif;
 }

 .mobile-card-label {
     font-size: 14px;
     color: var(--text-muted);
     margin-bottom: 16px;
 }

 .mobile-card-btn {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 25px;
     padding: 10px 20px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     transition: all 0.3s ease;
     width: 100%;
     box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
 }

 .mobile-card-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 16px rgba(74, 144, 226, 0.5);
 }

 .mobile-challenge-card.active .mobile-card-btn {
     background: linear-gradient(135deg, #00C3FF 0%, #0096DC 100%);
     box-shadow: 0 4px 20px rgba(0, 195, 255, 0.6);
 }

 /* ═══════════════════════════
       MOST POPULAR BADGE
    ═══════════════════════════ */

 /* Desktop table header cell with Most Popular badge */
 .header-cell.most-popular-cell {
     position: relative;
     padding: 20px 12px;
 }

 .header-cell.most-popular-cell::before {
     content: '';
     position: absolute;
     top: 5px;
     left: 5px;
     right: 5px;
     bottom: 5px;
     border-radius: 10px;
     padding: 2px;
     background: linear-gradient(135deg, #00C3FF 0%, #00D9A3 100%);
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     pointer-events: none;
 }

 .most-popular-badge {
     padding: 4px 14px;
     background: linear-gradient(90deg, #0ea5e9 0%, #10b981 100%);
     color: #ffffff;
     font-size: 11px;
     font-weight: 600;
     text-transform: capitalize;
     letter-spacing: 0.3px;
     border-radius: 25px;
     box-shadow: 0 4px 12px rgba(0, 195, 255, 0.3);
     position: absolute;
     bottom: -5px;
 }

 /* Mobile card with Most Popular badge */
 .mobile-challenge-card {
     position: relative;
 }

 .mobile-challenge-card.most-popular-card {
     background: linear-gradient(135deg, rgba(0, 195, 255, 0.08) 0%, rgba(0, 217, 163, 0.08) 100%);
     border: 2px solid transparent;
     background-clip: padding-box;
 }

 .mobile-challenge-card.most-popular-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 12px;
     padding: 2px;
     background: linear-gradient(135deg, #00C3FF 0%, #00D9A3 100%);
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     pointer-events: none;
 }

 .most-popular-badge-mobile {
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     padding: 2px 24px;
     background: linear-gradient(90deg, #0ea5e9 0%, #10b981 100%);
     color: #ffffff;
     font-size: 11px;
     font-weight: 600;
     text-transform: capitalize;
     letter-spacing: 0.3px;
     border-radius: 25px;
     box-shadow: 0 4px 12px rgba(0, 195, 255, 0.3);
     white-space: nowrap;
     z-index: 1;
 }

 /* ═══════════════════════════
       RESPONSIVE VISIBILITY
    ═══════════════════════════ */
 .desktop-only {
     display: block;
 }

 .mobile-tablet-only {
     display: none;
 }

 /* Responsive table styles */
 @media (max-width: 1199px) {

     .table-header,
     .table-row {
         grid-template-columns: 180px repeat(7, 1fr);
     }

     .table-cell {
         padding: 12px 8px;
         font-size: 13px;
     }

     .header-cell {
         font-size: 14px;
     }

     .table-buy-btn {
         padding: 8px 16px;
         font-size: 13px;
         min-width: 70px;
     }
 }

 @media (max-width: 768px) {
     .challenge-table {
         overflow-x: auto;
     }

     .table-header,
     .table-row {
         grid-template-columns: 160px repeat(7, minmax(100px, 1fr));
         min-width: 800px;
     }

     .table-cell {
         padding: 10px 6px;
         font-size: 12px;
     }

     .row-label {
         padding-left: 12px;
     }

     .table-buy-btn {
         padding: 6px 12px;
         font-size: 12px;
         min-width: 60px;
     }

     /* Show mobile layout, hide desktop table */
     .desktop-only {
         display: none;
     }

     .mobile-tablet-only {
         display: block;
     }

     .mobile-cards-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 12px;
     }

     .mobile-challenge-card {
         padding: 16px;
     }

     .mobile-card-amount {
         font-size: 20px;
     }

     .mobile-card-btn {
         padding: 8px 16px;
         font-size: 13px;
     }
 }

 /* ═══════════════════════════
       CHALLENGE TIERS
    ═══════════════════════════ */
 .tiers {
     display: flex;
     gap: 10px;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .tier-card {
     flex: 1;
     min-width: 90px;
     background: var(--card);
     border: 1px solid var(--card-border);
     border-radius: var(--radius-md);
     padding: 16px 12px;
     text-align: center;
     cursor: pointer;
     transition: border-color .2s, background .2s;
     position: relative;
 }

 .tier-card:hover {
     border-color: var(--blue);
 }

 .tier-card.active {
     border-color: var(--blue);
     background: linear-gradient(145deg, #0f2a48, #0d1e38);
     box-shadow: 0 0 20px rgba(61, 184, 230, 0.15);
 }

 .tier-card.popular::after {
     content: 'POPULAR';
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--blue);
     color: #000;
     font-size: 8px;
     font-weight: 800;
     padding: 2px 8px;
     border-radius: 10px;
     letter-spacing: .06em;
 }

 .tier-amount {
     font-size: 15px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .tier-price {
     font-size: 11px;
     color: var(--text-muted);
     margin-top: 6px;
 }

 .tier-price strong {
     color: var(--blue);
     font-size: 13px;
 }

 .btn-continuee {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 10px;
     padding: 15px 100px;
     font-size: 17px;
     font-weight: 600;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     box-shadow: var(--shadow-primary);
     transition: all 0.3s ease;
     letter-spacing: 0.3px;
     position: relative;
     overflow: hidden;
 }

 .btn-continuee:hover {
     box-shadow: var(--shadow-primary-hover);
     transform: translateY(-2px) scale(1.02);
 }

 /* ═══════════════════════════
       RIGHT SIDEBAR
    ═══════════════════════════ */
 .sidebar {
     position: relative;
     z-index: 1;
 }

 /* Order Summary */
 .order-card {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     cursor: pointer;
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     margin-bottom: 20px;
 }

 .order-title {
     font-size: 25px;
     font-weight: 800;
     margin-bottom: 18px;
     border-bottom: 1px solid rgba(61, 184, 230, 0.15);
     padding-bottom: 10px;
 }

 .order-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
 }

 .order-row:last-of-type {
     border-bottom: none;
 }

 .order-row .or-label {
     font-size: 18px;
 }

 .order-row .or-value {
     font-size: 16px;
     font-weight: 400;
 }

 .order-summary {
     border-bottom: 1px solid var(--border-blue-15);
 }

 .order-summary ul {
     list-style: none;
     padding: 0;
     margin: 15px 0;
 }

 .order-summary ul li {
     display: flex;
     gap: 10px;
     font-size: 14px;
     margin-bottom: 10px;
 }

 .order-summary ul li svg {
     width: 20px;
     height: 20px;
 }

 .order-total {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 0 0;
 }

 .order-total .ot-label {
     font-size: 14px;
     font-weight: 700;
     color: var(--text-muted);
 }

 .order-total .ot-value {
     font-size: 18px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .btn-pay {
     background: var(--gradient-primary);
     color: var(--white);
     border: none;
     border-radius: 10px;
     padding: 10px 35px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     box-shadow: var(--shadow-primary);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     width: 100%;
     margin-top: 15px;
 }

 .btn-pay:hover {
     box-shadow: var(--shadow-primary-hover);
     transform: translateY(-2px) scale(1.02);
 }

 .payment-icons {
     border: 1px solid var(--border-blue-15);
     padding: 10px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: space-evenly;
     gap: 6px;
     margin-top: 14px;
     flex-wrap: wrap;
 }

 .payment-icons img {
     width: 50px;
     height: 26px;
 }

 .pay-icon {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid var(--border);
     border-radius: 4px;
     padding: 4px 10px;
     font-size: 10px;
     font-weight: 600;
     color: var(--text-muted);
 }

 /* Recent Payouts */
 .payouts-card {
     background: var(--bg-card-transparent);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
 }

 .payouts-title {
     font-size: 25px;
     font-weight: 800;
     margin-bottom: 16px;
     font-family: 'Space Grotesk', sans-serif;
     text-align: center;
     border-bottom: 1px solid var(--border-blue-15);
     padding-bottom: 10px;
 }

 .payout-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 9px 0;
     border-bottom: 1px solid var(--border);
 }

 .payout-row-inner {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .payout-row:last-child {
     border-bottom: none;
 }

 .payout-avatar {
     width: 45px;
     height: 45px;
 }

 .payout-avatar img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: cover;
 }

 .payout-name {
     font-size: 16px;
     font-weight: 400;
     flex: 1;
 }

 .payout-meta {
     font-size: 13px;
     color: var(--text-muted);
     margin-top: 1px;
 }

 .payout-amount {
     font-size: 18px;
     font-weight: 400;
     font-family: 'Space Grotesk', sans-serif;
     white-space: nowrap;
 }

 /* ═══════════════════════════
       CTA BANNER
    ═══════════════════════════ */
 .cta-banner {
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .cta-bannerMainSec {
     padding: 0 40px;
 }

 .cta-diamond {
     position: absolute;
     right: 60px;
     top: 50%;
     transform: translateY(-50%);
     width: 120px;
     height: 120px;
     opacity: .35;
     filter: drop-shadow(0 0 24px rgba(61, 184, 230, 0.5));
 }

 .cta-diamond svg {
     width: 100%;
     height: 100%;
 }

 .cta-text h2 {
     font-size: clamp(20px, 2.8vw, 30px);
     font-weight: 800;
     margin-bottom: 6px;
 }

 .cta-text p {
     font-size: 30px;
     display: flex;
     gap: 10px;
     align-items: center;
     margin-top: 10px;
 }


 .cta-text p span {
     color: #009cde;
 }

 .ctaa-content {
     display: flex;
     gap: 15px;
 }

 .ctaa-content svg {
     width: 60px;
     height: 60px;
 }

 .cta-actions {
     display: flex;
 }

 .btn-cta {
     font-size: 16px;
     font-weight: 600;
     color: #ffffff;
     background: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     border: none;
     border-radius: 10px 0 0 10px;
     padding: 14px 32px;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
     box-shadow:
         0 0 8px rgba(74, 144, 226, 0.8),
         0 0 60px rgba(74, 144, 226, 0.6),
         0 0 90px rgba(74, 144, 226, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     white-space: nowrap;
     letter-spacing: 0.5px;
 }

 .btn-cta:hover {
     box-shadow:
         0 0 40px rgba(74, 144, 226, 1),
         0 0 80px rgba(74, 144, 226, 0.8),
         0 0 120px rgba(74, 144, 226, 0.6),
         inset 0 1px 0 rgba(255, 255, 255, 0.3);
     transform: translateY(-2px) scale(1.02);
 }

 .btn-cta-out {
     font-size: 16px;
     font-weight: 600;
     color: #ffffff;
     background: transparent;
     border: 1px solid #4A90E2;
     border-radius: 0 10px 10px 0;
     padding: 12px 30px;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
     transition: all 0.3s ease;
     white-space: nowrap;
     letter-spacing: 0.5px;
     position: relative;
     overflow: hidden;
 }

 .btn-cta-out:hover {
     border-color: #2E5BBA;
     background: rgba(74, 144, 226, 0.1);
     color: #ffffff;
     box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
     transform: translateY(-1px);
 }

 .brandLogoSecMain {
     padding: 75px 40px;
 }

 .brandLogoSec {
     display: flex;
     justify-content: space-between;
     gap: 20px;
     margin-top: 20px;
 }

 .brandLogoInner {
     border: 1px solid #7d6900;
     border-radius: var(--radius-lg);
     width: 18%;
     height: 140px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #00000026;
 }

 .brandLogoInner img {
     width: 60%;
 }

 /* ═══════════════════════════
       FOOTER
    ═══════════════════════════ */
 footer {
     padding: 36px 40px 28px;
     position: relative;
     z-index: 1;
 }

 .footerMain {
     border: 1px solid rgba(61, 184, 230, 0.15);
     padding: 20px;
     border-radius: 10px;
     display: grid;
     grid-template-columns: 2fr 1fr auto;
     gap: 40px;
     align-items: start;
 }

 .footer-brand p {
     font-size: 12px;
     color: var(--text-muted);
     margin-top: 10px;
     line-height: 1.6;
     max-width: 180px;
 }

 .footer-links {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     border-right: 1px solid rgba(61, 184, 230, 0.15);
 }

 .fl-col h5 {
     font-size: 14px;
     font-weight: 400;
     color: #fff;
     letter-spacing: .08em;
     margin-bottom: 12px;
     text-transform: uppercase;
     font-family: 'Space Grotesk', sans-serif;
 }

 .fl-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .fl-col a {
     font-size: 13px;
     color: #fff;
     text-decoration: none;
     transition: color .2s;
 }

 .fl-col a:hover {
     color: var(--white);
 }

 .footer-tp {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 6px;
 }

 .footer-tp .tp-label {
     font-size: 11px;
     color: var(--green);
     font-weight: 700;
 }

 .footer-tp .tp-score {
     font-size: 14px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .footer-tp .tp-stars {
     display: flex;
     gap: 2px;
 }

 .footer-tp .star {
     color: var(--green);
     font-size: 13px;
 }

 .footerSocial h5 {
     font-size: 14px;
     font-weight: 400;
     color: #fff;
     letter-spacing: .08em;
     margin-bottom: 12px;
     text-transform: uppercase;
     text-align: center;
 }

 .socailMedia {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-bottom: 50px;
 }

 .socailMedia img {
     width: 30px;
     height: 30px;
     cursor: pointer;
 }

 .footerSocial p {
     font-size: 12px;
 }

 /* ═══════════════════════════
       DIVIDER
    ═══════════════════════════ */
 .section-divider {
     height: 1px;
     background: var(--border);
     margin: 0 40px 60px;
     max-width: 1160px;
     margin-left: auto;
     margin-right: auto;
 }

 /* Stars row utility */
 .stars-row {
     display: flex;
     gap: 2px;
 }

 .star-amber {
     color: var(--amber);
     font-size: 11px;
 }

 /* ════════════════════════
       tHERO
    ════════════════════════ */
 .thero {
     padding: 45px 40px 60px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 /* Starfield */
 .thero::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         radial-gradient(ellipse 80% 60% at 50% 20%, rgba(61, 184, 230, 0.10) 0%, transparent 70%),
         radial-gradient(ellipse 60% 40% at 20% 80%, rgba(29, 78, 216, 0.08) 0%, transparent 60%),
         radial-gradient(ellipse 50% 40% at 80% 60%, rgba(61, 184, 230, 0.06) 0%, transparent 60%);
     pointer-events: none;
 }

 .trustpilot-badge {
     position: absolute;
     top: 80px;
     right: 40px;
     display: flex;
     align-items: center;
     gap: 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--border);
     border-radius: 30px;
     padding: 6px 14px;
 }

 .tp-logo {
     font-size: 11px;
     color: var(--green);
     font-weight: 700;
 }

 .tp-score {
     font-size: 12px;
     font-weight: 600;
     color: var(--white);
 }

 .stars-row {
     display: flex;
     gap: 2px;
 }

 .star {
     color: var(--green);
     font-size: 11px;
 }

 .thero-diamond {
     width: 200px;
     height: 200px;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
     filter: drop-shadow(0 0 20px rgba(61, 184, 230, 0.6));
 }

 .thero-diamond svg {
     width: 100%;
     height: 100%;
 }

 .thero h1 {
     font-size: clamp(28px, 3.5vw, 55px);
     font-weight: 800;
     line-height: 1.15;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
     color: #fff;
 }

 .thero h1 span {
     color: #8dd6f0;
 }

 .thero-sub {
     font-size: 20px;
     color: #fff;
     margin-bottom: 28px;
     position: relative;
     z-index: 1;
 }

 .thero-sub span {
     color: #8dd6f0;
 }

 /* Ticker */
 .ticker-wrap {
     width: 100%;
     overflow: hidden;
     position: relative;
     z-index: 1;
     border-top: 1px solid rgba(61, 184, 230, 0.15);
     border-bottom: 1px solid rgba(61, 184, 230, 0.15);
     padding: 20px 0;
     margin-top: 20px;
 }

 .ticker-track {
     display: flex;
     gap: 0;
     white-space: nowrap;
     animation: ticker 28s linear infinite;
 }

 .ticker-item {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 0 30px;
     font-size: 12px;
     color: var(--text-muted);
 }

 .ticker-item .t-name {
     font-size: 16px;
     font-weight: 600;
     color: var(--white);
 }

 .ticker-item .t-amount {
     color: #fff;
     font-weight: 400;
     font-size: 18px;
 }

 .ticker-item .t-amount span {
     color: green;
 }

 .ticker-item .t-sep {
     color: var(--text-dim);
 }

 @keyframes ticker {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 /* ════════════════════════
       SHARED CONTAINER
    ════════════════════════ */
 .container {
     padding: 0 40px;
 }

 /* ════════════════════════
       FEATURED TRADER CARD
    ════════════════════════ */
 .featured-section {
     padding: 20px 0;
 }

 .featured-card {
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 30px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     width: 100%;
     background-image: url('../image/tradeBackground1.png');
     background-repeat: no-repeat;
     background-size: 100% 100%;
 }

 .trader-header {
     display: flex;
     align-items: center;
     gap: 14px;
 }

 .trader-avatar {
     width: 150px;
     height: 150px;
 }

 .trader-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 .trader-info {
     margin-top: 15px;
 }

 .trader-info .t-name-row {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 2px;
 }

 .trader-info>.t-name-row>.t-name {
     font-size: 30px;
     font-weight: 700;
     font-family: 'Space Grotesk', sans-serif;
 }

 .flag {
     font-size: 16px;
 }

 .verified-badge {
     background: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 10px 20px;
     font-size: 16px;
     cursor: unset;
     position: absolute;
     top: 30px;
     right: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .verified-badge svg {
     width: 25px;
     height: 25px;
 }

 .account-stats {
     display: flex;
     gap: 20px;
     border-bottom: 1px solid rgba(61, 184, 230, 0.15);
     padding-bottom: 15px;
 }

 .stat-block {
     display: flex;
     align-items: end;
     gap: 10px;
     margin-top: 15px;
     border-right: 1px solid rgba(61, 184, 230, 0.15);
     padding-right: 35px;
 }

 .stat-block:last-child {
     border-right: none;
 }

 .stat-label {
     font-size: 15px;
     color: var(--text-muted);
     margin-bottom: 4px;
     letter-spacing: 0.05em;
 }

 .stat-value {
     font-size: 25px;
     font-weight: 400;
     color: var(--white);
 }

 .profit-rows {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-top: 15px;
 }

 .profit-row {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .profit-row .p-label {
     font-size: 20px;
     color: #fff;
 }

 .profit-row .p-value {
     font-size: 20px;
     font-weight: 400;
     color: var(--white);
 }

 .profit-row .p-value.green {
     color: var(--green);
 }

 .trader-quote {
     font-size: 20px;
     width: 43%;
 }

 .quote-author {
     font-style: normal;
     color: var(--text-dim);
     font-size: 11px;
     margin-top: 4px;
 }

 .featured-right {
     display: flex;
     align-items: end;
     justify-content: space-between;
     margin-top: 50px;
 }

 .payout-received {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .payout-received svg {
     width: 24px;
     height: 24px;
 }

 .pr-label {
     font-size: 16px;
     color: #fff;
 }

 .pr-amount {
     font-size: 20px;
     font-weight: 400;
     color: #fff;
     font-family: 'Space Grotesk', sans-serif;
 }

 .pr-diamond {
     font-size: 16px;
 }

 .footerstaicContentMain {
     padding: 0 40px;
 }

 .footerstaicContent {
     margin-top: 15px;
 }

 .footerstaicContent p {
     font-size: 11px;
     color: #a7a7a7;
 }

 /* ════════════════════════
       PAYOUT BREAKDOWN
    ════════════════════════ */
 .breakdown-section {
     padding: 60px 0px 0;
 }

 .section-title {
     font-size: 30px;
     font-weight: 800;
     margin-bottom: 24px;
     color: var(--white);
 }

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

 .breakdown-card {
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     width: 100%;
 }

 .bc-header {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .bc-avatar {
     width: 60px;
     height: 60px;
 }

 .bc-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 .bc-name-row {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .bc-name {
     font-size: 20px;
     font-weight: 400;
 }

 .bc-account {
     font-size: 20px;
     color: #fff;
     margin-top: 5px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .bc-account span {
     font-weight: 600;
     color: var(--white);
 }

 .bc-profileEarning {
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 10px;
     cursor: pointer;
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     width: 100%;
     margin-top: 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .bc-profit-label {
     font-size: 20px;
     color: #fff;
 }

 .bc-profit-value {
     font-size: 20px;
     font-weight: 400;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .bc-profit-value.blue {
     color: var(--blue);
 }

 .payment-badge {
     margin-top: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .payment-badge img {
     width: 100px;
     height: 35px;
 }

 .bc-stars {
     display: flex;
     gap: 2px;
     margin-top: 4px;
 }

 .bc-stars .star {
     color: var(--amber);
     font-size: 12px;
 }

 /* ════════════════════════
       VIDEO / HEAR FROM TRADERS
    ════════════════════════ */
 .video-section {
     padding: 60px 0px 0;
 }

 .video-card-main {
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     width: 100%;
     overflow: hidden;
     background-image: url('../image/tradeBackground2.png');
     background-repeat: no-repeat;
     background-size: 100% 100%;
 }

 .videoCard {
     display: flex;
 }

 .video-thumb {
     position: relative;
 }

 .video-thumb img {
     width: 500px;
     height: 300px;
     object-fit: cover;
     border-radius: 10px;
 }

 .video-thumb-bg {
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, #0a1628 0%, #0d1f3a 100%);
 }

 .video-person {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: flex-end;
     justify-content: center;
     padding-bottom: 20px;
 }

 .video-person-avatar {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(135deg, #1e4a7a, #2d6da8);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     font-weight: 700;
     color: var(--white);
     border: 2px solid var(--blue);
 }

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 2;
     width: 52px;
     height: 52px;
     border-radius: 50%;
     background: rgba(61, 184, 230, 0.20);
     border: 2px solid var(--blue);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background .2s;
 }

 .play-btn:hover {
     background: rgba(61, 184, 230, 0.35);
 }

 .play-btn svg {
     fill: var(--white);
     width: 30px;
     height: 30px;
     margin-left: 3px;
 }

 .video-tp {
     /* position: absolute; */
     /* bottom: 14px; */
     /* left: 14px; */
     background: rgba(0, 0, 0, 0.6);
     border-radius: 6px;
     padding: 5px 10px;
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 11px;
     z-index: 2;
 }

 .video-tp .tp-name {
     color: var(--green);
     font-weight: 700;
     font-size: 10px;
 }

 .video-tp .tp-score {
     color: var(--white);
     font-weight: 600;
 }

 .video-info {
     padding: 28px 0 32px 32px;
     display: flex;
     flex-direction: column;
     gap: 20px;
     justify-content: center;
     width: 100%;
 }

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

 .vi-name {
     font-size: 30px;
     font-weight: 400;
     font-family: 'Space Grotesk', sans-serif;
 }

 .vi-paid {
     font-size: 13px;
     color: var(--text-muted);
 }

 .vi-amount {
     font-size: 30px;
     font-weight: 400;
     color: #fff;
     font-family: 'Space Grotesk', sans-serif;
 }

 .vi-stats {
     display: flex;
     justify-content: space-between;
     gap: 28px;
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
     width: 100%;
 }

 .vi-stat .vs-value {
     font-size: 25px;
     font-weight: 700;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .vi-stat .vs-label {
     font-size: 15px;
     color: #fff;
     margin-top: 2px;
 }

 .vi-stat-divider {
     width: 1px;
     background: var(--border);
 }

 /* ════════════════════════
       CTA
    ════════════════════════ */
 .cta-section {
     padding: 80px 20px 60px;
     margin-bottom: 20px;
     text-align: center;
 }

 .cta-section h2 {
     font-size: clamp(22px, 4vw, 40px);
     font-weight: 800;
     margin-bottom: 32px;
     background: linear-gradient(135deg, #ffffff 30%, #8dd6f0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .cta-buttons {
     display: flex;
     gap: 14px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-cta-primary {
     background: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 15px 35px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     box-shadow:
         0 0 8px rgba(74, 144, 226, 0.8),
         0 0 60px rgba(74, 144, 226, 0.6),
         0 0 90px rgba(74, 144, 226, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     width: 30%;
 }

 .btn-cta-primary:hover {
     box-shadow:
         0 0 40px rgba(74, 144, 226, 1),
         0 0 80px rgba(74, 144, 226, 0.8),
         0 0 120px rgba(74, 144, 226, 0.6),
         inset 0 1px 0 rgba(255, 255, 255, 0.3);
     transform: translateY(-2px) scale(1.02);
 }

 .btn-cta-outline {
     font-size: 14px;
     font-weight: 400;
     color: #fff;
     background: none;
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: var(--radius-sm);
     padding: 15px 35px;
     cursor: pointer;
     transition: border-color .2s, color .2s;
     width: 30%;
 }

 .btn-cta-outline:hover {
     border-color: var(--blue);
     color: var(--white);
 }

 /* ════════════════════════
       FOOTER
    ════════════════════════ */
 .traderFooter {
     border-top: 1px solid var(--border);
     padding: 40px 40px 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .traderfooter-tp {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .traderfooter-tp .tp-name {
     font-size: 12px;
     color: var(--green);
     font-weight: 700;
 }

 .traderfooter-tp .tp-score {
     font-size: 12px;
     font-weight: 600;
     color: var(--white);
 }

 .chat-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: linear-gradient(135deg, #1e7fc4, #3DB8E6);
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 16px;
     position: fixed;
     right: 30px;
     bottom: 30px;
     z-index: 99;
 }

 /* Utility */
 .divider {
     height: 1px;
     background: var(--border);
     margin: 0 20px;
 }

 /* ════════════════════════════
       vHERO
    ════════════════════════════ */
 .vhero {
     padding: 105px 20px 10px;
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .tp-name {
     color: var(--green);
     font-weight: 700;
     font-size: 11px;
 }

 .tp-score {
     font-weight: 700;
 }

 .tp-stars {
     display: flex;
     gap: 2px;
 }

 .tp-star {
     color: var(--green);
     font-size: 11px;
 }

 .vhero h1 {
     font-size: clamp(28px, 3.5vw, 55px);
     font-weight: 800;
     line-height: 1.12;
     background: linear-gradient(135deg, #ffffff 20%, #a8d8f0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 16px;
 }

 .vhero p {
     font-size: 20px;
     color: #fff;
     line-height: 1.7;
     max-width: 620px;
     margin: 0 auto;
 }

 .vhero p span {
     color: #8dd6f0;
 }

 /* ════════════════════════════
       PAYOUT GRID SECTION
    ════════════════════════════ */
 .vpayouts-section {
     padding: 40px 40px 0;
     position: relative;
     z-index: 1;
 }

 .vpayouts-section-inner {
     background: rgb(7 14 26 / 7%);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-md);
     padding: 20px;
     /* cursor: pointer; */
     position: relative;
     transition: border-color .2s, box-shadow .2s, transform .15s;
 }

 /* Section label */
 .section-label {
     border-bottom: 1px solid rgba(61, 184, 230, 0.15);
     padding-bottom: 20px;
     margin-bottom: 24px;
 }

 .sl-text p {
     font-size: 30px;
     display: flex;
     justify-content: center;
     gap: 10px;
     align-items: center;
     margin-top: 10px;
 }

 .sl-text p svg {
     width: 60px;
     height: 60px;
 }

 .sl-text p span {
     color: #009cde;
 }

 /* Grid */
 .payout-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 /* Payout card */
 .payout-card {
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-xl);
     padding: 20px 22px;
     position: relative;
     transition: border-color .2s, box-shadow .2s;
     cursor: pointer;
 }

 .payout-card:hover {
     border-color: rgba(61, 184, 230, 0.35);
     box-shadow: 0 0 24px rgba(61, 184, 230, 0.10);
 }

 /* Card top row */
 .card-top {}

 .card-trader {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .vtrader-avatar {
     width: 80px;
     height: 80px;
 }

 .vtrader-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 .payoutcardcontent {
     display: flex;
     align-items: end;
     justify-content: space-between;
     width: 89%;
 }

 .trader-name {
     font-size: 25px;
     font-weight: 400;
     font-family: 'Space Grotesk', sans-serif;
 }

 .trader-flag {
     font-size: 14px;
 }

 .trader-name-row {
     margin-bottom: 4px;
 }

 .payoutLogo img {
     width: 100px;
     height: 35px;
 }

 .vverified-badge {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 14px;
     font-weight: 400;
     color: #c4f0fe;
     position: absolute;
     top: 20px;
     right: 20px;
 }

 .vverified-badge svg {
     width: 15px;
     height: 15px;
 }

 /* Amount + payment */
 .card-amount-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 8px;
 }

 .card-amount {
     font-size: 25px;
     font-weight: 400;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
     line-height: 1;
     margin-top: 10px;
 }

 .payment-badge {
     display: flex;
     align-items: center;
     gap: 5px;
     border-radius: var(--radius-sm);
     padding: 5px 12px;
     font-size: 12px;
     font-weight: 700;
     white-space: nowrap;
 }

 .badge-stripe {
     background: rgba(99, 91, 255, 0.12);
     border: 1px solid rgba(99, 91, 255, 0.28);
     color: #a78bfa;
 }

 .badge-bitcoin {
     background: rgba(245, 158, 11, 0.12);
     border: 1px solid rgba(245, 158, 11, 0.28);
     color: #fbbf24;
 }

 .badge-paypal {
     background: rgba(0, 112, 243, 0.12);
     border: 1px solid rgba(0, 112, 243, 0.28);
     color: #60a5fa;
 }

 /* Quote */
 .card-quote {
     font-size: 18px;
     margin-top: 25px;
     font-weight: 300;
 }

 /* Card footer */
 .card-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 20px;
 }

 .card-stars {
     color: #c4f0fe;
 }

 .card-star {
     color: var(--amber);
     font-size: 12px;
 }

 .card-pay-logo img {
     width: 100px;
     height: 35px;
 }

 .pay-bitcoin-logo {
     color: #fbbf24;
 }

 .pay-paypal-logo {
     color: #60a5fa;
 }

 /* ════════════════════════════
       CTA BANNER
    ════════════════════════════ */
 .vcta-banner {
     position: relative;
     z-index: 1;
     margin-top: 40px;
 }

 .cta-inner {
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: var(--radius-xl);
     padding: 52px 40px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-inner h2 {
     font-size: clamp(20px, 3vw, 50px);
     font-weight: 800;
     margin-bottom: 24px;
     background: linear-gradient(135deg, #ffffff 20%, #a8d8f0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     position: relative;
     z-index: 1;
 }

 .cta-inner h2 span {
     color: var(--blue);
     -webkit-text-fill-color: var(--blue);
 }

 .vbtn-cta {
     background: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 15px 100px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     font-family: 'Space Grotesk', sans-serif;
     box-shadow:
         0 0 8px rgba(74, 144, 226, 0.8),
         0 0 60px rgba(74, 144, 226, 0.6),
         0 0 90px rgba(74, 144, 226, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .vbtn-cta:hover {
     box-shadow:
         0 0 40px rgba(74, 144, 226, 1),
         0 0 80px rgba(74, 144, 226, 0.8),
         0 0 120px rgba(74, 144, 226, 0.6),
         inset 0 1px 0 rgba(255, 255, 255, 0.3);
     transform: translateY(-2px) scale(1.02);
 }

 /* ════════════════════════════════
       dHERO
    ════════════════════════════════ */
 .dhero {
     padding: 100px 40px 80px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .trustpilot-badge {
     position: absolute;
     top: 80px;
     right: 40px;
     display: flex;
     align-items: center;
     gap: 7px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--border);
     border-radius: 30px;
     padding: 6px 14px;
     font-size: 12px;
 }

 .dtp-name {
     color: var(--green);
     font-weight: 700;
     font-size: 11px;
 }

 .dtp-score {
     font-weight: 700;
 }

 .stars-inline {
     display: flex;
     gap: 2px;
 }

 .s {
     color: var(--green);
     font-size: 11px;
 }

 .dhero-left {
     text-align: center;
 }

 .dhero-left h1 {
     font-size: clamp(28px, 3.5vw, 55px);
     font-weight: 800;
     line-height: 1.13;
     background: linear-gradient(135deg, #ffffff 20%, #a8d8f0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 30px;
 }

 .dhero-left p {
     font-size: 20px;
     color: #fff;
     line-height: 1.65;
     max-width: 400px;
     margin: auto auto 30px;
     margin-bottom: 30px;
 }

 .dhero-btns {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
 }

 .btn-dhero {
     background: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 15px 35px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     box-shadow:
         0 0 8px rgba(74, 144, 226, 0.8),
         0 0 60px rgba(74, 144, 226, 0.6),
         0 0 90px rgba(74, 144, 226, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     width: 70%;
 }

 .btn-dhero:hover {
     box-shadow:
         0 0 40px rgba(74, 144, 226, 1),
         0 0 80px rgba(74, 144, 226, 0.8),
         0 0 120px rgba(74, 144, 226, 0.6),
         inset 0 1px 0 rgba(255, 255, 255, 0.3);
     transform: translateY(-2px) scale(1.02);
 }

 .btn-text-link {
     font-size: 14px;
     font-weight: 400;
     color: #fff;
     background: none;
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: var(--radius-sm);
     padding: 15px 30px;
     cursor: pointer;
     transition: border-color .2s, color .2s;
     width: 70%;
     margin-top: 10px;
 }

 .btn-text-link:hover {
     border-color: var(--blue);
     color: var(--white);
 }

 /* ─── Laptop mockup ─── */
 .dhero-right {
     position: absolute;
     z-index: 1;
     top: 5%;
     right: 5%;
     width: 45%;
 }

 .dhero-right img {
     width: 100%;
     height: auto;
     object-fit: cover;
 }

 .laptop-wrap {
     position: relative;
     width: 100%;
     max-width: 520px;
     filter: drop-shadow(0 0 40px rgba(61, 184, 230, 0.25));
 }

 .laptop-screen {
     background: linear-gradient(145deg, #0a1628, #0d2040);
     border: 2px solid rgba(61, 184, 230, 0.30);
     border-radius: 12px 12px 0 0;
     padding: 8px;
     aspect-ratio: 16/10;
     overflow: hidden;
     position: relative;
 }

 .laptop-base {
     background: linear-gradient(180deg, #0d1c2e, #080f1e);
     border: 1px solid rgba(61, 184, 230, 0.15);
     border-radius: 0 0 12px 12px;
     height: 18px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .laptop-notch {
     width: 60px;
     height: 6px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 4px;
 }

 /* Mini dashboard inside laptop */
 .dash-inner {
     width: 100%;
     height: 100%;
     display: grid;
     grid-template-rows: 32px 1fr;
     background: #060e1a;
     border-radius: 8px;
     overflow: hidden;
 }

 .dash-topbar {
     background: #0a1628;
     border-bottom: 1px solid var(--border);
     display: flex;
     align-items: center;
     padding: 0 12px;
     gap: 10px;
 }

 .dash-topbar-logo {
     width: 14px;
     height: 14px;
     background: linear-gradient(135deg, #3DB8E6, #1a6fa8);
     clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
 }

 .dash-topbar span {
     font-size: 7px;
     font-weight: 700;
     color: var(--blue);
     letter-spacing: .05em;
 }

 .dash-body {
     display: grid;
     grid-template-columns: 100px 1fr;
 }

 .dash-sidebar {
     background: #09142200;
     border-right: 1px solid var(--border);
     padding: 8px 0;
 }

 .dash-nav-item {
     padding: 5px 10px;
     font-size: 6px;
     color: var(--text-dim);
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .dash-nav-item.active {
     color: var(--blue);
     background: rgba(61, 184, 230, 0.08);
 }

 .dash-nav-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: currentColor;
 }

 .dash-main {
     padding: 8px;
     display: flex;
     flex-direction: column;
     gap: 6px;
     overflow: hidden;
 }

 /* Stat tiles */
 .dash-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 4px;
 }

 .dash-stat {
     background: #0f1e30;
     border: 1px solid var(--card-border);
     border-radius: 4px;
     padding: 5px 7px;
 }

 .ds-label {
     font-size: 5px;
     color: var(--text-dim);
     margin-bottom: 2px;
 }

 .ds-value {
     font-size: 8px;
     font-weight: 700;
     color: var(--white);
 }

 .ds-value.green {
     color: var(--green);
 }

 .ds-value.blue {
     color: var(--blue);
 }

 /* Dash chart */
 .dash-chart {
     background: #0f1e30;
     border: 1px solid var(--card-border);
     border-radius: 4px;
     padding: 6px;
     flex: 1;
 }

 .dash-chart svg {
     width: 100%;
     height: 100%;
     min-height: 55px;
 }

 /* ════════════════════════════════
       SECTION WRAPPER
    ════════════════════════════════ */
 .section-wrap {
     max-width: 1160px;
     margin: 0 auto;
     padding: 0 40px;
     position: relative;
     z-index: 1;
 }

 /* ════════════════════════════════
       INSIDE THE DASHBOARD
    ════════════════════════════════ */
 .inside-section {
     padding: 40px;
     position: relative;
     z-index: 1;
 }

 .inside-header {
     text-align: center;
     margin-bottom: 52px;
 }

 .inside-header-inside {
     width: 50%;
     margin: auto;
     display: flex;
     align-items: center;
 }

 .inside-header-inside-left,
 .inside-header-inside-right {
     height: 1px;
     background: rgba(43, 199, 255, 0.15);
     flex: 1;
 }

 .inside-header-inside-left {
     margin-right: 10px;
 }

 .inside-header-inside-right {
     margin-left: 10px;
 }

 .inside-header h2 {
     font-size: clamp(24px, 3vw, 40px);
     font-weight: 800;
 }

 .inside-header p {
     font-size: 24px;
     font-weight: 400;
     color: #fff;
     margin-top: 10px;
 }

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

 /* Dashboard screenshot card */
 .dash-preview-card {
     width: 100%;
     margin-top: -50px;
 }

 .dash-preview-card img {
     width: 100%;
     height: auto;
     object-fit: cover;
 }

 /* Full-size fake dashboard UI */
 .full-dash {
     background: #060e1a;
     border-radius: var(--radius-md);
     overflow: hidden;
 }

 .full-topbar {
     background: #0a1628;
     border-bottom: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 8px 14px;
 }

 .full-topbar-left {
     display: flex;
     align-items: center;
     gap: 8px;
     width: 100%;
 }

 .full-topbar-logo {
     width: 18px;
     height: 18px;
     background: linear-gradient(135deg, #3DB8E6, #1a6fa8);
     clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
 }

 .full-topbar span {
     font-size: 9px;
     font-weight: 700;
     color: var(--blue);
 }

 .full-topbar-balance {
     font-size: 11px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .full-topbar-change {
     font-size: 9px;
     color: var(--green);
 }

 .full-body {
     display: grid;
     grid-template-columns: 110px 1fr;
 }

 .full-sidebar {
     border-right: 1px solid var(--border);
     padding: 10px 0;
 }

 .full-nav {
     padding: 6px 12px;
     font-size: 8px;
     color: var(--text-dim);
     display: flex;
     align-items: center;
     gap: 6px;
     cursor: pointer;
 }

 .full-nav.act {
     color: var(--blue);
     background: rgba(61, 184, 230, 0.08);
 }

 .full-nav-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: currentColor;
     flex-shrink: 0;
 }

 .full-main {
     padding: 12px;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .full-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 6px;
 }

 .full-stat {
     background: #0f1e30;
     border: 1px solid var(--card-border);
     border-radius: 6px;
     padding: 8px 10px;
 }

 .fsl {
     font-size: 7px;
     color: var(--text-dim);
     margin-bottom: 3px;
 }

 .fsv {
     font-size: 11px;
     font-weight: 700;
     color: var(--white);
 }

 .fsv.g {
     color: var(--green);
 }

 .fsv.b {
     color: var(--blue);
 }

 .fsv.r {
     color: #ef4444;
 }

 .full-chart-area {
     background: #0f1e30;
     border: 1px solid var(--card-border);
     border-radius: 6px;
     padding: 10px;
 }

 .full-chart-area svg {
     width: 100%;
     height: 90px;
 }

 .full-bottom {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6px;
 }

 .full-mini-card {
     background: #0f1e30;
     border: 1px solid var(--card-border);
     border-radius: 6px;
     padding: 8px 10px;
 }

 .fmc-label {
     font-size: 7px;
     color: var(--text-dim);
     margin-bottom: 3px;
 }

 .fmc-value {
     font-size: 12px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .fmc-sub {
     font-size: 7px;
     color: var(--text-muted);
     margin-top: 2px;
 }

 /* Feature list */
 .feature-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     padding-top: 8px;
     margin-top: 50px;
 }

 .feature-item {
     display: flex;
     gap: 10px;
     align-items: flex-start;
 }

 .fi-icon {
     width: 45px;
     height: 45px;
 }

 .fi-title {
     font-size: 20px;
     font-weight: 400;
     margin-bottom: 4px;
     font-family: 'Space Grotesk', sans-serif;
     color: var(--white);
 }

 .fi-desc {
     font-size: 16px;
     color: var(--text-muted);
     line-height: 1.6;
 }

 /* ════════════════════════════════
       MANAGE MULTIPLE ACCOUNTS
    ════════════════════════════════ */
 .manage-section {
     padding: 0 40px;
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: center;
 }

 .manage-left h2 {
     font-size: clamp(22px, 2.8vw, 40px);
     font-weight: 800;
     margin-bottom: 12px;
     text-align: center;
 }

 .manage-left p {
     font-size: 16px;
     color: #fff;
     margin-bottom: 28px;
     line-height: 1.65;
     text-align: center;
 }

 .account-list {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .account-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     border: 1px solid rgba(61, 184, 230, 0.25);
     box-shadow: 0 0 0 1px rgba(61, 184, 230, 0.08), 0 0 60px rgba(61, 184, 230, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.05);
     border-radius: var(--radius-lg);
     padding: 14px 18px;
     cursor: pointer;
     transition: border-color .2s;
 }

 .account-row:hover {
     border-color: var(--blue);
 }

 .account-row.selected {
     border-color: var(--blue);
     background: linear-gradient(135deg, #0d2040, #0f1e30);
 }

 .account-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .ar-left {
     display: flex;
     align-items: center;
     gap: 12px;
     width: 100%;
 }

 .ar-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--text-dim);
 }

 .account-row.selected .ar-dot {
     background: var(--green);
 }

 .ar-label {
     font-size: 16px;
     color: var(--text-muted);
 }

 .ar-amount {
     font-size: 20px;
     font-weight: 400;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
 }

 .account-row.selected .ar-amount {
     color: var(--blue);
 }

 .ar-badge {
     font-size: 10px;
     font-weight: 700;
     padding: 3px 10px;
     border-radius: 20px;
     background: rgba(34, 197, 94, 0.12);
     border: 1px solid rgba(34, 197, 94, 0.3);
     color: var(--green);
 }

 /* Phone mockup */
 .phone-wrap {
     width: 100%;
     text-align: center;
 }

 .phone-wrap img {
     width: 90%;
     height: auto;
     object-fit: cover;
 }

 .phone {
     width: 200px;
     position: relative;
     filter: drop-shadow(0 0 30px rgba(61, 184, 230, 0.20));
 }

 .phone-body {
     background: linear-gradient(145deg, #0a1628, #0d2040);
     border: 2px solid rgba(61, 184, 230, 0.35);
     border-radius: 28px;
     padding: 10px;
     position: relative;
     overflow: hidden;
 }

 .phone-notch {
     width: 60px;
     height: 8px;
     background: #0a1628;
     border-radius: 0 0 8px 8px;
     margin: 0 auto 8px;
     border: 1px solid var(--border);
     border-top: none;
 }

 .phone-screen {
     background: #060e1a;
     border-radius: 18px;
     overflow: hidden;
     padding: 10px;
 }

 .ps-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 8px;
 }

 .ps-title {
     font-size: 8px;
     font-weight: 700;
     color: var(--blue);
 }

 .ps-balance {
     font-size: 14px;
     font-weight: 800;
     color: var(--white);
     font-family: 'Space Grotesk', sans-serif;
     margin-bottom: 2px;
 }

 .ps-change {
     font-size: 8px;
     color: var(--green);
     margin-bottom: 8px;
 }

 .ps-chart svg {
     width: 100%;
 }

 .ps-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4px;
     margin-top: 8px;
 }

 .ps-stat {
     background: #0f1e30;
     border-radius: 4px;
     padding: 5px 7px;
 }

 .ps-stat-label {
     font-size: 6px;
     color: var(--text-dim);
     margin-bottom: 2px;
 }

 .ps-stat-value {
     font-size: 9px;
     font-weight: 700;
     color: var(--white);
 }

 .ps-stat-value.g {
     color: var(--green);
 }

 /* ════════════════════════════════
       TRADE ON THE GO
    ════════════════════════════════ */
 .go-section {
     max-width: 1160px;
     margin: 0 auto;
     padding: 0 40px 80px;
     position: relative;
     z-index: 1;
 }

 .go-card {
     background: linear-gradient(135deg, #0a1e38, #0d2548, #0a1a30);
     border: 1px solid var(--card-border);
     border-radius: var(--radius-xl);
     padding: 48px 56px;
     display: flex;
     align-items: center;
     gap: 40px;
     position: relative;
     overflow: hidden;
 }

 .go-card::after {
     content: '';
     position: absolute;
     right: -80px;
     top: 50%;
     transform: translateY(-50%);
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(61, 184, 230, 0.09), transparent 65%);
     pointer-events: none;
 }

 .go-text {
     margin-top: 30px;
 }

 .go-text h2 {
     font-size: clamp(20px, 2.5vw, 30px);
     font-weight: 800;
     margin-bottom: 10px;
 }

 .go-text p {
     font-size: 14px;
     color: var(--text-muted);
     line-height: 1.65;
     max-width: 400px;
     margin: auto;
 }

 .go-features {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 20px;
 }

 .go-feat {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     color: var(--text-muted);
 }

 .go-feat-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--blue);
     flex-shrink: 0;
 }

 /* ════════════════════════════════
       FOOTER CTA
    ════════════════════════════════ */
 .footer-cta {
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     padding: 0 40px;
     display: flex;
     position: relative;
     z-index: 1;
 }

 .fc-logo-area {
     display: flex;
     align-items: center;
     gap: 14px;
     border-right: 1px solid var(--border);
     padding-right: 50px;
     width: 25%;
 }

 .fc-mid {
     padding: 20px;
     width: 100%;
 }

 .fc-mid h3 {
     font-size: clamp(16px, 2vw, 30px);
     font-weight: 800;
     margin-bottom: 18px;
 }

 .fc-btns {
     display: flex;
     gap: 12px;
 }

 .btn-fc {
     background: linear-gradient(180deg, #4A90E2 0%, #2E5BBA 50%, #1E3A8A 100%);
     color: #fff;
     border: none;
     border-radius: 10px;
     padding: 15px 35px;
     font-size: 16px;
     font-weight: 400;
     cursor: pointer;
     box-shadow:
         0 0 8px rgba(74, 144, 226, 0.8),
         0 0 60px rgba(74, 144, 226, 0.6),
         0 0 90px rgba(74, 144, 226, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     width: 50%;
 }

 .btn-fc:hover {
     box-shadow:
         0 0 40px rgba(74, 144, 226, 1),
         0 0 80px rgba(74, 144, 226, 0.8),
         0 0 120px rgba(74, 144, 226, 0.6),
         inset 0 1px 0 rgba(255, 255, 255, 0.3);
     transform: translateY(-2px) scale(1.02);
 }

 .btn-fc-out {
     font-size: 14px;
     font-weight: 400;
     color: #fff;
     background: none;
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: var(--radius-sm);
     padding: 15px 30px;
     cursor: pointer;
     transition: border-color .2s, color .2s;
     width: 50%;
 }

 .btn-fc-out:hover {
     border-color: var(--blue);
     color: var(--white);
 }

 /* Testimonial */
 .testimonial {
     background: var(--card);
     border: 1px solid var(--card-border);
     border-radius: var(--radius-lg);
     padding: 16px 18px;
     max-width: 260px;
 }

 .test-quote {
     font-size: 16px;
     color: var(--white);
     line-height: 1.6;
     margin-top: 30px;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .test-quote img {
     width: 60px;
     height: 60px;
     border-radius: 50px;
     object-fit: cover;
 }

 .test-footer {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .test-avatar {
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: linear-gradient(135deg, #1e4a7a, #2d6da8);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     font-weight: 700;
 }

 .test-tp {
     font-size: 10px;
     color: var(--text-muted);
 }

 .test-tp strong {
     color: var(--green);
 }

 .test-stars {
     display: flex;
     gap: 1px;
 }

 .test-star {
     color: var(--green);
     font-size: 9px;
 }

 .footer-links-row {
     display: flex;
     gap: 20px;
 }

 /* Responsive */
 @media(max-width:900px) {
     .dhero {
         grid-template-columns: 1fr;
         min-height: auto;
         padding-bottom: 60px;
     }



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

     .manage-section {
         grid-template-columns: 1fr;
     }

     .phone-wrap {
         display: none;
     }

     .footer-cta {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .testimonial {
         display: none;
     }

     .fc-logo-area {
         margin-top: 10px;
     }

     .breakdown-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .videoCard {
         flex-wrap: wrap;
     }

     .video-thumb {
         width: 100%;
     }

     .video-thumb img {
         width: 100%;
         height: auto;
         object-fit: cover;
     }

     .video-info {
         padding: 20px 0;
     }

     .btn-cta-primary {
         width: 40%;
     }

     .btn-cta-outline {
         width: 40%;
     }

     .brandLogoSecMain {
         padding: 35px 40px 20px;
     }

     .brandLogoSec {
         flex-wrap: wrap;
     }

     .brandLogoInner {
         width: 48%;
     }

     .affiliate-benefits-section {
         grid-template-columns: 1fr;
     }

     .affiliate-benefits-container {
         max-width: 800px;
         margin: 0 auto;
     }

     .affiliate-benefit-item {
         width: 100%;
     }
 }

 @media(max-width:600px) {
     .navbar {
         padding: 0 16px;
     }

     .nav-links {
         display: none;
     }

     .dhero,
     .inside-section,
     .manage-section,
     .go-section,
     .section-wrap {
         padding-left: 20px;
         padding-right: 20px;
     }

     .dhero {
         padding-top: 56px;
     }

     .go-card {
         padding: 32px 24px;
         flex-direction: column;
     }

     .footer-cta {
         padding: 28px 20px;
     }

     .footerstaicContentMain {
         padding: 0 20px 25px;
     }

     .btn-dhero {
         width: 100%;
     }

     .btn-text-link {
         width: 100%;
     }

     .inside-header-inside {
         width: 100%;
     }

     .feature-list {
         margin-top: 0;
     }

     .fc-btns {
         flex-wrap: wrap;
     }

     .btn-fc {
         width: 100%;
     }

     .btn-fc-out {
         width: 100%;
     }

     .fc-logo-area {
         width: 100%;
         justify-content: center;
         padding-right: unset;
     }

     .panel-name {
         font-size: 26px;
     }

     .hero-left p {
         width: 100%;
     }

     .brandLogoSecMain {
         padding: 35px 20px 20px;
     }

     .brandLogoSec {
         flex-wrap: wrap;
     }

     .brandLogoInner {
         width: 100%;
     }

     .brandLogoInner img {
         width: 40% !important;
     }
 }

 /* Responsive */
 @media(max-width:700px) {
     .payout-grid {
         grid-template-columns: 1fr;
     }

     .pm-logos {
         gap: 16px;
     }

     .pm-logo {
         padding: 10px 18px;
     }

     footer {
         flex-direction: column;
         gap: 14px;
     }
 }

 @media(max-width:500px) {
     .navbar {
         padding: 0 16px;
     }

     .nav-links {
         display: none;
     }

     .vhero {
         padding: 90px 16px 48px;
     }

     .sl-text p svg {
         width: 30px;
         height: 30px;
     }

     .sl-text p {
         font-size: 17px;
     }

     .vpayouts-section {
         padding: 0 20px 80px;
     }

     .payoutcardcontent {
         width: 63%;
     }

     .payoutLogo img {
         width: 35px;
         height: 15px;
     }

     .bitcoinImage {
         width: 20px !important;
         height: 20px !important;
     }

     .cta-inner {
         padding: 20px 10px;
     }

     .vbtn-cta {
         padding: 14px 25px;
         font-size: 14px;
     }

     .vverified-badge {
         font-size: 10px;
         top: 10px;
         right: 15px;
     }

     .vpayouts-section-inner {
         padding: 15px;
     }

     .payout-card {
         padding: 20px 10px;
     }
 }

 /* ════════════════════════
       RESPONSIVE
    ════════════════════════ */
 @media (max-width: 720px) {
     .navbar {
         padding: 0 16px;
     }

     .nav-links {
         display: none;
     }

     .featured-card {
         display: flex;
         flex-wrap: wrap;
     }

     .trader-header {
         flex-wrap: wrap;
         justify-content: center;
     }

     .account-stats {
         flex-wrap: wrap;
     }

     .featured-right {
         flex-wrap: wrap;
         margin-top: 20px;
     }

     .section-title {
         font-size: 20px;
     }

     .trader-quote {
         font-size: 16px;
         width: 100%;
     }

     .payout-received {
         margin-top: 20px;
     }

     .verified-badge {
         position: unset;
         font-size: 14px;
         display: flex;
         align-items: center;
         gap: 10px;
         margin-top: 20px;
     }

     .verified-badge svg {
         position: unset;
     }

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

     .video-card-main {
         grid-template-columns: 1fr;
     }

     .video-thumb {
         width: 100%;
     }

     .videoCard {
         flex-wrap: wrap;
     }

     .video-info {
         padding: 20px 0 0 0;
     }

     .vi-stats {
         display: block;
     }

     .vi-stat {
         margin-bottom: 10px;
     }

     .vi-stat-divider {
         display: none;
     }

     .btn-cta-primary {
         width: 100%;
     }

     .btn-cta-outline {
         width: 100%;
     }

     .video-thumb img {
         width: 100%;
         height: auto;
         object-fit: cover;
     }

     .trustpilot-badge {
         display: none;
     }

     .traderFooter {
         flex-direction: column;
         gap: 16px;
     }
 }


 /* Responsive */
 @media(max-width:900px) {
     .hero {
         grid-template-columns: 1fr;
     }

     .hero-left {
         width: 100%;
     }



     .page-body {
         grid-template-columns: 1fr !important;
         /* padding: 20px; */
     }

     /* .sidebar {
         display: none;
     } */

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

 @media(max-width:600px) {
     .navbar {
         padding: 0 16px;
     }

     .nav-links {
         display: none;
     }

     .hero {
         padding: 90px 20px 50px;
     }

     .hero-left {
         width: 100%;
     }

     .page-body {
         margin: 30px 20px 60px;
         grid-template-columns: 1fr !important;
         /* padding: 20px; */
     }

     .cta-bannerMainSec {
         padding: 0 20px;
     }

     .cta-banner {
         padding: 36px 24px;
         flex-direction: column;
     }

     .cta-actions {
         margin-top: 15px;
     }

     .cta-text p {
         font-size: 20px;
         margin-top: 20px;
     }

     .cta-text p svg {
         width: 45px;
         height: 45px;
     }

     .btn-cta {
         padding: 10px;
     }

     .btn-cta-out {
         padding: 10px 15px;
     }

     footer {
         padding: 28px 20px;
     }

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

     .tiers {
         gap: 6px;
     }
 }

 /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
 @media (max-width: 1024px) {
     .cards-grid {
         grid-template-columns: repeat(2, 1fr) !important;
     }

     .benefits-section h2 {
         width: 45%;
     }

     .page-body {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 900px) {
     .reviews-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .continue-wrap {
         width: 100% !important;
     }

     .cta-text p {
         font-size: 20px;
     }

     .btn-cta {
         padding: 10px 15px;
     }

     .btn-cta-out {
         padding: 10px 20px;
     }

     .hs-item {
         width: 35%;
     }

     .feature-list {
         margin-top: 0;
     }

     .benefits-row {
         justify-content: center;
         flex-wrap: wrap;
         gap: 20px;
     }

     .vverified-badge {
         top: 8px;
         font-size: 11px;
     }

     .payoutLogo img {
         width: 50px;
         height: 20px;
     }

     .bitcoinImage {
         width: 25px !important;
         height: 25px !important;
     }

     .vtrader-avatar {
         width: 70px;
         height: 70px;
     }

     .payoutcardcontent {
         width: 70%;
     }

     .card-top {
         margin-top: 10px;
     }

     .trader-name {
         font-size: 22px;
     }

     .card-amount {
         font-size: 20px;
     }
 }

 /* ════════════════════════════════
      RESPONSIVE NAVIGATION STYLES
   ════════════════════════════════ */

 /* Large desktop screens - default styles work well */
 @media (min-width: 1600px) {
     .mobile-nav.open {
         display: none;
     }

     .MenuSec {
         gap: 60px;
     }

     .nav-links {
         gap: 36px;
     }
 }

 /* Medium desktop screens (1366px - 1599px) - optimize for crowded navigation */
 @media (max-width: 1599px) and (min-width: 1200px) {
     .mobile-nav.open {
         display: none;
     }

     .MenuSec {
         gap: 30px;
     }

     .nav-links {
         gap: 20px;
     }

     .nav-links a {
         font-size: 14px;
         letter-spacing: 0.5px;
     }

     nav {
         padding: 0 30px;
     }

     /* .nav-links {
         display: none;
     }

     .hamburger {
         display: flex;
     } */

     .hero-right {
         top: 20%;
     }

     .dhero-right {
         top: 20%;
     }

     .dash-preview-card {
         margin-top: -25px;
     }

     .feature-list {
         margin-top: 0;
     }

     .affiliate-benefits-section-banner {
         top: 23%;
         right: 3%;
     }
 }

 /* Specific optimization for 1366px screens */
 @media (max-width: 1400px) and (min-width: 1300px) {
     .MenuSec {
         gap: 25px;
     }

     .nav-links {
         gap: 18px;
     }

     .nav-links a {
         font-size: 13.5px;
         letter-spacing: 0.4px;
     }

     .logo svg {
         width: 40px;
         height: 40px;
     }

     .logo-text .l1 {
         font-size: 16px;
     }

     .logo-text .l2 {
         font-size: 11px;
     }

     .hero-right {
         top: 20%;
     }

     .dhero-right {
         top: 17%;
     }

     .affiliate-benefits-section-banner {
         top: 23%;
         right: 4%;
     }
 }

 /* Small desktop screens (1024px - 1199px) - further optimize */
 @media (max-width: 1199px) and (min-width: 1024px) {
     .MenuSec {
         gap: 25px;
     }

     .nav-links {
         gap: 16px;
     }

     .nav-links a {
         font-size: 13px;
         letter-spacing: 0.3px;
     }

     nav {
         padding: 0 20px;
     }

     .btn-primary {
         padding: 8px 25px;
         font-size: 14px;
     }

     .hero-right {
         top: 20%;
     }

     .dhero-right {
         top: 20%;
     }

     .feature-list {
         margin-top: 0;
     }

     .dash-preview-card {
         margin-top: -25px;
     }

     .nav-links {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .fc-logo-area {
         width: 40%;
     }

     .affiliate-benefits-section {
         grid-template-columns: 1fr;
     }

     .affiliate-benefits-container {
         max-width: 800px;
         margin: 0 auto;
     }

     .affiliate-benefit-item {
         width: 100%;
     }

     .affiliate-benefits-section-banner {
        display: none;
     }
     
     .affiliate-benefits-section-banner-mobile{
        display: block;
        width: 100%;
     }
     .affiliate-benefits-section-banner-mobile img{
        width: 100%;
        height: auto;
        object-fit: cover;
     }
 }

 /* Tablet landscape (769px - 1023px) - compact navigation */
 @media (max-width: 1023px) and (min-width: 769px) {
     .MenuSec {
         gap: 20px;
     }

     .nav-links {
         gap: 12px;
     }

     .nav-links a {
         font-size: 12px;
         letter-spacing: 0.2px;
     }

     .btn-ghost {
         padding: 6px 12px;
         font-size: 13px;
     }

     .btn-primary {
         padding: 6px 20px;
         font-size: 13px;
     }

     .nav-links {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .hero-right {
         top: 30%;
     }

     .dhero-right {
         top: 30%;
     }

     .dash-preview-card {
         margin-top: -25px;
     }

     .feature-list {
         margin-top: 0;
     }

     .fc-logo-area {
         width: 40%;
     }

     /* Show mobile layout on tablets */
     .desktop-only {
         display: none;
     }

     .mobile-tablet-only {
         display: block;
     }

     .mobile-cards-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 16px;
     }

     .mobile-challenge-card {
         padding: 18px;
     }

     .mobile-card-amount {
         font-size: 22px;
     }

     .affiliate-benefits-section {
         grid-template-columns: 1fr;
     }

     .affiliate-benefits-container {
         max-width: 800px;
         margin: 0 auto;
     }

     .affiliate-benefit-item {
         width: 100%;
     }
     .affiliate-benefits-section-banner{
        display: none;
     }
     .affiliate-benefits-section-banner-mobile{
        display: block;
        width: 100%;
     }
     .affiliate-benefits-section-banner-mobile img{
        width: 100%;
        height: auto;
        object-fit: cover;
     }
 }

 @media (max-width: 768px) {

     body {
         padding: 0;
         background-size: auto 100%;
     }

     nav {
         padding: 0 20px;
     }

     .nav-links {
         display: none;
     }

     .btn-ghost {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .tp-badge {
         right: 20px;
         top: 16px;
     }

     .hero-text {
         padding: 56px 16px 36px;
     }

     .cards-grid {
         grid-template-columns: repeat(2, 1fr) !important;
     }

     .payouts-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 8px;
     }

     .btn-primary {
         padding: 10px 5px;
         font-size: 12px;
     }

     .btn-continue {
         padding: 14px 52px;
         font-size: 15px;
     }

     .hideBtnMobile {
         display: none;
     }

     .hero-right {
         position: unset;
         width: 100%;
         margin-top: 10px;
     }

     .dhero{
        gap: 5px;
     }

     .dhero-right {
         position: unset;
         width: 100%;
         margin-top: 10px;
     }

     .affiliate-benefits-section-banner{
        display: none;
     }

     .affiliate-benefits-section-banner-mobile{
        display: block;
        width: 100%;
     }
     .affiliate-benefits-section-banner-mobile img{
        width: 100%;
        height: auto;
        object-fit: cover;
     }
 }

 @media (max-width: 560px) {
     .reviews-grid {
         grid-template-columns: 1fr;
         max-width: 380px;
     }
 }

 @media (max-width: 480px) {
     .cards-grid {
         grid-template-columns: 1fr !important;
     }

     .hero-text h1 {
         font-size: 25px;
     }

     .hero-text p {
         font-size: 15px;
     }

     .challenge-panel {
         padding: 0 20px;
     }

     .payouts-section {
         margin: 0 20px;
     }

     .benefits-section {
         margin: 40px 20px;
     }

     .benefits-section h2 {
         width: 85%;
     }

     .panel-box {
         padding: 20px 14px 18px;
     }

     .benefits-row {
         flex-direction: column;
         align-items: flex-start;
         padding: 0 16px;
     }

     .tp-badge {
         font-size: 11px;
         gap: 4px;
     }

     .steps {
         flex-wrap: wrap;
     }

     .hero-stats {
         flex-wrap: wrap;
         gap: 20px 0;
     }

     .hs-item {
         width: 60%;
     }

     .continue-wrap {
         width: 100% !important;
     }

     /* Mobile challenge layout adjustments */
     .mobile-cards-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .mobile-feature-item {
         padding: 10px 0;
     }

     .feature-label,
     .feature-value {
         font-size: 14px;
     }

     .mobile-card-amount {
         font-size: 22px;
     }

     .mobile-card-btn {
         padding: 12px 20px;
         font-size: 14px;
     }

     .mobile-features-list {
         padding: 16px;
     }

     .mobile-challenge-card {
         padding: 16px;
     }
 }

 /* ════════════════════════════════
      FOOTER RESPONSIVE STYLES
   ════════════════════════════════ */

 /* Accordion styles for mobile footer */
 .accordion-header {
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: color 0.3s ease;
     user-select: none;
 }

 .accordion-header:hover {
     color: var(--blue) !important;
 }

 .accordion-header.active {
     color: var(--blue) !important;
 }

 .accordion-icon {
     font-size: 18px;
     font-weight: bold;
     transition: transform 0.3s ease;
     display: none;
     /* Hidden by default on desktop */
 }

 .accordion-content {
     transition: max-height 0.3s ease, opacity 0.3s ease;
     overflow: hidden;
 }

 /* Desktop - accordion functionality disabled */
 @media (min-width: 769px) {
     .accordion-header {
         cursor: default;
     }

     .accordion-content {
         max-height: none !important;
         opacity: 1 !important;
     }
 }

 /* Tablet styles */
 @media (max-width: 768px) {
     .footerMain {
         grid-template-columns: 1fr;
         gap: 30px;
         padding: 30px 20px;
     }

     .footer-links {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         border-right: none;
         border-bottom: 1px solid rgba(61, 184, 230, 0.15);
         padding-bottom: 20px;
     }

     .footerSocial {
         text-align: center;
     }

     .socailMedia {
         justify-content: center;
         margin-bottom: 30px;
     }

     .footerSocial p {
         text-align: center;
         line-height: 1.5;
     }

     /* Show accordion icons on tablet */
     .accordion-icon {
         display: block;
     }

     .accordion-content {
         max-height: 0;
         opacity: 0;
     }

     .accordion-content.active {
         max-height: 200px;
         opacity: 1;
         margin-top: 10px;
     }

     .payouts-section {
         padding: 10px;
     }
 }

 /* Mobile styles */
 @media (max-width: 480px) {
     .footerMain {
         padding: 20px 15px;
         gap: 25px;
     }

     .footer-links {
         grid-template-columns: 1fr;
         gap: 25px;
         text-align: center;
     }

     .fl-col h5 {
         font-size: 16px;
         margin-bottom: 15px;
     }

     .fl-col ul {
         gap: 12px;
     }

     .fl-col a {
         font-size: 14px;
     }

     .footerSocial h5 {
         font-size: 16px;
         margin-bottom: 15px;
     }

     .socailMedia {
         gap: 15px;
         margin-bottom: 25px;
     }

     .socailMedia img {
         width: 35px;
         height: 35px;
     }

     .footerSocial p {
         font-size: 11px;
         line-height: 1.6;
         padding: 0 10px;
     }

     /* Enhanced accordion styles for mobile */
     .accordion-header {
         padding: 10px 0;
         border-bottom: 1px solid rgba(61, 184, 230, 0.1);
     }

     .accordion-content {
         max-height: 0;
         opacity: 0;
     }

     .accordion-content.active {
         max-height: 300px;
         opacity: 1;
         margin-top: 15px;
         padding-bottom: 10px;
     }

     .fl-col h5 {
         margin-bottom: 0;
     }
 }

 /* Extra small mobile styles */
 @media (max-width: 320px) {
     .footerMain {
         padding: 15px 10px;
     }

     .fl-col h5 {
         font-size: 14px;
     }

     .fl-col a {
         font-size: 13px;
     }

     .footerSocial p {
         font-size: 10px;
     }

     .accordion-content.active {
         max-height: 250px;
     }
 }


 /* ════════════════════════════════
   TERMS AND CONDITIONS STYLING
   ════════════════════════════════ */

 .staticPageContent {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 40px;
     color: var(--text-light);
     line-height: 1.8;
 }

 .static-page-title {
     font-size: 3rem;
     font-weight: 700;
     color: var(--white);
     text-align: center;
     margin-bottom: 60px;
     background: linear-gradient(135deg, var(--blue-light), var(--blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .terms-section {
     margin-bottom: 50px;
     padding: 30px;
     background: rgba(17, 28, 46, 0.5);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     backdrop-filter: blur(10px);
 }

 .terms-section h2 {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--blue-light);
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 2px solid var(--border-blue-25);
 }

 .terms-section h3 {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--blue);
     margin-top: 25px;
     margin-bottom: 15px;
 }

 .terms-section p {
     font-size: 1rem;
     color: var(--text-light);
     margin-bottom: 15px;
     text-align: justify;
 }

 .terms-section ol {
     margin-left: 30px;
     margin-bottom: 20px;
 }

 .terms-section ol li {
     font-size: 1rem;
     color: var(--text-light);
     margin-bottom: 12px;
     padding-left: 10px;
     line-height: 1.7;
 }

 .terms-section ul {
     margin-left: 30px;
     margin-bottom: 20px;
 }

 .terms-section ul li {
     font-size: 1rem;
     color: var(--text-light);
     margin-bottom: 12px;
     padding-left: 10px;
     line-height: 1.7;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .staticPageContent {
         padding: 40px 20px;
     }

     .static-page-title {
         font-size: 2rem;
         margin-bottom: 40px;
     }

     .terms-section {
         padding: 20px;
         margin-bottom: 30px;
     }

     .terms-section h2 {
         font-size: 1.5rem;
         margin-bottom: 20px;
     }

     .terms-section h3 {
         font-size: 1.1rem;
         margin-top: 20px;
         margin-bottom: 12px;
     }

     .terms-section p,
     .terms-section ol li,
     .terms-section ul li {
         font-size: 0.95rem;
         text-align: left;
     }

     .terms-section ol,
     .terms-section ul {
         margin-left: 20px;
     }
 }

 @media (max-width: 480px) {
     .staticPageContent {
         padding: 30px 20px;
     }

     .static-page-title {
         font-size: 1.75rem;
         margin-bottom: 30px;
     }

     .terms-section {
         padding: 15px;
         margin-bottom: 25px;
     }

     .terms-section h2 {
         font-size: 1.3rem;
     }

     .terms-section h3 {
         font-size: 1rem;
     }

     .terms-section p,
     .terms-section ol li,
     .terms-section ul li {
         font-size: 0.9rem;
     }
 }


 /* ════════════════════════════════
   CONTACT US PAGE STYLING
   ════════════════════════════════ */

 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 80px 40px;
 }

 .contact-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .contact-header h1 {
     font-size: clamp(28px, 5vw, 50px);
     font-weight: 800;
     color: var(--white);
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .contact-header p {
     font-size: 18px;
     color: var(--white);
     font-weight: 300;
 }

 .contact-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .contact-card {
     background: rgba(17, 28, 46, 0.6);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     padding: 40px 30px;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
     position: relative;
 }

 .contact-card:hover {
     border-color: var(--border-blue-25);
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(61, 184, 230, 0.15);
 }

 .contact-icon {
     width: 60px;
     height: 60px;
     background: rgba(61, 184, 230, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
 }

 .contact-card h3 {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--white);
     margin-bottom: 15px;
 }

 .contact-subtitle {
     font-size: 0.95rem;
     color: var(--white);
     margin-bottom: 25px;
     line-height: 1.6;
 }

 .contact-address {
     font-size: 0.95rem;
     color: var(--white);
     line-height: 1.7;
 }

 .contact-email {
     font-size: 1rem;
     color: var(--white);
     font-weight: 500;
 }

 .whatsapp-btn {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     gap: 10px;
     background: #25D366;
     color: var(--white);
     padding: 12px 24px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     margin-top: 10px;
     width: 100%;
 }

 .whatsapp-btn:hover {
     background: #20BA5A;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
 }

 .whatsapp-btn svg {
     width: 20px;
     height: 20px;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .contact-cards {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .contact-container {
         padding: 60px 20px;
     }

     .contact-cards {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .contact-card {
         padding: 30px 25px;
     }

     .contact-card h3 {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 480px) {

     .contact-header {
         margin-bottom: 40px;
     }

     .contact-icon {
         width: 50px;
         height: 50px;
     }

     .contact-icon svg {
         width: 30px;
         height: 30px;
     }
 }


 /* ════════════════════════════════
   FAQ PAGE STYLING
   ════════════════════════════════ */

 .faq-container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 80px 40px;
 }

 .faq-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .faq-header h1 {
     font-size: 3rem;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 15px;
 }

 .faq-header p {
     font-size: 1.1rem;
     color: var(--text-muted);
 }

 /* FAQ Tabs */
 .faq-tabs {
     display: flex;
     gap: 15px;
     margin-bottom: 40px;
     border-bottom: 2px solid var(--border-blue-15);
     overflow-x: auto;
     padding-bottom: 0;
 }

 .faq-tab {
     background: transparent;
     border: none;
     color: var(--text-muted);
     font-size: 1rem;
     font-weight: 600;
     padding: 15px 25px;
     cursor: pointer;
     transition: all 0.3s ease;
     border-bottom: 3px solid transparent;
     white-space: nowrap;
     position: relative;
 }

 .faq-tab:hover {
     color: var(--blue-light);
 }

 .faq-tab.active {
     color: var(--blue-light);
     border-bottom-color: var(--blue-light);
 }

 /* FAQ Tab Content */
 .faq-tab-content {
     display: none;
     animation: fadeIn 0.3s ease;
 }

 .faq-tab-content.active {
     display: block;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* FAQ Accordion */
 .faq-accordion {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .faq-item {
     background: rgba(17, 28, 46, 0.5);
     border: 1px solid var(--border-blue-15);
     border-radius: var(--radius-md);
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     border-color: var(--border-blue-25);
 }

 .faq-item.active {
     border-color: var(--blue);
 }

 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 25px;
     cursor: pointer;
     user-select: none;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     background: rgba(61, 184, 230, 0.05);
 }

 .faq-question span:first-child {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--white);
     flex: 1;
     padding-right: 20px;
 }

 .faq-icon {
     font-size: 1.5rem;
     color: var(--blue-light);
     font-weight: 300;
     min-width: 30px;
     text-align: center;
     transition: transform 0.3s ease;
 }

 .faq-item.active .faq-icon {
     transform: rotate(180deg);
 }

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

 .faq-item.active .faq-answer {
     max-height: fit-content;
     padding: 20px 25px;
 }

 .faq-answer p {
     color: var(--text-light);
     line-height: 1.7;
     font-size: 0.95rem;
 }

 .faq-answer ul {
     color: var(--text-light);
     line-height: 1.7;
     font-size: 0.95rem;
     margin: 5px 20px;
 }

 .faq-answer ul li {
     padding-bottom: 5px;
 }

 .faq-answer ul li a {
     color: var(--text-light);
 }

 .faq-answer strong {
     color: var(--text-light);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .faq-container {
         padding: 60px 20px;
     }

     .faq-header h1 {
         font-size: 2.5rem;
     }

     .faq-header p {
         font-size: 1rem;
     }

     .faq-tabs {
         gap: 10px;
         margin-bottom: 30px;
     }

     .faq-tab {
         font-size: 0.9rem;
         padding: 12px 20px;
     }

     .faq-question {
         padding: 18px 20px;
     }

     .faq-question span:first-child {
         font-size: 1rem;
     }

     .faq-item.active .faq-answer {
         padding: 18px 20px;
     }
 }

 @media (max-width: 480px) {
     .faq-header h1 {
         font-size: 2rem;
     }

     .faq-tabs {
         gap: 8px;
     }

     .faq-tab {
         font-size: 0.85rem;
         padding: 10px 15px;
     }

     .faq-question {
         padding: 15px 18px;
     }

     .faq-question span:first-child {
         font-size: 0.95rem;
     }

     .faq-icon {
         font-size: 1.3rem;
     }
 }