:root {
    /* Colors */
    --primary-blue: #0D6EFD;      /* Main accent color for buttons, links, and highlights */
    --dark-text: #0F172A;         /* Primary dark text color for headings and strong elements */
    --muted-text: #425466;        /* Secondary text color for subtitles and descriptions */
    --light-grey-bg: #F8F9FA;     /* Light background for cards and sections */
    --white: #FFFFFF;             /* Pure white for backgrounds and text on dark */
    --light-border: #E2E8F0;      /* Subtle borders and dividers */
    --slate-400: #94A3B8;         /* Muted grey for labels and secondary info */
    --shadow-color: rgba(0,0,0,0.05); /* Soft shadow for depth without harshness */
    --succes-background:#10b981;
     --borders-color: #ECECFD;
       --white-color: #fff;
    /* Fonts */
    --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* Modern sans-serif stack for consistency */
    --font-size-base: 16px;       /* Base font size for body text */
    --font-weight-regular: 400;   /* Normal text weight */
    --font-weight-medium: 500;    /* Medium for emphasis */
    --font-weight-bold: 700;      /* Bold for headings */
    --font-weight-extra-bold: 800;/* Extra bold for hero titles */
     --font-lora: "Lora", sans-serif;
    /* Other Globals */
    --transition-base: all 0.3s ease; /* Standard transition for hover effects */
    --border-radius-base: 12px;   /* Base radius for buttons and cards */
    --border-radius-large: 20px;  /* Larger radius for feature cards */
    --border-radius-xl: 28px;     /* Extra large for bento cards */
    --box-shadow-base: 0 10px 20px var(--shadow-color); /* Standard shadow */
}

/* Global Resets and Base Styles
   - Apply root fonts and colors globally for consistency across all pages.
   - Ensure smooth transitions and box-sizing.
*/
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-dmsans);
    font-size: var(--font-size-base);
    color: var(--dark-text);
    background: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}


.max-w-2xl{
   max-width: 42rem;
}

.muted-text{
    color: var(--muted-text) !important;
}
/* Feature Image Card Start */
.feature-image-card {
    /* background: var(--light-grey-bg); */
    padding: 40px;
    border-radius: var(--border-radius-large);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

/* Responsive Feature Grid */
@media (max-width: 991px) {
    .feature-image-card {
        padding: 80px;
    }
}

@media (max-width: 575px) {
   .feature-image-card {
      padding: 20px;
   }
}


/* Feature Content Box
   - Text content for features, with consistent typography and spacing.
*/
.feature-content-box h3 {
    font-size: 35px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
}

.feature-content-box p {
    color: #666; 
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #e0e0e0; 
    border-radius: 10px; 
    color: var(--primary-blue);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
}

.btn-explore i {
    font-size: 12px;
    margin-left: 8px;
}

.btn-explore:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Features Wrapper Timeline
   - Vertical line for timeline in features section (desktop only).
*/
.features-wrapper .timeline-line {
    position: absolute;
    left: 50%;
    top: 5%;
    bottom: 5%;
    width: 2px;
    background: #eee; /* Legacy, consider --light-border */
    z-index: -1;
}

@media (max-width: 991px) {
    .feature-content-box {
        margin-bottom: 30px;
    }
    .feature-content-box.ps-lg-5 {
        padding-left: 0 !important;
    }
    .feature-content-box h3 {
    font-size: 30px;
    }
}
@media (max-width: 575px){
    .feature-content-box h3 {
    font-size: 18px;
    }
}

/* Hero Section Start */
.modern-hero {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.badge-tag {
    color: var(--primary-blue);
    font-weight: 600;
    padding: 4px 16px 0px 0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: var(--font-weight-extra-bold);
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .hero-title {
       font-size: 45px;
    }
}
@media (max-width: 575px){
    .hero-title {
       font-size: 30px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: #475569; /* Legacy, use --muted-text */
    margin-bottom: 40px;
    max-width: 500px;
}

/* Hero Buttons
   - Primary and secondary buttons in hero section.
*/
.btn-primary-modern {
    background: #5d3dfc; /* Specific, consider root var if primary changes */
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius-base);
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
    border: none;
}

.btn-primary-modern:hover {
    background: #4a2ed9; /* Darker shade */
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary-modern {
    padding: 16px 32px;
    border-radius: var(--border-radius-base);
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    border: 1px solid var(--light-border);
    margin-left: 15px;
    transition: var(--transition-base);
}

.btn-secondary-modern:hover {
    background: var(--light-grey-bg);
    border-color: #cbd5e1; /* Specific shade */
}

/* Hero Visual Card
   - Card for hero images.
*/
.hero-visual-card {
    background: var(--light-grey-bg);
    border-radius: 30px; /* Specific large radius */
    padding: 50px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Hero Stats
   - Statistical displays in hero.
*/
.hero-stats {
    display: flex;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
}

.stat-item p {
    font-size: 14px;
    color: var(--muted-text);
    margin-bottom: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--light-border);
}

/* Floating Animation
   - Keyframe animation for subtle movement.
*/
.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Bento Grid Layout
   - Styles for bento-style cards used in features.
*/
.bento-card {
    border-radius: var(--border-radius-xl);
    padding: 40px 30px;
    transition: var(--transition-base);
    border: 1px solid rgba(0,0,0,0.02); /* Subtle border */
}

.bento-light {
    background-color: var(--light-grey-bg);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-base);
}

.bento-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    color: var(--dark-text);
}

.bento-card p {
    font-size: 15px;
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Coin Grid
   - Grid for displaying coins in features.
*/
.coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.coin-item {
    background: var(--white);
    padding: 12px 15px;
    border-radius: var(--border-radius-base);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02); /* Light shadow */
}

.coin-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.coin-item div strong {
    display: block;
    font-size: 14px;
    color: var(--dark-text);
}

.coin-item div span {
    font-size: 12px;
    color: var(--slate-400);
}

/* Interface Mockup
   - Styles for UI screenshots in cards.
*/
.interface-mockup img {
    border: 1px solid #ECECEC; /* Light border */
    background: var(--white);
}

/* Responsive Bento Adjustments */
@media (max-width: 991px) {
    .bento-card {
        padding: 30px;
    }
}

/* Partner Section
   - Marquee for partner logos with hover effects.
*/
/* .partner-section-modern {
    overflow: hidden;
    background: transparent;
}

.trust-label {
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1.5px;
    color: var(--slate-400);
    text-transform: uppercase;
}

.partner-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partner-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.partner-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
    padding-right: 80px;
}

.partner-logo {
    flex-shrink: 0;
}

.partner-logo img {
    height: 35px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-base);
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
} */

/* Marquee Animation */
/* @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-wrapper:hover {
    animation-play-state: paused;
} */

/* Hero Action Area
   - Container for hero buttons.
*/
.hero-action-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

/* Brand Buttons
   - Primary and link buttons for actions.
*/
.btn-brand-primary {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 16px;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
    text-decoration: none;
    border: none;
}

.btn-brand-primary:hover {
    background-color: #0b5ed7; /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2); /* Specific shadow */
}

.btn-brand-link {
    color: var(--primary-blue) !important;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-brand-link:hover {
    opacity: 0.8;
}

.btn-brand-primary svg, 
.btn-brand-link svg {
    margin-top: 1px;
}

@media (max-width: 575px) {
    .hero-action-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Modern Pills (Tabs)
   - Navigation tabs with modern styling.
*/
.modern-pills .nav-link {
    background: var(--light-grey-bg);
    color: var(--muted-text);
    border-radius: var(--border-radius-base);
    padding: 12px 24px;
    font-weight: var(--font-weight-medium);
    border: 1px solid transparent;
    transition: var(--transition-base);
    margin-right: 10px;
}

.modern-pills .nav-link.active {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: var(--primary-blue) !important;
    border: 1px solid var(--primary-blue);
}

/* Currency Card
   - Cards for currency displays.
*/
.currency-card {
    background: var(--light-grey-bg);
    padding: 30px;
    border-radius: var(--border-radius-large);
    height: 100%;
    transition: transform 0.3s ease;
}

.currency-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--box-shadow-base);
}

.currency-card h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin: 0;
    color: var(--dark-text);
}

