@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Rodhest-Bold'; 
    src: url('/fonts/Rodhest Bold.otf') format('otf'),
         url('/fonts/Rodhest Bold.woff') format('woff'),
         url('/fonts/Rodhest Bold.woff2') format('woff2'),
         url('/fonts/Rodhest Bold.svg') format('svg'),
         url('/fonts/Rodhest Bold.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}
/* --- Global Styles & Variables --- */
:root {
    --bg-color: #21135d;
    --primary-text-color: #fff;
    --secondary-text-color: #fff;
    --blue-text-color: #101419;
    --text-white: #fff;
    --border-white: #fff;
    --bg-white: #fff;
    --border-color: #293c70;
    --card-bg-color: #21135d;
    --primary-accent-color: #007BFF;
    --primary-accent-color: #852df0;
    --primary-accent-hover: #0056b3;
    --green-color: #2ead5a; 
    --red-color: #ff0500;
    --border-gray: #cccccc ;
    --text-gray: #cccccc ;
    /* --font-family: 'Poppins', sans-serif; */
    --font-family: "Inter", sans-serif;
    --font-rodhest-bold: 'Rodhest-Bold', sans-serif;
    --font-family-jost: "Jost", sans-serif;
    --nav-text-color: #2ead5a;
    --nav-text-color-hover: #e83449;
    --card-shine-opacity: .5;
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #007BFF 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
    --blur-opacity: .01;


}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--text-gray);
}
input::-moz-placeholder { /* Firefox 19+ */
  color: var(--text-gray);
}
input:-ms-input-placeholder { /* IE 10+ */
  color: var(--text-gray);
}
input:-moz-placeholder { /* Firefox 18- */
  color: var(--text-gray);
}
a {
    color: var(--green-color);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
  --footer-height: 110px;
}

html, body {
    height: 100%;
    background: var(--bg-color);
}
section {
    background: var(--bg-color);
    background-color: var(--bg-color);
}
html {
    scroll-padding-top: 80px;
}
main {
    min-height: 100%;
    margin-bottom: calc(-1 * var(--footer-height));
}