.currency-card .label {
    font-size: 12px;
    color: var(--slate-400);
    display: block;
    margin-bottom: 10px;
}

/* Network Tags
   - Tags for networks in currency cards.
*/
.network-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.network-tags span {
    background: var(--light-border);
    color: #475569; /* Legacy muted */
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Industry Icon Grid
   - Grid for industry icons and labels.
*/
.industry-icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.industry-icon-solution {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}


.industry-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-item .icon-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border: 1px solid #EDEDED; /* Light grey border */
    border-radius: var(--border-radius-large);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transition: var(--transition-base);
    padding: 20px;
}

.industry-item span {
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    color: var(--dark-text);
    line-height: 1.2;
}

/* CTA Item
   - Special item for calls to action in grid.
*/
.cta-item .brand-border {
    border: 2px solid var(--primary-blue) !important;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
}

.cta-item i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 5px;
}

.cta-text {
    color: var(--primary-blue) !important;
    font-size: 12px !important;
    line-height: 2;
}

/* Solution Card
   - Larger cards for solutions.
*/
.solution-card {
    padding: 30px 40px;
    border-radius: var(--border-radius-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.solution-card p {
    color: var(--muted-text);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Industry Grid */
@media (max-width: 991px) {
    .industry-icon-grid , .industry-icon-solution{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .industry-icon-grid , .industry-icon-solution{
        grid-template-columns: repeat(2, 1fr);
    }
    .modern-hero {
    padding: 90px 0 25px;
}
}

/* Stablecoin Section
   - Content and data stats for stablecoin features.
*/
.label-blue {
    color: var(--primary-blue);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.stablecoin-content h2 {
    font-size: 42px;
    font-weight: var(--font-weight-extra-bold);
    color: var(--dark-text);
}

/* Benefit List
   - Checklist for benefits.
*/
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: var(--font-weight-medium);
    color: #475569; /* Legacy muted */
}

.benefit-list li i {
    font-size: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 19px;
}

/* Data Stats Card
   - Card for displaying statistics.
*/
.data-stats-card {
    padding: 50px;
    border-radius: 32px; /* Specific radius */
    background-color: var(--light-grey-bg);
    position: relative;
    overflow: hidden;
}

.growth-label {
    background: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.globe-visual-placeholder {
    margin: 30px 0;
    opacity: 0.8;
}

.small-growth {
    font-size: 12px;
    color: var(--muted-text);
    font-weight: var(--font-weight-medium);
}

.card-footer-stats h4 {
    margin-bottom: 0;
    color: var(--dark-text);
}

/* Responsive Stablecoin */
@media (max-width: 991px) {
    .stablecoin-content h2 {
        font-size: 32px;
    }
    .data-stats-card {
        padding: 30px;
    }
}

/* Modern Header
   - Header navigation styles.
*/
.modern-header {
    background: var(--white);
    padding: 15px 30px;
    border-bottom: 1px solid #f1f5f9; /* Light border */
    transition: var(--transition-base);
}

.logo-text {
    font-size: 20px;
    font-weight: var(--font-weight-extra-bold);
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

/* Menu List Nav Links
   - Navigation links in header.
*/
.menu-list .nav-link {
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: #475569; /* Legacy muted */
    padding: 10px 20px !important;
    transition: color 0.3s ease;
}

.menu-list .nav-link:hover {
    color: var(--primary-blue);
}

/* Dashboard Button
   - Link for dashboard.
*/
.btn-dashboard {
    color: var(--dark-text);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    text-decoration: none;
}

/* Contact Sales Button
   - Primary header button.
*/
.btn-contact-sales {
    background: var(--dark-text);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-contact-sales:hover {
    background: #1e293b; /* Darker shade */
}

/* Dropdown Menu
   - Styles for dropdowns in header.
*/
.dropdown-menu {
    border-radius: var(--border-radius-base);
    padding: 10px;
    margin-top: 15px !important;
}

.dropdown-item {
    font-weight: var(--font-weight-medium);
    border-radius: 8px;
    padding: 8px 15px;
}

.dropdown-item:hover {
    background-color: var(--light-grey-bg);
    color: var(--primary-blue);
}

/* Sticky Top Shadow */
.sticky-top {
    box-shadow: 0 4px 6px -1px var(--shadow-color);
}

















/* Pricing Helpers */
.color-primary-blue {
    color: var(--primary-blue);
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.03);
    border: 1px dashed var(--primary-blue);
}

.pricing-value h3 {
    font-size: 28px;
    letter-spacing: -0.5px;
}

.pricing-sub-info span {
    line-height: 1.2;
}








/* How It Works Section Styling */
.label-purple {
    color: var(--primary-blue);;
    font-weight: 600;
}

.vertical-steps {
    position: relative;
    padding-left: 20px;
}

.step-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 40px;
}

/* Vertical connector line */
.step-item::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);;
}

.step-item:last-child::before {
    display: none;
}

/* Step Numbers */
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);;
    z-index: 2;
}

/* Active Step Styling */
.active-step .step-number {
    background: var(--primary-blue);;
    color: #fff;
}

.active-step::before {
    background: var(--primary-blue);;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Preview Grid Layout */
.preview-grid-wrap {
    padding: 20px;
    background: radial-gradient(circle, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 30px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.preview-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .preview-grid-wrap {
        margin-top: 50px;
    }
}




/* Additional visuals for the Why Choose Us section */

.security-visual {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius-base);
    overflow: hidden;
    min-height: 120px;
}

.hash-overlay {
    font-family: monospace;
    font-size: 12px;
    color: #fcece8; /* Very light pink/orange as per image */
    word-break: break-all;
    line-height: 1.2;
}

.ssl-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #FF7E67; /* The coral color from image */
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255, 126, 103, 0.3);
}

.ssl-badge i {
    font-size: 20px;
}

.ssl-badge strong {
    display: block;
    font-size: 12px;
}

.ssl-badge span {
    font-size: 10px;
    opacity: 0.9;
}

.qr-mock {
    background: white;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--light-border);
}

.qr-code-placeholder {
    width: 60px;
    height: 60px;
    background: #333; /* Placeholder for QR */
    margin-top: 10px;
}

.wallet-mini-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    flex-grow: 1;
    border: 1px solid var(--light-border);
}

.mini-coin-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0.3;
}

.mini-coin-grid i {
    font-size: 30px;
}


/* Payment Links Chat Preview */
.chat-preview-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.chat-container {
    width: 100%;
    max-width: 400px;
}

.chat-label {
    font-size: 12px;
    color: var(--muted-text);
    display: block;
    margin-bottom: 4px;
}

.bubble-text {
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 15px;
}

.merchant-bubble .bubble-text {
    background: var(--white);
    color: var(--dark-text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.user-bubble .bubble-text {
    background: #0052FF; /* Stripe/Chat Blue */
    color: var(--white);
    border-bottom-right-radius: 0px;
    text-align: right;
}

.user-bubble {
    width: fit-content;
}

.heart-icon {
    position: absolute;
    left: -25px;
    top: 0px;
    background: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-link-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(10px);
}

.product-image {
    background: #D1E1FF;
    padding: 20px;
    text-align: center;
}

.product-image img {
    border-radius: 8px;
}

/* Matching the large hero-style text from your template */
.payment-links-content .hero-title {
    font-size: 48px;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .payment-links-content {
        padding: 40px 20px !important;
        text-align: center;
    }
    .payment-links-content .hero-action-area {
        justify-content: center;
    }
}






/* Custom adjustments for the "Multiple Ways" grid */
.payment-methods-section .benefit-list.small li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--muted-text);
}