main::after {
    content: "";
    display: block;
    height: var(--footer-height); 
}
.accepted-payments img {
    width: 300px;
}
footer {
    height: var(--footer-height); 
    background: radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 100%, rgba(2, 153, 184, 1) 100%);
}
body {
    font-family: var(--font-family);
    /* background-color: var(--bg-color); */
    color: var(--primary-text-color);
    line-height: 1.6;
    /* background: #00FFFF;
background: -webkit-linear-gradient(125deg, rgba(0, 255, 255, 1) 0%, rgba(104, 61, 168, 1) 25%, rgba(0, 0, 28, 1) 100%);
background: -moz-linear-gradient(125deg, rgba(0, 255, 255, 1) 0%, rgba(104, 61, 168, 1) 25%, rgba(0, 0, 28, 1) 100%);
background: linear-gradient(125deg, rgba(0, 255, 255, 1) 0%, rgba(104, 61, 168, 1) 25%, rgba(0, 0, 28, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00FFFF", endColorstr="#00001C", GradientType=0); */
}
.bg-gradient {
    background: #020024;
background: -webkit-linear-gradient(48deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 51%, rgba(0, 212, 255, 1) 100%);
background: -moz-linear-gradient(48deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 51%, rgba(0, 212, 255, 1) 100%);
background: linear-gradient(48deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 51%, rgba(0, 212, 255, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024", endColorstr="#00D4FF", GradientType=0);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 2.8rem; font-family: var(--font-rodhest-bold); }
h2 { font-size: 2.2rem; text-align: center; font-family: var(--font-rodhest-bold); }
p { color: var(--secondary-text-color); margin-bottom: 15px; }

.main-title {
    font-size: 5.8rem;
    line-height: 1;
}
/*.video-container  {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0px;
}
.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100vh;
    
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
}
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 0;
}
.video-content {
    position: absolute;
    z-index: 1; 
    left: 0;
    right: 0;
    top: 0;
    background: transparent !important;
} */
/* CSS */
         
.button-blue {
  align-items: center;
  /* background-image: linear-gradient(to right, #0575E6 0%, #021B79  51%, #0575E6  100%); */
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  transition: 0.5s;
  background-size: 200% auto;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 19px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-family);
}

.button-blue:active,
.button-blue:hover {
  color: #fff;
  background-image: linear-gradient(144deg, #00DDEB, #5B42F3 50%, #AF40FF);
}
.d-flex {
    display: flex;
}
.trade-list li {
    list-style: none;
}
.right-reveal img {
    width: 20px;
}
/* --- Header & Navigation --- */    
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5.5rem;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
    width: 100%;
   /*  position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(16, 20, 25, 0.8); 
    backdrop-filter: blur(10px);*/
    z-index: 100;
    /* border-bottom: 1px solid var(--border-color); */
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}
img.logo {
    height: 50px;
    width: auto;
}
/* .img1 {
    width: 46px;
    border: solid 1px #686868;
    border-radius: 12px;
    padding: 5px;
    background: #07065d;
}
.img2 {
    width: 70px;
} */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}
.bg-img {
    position: relative;
    overflow: hidden;
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: #000000;
}
.bg-img::after, .bg-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 250px;
    background-image: url(/images/wave3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    opacity: 0.6;
}
.bg-img::before {
    background-image: url(/images/v1.jpeg);
    height: 100%;
}
.bg-main {
    background-image: url(/images/box-bg.avif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-v1 {
    background-image: url(/images/box-right.avif);
}
.bg-v2 {
    background-image: url(/images/box-center.avif);
}
.bg-v3 {
    background-image: url(/images/box-left.avif);
}
.bg-v4 {
    background-image: url(/images/box-plain-right.avif);
}
.bg-v5 {
    background-image: url(/images/box-plain-right.avif);
}
.bg-main::before {
    /* background-image: linear-gradient(180deg, #222222CC 0%, #222222 100%); */
    background-image: linear-gradient(180deg, #00081b2b  0%, #00081b 100%);
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}
.navbar-transparent {
    position: absolute; 
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.navbar-scrolled {
    position: fixed; 
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    /* background-color: #0900141a; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: rgb(33 19 93 / 80%);
}
.nav-link {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--nav-text-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-text-color);
    transition: all 0.3s ease-in-out;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-accent-color);
    color: var(--primary-accent-color);
}

.btn-secondary:hover {
    background-color: var(--primary-accent-color);
    color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    padding: 0;
    height: 100vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-section .subtitle {
    font-size: 1.2rem;
    margin: 0 auto 30px;
}
.hero-image {
    margin-top: 40px;
}
.hero-image img {
    max-width: 100%;
    height: 450px;
    border-radius: 20px;
    border: 1px solid #000074;
    box-shadow: 0px 0px 20px 0px #000070;
}
.feature-image-glow {
    z-index: 1;
    pointer-events: none;
    position: absolute;
    inset: -8% 7% auto;
}
.image-full {
    opacity: 1;
    mix-blend-mode: normal;
    object-fit: contain;
    width: 100%;
    max-width: none;
    height: 100%;
}
/* --- Preview Section --- */
.preview-section .chart-placeholder img {
    max-width: 100%;
    /* border-radius: 8px;
    border: 1px solid var(--border-color); */
    width: 570px;
        z-index: 1;
    position: relative;
}
.chart-placeholder {
    width: 40%;
}
.right-content {
    padding-left: 80px;
    width: 60%;
}
.preview-section p {
    text-align: left;
    max-width: 100%;
    margin: 0 auto 20px;
    line-height: 1.4;
}
.trade-list {
    display: flex;
    flex-wrap: wrap; 
    gap: 5px; 
    list-style: none;
    padding: 0; 
    margin: 0 0 30px; 
}

.trade-list .right-reveal {
    flex: 1 1 calc(50% - 7.5px); 
    min-width: 150px; 
}

.trade-list .right-reveal span {
    display: inline-flex;
    align-items: center;
    margin-right: 5px; 
}

.trade-list .right-reveal img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.section-content h2 {
    text-align: left;
}
/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    /* border: 1px solid var(--primary-accent-color); */
    border: 1px solid #852df0;
}

/* --- Benefits Section --- */
.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
    justify-content: space-around;
}
.benefit-item:nth-child(even) {
    flex-direction: column;
}
.benefit-item img.ben-img {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    top: -4px;
    object-fit: cover;
    height: 400px;
    border: 1px solid #852df0;
}
.benefit-item div {
    max-width: 500px;
}
.benefit-item h3 {
    font-size: 28px;
    font-weight: 500;
}
.img-sec {
    position: relative;
}
/* --- Pricing Section --- */
/* section#pricing::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #00081b96 0%, #00081b 100%);
    z-index: -1;
}
section#pricing {
    background-image: url(/images/plan.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
} */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 100px;
}
.pricing-card {
    background-color: var(--card-bg-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-card.popular {
    border-color: var(--primary-accent-color);
    /* transform: scale(1.05); */ /* Replaced by selected state */
}
.pricing-card.selected {
    transform: scale(1.05) !important;
    border: 2px solid var(--primary-accent-color);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}
.pricing-card h3 {
    font-size: 1.5rem;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 10px 0;
    font-family: var(--font-family-jost);
    background: #16094a;
    border-radius: 8px;
}
.pricing-card.popular {
    scale: 1.1;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-text-color);
}
.pricing-card .savings {
    color: var(--green-color);
    font-weight: 600;
    margin-bottom: 20px;
}
.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}
.pricing-card ul li {
    margin-bottom: 10px;
}

/* --- FAQ Section --- */
.faq-item {
    background-color: var(--card-bg-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-accent-color);
}
.faq-item a {
    text-decoration: none;
    font-weight: 500;
}
.faq-item a:hover {
    text-decoration: underline;
}
.faq-section .container {
    max-width: 800px;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background-color: var(--card-bg-color);
    padding: 90px 70px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}
.testimonial-card i {
    opacity: 0.3;
    font-size: 60px;
    position: absolute;
    left: 30px;
    top: 15px;
}
.testimonial-card h4 {
    margin-top: 15px;
    color: var(--primary-text-color);
}

/* --- Footer Section --- */
footer {
    /* background-color: var(--card-bg-color); */
    padding: 40px 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.footer-content p {
    margin-bottom: 0;
}
.footer-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--green-color);
}
.social-icons a {
    color: var(--secondary-text-color);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--green-color);
}

/* --- Static Page Styles --- */
.static-page-section {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 70vh;
}
.static-page-section .container {
    max-width: 800px;
}
.static-page-section h1 {
    margin-bottom: 30px;
    text-align: center;
}
.static-page-section h2 {
    text-align: left;
    margin-top: 40px;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* --- Purchase / Checkout Page Styles --- */
.purchase-section {
    padding-top: 120px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: flex-start;
}
.checkout-layout .form-group label, .payment-form h3 {
    color: var(--blue-text-color);
}
.payment-form, .order-summary {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px; overflow: hidden;
}
.page-title {
    padding: 20px;
    border-bottom: solid 1px var(--border-gray);
    background: #21135d;
}
.payment-form form, .summary-content {
    padding: 20px;     background: #f9f9f9;
}
.payment-form h3, .order-summary h3 {
    text-align: left;
        color: #fff;
    margin-bottom: 0px;
}

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

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 14px;
    padding: 2px 0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    color: var(--blue-text-color);
    font-size: 14px;
    font-family: var(--font-family);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-accent-color);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--red-color);
}