.payment-methods-section .benefit-list.small i {
    font-size: 14px;
    color: var(--primary-blue);
}

.payment-methods-section .bento-card {
    border: 1px solid var(--light-border); 
    background-color: var(--white);
}

.payment-methods-section h3 {
    font-size: 20px; /* Slightly smaller for the 3-column grid */
    margin-top: 10px;
}

/* Ensure images inside mockups don't overflow */
.interface-mockup img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}










/* Banner-Specific Styles */
.modern-hero-banner {
    padding-top: 60px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent);
}

.cta-feature-banner .bg-primary-soft {
    background-color: #ECECFD !important; /* Soft blue/purple brand variant */
    border-radius: var(--border-radius-xl);
}

.cta-feature-banner .chat-preview-wrap {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--light-border);
}

/* Animations for interaction */
.btn-brand-primary:hover {
    transform: translateY(-3px);
    transition: var(--transition-base);
}









/* Feature Banner Specific Styles */
.bg-brand-gradient {
    /* Uses your primary blue #0D6EFD with a deeper navy for depth */
    background: linear-gradient(135deg, var(--primary-blue) 0%, #063d8d 100%);
}

.btn-white-primary {
    background-color: var(--white);
    color: var(--primary-blue) !important;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-white-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
}

.banner-visual-area {
    background: rgba(255, 255, 255, 0.05);
    min-height: 450px;
}

@media (max-width: 991px) {
    .banner-visual-area {
        min-height: auto;
        padding-top: 0 !important;
    }
}







/* invioice page */

/* Bitcoin QR Card Styling */
.btc-qr-mockup {
    width: 150px;
    bottom: -50px;
    right: 0px;
    padding: 20px;
    background: var(--white);
    z-index: 3;
    border-radius: 20px;
}

.qr-code-box {
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-box img {
    filter: contrast(1.1);
    width: 100%;
    height: auto;
}

@media (max-width: 575px) {
    .btc-qr-mockup {
        right: 0;
        bottom: 0;
        margin: 20px auto 0;
        width: 100%;
    }
}
/* Overlapping Layout Logic */
.overlapping-wrapper {
    position: relative;
    padding: 40px 0;
}

.request-form-card {
    position: relative;
    z-index: 1;
    transform: translateX(30px); 
}

.floating-invoice-card {
    position: relative;
    z-index: 2;
    margin-left: -60px; 
    border-radius: var(--border-radius-large) !important;
    background-color: var(--white) !important;
}

/* Reusing your currency grid styles */
.currency-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.currency-pill {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--muted-text);
}

.currency-pill.active {
    border-color: var(--primary-blue);
    color: var(--dark-text);
}

.currency-pill .bi-check-circle-fill {
    color: var(--primary-blue);
    margin-left: auto;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .request-form-card {
        transform: none;
        margin-bottom: 20px;
    }
    .floating-invoice-card {
        margin-left: 0;
    }
}


/* Non-interactive Link Display */
.invoice-link-display .display-box {
    display: flex;
    align-items: center;
    background-color: var(--light-grey-bg); /* Consistently uses your template variables */
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 10px 15px;
    pointer-events: none; /* Disables all mouse interactions */
    user-select: none;    /* Prevents text highlighting to look like a static mockup */
}

.invoice-link-display .link-text {
    flex-grow: 1;
    font-size: 13px;
    color: var(--muted-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.invoice-link-display .copy-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    padding-left: 15px;
    border-left: 1px solid var(--light-border);
    cursor: default; /* Ensures no pointer cursor appears */
}

/* Ensuring buttons in the mockup sections are visual only */
.request-form-card button,
.floating-invoice-card button,
.floating-invoice-card a {
    pointer-events: none !important;
    cursor: default !important;
}

/* Mockup Container Overrides */
.mockup-container {
    background: transparent !important; /* Removes the grey background if you want it to look like the screenshot */
    min-height: 500px;
    position: relative;
}

.mockup-float {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    z-index: 1;
}

/* 1. Cart Mockup Positioning & Style */
.cart-mockup {
    width: 280px;
    top: 50px;
    left: 0;
    z-index: 2;
}

.cart-icon-bg {
    position: relative;
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50%;
}

.item-icon-box {
    width: 45px;
    height: 45px;
    background: #00d3a9;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.item-details { flex-grow: 1; }
.item-title { display: block; font-weight: 700; font-size: 15px; }
.item-count { font-size: 12px; color: var(--muted-text); }
.item-price { font-weight: 700; font-size: 16px; }

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted-text);
    margin-bottom: 8px;
}

/* 2. Success Mockup Positioning & Style */
.success-mockup {
    width: 260px;
    right: 0;
    top: -20px;
    padding: 10px 0 20px 0;
}

.window-controls {
    padding: 0 15px;
    display: flex;
    gap: 6px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #c08477; }
.dot.yellow { background: #ffcc00; }
.dot.green { background: #00d3a9; }

.success-check {
    width: 60px;
    height: 60px;
    background: #00d3a9;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* 3. Gateway Mockup Positioning & Style */
.gateway-mockup {
    width: 380px;
    bottom: -50px;
    left: 0;
}

.gateway-icons {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.gate-box {
    flex: 1;
    height: 45px;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.gate-more {
    background-color: var(--light-grey-bg);
    border: 1px dashed var(--slate-400); /* Dashed border implies 'more' or 'add' */
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
    text-transform: uppercase;
}


.gate-more:hover {
    background-color: rgba(13, 110, 253, 0.05); /* Very light blue tint */
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.gate-box img {
    max-width: 24px;
    height: auto;
    object-fit: contain;
}
.gate-box i { font-size: 20px; color: var(--muted-text); }

/* Mobile Adjustments */
@media (max-width: 991px) {
    /* Reset the container height to fit stacked elements */
    .hero-visual-card.mockup-container {
        min-height: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: transparent;
    }

    /* Convert absolute floating elements to relative stacked elements */
    .mockup-float {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 auto;
        box-shadow: var(--box-shadow-base) !important;
    }

    /* Adjust specific mockup inner spacing for mobile */
    .cart-mockup {
        margin-top: 40px; /* Space for the floating cart icon */
    }

    .gateway-mockup .gateway-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gate-box {
        flex: 0 0 30%; /* Show 3 icons per row on mobile */
        margin-bottom: 10px;
    }

    /* Disable floating animation on mobile to prevent clipping */
    .floating-animation {
        animation: none !important;
    }
}


/* Invoice Journey Section Start*/
.journey-wrapper {
    overflow-x: auto;
    padding: 40px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hides scrollbar for Firefox */
}

.journey-wrapper::-webkit-scrollbar {
    display: none; /* Hides scrollbar for Chrome/Safari */
}

.journey-scroll-container {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
}

.journey-step {
    width: 300px; /* Fixed width for each screenshot card */
    position: relative;
}

.journey-step:not(:last-child)::after {
    content: "\F138"; /* Bootstrap Icon Arrow-Right */
    font-family: "bootstrap-icons";
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary-blue);
    opacity: 0.5;
}

.step-label {
    font-size: 14px;
    font-weight: 700;
    color: #64748B;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: center;
    background: rgba(13, 110, 253, 0.05);
    padding: 8px;
    border-radius: 50px;
    line-height: 1.4;
    font-family: var(--font-dmsans);
}

.mockup-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light-border);
    transition: var(--transition-base);
    overflow: hidden;
}

.mockup-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.mockup-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .journey-step {
        width: 250px;
    }
}

.journey-ui-mockup {
    background: var(--white);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--light-border);
}

.micro-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.fake-input {
    background: var(--light-grey-bg);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--dark-text);
}

.mini-pill {
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 50px;
    background: var(--light-grey-bg);
    border: 1px solid var(--light-border);
    color: var(--muted-text);
}

.mini-pill.active {
    background: rgba(13, 110, 253, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.success-circle, .icon-circle {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

.icon-circle {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary-blue);
}

.blue-header {
    background: var(--primary-blue);
    text-align: left;
}

.mini-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--light-border);
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
}

.mini-list-item.active {
    border-color: var(--primary-blue);
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .journey-step {
        width: 280px; 
    }
}
.window-controls {
    display: flex;
    gap: 6px;
    justify-content: flex-start;
}

.window-controls .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.window-controls .red { background: #c08477; }
.window-controls .yellow { background: #ffcc00; }
.window-controls .green { background: #00d3a9; }

@media (max-width: 991px) {
    .journey-step {
        min-width: 280px;
    }
}

.journey-step:first-child .journey-ui-mockup {
    min-width: 280px;
    padding: 25px !important;
}
/* Invoice Journey Section END*/
/* invioice page */



/* Terms and Conditions Styling START*/
.terms-content-wrap p {
    color: var(--muted-text); /* #64748B */
    line-height: 1.8;
    font-size: 16px;
}

.terms-content-wrap h3 {
    color: var(--dark-text); /* #0F172A */
    font-weight: var(--font-weight-bold);
    margin-top: 30px;
}


/* Terms and Conditions Styling END*/








/* --- Core Components Section --- */

/* Card Styling to match Bento/Feature cards */
.component-card {
    border-radius: var(--border-radius-xl); 
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
    border: 1px solid transparent; 
}

.component-card:hover {
    transform: translateY(-5px); 
}

/* Specific Background Colors */
.card-pink {
    background-color: #FFF0ED; 
}

.card-blue {
    background-color: #EFF5FF;
}

.card-grey {
    background-color: var(--light-grey-bg); 
}

/* Typography using template variables */
.component-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--muted-text); 
    font-size: 15px;
    line-height: 1.6;
}

.feature-list li::before {
    content: "•";
    color: #BDBDBD;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0px;
}

/* Inner Wallet Widget - Styled like a UI Mockup */
.wallet-widget {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--light-border);
}

.widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Icon Wrappers */
.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.icon-green { background-color: #58AD57; }
.icon-orange { background-color: #F7931A; }
.icon-grey { background-color: #E6E8EA; color: var(--dark-text); }

/* Wallet Info */
.wallet-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wallet-id {
    font-size: 12px;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
}

/* ID Tags */
.tag-m, .tag-e, .tag-s {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.tag-m { color: #D65A5A; background: #FFEEEE; }
.tag-e { color: #6A80E6; background: #EEF2FF; }
.tag-s { color: #666; background: #EEE; }

.wallet-label {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: var(--font-weight-medium);
}

/* Active Badge */
.status-badge {
    background-color: #E6F6E6;
    color: #388E3C;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Balance Area */
.widget-balance {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px dashed var(--light-border);
    padding-top: 15px;
}

.widget-balance .amount {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.widget-balance .currency {
    font-size: 14px;
    color: var(--muted-text);
    font-weight: var(--font-weight-medium);
}



/* --- Hero Graphic Container --- */
.hero-graphic-container {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 40px; 
    position: relative;
    padding: 20px 0 60px 0; 
}

/* --- 1. Invoice Card (Left) --- */
.invoice-card-main {
    background: #fff;
    width: 340px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08) !important;
}


.invoice-card-main:hover {
    transform: translateY(-5px);
}

/* Brand Square */
.brand-logo-square {
    width: 50px;
    height: 50px;
    background: #F8FAFC;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dots-grid {
    display: grid;
    grid-template-columns: repeat(2, 4px);
    gap: 3px;
    margin-bottom: 4px;
}

.dots-grid span {
    width: 4px;
    height: 4px;
    background: #94A3B8;
    border-radius: 50%;
}

.micro-label {
    font-size: 8px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
}

/* Badge */
.badge-soft-green {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Pricing Area */
.total-bar {
    background: #F8FAFC;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}



/* --- 2. Right Column (Steps + Success) --- */
.right-column-visual {
    display: flex;
    flex-direction: column;
    width: 290px;
    margin-top: 20px; 
}

/* Steps List */
.steps-list-vertical {
    position: relative;
    padding-left: 30px;
}

.step-guide-line {
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: #DBEAFE; 
}

.step-guide-line::before {
    content: '';
    position: absolute;
    top: 0; left: -1px;
    width: 4px; height: 15px;
    background: #3B82F6;
}

.step-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.step-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* .step-label {
    color: #64748B;
    font-size: 13px;
    line-height: 1.4;
} */

/* Success Card */
.success-float-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #F1F5F9;
    position: relative;
    margin-top: 10px;
    z-index: 2;
    border: 1px solid var(--light-border);
}

.success-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: 4px solid #fff;
    margin: -50px auto 15px auto;
    background: #eef2ff;
    color: var(--primary-blue);
}

/* Skeleton Loading Lines */
.sk-pill {
    height: 8px;
    width: 60px;
    background: #E2E8F0;
    border-radius: 10px;
}

/* --- 3. Connector Wire Logic --- */
.connector-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.dot-center {
    width: 10px;
    height: 10px;
    background: #3B82F6;
    border-radius: 50%;
    border: 2px solid #fff;
}

.dot-invoice {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-success {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* SVG Wire Position */
/* --- Connector Wire Styling --- */

.wire-container {
    position: absolute;
    left: 159px;
    top: 520px;
    z-index: 0;
    pointer-events: none;
}

.wire-svg {
    display: block;
    overflow: visible;
}

/* Optional: Flow Animation */
.wire-anim {
    animation: dashFlow 20s linear infinite;
}

@keyframes dashFlow {
    from { stroke-dashoffset: 500; }
    to { stroke-dashoffset: 0; }
}

/* --- Responsive Hide --- */
@media (max-width: 991px) {
    .wire-container {
        display: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .invoice-card-main { width: 300px; }
    .right-column-visual { width: 220px; }
}

@media (max-width: 991px) {
    .hero-graphic-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .right-column-visual {
        width: 100%;
        max-width: 340px;
        flex-direction: row; 
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .success-float-card {
        margin-top: 40px;
        width: 100%;
    }
    
}

/* --- Hero Wallet Visual Container --- */
.hero-wallet-visual {
    position: relative;
    height: 480px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
}

/* --- Main Wallet Card --- */
.wallet-main-card {
    background: #fff;
    width: 320px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    position: relative;
    z-index: 2;
}

.card-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wallet-icon-circle {
    width: 45px;
    height: 45px;
    background: #F8FAFC;
    color: #0D6EFD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Asset Rows */
.asset-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #F1F5F9;
}

.asset-row:last-child {
    border-bottom: none;
}

.coin-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.icon-btc { background: #F7931A; }
.icon-eth { background: #627EEA; }
.icon-usdt { background: #26A17B; }

.micro-label { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }
.micro-text { font-size: 11px; }

/* Buttons */
.wallet-actions {
    display: flex;
    gap: 10px;
}

.btn-action-light, .btn-action-dark {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: transform 0.2s;
}

.btn-action-light {
    background: #F1F5F9;
    color: #475569;
}

.btn-action-dark {
    background: #0F172A;
    color: #fff;
}

.btn-action-light:hover, .btn-action-dark:hover {
    transform: translateY(-2px);
}

/* --- Floating Card 1: Chains (Right Top) --- */
.float-card-chains {
    position: absolute;
    top: 40px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    z-index: 3;
    animation: floatSlow 5s infinite ease-in-out;
}

.chain-icons {
    display: flex;
    gap: -8px; /* Overlap effect */
}

.chain-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-block;
}

/* --- Floating Card 2: Security (Left Bottom) --- */
.float-card-security {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floatSlow 6s infinite ease-in-out reverse;
}

.security-icon {
    width: 36px;
    height: 36px;
    background: #D1FAE5;
    color: #059669;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* --- Float Animation --- */
@keyframes floatSlow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-wallet-visual {
        height: auto;
        padding: 60px 0;
        flex-direction: column;
        gap: 20px;
    }
    
    .wallet-main-card {
        width: 100%;
        max-width: 320px;
    }

    .float-card-chains, .float-card-security {
        position: relative;
        top: auto; right: auto; bottom: auto; left: auto;
        width: 100%;
        max-width: 280px;
        animation: none;
    }
}

/* --- Reusable Static Feature Card (Consistent with Template) --- */

.static-feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-base);
    box-shadow: 0 4px 6px -1px var(--shadow-color); 
}

/* Typography matching global styles */
.feature-title {
    font-size: 18px; 
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    margin-bottom: 5px;
    line-height: 1.2;
}

.feature-desc {
    font-size: 14px;
    color: var(--muted-text);
    font-weight: var(--font-weight-medium);
    margin: 0;
    line-height: 1.5;
}

/* Icon Styling */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-base); 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Consistent Color Variants */
.icon-bg-purple {
    background: #F3E8FF;
    color: #9333EA;
}

.icon-bg-blue {
    background: #DBEAFE;
    color: var(--primary-blue);
}

.icon-bg-green {
    background: #D1FAE5;
    color: #059669;
}

/* Mobile Adjustment */
@media (max-width: 991px) {
    .wallet-benefits-section {
        margin-top: 60px; 
    }
}




/* --- Full Control Section Styles --- */

.control-visual-wrap {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FIX: Scoped the selector so it doesn't break other sections */
.control-visual-wrap .mockup-card {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-large);
    padding: 25px;
    position: absolute; 
    transition: var(--transition-base);
}

/* 1. Seed Phrase Card (Back) */
.seed-phrase-card {
    width: 400px;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.9;
    transform: scale(0.95);
}

.step-badge {
    background: var(--light-grey-bg);
    color: var(--muted-text);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}

.step-badge.bg-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.critical-alert {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    color: #C53030;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.seed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.seed-pill {
    background: var(--white);
    border: 1px solid var(--light-border);
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    position: relative;
}

.seed-pill span {
    position: absolute;
    left: 6px;
    top: 6px;
    font-size: 8px;
    color: var(--slate-400);
}

.blur-text {
    filter: blur(3px);
    opacity: 0.6;
    user-select: none;
}

/* 2. Store Connect Card (Front) */
.store-connect-card {
    width: 340px;
    bottom: 40px;
    right: 20px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

.store-list-group {
    border: 1px solid var(--light-border);
    border-radius: 12px;
    overflow: hidden;
}

.store-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.store-item:last-child {
    border-bottom: none;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Left Column Features */
.control-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.control-item .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Decorative Dashed Line */
.connection-line-dashed {
    position: absolute;
    top: 74%;
    left: 40%;
    width: 200px;
    height: 100px;
    border-left: 2px dashed #CBD5E1;
    border-bottom: 2px dashed #CBD5E1;
    z-index: 0;
    transform: translate(-50%, -50%);
    border-bottom-left-radius: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .control-visual-wrap {
        min-height: auto;
        padding: 40px 0;
        flex-direction: column;
        gap: 30px;
    }

    .control-visual-wrap .mockup-card {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        width: 100%;
        max-width: 360px;
        transform: none;
    }

    .connection-line-dashed {
        display: none;
    }
}



/* --- Wallet Creation Journey Specifics --- */

/* Enforce uniform height and layout for all slides */
.card-fixed-height {
    min-height: 420px; 
    display: flex;
    flex-direction: column;
}

/* Store Selection Box */
.store-select-box {
    border: 1px solid var(--light-border);
    background-color: var(--light-grey-bg);
    border-radius: 8px;
    padding: 12px;
}

/* Compact Seed Grid for Slider (3 Columns for 12 words) */
.seed-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 6px;
}

.seed-item {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 6px;
    padding: 6px 4px; 
    font-size: 10px; 
    font-weight: 600;
    color: var(--dark-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Style for the hidden/blurred words */
.seed-item.blur-text {
    color: transparent;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    background: #f8fafc;
    user-select: none;
}

/* Success Banner inside Mockup */
.success-banner {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
}

/* Coin Selection List */
.coin-select-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;     max-height: 200px;
    overflow-y: auto;
}

.coin-row {
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px;
    transition: all 0.2s;
}

.coin-row.active {
    background: #eff6ff;
    border-color: var(--primary-blue);
}

.coin-row i {
    font-size: 12px;
}

/* Wallet Bundle Card */
.wallet-bundle-card {
    background: var(--white);
    transition: transform 0.2s;
}

.wallet-bundle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Context Menu */
.fake-context-menu {
    position: absolute;
    top: 35px;
    right: 10px;
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    width: 140px;
    z-index: 10;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

.fake-context-menu .menu-item {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--light-border);
}

.fake-context-menu .menu-item:last-child {
    border-bottom: none;
}

.fake-context-menu .menu-item:hover {
    background-color: var(--light-grey-bg);
}

.fake-context-menu .text-danger {
    color: #dc3545 !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure no conflict with global checkboxes */
.journey-ui-mockup .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* --- Wallet Access Mockup (Manual Restore) --- */

.access-mockup-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--light-border);
    max-width: 100%;
}

/* Brand Icon Top */
.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--dark-text);
    color: var(--white);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Options Grid */
.access-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.access-option {
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: var(--transition-base);
    background: var(--light-grey-bg);
}


.access-option.active {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.08);
}

.icon-box-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 16px;
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Fake Key Input Area */
.manual-import-area {
    background: #F8FAFC;
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed var(--slate-400);
}

.fake-key-input {
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    color: var(--muted-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
}

.btn-paste {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}

/* Button overrides */
.btn-dark {
    background-color: var(--dark-text);
    color: var(--white);
    border: none;
    transition: var(--transition-base);
}

.btn-dark:hover {
    background-color: #334155;
    transform: translateY(-1px);
}

/* Mobile Tweak */
@media (max-width: 575px) {
    .access-mockup-card {
        padding: 20px;
    }
}

/* --- Wallet Dashboard Section --- */

/* Dashboard Buttons */
.wallet-dashboard-section .btn-light {
    background: #F1F5F9;
    color: var(--dark-text);
    border-color: #E2E8F0;
}

/* Crypto Asset Cards */
.asset-card {
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
    transition: var(--transition-base);
}

.asset-card:hover {
    transform: translateY(-5px);
}

/* Card Visual Icon (Large Centered) */
.card-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3; 
    font-size: 80px;
    color: var(--dark-text);
    pointer-events: none;
}

/* Specific Card Colors */
.card-peach {
    background-color: #FDF1D6; 
}

.card-lavender {
    background-color: #FADFF3;
}

.card-teal {
    background-color: #D4EBEB; 
}

/* Menu Dot */
.menu-dot {
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-text);
    cursor: pointer;
    font-size: 14px;
}

/* Trade Widget (Buy/Sell) */
.trade-widget-card {
    border-radius: 16px;
    border: 1px solid var(--light-border);
    overflow: hidden;
}

/* Tabs */
.trade-tabs {
    border-bottom: 1px solid var(--light-border);
}

.trade-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    color: var(--muted-text);
    cursor: pointer;
    position: relative;
}

.trade-tab.active {
    color: var(--dark-text);
}

.trade-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
}

/* Form Inputs */
.trade-widget-card .form-control, 
.trade-widget-card .form-select,
.trade-widget-card .input-group-text {
    background-color: var(--white);
    border-color: var(--light-border);
    font-size: 14px;
}

.trade-widget-card .form-control:focus, 
.trade-widget-card .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

/* Responsive Tweak */
@media (max-width: 991px) {
    .asset-card {
        min-height: 220px;
    }
    .card-visual {
        font-size: 60px;
    }
}








/* --- Merchant Flow Section (Global Theme) --- */

.gas-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Consistent spacing */
    margin-top: 40px;
    font-family: var(--font-family-base); /* Inherits global font */
}

/* Large Cards */
.flow-card {
    background-color: var(--light-grey-bg); /* Global light grey */
    border-radius: var(--border-radius-large); /* 20px radius */
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.flow-card:hover {
    background-color: var(--white);
    box-shadow: var(--box-shadow-base);
    border-color: var(--light-border);
    transform: translateY(-5px);
}

.flow-card h5 {
    color: var(--dark-text); /* Global dark text */
}

/* Middle Stack (Payments) */
.address-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius-large);
    border: 1px dashed var(--light-border);
    box-shadow: var(--box-shadow-base);
}

.address-pill {
    background-color: var(--light-grey-bg);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 180px;
    border: 1px solid transparent;
    transition: var(--transition-base);
}

.address-pill:hover {
    border-color: var(--light-border);
}

.address-pill i {
    font-size: 14px;
    color: var(--primary-blue); /* Used primary blue instead of random green */
}

/* Connectors */
.flow-connector {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    position: relative;
    max-width: 250px;
}

.connector-label {
    font-size: 11px;
    color: var(--muted-text);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: var(--font-weight-medium);
}

.connector-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2; /* Subtle opacity for the line */
}

.cart-connector-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.connector-arrow {
    width: 0; 
    height: 0; 
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--primary-blue);
    position: absolute;
    right: 0;
}

/* Responsive Stack */
@media (max-width: 991px) {
    .gas-flow-diagram {
        flex-direction: column;
        gap: 20px;
    }

    .flow-connector {
        max-width: 100%;
        width: 100%;
        padding: 10px 0;
    }

    .connector-line {
        width: 2px;
        height: 50px;
        margin-top: 5px;
    }

    .cart-connector-dot {
display: none;
    }

    .connector-arrow {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--primary-blue);
        bottom: 0;
        right: -4px;
        top: auto;
    }
}


/* Unique Prefix: ap-gw (ArionPay Gateway) */

.ap-gw-hero-container {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Order Card */
.ap-gw-summary-card {
    background: var(--white);
    width: 360px;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid var(--light-border);
    transform: translateX(-50px) scale(0.95);
    opacity: 0.5;
    filter: blur(0.5px);
}

.ap-gw-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ap-gw-fake-input {
    background: #f1f5f9;
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--dark-text);
    font-weight: 600;
}

.ap-gw-total {
    background: #e0f2fe;
    color: var(--primary-blue);
    border: 1px solid #bae6fd;
}

/* Foreground Gateway Modal */
.ap-gw-modal {
    position: absolute;
    background: var(--white);
    width: 330px;
    padding: 30px;
    border-radius: 32px;
    z-index: 5;
    border: 1px solid var(--light-border);
    text-align: center;
    right: 0;
}

.ap-gw-brand-badge {
    background: var(--primary-blue);
    color: var(--white);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    margin-top: -55px; /* Pulls logo above the card edge */
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.ap-gw-action-icon {
    color: var(--primary-blue);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-base);
}

.ap-gw-action-icon:hover {
    transform: scale(1.1);
}

.ap-gw-crypto-amount {
    color: var(--dark-text);
    font-size: 24px;
    letter-spacing: -0.5px;
}

.ap-gw-fiat-value {
    color: var(--muted-text);
    font-size: 14px;
}

/* QR and Overlay */
.ap-gw-qr-wrapper {
    position: relative;
    background: var(--white);
    display: inline-block;
    padding: 10px;
}

.ap-gw-qr-overlay {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--white);
    padding: 4px;
    border-radius: 6px;
    border: 1.5px solid var(--dark-text);
    font-size: 16px;
    color: var(--dark-text);
}

.ap-gw-status-bar {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.ap-gw-address-field {
    background: var(--light-grey-bg);
    border-radius: 10px;
    padding: 12px 8px;
    border: 1px solid var(--light-border);
}

.ap-gw-address-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: 700;
    word-break: break-all;
    color: var(--dark-text);
}

/* Responsive Handling */
@media (max-width: 991px) {
    .ap-gw-summary-card {
        display: none;
    }
    .ap-gw-modal {
        position: relative;
        margin: 40px auto 0;
    }
}



/* --- ArionPay White Label Mockup Component --- */

.ap-white-label-card {
    background: var(--white); /* Using global white variable */
    border-radius: var(--border-radius-large); /* Consistent 20px radius */
    padding: 25px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border: 1px solid var(--light-border); /* Consistent border color */
    font-family: var(--font-family-base);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.btn-help-mock {
    background: var(--light-grey-bg);
    border: 1px solid var(--light-border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
}

.network-badge-wrap .label-muted {
    font-size: 12px;
    color: var(--muted-text);
    vertical-align: top;
}

.coin-pill-mock {
    background: var(--white);
    border: 1px solid var(--light-border);
    padding: 0px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.coin-pill-mock img {
    width: 16px;
    height: 16px;
}

/* QR Frame Layout */
.qr-container-mock {
    display: flex;
    justify-content: center;
}

.qr-frame-mock {
    padding: 12px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    position: relative;
    display: inline-block;
}

.qr-img-main {
    width: 170px;
    height: 170px;
}

.qr-center-logo-mock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.qr-center-logo-mock img {
    width: 28px;
    height: 28px;
}

/* Mock Input Styling */
.ap-label-micro {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted-text);
    margin-bottom: 2px;
    display: block;
}

.ap-input-mock-wrap {
    background: #F8FAFC;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
}

.mock-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-text);
    font-family: monospace;
}

.btn-copy-mock-icon {
    background: transparent;
    border: none;
    border-left: 1px solid var(--light-border);
    padding-left: 10px;
    color: var(--primary-blue);
    font-size: 16px;
}

/* Footer & Status Bar */
.change-method-link-mock {
    text-decoration: none;
    color: var(--muted-text);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px
}

.status-bar-mock {
    height: 4px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.status-bar-progress-mock {
    height: 100%;
    width: 75%; /* Simulating progress */
    background: var(--primary-blue);
    border-radius: 10px;
}

.status-text-mock {
    font-size: 14px;
    color: var(--dark-text);
}

.powered-by-mock {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.dark-text-color {
    color: var(--dark-text);
}

/* --- Unified Pricing Table --- */
.featured-header {
    background-color: rgba(13, 110, 253, 0.08) !important;
    border-top: 3px solid var(--primary-blue);
    color: var(--dark-text);
    font-weight: 700;
}

.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.03) !important;
    border-left: 1px solid rgba(13, 110, 253, 0.1);
    border-right: 1px solid rgba(13, 110, 253, 0.1);
}

.comp-table th {
    font-size: 14px;
    color: var(--muted-text);
    font-weight: 600;
    border-bottom: 1px solid var(--light-border);
}

.comp-table td {
    font-size: 14px;
    padding: 20px 10px;
}

.micro-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.total-row {
    background-color: #f8fafc;
}

.border-dashed {
    border: 2px dashed rgba(13, 110, 253, 0.3) !important;
    background: #fdfdfe;
}

/* Ensure sticky sidebar doesn't overlap on mobile */
@media (max-width: 991px) {
    .sticky-sidebar-wrap {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px;
    }
}

/* --- Custom Tooltip Styling --- */
.ap-tooltip-wrap {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    cursor: pointer;
}

.ap-tooltip-wrap i {
    color: var(--slate-400); /* Uses your slate grey variable */
    font-size: 14px;
    transition: color 0.3s ease;
}

.ap-tooltip-wrap:hover i {
    color: var(--primary-blue); /* Highlights blue on hover */
}

.ap-tooltip-content {
    visibility: hidden;
    width: 220px;
    background-color: var(--dark-text); /* Uses your dark theme color */
    color: var(--white);
    text-align: left;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    z-index: 100;
    bottom: 135%; /* Positions it above the icon */
    left: 50%;
    transform: translateX(-50%); /* Centers it */
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    pointer-events: none;
}

/* Little arrow pointing down */
.ap-tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--dark-text) transparent transparent transparent;
}

/* Show tooltip on hover */
.ap-tooltip-wrap:hover .ap-tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px); /* Subtle lift animation */
}




/* API Section Specifics */
.api-terminal-card {
    background-color: #1E293B; /* Darker Slate for the terminal look */
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.api-tabs {
    background: transparent;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.api-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    border: none !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 25px;
    transition: var(--transition-base);
}

.api-tabs .nav-link.active {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 8px;
}

.api-terminal-body {
    padding: 10px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.api-terminal-body pre {
    margin: 0;
    color: #cbd5e1;
}

/* Syntax Highlighting */
.t-green { color: #4ade80; }  /* Success/URL Green */
.t-pink { color: #fb7185; }   /* Key Pink */
.t-yellow { color: #facc15; } /* Value Yellow */
.t-blur { color: #38bdf8; }   /* Command Blue */

@media (max-width: 991px) {
    .api-terminal-card {
        margin-top: 30px;
    }
    .api-tabs .nav-link {
        padding: 8px 15px;
        font-size: 12px;
    }
}
/* API Section Specifics End*/

.fixed-position{
    position: relative;
    min-width: 500px;
    min-height: 458px;
}
.fixed-position img{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}



/* Challenge Section Styles */
.challenge-banner {
    background-image: url(../img/home1/home1-feature-banner-bg.png), linear-gradient(180deg, #1C1A1E 0%, #1C1A1E 100%);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 80px 40px 115px;
}

.challenge-connector-wrap {
    position: relative;
    margin-top: -30px; /* Overlaps the black banner */
    z-index: 3;
}

.challenge-content{
        max-width: 543px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.challenge-title{
    color: var(--white-color);
    font-family: var(--font-lora);
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}
.company-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: linear-gradient(#1C1A1E, #1C1A1E) padding-box, linear-gradient(180deg, var(--primary-color1) 25%, var(--borders-color) 100%) border-box;
    margin: 0 auto;
}

.arrow-svg-container svg {
  fill: var(--borders-color);
  width: 1008px;
}
@media (max-width: 1399px) {
  .arrow-svg-container svg{
    width: 870px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arrow-svg-container svg {
    width: 740px;
    height: 50px;
  }
}

.arrow-svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reusing your bento-card logic but ensuring layout matches the image */
.challenge-section .bento-card {
    padding: 35px 25px;
    text-align: left;
}

.challenge-section .bento-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
        color: var(--title-color);
    font-family: var(--font-lora);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.challenge-section .bento-card p {
    font-size: 14px;
    font-family: var(--font-dmsans);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Hide SVG on Mobile if it looks too small */
@media (max-width: 991px) {
    .arrow-svg-container {
        display: none;
    }
    .challenge-connector-wrap {
        margin-top: -20px;
    }
}


/* Container for the marquee with rounded borders similar to your bento cards */
.methods-marquee-container {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    border-radius: var(--border-radius-large);
}

/* Edge fading effects */
.methods-marquee-container::before,
.methods-marquee-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.methods-marquee-container::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--light-grey-bg), transparent);
}

.methods-marquee-container::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, var(--light-grey-bg), transparent);
}

/* Wrapper that holds both groups */
.methods-marquee-wrapper {
    display: flex;
    gap: 80px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Grouping items for consistent spacing */
.marquee-content-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 80px;
    animation: scroll-x 30s linear infinite;
}

/* Individual Pill Styling using your template's design language */
.method-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    margin: 0 15px;
    border-radius: 50px;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: var(--transition-base);
}

.method-pill img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.method-pill span {
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    font-size: 15px;
    white-space: nowrap;
}

/* The Animation: Moves exactly 50% so the first group is replaced by the identical second group */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover to allow users to interact */
.methods-marquee-wrapper:hover {
    animation-play-state: paused;
}



/* Container for the vertical scroll */
.vertical-marquee-container {
    height: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--light-grey-bg);
    border-radius: var(--border-radius-large);
    padding: 20px;
}

/* Gradient fade on top and bottom */
.vertical-marquee-container::before,
.vertical-marquee-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}
.vertical-marquee-container::before { top: 0; background: linear-gradient(to bottom, var(--light-grey-bg), transparent); }
.vertical-marquee-container::after { bottom: 0; background: linear-gradient(to top, var(--light-grey-bg), transparent); }

/* Animation Wrapper */
.vertical-marquee-wrapper {
    display: flex;
    flex-direction: column;
    animation: scrollVertical 20s linear infinite;
}

.marquee-vertical-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 15px;
    padding-right: 50px;
    padding-left: 50px;
}

@media (max-width: 575px) {
    .marquee-vertical-group {
        padding-right: 10px;
        padding-left: 10px;
    }
}


/* Individual Card Styles */
.payment-item-card {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: var(--transition-base);
}

.payment-item-card img {
    width: 40px;
    height: 25px;
    object-fit: contain;
}

.payment-item-card span {
    font-weight: var(--font-weight-medium);
    color: var(--dark-text);
    font-size: 16px;
}

/* Custom UI Toggle Switch (Mockup) */
.custom-switch {
    width: 40px;
    height: 22px;
    background: #e2e8f0;
    border-radius: 20px;
    position: relative;
    border: 1px solid #cbd5e1;
}

.custom-switch::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.custom-switch.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.custom-switch.active::after {
    left: 20px;
}

/* Vertical Keyframe */
@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Pause on Hover */
.vertical-marquee-container:hover .vertical-marquee-wrapper {
    animation-play-state: paused;
}

/* Real-Time Status Card Styles */
.ap-status-card {
    border-radius: 30px;
    padding: 40px 60px;
    position: relative;
}


@media (max-width: 575px) {
    .ap-status-card {
        padding: 20px;
    }
}

.status-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--succes-background);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.tx-loader {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 10px solid #f0f7ff;
    border-top: 10px solid #0d6efd;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 2s linear infinite;
}