.error-message {
    color: var(--red-color);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-bottom: 0;
    display: none; /* Hidden by default */
}


.form-group-checkbox {
    display: flex;
    flex-wrap: wrap; /* Allows error to wrap */
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
}


.form-group-checkbox input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary-accent-color);
    height: 18px;
    width: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.form-group-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    font-weight: 400;
    flex: 1; /* Allows label to take up space */
}

.form-group-checkbox .error-message {
    flex-basis: 100%; /* Makes error take full width */
    margin-top: 0;
    font-weight: 600;
}

.form-group-checkbox a {
    text-decoration: none;
    font-weight: 500;
}

.form-group-checkbox a:hover {
    text-decoration: underline;
}

.payment-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}
.payment-form h3.payment-title {
    margin-bottom: 15px;
    color: var(--blue-text-color);
}
.payment-details {
    margin-top: 20px;
    padding-top: 30px;
    border-top: solid 1px #e6e6e6;
}
.summary-content h4 {
    margin-bottom: 10px;
}
.card-number-group {
    position: relative;
}

#card-type-icon {
    position: absolute;
    right: 15px;
    top: 34px;
    font-size: 1.8rem;
    color: var(--blue-text-color);
    transition: opacity 0.3s;
}

.order-summary, .total-row, .total-row strong, .order-summary p , .accepted-payments i {
    color: var(--blue-text-color);
}
.username-confirm-box {
    margin-bottom: 10px;
}
.order-summary ul {
    list-style-type: none;
    margin-bottom: 20px;
}
.order-summary ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}
.order-summary ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--green-color);
    position: absolute;
    left: 0;
    top: 2px;
}
.order-summary-total {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}
.order-summary-total .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.secure-checkout-info {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}
.secure-checkout-info i {
    color: var(--green-color);
    margin-right: 5px;
}