.tx-loader-inner {
    animation: reverse-spin 2s linear infinite;
}

.spin-icon {
    font-size: 2.5rem;
}

.tx-activity-log {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--light-border)
}

.log-entry {
    display: flex;
    gap: 15px;
}

.log-entry.success i {
    color: #28a745;
    font-size: 1.5rem;
}

.log-entry.pending {
    opacity: 0.6;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes reverse-spin { 0% { transform: rotate(360deg); } 100% { transform: rotate(0deg); } }
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}


/* ---------------------------------------------------------------------------------------------- */
.visuals-stack-wrap {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--light-border);
    transition: all 0.5s ease;
}

/* 1. Create Card Styling */
.create-card {
    width: 260px;
    top: 40px;
    left: 40px;
    z-index: 1;
    padding: 20px;
    transform: rotate(-5deg);
}

.card-header-mock {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}
.card-header-mock .dot { width: 8px; height: 8px; border-radius: 50%; }
.card-header-mock .red { background: #ff5f56; }
.card-header-mock .yellow { background: #ffbd2e; }
.card-header-mock .green { background: #27c93f; }

.mock-label { font-size: 10px; color: var(--muted-text); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.mock-input { background: var(--light-grey-bg); padding: 8px 12px; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--dark-text); }
.btn-mock-primary { background: var(--primary-blue); color: white; text-align: center; padding: 8px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; }



/* --- Payment Link Hero Animation (Cross-Browser Compatible) --- */
.link-journey-wrapper {
    -webkit-perspective: 1000px;
    perspective: 1000px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-journey-container {
    width: 100%;
    max-width: 360px;
    height: 380px; 
    position: relative;
}

.journey-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(30px) scale(0.95);
    transform: translateY(30px) scale(0.95);
    
    /* Cross-browser animation definitions */
    -webkit-animation: cycleLinkSlides 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
    animation: cycleLinkSlides 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger the animations so they overlap perfectly */
.journey-slide.slide-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.journey-slide.slide-2 {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.journey-slide.slide-3 {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

/* WebKit Keyframes for older Chrome, Safari, iOS, Android */
@-webkit-keyframes cycleLinkSlides {
    0%, 5% {
        opacity: 0;
        -webkit-transform: translateY(30px) scale(0.95);
        z-index: 0;
    }
    10%, 30% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        z-index: 10;
    }
    35%, 100% {
        opacity: 0;
        -webkit-transform: translateY(-30px) scale(1.05);
        z-index: 0;
    }
}

/* Standard Keyframes for modern browsers */
@keyframes cycleLinkSlides {
    0%, 5% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        z-index: 0;
    }
    10%, 30% {
        opacity: 1;
        transform: translateY(0) scale(1);
        z-index: 10;
    }
    35%, 100% {
        opacity: 0;
        transform: translateY(-30px) scale(1.05);
        z-index: 0;
    }
}



/* Container for the specific layout */
.workflow-container {
  position: relative;
  height: 500px;
}

/* Background SVG line */
.connecting-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 1. ANIMATION: Flowing line effect */
.connecting-line path {
  animation: flow 1s linear infinite;
}

@keyframes flow {
  from { stroke-dashoffset: 12; }
  to { stroke-dashoffset: 0; }
}

/* Card Styling */
.step-card {
  position: absolute;
  background: white;
  width: 170px;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* Positioning each card + 2. ANIMATION: Floating effects */
.card-1 {
  top: 0px;
  left: 0px;
  animation: float-standard 4s ease-in-out infinite;
}

.card-2 {
  top: 50%;
  left: 50%;
  /* Card 2 needs its own keyframe because it already uses a transform for centering */
  animation: float-center 4s ease-in-out infinite 1s; /* 1s delay for staggering */
}

.card-3 {
  bottom: 40px;
  right: 0px;
  animation: float-standard 4s ease-in-out infinite 2s; /* 2s delay for staggering */
}

/* Keyframes for the standard positioned cards (1 and 3) */
@keyframes float-standard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Keyframes specifically for Card 2 to preserve your translate(-50%, -70%) */
@keyframes float-center {
  0%, 100% { transform: translate(-50%, -70%); }
  50% { transform: translate(-50%, calc(-70% - 10px)); }
}

/* Circular Number Badge */
.link-step-number {
  position: absolute;
  top: -15px;
  left: -20px;
  width: 35px;
  height: 35px;
  background-color: white;
  border: 2px solid #edf0f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Text & Icons */
.step-card p {
  margin: 15px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.icon-container {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Crypto Coin Overlaps */
.crypto-icons {
  display: flex;
  align-items: center;
}

.coin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  margin-left: -10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease; /* Bonus: Adds a hover effect to the coins */
}

.coin:hover {
  transform: translateY(-3px);
}

.coin:first-child {
  margin-left: 0;
}

/* Specific Coin Colors */
.eth { background-color: #627EEA; }
.btc { background-color: #F7931A; }
.bnb { background-color: #F3BA2F; }










/* --- Uniform Payment Method Mockups --- */
.payment-method-mockup {
    height: 200px; /* Enforces identical height across all 6 cards */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    /* Removed the border and background to stop the 'box inside a box' look */
}

.mockup-widget {
    width: 100%;
    max-width: 220px; 
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-large);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); /* Gives the inner UI a soft, floating shadow */
}

.mockup-btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    transition: var(--transition-base);
}

.mockup-btn-primary:hover {
    background-color: #0b5ed7;
    color: var(--white);
}

.mockup-icon-box {
    width: 42px;
    height: 42px;
}

/* Extended Bootstrap Font Sizes */
.fs-7 { font-size: 14px !important; }
.fs-8 { font-size: 12px !important; }
.fs-9 { font-size: 11px !important; }
.fs-10 { font-size: 10px !important; }








/* --- Redesigned Left Side Features --- */
.features-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card-item {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-item:hover {

    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.feature-icon-circle {
    width: 44px;
    height: 44px;
    background-color: rgba(13, 110, 253, 0.1); /* Based on --primary-blue */
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-content h6 {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-content p {
    color: var(--muted-text);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 576px) {
.features-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .link-step-number{
        left: auto;
    }
}

/* --- Hero Visual Section (Layout, Animations) --- */

.hero-link-visual-wrap {
    min-height: 550px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

/* Background Glow Circle */
.hero-glow-circle {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(13,110,253,0.08) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Main Checkout Card */
.main-checkout-card {
    width: 320px;
    border: 1px solid var(--light-border);
    -webkit-animation: floatMainCard 6s ease-in-out infinite;
    animation: floatMainCard 6s ease-in-out infinite;
}

.product-img-mock {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    font-size: 35px;
    color: var(--primary-blue);
}

.btn-pay-crypto {
    background-color: var(--primary-blue);
    border: none;
    color: var(--white);
}

.btn-pay-crypto:hover {
    background-color: #0b5ed7; /* Matches standard blue hover */
    color: var(--white);
}

/* Floating Badges (Styles & Animations) */
.float-badge {
    border: 1px solid var(--light-border);
    -webkit-animation: floatBadge 4s ease-in-out infinite;
    animation: floatBadge 4s ease-in-out infinite;
}

/* Staggered delays and absolute positioning for badges */
.badge-ig { 
    top: 15%; 
    left: 0; 
    -webkit-animation-delay: 0s; 
    animation-delay: 0s; 
}

.badge-dm { 
    bottom: 15%; 
    left: 0; 
    -webkit-animation-delay: 1.5s; 
    animation-delay: 1.5s; 
}

.badge-qr { 
    top: 25%; 
    right: -5%; 
    -webkit-animation-delay: 0.7s; 
    animation-delay: 0.7s; 
}

.badge-email { 
    bottom: 25%; 
    right: -10%; 
    -webkit-animation-delay: 2.2s; 
    animation-delay: 2.2s; 
}

/* --- Keyframes --- */
@-webkit-keyframes floatMainCard {
    0%, 100% { -webkit-transform: translateY(0px) rotate(0deg); box-shadow: 0 1rem 3rem rgba(0,0,0,0.08) !important; }
    50% { -webkit-transform: translateY(-15px) rotate(1deg); box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.12) !important; }
}

@keyframes floatMainCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); box-shadow: 0 1rem 3rem rgba(0,0,0,0.08) !important; }
    50% { transform: translateY(-15px) rotate(1deg); box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.12) !important; }
}

@-webkit-keyframes floatBadge {
    0%, 100% { -webkit-transform: translateY(0px); }
    50% { -webkit-transform: translateY(-10px); }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .hero-link-visual-wrap { 
        min-height: 450px !important; 
        margin-top: 40px; 
    }
    
    /* Ensure badges stay within the screen bounds on mobile */
    .float-badge.badge-ig { left: 5%; top: 5%; }
    .float-badge.badge-qr { right: 5%; }
    .float-badge.badge-email { right: 5%; bottom: 10%; }
}


/* Position for the new Embed Badge */
.badge-embed { 
    top: -5%; 
    right: 15%; 
    -webkit-animation-delay: 1.1s; 
    animation-delay: 1.1s; 
}

/* Ensure it stays on screen for Mobile Devices */
@media (max-width: 991px) {
    .float-badge.badge-embed { 
        right: 10%; 
        top: -5%; 
    }
}








/* --- Plugin Downloads Section --- */
.plugin-dl-card {
    background-color: var(--white);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plugin-dl-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-base);
}

.plugin-dl-top {
    background-color: var(--light-grey-bg);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.plugin-dl-top img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

.plugin-dl-bottom {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--white);
}

.plugin-dl-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    margin-bottom: 15px;
}

.plugin-dl-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.plugin-dl-link {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
}

.plugin-dl-link:hover {
    opacity: 0.8;
    color: var(--primary-blue);
}

.plugin-gh-link {
    color: var(--muted-text);
    font-size: 18px; 
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
}

.plugin-gh-link:hover {
    color: var(--dark-text);
}