.accepted-payments {
    text-align: center;
    margin-top: 20px;
    color: var(--secondary-text-color);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.accepted-payments span {
    font-size: 0.9rem;
    vertical-align: middle;
    margin-right: 10px;
}

.accepted-payments i {
    font-size: 1.8rem;
    margin: 0 4px;
    vertical-align: middle;
}


/* --- Animation Styles --- */
section.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .order-summary {
        order: -1; /* Move order summary to the top on smaller screens */
    }
}


@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* height of navbar */
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (min-width: 769px) {
    .benefit-item {
        flex-direction: row;
        text-align: left;
    }
    .benefit-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.card {
  background-color: #010f30cc;
  box-shadow: 0px var(--card-box-shadow-1-y) var(--card-box-shadow-1-blur) var(--card-box-shadow-1), 0px var(--card-box-shadow-2-y) var(--card-box-shadow-2-blur) var(--card-box-shadow-2), 0 0 0 1px var(--card-border-color);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.25s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background-color: var(--card-background-color);
}
.card .icon {
  z-index: 2;
  position: relative;
  display: table;
  padding: 8px;
}
.card .icon::after {
  content: "";
  position: absolute;
  inset: 4.5px;
  border-radius: 50%;
  background-color: #001239 ;
  /* border: 1px solid #01b4da52; */
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: background-color 0.25s, border-color 0.25s;
}
.card .icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 120px;
    height: auto;
    transform: translateZ(0);
    color: var(--card-icon-color);
    transition: color 0.25s;
    padding: 17px;
}
.card h3 {
  margin: 12px 0 4px 0;
  line-height: 2;
}
.card .shine {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.card .shine:before {
  content: "";
  width: 150%;
  padding-bottom: 150%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 55%;
  filter: blur(35px);
  opacity: var(--card-shine-opacity);
  transform: translateX(-50%);
  background-image: var(--card-shine-gradient);
}
.card .background {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}
.card .background .tiles {
  opacity: 0;
  transition: opacity 0.25s;
}
.card .background .tiles .tile {
  position: absolute;
  background-color: var(--card-tile-color);
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.card .background .tiles .tile.tile-4, .card .background .tiles .tile.tile-6, .card .background .tiles .tile.tile-10 {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.card .background .tiles .tile.tile-3, .card .background .tiles .tile.tile-5, .card .background .tiles .tile.tile-8 {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
.card .background .tiles .tile.tile-2, .card .background .tiles .tile.tile-9 {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
.card .background .tiles .tile.tile-1 {
  top: 0;
  left: 0;
  height: 10%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-2 {
  top: 0;
  left: 22.5%;
  height: 10%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-3 {
  top: 0;
  left: 50%;
  height: 10%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-4 {
  top: 0;
  left: 77.5%;
  height: 10%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-5 {
  top: 10%;
  left: 0;
  height: 22.5%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-6 {
  top: 10%;
  left: 22.5%;
  height: 22.5%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-7 {
  top: 10%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-8 {
  top: 10%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-9 {
  top: 32.5%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-10 {
  top: 32.5%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
}
@-webkit-keyframes tile {
  0%, 12.5%, 100% {
    opacity: 1;
  }
  25%, 82.5% {
    opacity: 0;
  }
}
@keyframes tile {
  0%, 12.5%, 100% {
    opacity: 1;
  }
  25%, 82.5% {
    opacity: 0;
  }
}


.card .background .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.card .background .line:before, .card .background .line:after {
  content: "";
  position: absolute;
  background-color: #006270;
  transition: transform 0.35s;
}
.card .background .line:before {
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.card .background .line:after {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: 50% 0;
  transform: scaleY(0);
}
.card .background .line.line-1:before {
  top: 10%;
}
.card .background .line.line-1:after {
  left: 22.5%;
}
.card .background .line.line-1:before, .card .background .line.line-1:after {
  transition-delay: 0.3s;
}
.card .background .line.line-2:before {
  top: 32.5%;
}
.card .background .line.line-2:after {
  left: 50%;
}
.card .background .line.line-2:before, .card .background .line.line-2:after {
  transition-delay: 0.15s;
}
.card .background .line.line-3:before {
  top: 55%;
}
.card .background .line.line-3:after {
  right: 22.5%;
}
.card:hover {
  /* box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color); */
      box-shadow: 0px 0px 20px -8px #00ddeb;
}
.card:hover .icon::after {
      background-color: rgb(145 51 255 / 13%);
    border-color: #00ddeb36;
}
.card:hover .icon img {
  color: var(--card-hover-icon-color);
}
.card:hover .shine {
  opacity: 1;
  transition-duration: 0.5s;
  transition-delay: 0s;
}
.card:hover .background .tiles {
  opacity: 1;
  transition-delay: 0.25s;
}
.card:hover .background .tiles .tile {
  -webkit-animation-name: tile;
          animation-name: tile;
}
.card:hover .background .line {
  opacity: 1;
  transition-duration: 0.15s;
}
.card:hover .background .line:before {
  transform: scaleX(1);
}
.card:hover .background .line:after {
  transform: scaleY(1);
}
.card:hover .background .line.line-1:before, .card:hover .background .line.line-1:after {
  transition-delay: 0s;
}
.card:hover .background .line.line-2:before, .card:hover .background .line.line-2:after {
  transition-delay: 0.15s;
}
.card:hover .background .line.line-3:before, .card:hover .background .line.line-3:after {
  transition-delay: 0.3s;
}
/* Spinner overlay for payment processing */
.payment-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.payment-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--primary-accent-color, #852df0);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Highlight payment details section on error */
.payment-details-error {
    border: 2px solid #d32f2f !important;
    transition: border 0.2s;
    padding:20px;
        padding-bottom: 10px;
    margin-bottom: 15px;
}
/* --- Payment Error Styling --- */
.payment-error {
    background: #fff0f0;
    color: #d32f2f;
    border: 1px solid #d32f2f;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(211,47,47,0.08);
    text-align: center;
    letter-spacing: 0.01em;
    display: block;
}
.arrow {
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
    animation: moveRight 1.5s infinite; /* 1.5s duration, infinite loop */
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px); 
    }
    100% {
    }
}

[data-aos] {
    transition-property: opacity, transform; 
    visibility: hidden; 
    will-change: transform, opacity; 
}

[data-aos].aos-animate {
    visibility: visible;
}


.submit {
    max-width: 300px;
    margin: 0px auto;
    display: block;
}

@media only screen and (max-width: 767px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  footer {
    padding: 40px 0 0;
    height: auto;
    }
  .main-title {
    font-size: 2rem;
    }
    .right-content, .chart-placeholder {
        padding-left: 0;
        width: 100%;
    }
    .custom-styling {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .trade-list { text-align: left; }
.section-content h2, .preview-section p {
    /* text-align: center; */
}
.trade-list .right-reveal { min-width: 100%;}
section {
    padding: 60px 0;
}
.pricing-card.popular {
    scale: 1;
}
.footer-links {
    display: flex;
    flex-direction: column;
}
.footer-content {
    padding-bottom: 30px;
}
main {
    overflow-x: hidden;
}
.benefit-item img.ben-img {
    top: -10px; height: auto;
}
.nav-link
 {
    border-bottom: solid 1px #ccc;
    padding-bottom: 3px;
}
.pricing-grid {
    margin-top: 40px;
}
}