@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Global Styles */
:root {
    --primary-color: #0066FF;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --gold-color: #FFD700;
    --silver-color: #C0C0C0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.text-light {
    color: var(--text-light) !important;
}

.container {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header */
.header {
    background: #ffffff;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background-color: rgb(255 255 255 / 0.8);
    transition: border-bottom 0.3s ease;
}

.header.scrolled {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ebebf0;
}

.header .container {
    padding: 0 48px;
}

.header .navbar {
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.footer-logo .logo-img {
    height: 64px;
    filter: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-direction: row;
}

.navbar-nav.mx-auto {
    flex: 1;
    justify-content: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #1a1a1a !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
}

.nav-link.active {
    font-weight: 700;
    color: #1a1a1a !important;
}

.nav-link:hover {
    color: #1a1a1a !important;
    background-color: #f5f5f5;
}

.language-dropdown {
    position: relative;
    margin-right: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.language-selector:hover {
    background-color: rgba(0, 102, 255, 0.05);
}

.language-selector:focus {
    outline: none;
    box-shadow: none;
}

.language-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.globe-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.chevron-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.dropdown-menu {
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 102, 255, 0.05);
    color: #0066FF;
}

.btn-get-app {
    background-color: #0066FF;
    color: white !important;
    border-radius: 20px;
    padding: 10px 24px !important;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}

.btn-get-app:hover {
    background-color: #0052CC;
    color: white !important;
}

.btn-get-app:active {
    background-color: #0047B3;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .header .container {
        padding: 0 24px;
    }

    .header .navbar {
        min-height: 72px;
        padding: 16px 0;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .navbar-nav.mx-auto {
        width: 100%;
        margin: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 12px 16px !important;
        width: 100%;
        display: block;
    }

    .language-dropdown {
        margin-right: 0;
        margin-top: 8px;
        width: 100%;
    }

    .language-selector {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-get-app {
        padding: 12px 24px !important;
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .globe-icon {
        width: 14px;
        height: 14px;
    }

    .chevron-icon {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .header .container {
        padding: 0 20px;
    }

    .btn-get-app {
        padding: 10px 16px !important;
        font-size: 13px;
    }

    .language-selector {
        padding: 6px 8px;
        gap: 6px;
    }
}

/* Live Market Bar */
.live-market-bar {
    background-color: #000000;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    direction: ltr;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.market-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    will-change: contents;
    transform: translateZ(0);
}

.market-scroll-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: antialiased;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(calc(-1 * var(--market-scroll-shift, 50%)), 0, 0);
    }
}

.live-market-bar:hover .market-scroll-content {
    animation-play-state: paused;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    direction: ltr;
    text-align: left;
    flex-direction: row;
    flex-shrink: 0;
    will-change: transform;
    transform: translateZ(0);
}

.market-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
}

.market-icon.gold,
.market-icon.silver,
.market-icon.platinum,
.market-icon.palladium,
.market-icon.copper,
.market-icon.nickel,
.market-icon.zinc,
.market-icon.aluminum,
.market-icon.lead {
    background-color: #2d2d2d;
    color: #ffffff;
}

.market-name {
    font-weight: 500;
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    direction: ltr;
    text-align: left;
}

.market-price {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
    direction: ltr;
    text-align: left;
}

.market-change {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    direction: ltr;
    text-align: left;
}

.market-change.positive {
    color: #28a745;
}

.market-change.negative {
    color: #dc3545;
}

/* Hero Section */
.hero-section {
    background: var(--bg-white);
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-title .heading2 {
    display: block;
    background: linear-gradient(to right, #295DFF, #061F40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.25;
}

.app-store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

.store-btn {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.store-btn img {
    height: 40px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.trust-icon {
    height: 24px;
}

.trust-text {
    font-size: 14px;
    color: #738DFB;
    line-height: 1.4;
}

/* Phone Mockups */
.phone-mockups {
    position: relative;
    height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screens-combined {
    max-width: 125%;
    height: auto;
    max-height: 680px;
    object-fit: contain;
}

.phone {
    position: absolute;
    width: 220px;
    height: 480px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.phone::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #000;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-1 {
    left: 0;
    top: 50px;
    z-index: 1;
    transform: rotate(-5deg);
}

.phone-2 {
    left: 120px;
    top: 0;
    z-index: 2;
    width: 250px;
    height: 520px;
}

.phone-3 {
    left: 300px;
    top: 80px;
    z-index: 3;
    transform: rotate(5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: var(--bg-white);
    position: relative;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.mockup-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-content h3,
.mockup-content h4 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.portfolio-screen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gold-screen {
    background: #000;
    color: white;
}

.white-screen {
    background: var(--bg-white);
    color: var(--text-dark);
}

.chart-screen {
    background: var(--bg-white);
    color: var(--text-dark);
}

.card-screen {
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.buy-sell-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.buy-sell-btns button {
    flex: 1;
    padding: 12px;
    border: 1px solid white;
    background: transparent;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.transaction-item {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.chart-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    margin-top: 20px;
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    color: #2d2d2d;
}

.section-description {
    text-align: center !important;
    font-size: 20px;
    margin: 0 auto;
    line-height: 1.25;
    max-width: 720px;
}

.ecosystem-feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.ecosystem-section .row {
    margin-top: 0 !important;
}

.ecosystem-section .row.mb-0 {
    margin-bottom: -106px !important;
}

.ecosystem-section .row + .row {
    margin-top: 0 !important;
}

.ecosystem-section .row [class*="col-"] {
    padding-left: 4px;
    padding-right: 4px;
}

/* Left column alignment */
.col-lg-8 .ecosystem-feature {
    justify-content: flex-start;
}

/* Right column alignment - ensure consistent alignment */
.col-lg-4 .ecosystem-feature {
    justify-content: flex-start;
}

/* Right side alignment - top row (col-lg-4) */
.row:first-of-type .col-lg-4 .ecosystem-feature {
    justify-content: flex-start;
}

/* Right side alignment - bottom row (col-lg-8) */
.row:last-of-type .col-lg-8 .ecosystem-feature {
    justify-content: flex-start;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Individual image sizes - each with separate dimensions */

/* IBAN Account Image - Top Left */
.iban-account-img {
    --iban-width: 100%;
    --iban-height: 100%;
    width: var(--iban-width);
    height: var(--iban-height);
    max-width: var(--iban-width);
    max-height: var(--iban-height);
    object-fit: contain;
    border-radius: 12px;
    margin-left: 0;
    margin-right: auto;
}

/* Metal Trading Image - Top Right */
.metal-trading-img {
    --metal-width: 100%;
    --metal-height: 100%;
    width: var(--metal-width);
    height: var(--metal-height);
    max-width: var(--metal-width);
    max-height: var(--metal-height);
    object-fit: contain;
    border-radius: 12px;
    margin-left: 0;
    margin-right: auto;
}

/* Pay Phone Image - Bottom Left */
.pay-phone-img {
    --pay-width: 100%;
    --pay-height: 100%;
    width: var(--pay-width);
    height: var(--pay-height);
    max-width: var(--pay-width);
    max-height: var(--pay-height);
    object-fit: contain;
    border-radius: 12px;
    margin-left: 0;
    margin-right: auto;
}

/* Virtual Card Image - Bottom Right */
.virtual-card-img {
    --virtual-width: 100%;
    --virtual-height: 100%;
    width: var(--virtual-width);
    height: var(--virtual-height);
    max-width: var(--virtual-width);
    max-height: var(--virtual-height);
    object-fit: contain;
    border-radius: 12px;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .ecosystem-feature {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .ecosystem-feature {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .ecosystem-feature {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .ecosystem-feature {
        height: 250px;
    }
}

/* Legacy styles kept for compatibility */
.feature-card {
    height: 440px;
    position: relative;
}

.phone-mockup-single {
    position: relative;
    height: 100%;
}

.phone-screen-small {
    width: 220px;
    height: 400px;
    background: #000;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.phone-screen-small .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

/* Precision Section */
.precision-section {
    padding: 20px 0;
    background: var(--bg-white);
}

.precision-section .row.g-6 {
    gap: 24px;
}

.price-card-left,
.price-card-right {
    height: 580px;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
}

.price-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.price-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-card-gradient {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 230px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    pointer-events: none;
}

/* Left Card Features */
.price-card-features {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 16px;
    z-index: 2;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.feature-subtitle {
    font-size: 10px;
    color: #ffffff;
    line-height: 1;
}

/* Right Card Stats */
.price-card-stats {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 48px);
    z-index: 2;
}

.stats-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gold-icon-badge {
    background: #000000;
    border-radius: 100px;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.stats-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-box {
    background: #000000;
    border-radius: 24px;
    padding: 12px;
    min-width: 221px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 24px;
}

.stat-value-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trend-icon {
    width: 36px;
    height: 36px;
}

.stat-value {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.stat-value.positive {
    color: #12b76a;
}

.stat-value.negative {
    color: #dc2626;
}

.stat-value-high {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.stats-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.live-feed-indicator {
    background: #000000;
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #32d583;
    border-radius: 10px;
}

.live-feed-indicator span {
    font-size: 14px;
    font-weight: 700;
    color: #b3b3b3;
    letter-spacing: 0;
}

.current-price {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.price-large {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.price-number {
    font-size: 64px;
}

.price-label {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}

.metal-tabs-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.metal-tabs {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: max-content;
    background: #ffffff;
    border-radius: 50px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.metal-tab {
    padding: 8px 24px;
    background: transparent;
    border: none;
    color: #999999;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.metal-tab.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.metal-tab:not(.active) {
    color: #999999;
}

.coming-soon {
    font-size: 14px;
    color: #999999;
    font-style: italic;
}

.coming-soon em {
    font-style: italic;
}

/* Portfolio Section */
.portfolio-section {
    padding: 30px 0;
    background: var(--bg-white);
}

.section-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-large {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.portfolio-visual,
.card-visual {
    position: relative;
    height: 580px;
}

.phone-mockup-hand,
.phone-mockup-payment {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-hand-img,
.card-payment-img {
    max-width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: contain;
}

.phone-screen-medium {
    width: 280px;
    height: 540px;
    background: #000;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    margin: 0 auto;
    transform: rotate(-8deg);
}

.phone-screen-medium .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
}

.emas-card-mockup {
    width: 90%;
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    color: white;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-number {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.card-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-color);
}

/* Card Section */
.card-section {
    padding: 0px 0;
    padding-bottom: 70px;
    background: var(--bg-white);
}

/* Dark Sections */
.dark-section {
    background: var(--bg-dark);
    color: white;
}

.organized-section,
.card-life-section {
    background: var(--bg-dark);
}

.phone-mockup-large {
    position: relative;
    display: inline-block;
}

.phone-large-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: contain;
    border-radius: 0px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transition: opacity 0.6s ease-in-out;
}

.phone-large-img.phone-img-fade-out {
    opacity: 0;
}

.phone-screen-large {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.phone-screen-large .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
}

.feature-box-dark {
    padding: 16px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 180px;
    position: relative;
    transition: all 0.3s ease;
}

/* Center row and items in organized section */
.organized-section .row.g-0 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.organized-section .row.g-0 .col-md-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-box2-dark {
    text-align: left;
    padding: 24px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    min-height: 160px;
}

.feature-icon-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 16px;
}

.feature-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.feature-box-title {
    font-weight: normal;
    margin: 0;
    font-size: 30px;
    line-height: 1.4;
    max-width: 200px;
}

.feature-icon2-img {
    width: 36px;
    height: 36px;
    margin-bottom: 30px;
    object-fit: contain;
    display: block;
}

.feature-box-dark h4 {
    font-weight: 400;
    font-size: 30px;
}

.feature-box-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-box-arrow svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.feature-box-arrow.active {
    background: #295DFF;
    color: #ffffff;
}

.feature-box-arrow.active svg {
    transform: rotate(-30deg);
}

.feature-box-arrow.active svg path {
    stroke: #ffffff;
}

.feature-box-arrow:hover {
    background: #295DFF;
    color: #ffffff;
    transform: scale(1.1);
}

.feature-box-arrow:hover svg path {
    stroke: #ffffff;
}

.card-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: top;
    margin: 0 auto;
    width: 100%;
    height: 500px;
}

.card-stack-img {
    position: absolute;
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Stack the cards with different z-index and equal spacing */
.card-1 {
    z-index: 3;
    transform: translateY(0);
}

.card-2 {
    z-index: 2;
    transform: translateY(50px);
}

.card-3 {
    z-index: 1;
    transform: translateY(100px);
}

/* Animation on section hover */
.card-life-section:hover .card-1 {
    animation: cardFloat1 3s ease-in-out infinite;
}

.card-life-section:hover .card-2 {
    animation: cardFloat2 3s ease-in-out infinite;
    animation-delay: 0.4s;
}

.card-life-section:hover .card-3 {
    animation: cardFloat3 3s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Keyframe animations for gentle up and down movement with equal spacing */
@keyframes cardFloat1 {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-30px) rotate(1deg);
    }
}

@keyframes cardFloat2 {
    0%, 100% {
        transform: translateY(50px) rotate(0.5deg);
    }
    50% {
        transform: translateY(20px) rotate(-0.5deg);
    }
}

@keyframes cardFloat3 {
    0%, 100% {
        transform: translateY(100px) rotate(-0.5deg);
    }
    50% {
        transform: translateY(70px) rotate(0.5deg);
    }
}

.stacked-card-img {
    position: absolute;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.stacked-card-img.card-1 {
    bottom: 0;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

.stacked-card-img.card-2 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.stacked-card-img.card-3 {
    bottom: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 3;
}

/* Security Section */
.security-section {
    padding: 48px 0;
    background: var(--bg-white);
}

.security-header {
    margin-bottom: 48px;
}

.security-title {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.72px;
    margin-bottom: 12px;
    line-height: 1;
}

.security-description {
    font-size: 20px;
    font-weight: 400;
    color: #777777;
    line-height: 1;
    margin: 0;
}

.security-cards {
    display: flex;
    gap: 16px;
    width: 100%;
}

.security-card {
    flex: 1;
    background: #000000;
    border-radius: 24px;
    padding: 24px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.security-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.security-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.security-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.security-card-text {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

/* Responsive styles for security section */
@media (max-width: 768px) {
    .security-cards {
        flex-direction: column;
    }

    .security-card {
        height: auto;
        min-height: 240px;
    }

    .security-title {
        font-size: 28px;
    }

    .security-description {
        font-size: 18px;
    }
}

/* Package Section */
.package-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Background image */
.package-section {
    --package-bg-image: url('assets/images/package-bg.png');
}

.package-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--package-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.package-section.package-bg-fade-out::after {
    opacity: 0;
}

.package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.package-section .container {
    position: relative;
    z-index: 2;
}

.package-content {
    padding: 48px;
}

.package-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.96px;
    color: #ffffff;
    margin-bottom: 24px;
}

.package-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
}

.package-toggle-wrapper {
    margin-bottom: 48px;
}

.package-toggle {
    display: inline-flex;
    border: 2px solid #ffffff;
    border-radius: 100px;
    overflow: hidden;
}

.toggle-option {
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-option.active {
    background: #ffffff;
    color: #000000;
}

.package-main-content {
    margin-bottom: 48px;
}

.package-info {
    color: #ffffff;
}

.package-plan-name {
    font-size: 36px;
    letter-spacing: -0.72px;
    color: #ffffff;
    margin-bottom: 48px;
}

.package-description-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.package-description-title {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: #ffffff;
    line-height: 1.2;
}

.package-description-text {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

.package-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-divider {
    width: 1px;
    height: 100%;
    background: #ffffff;
}

.package-features {
    color: #ffffff;
}

.package-features-title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.72px;
    color: #ffffff;
    margin-bottom: 48px;
}

.package-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

.package-feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.package-check-icon {
    background: #000000;
    border-radius: 100px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3px;
}

.package-check-icon svg {
    width: 18px;
    height: 18px;
}

.package-feature-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #ffffff;
    margin: 0;
}

.package-price {
    text-align: right;
    color: #ffffff;
}

.price-currency,
.price-amount {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
    margin-left: 4px;
}

.package-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.package-tabs {
    display: flex;
    gap: 24px;
    align-items: center;
}

.package-tab {
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-tab.active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0px 2px 10px 0px rgba(41, 93, 255, 0.4);
}

.package-tab:not(.active) {
    box-shadow: 0px 2px 10px 0px rgba(41, 93, 255, 0.4);
}

.package-learn-more-btn {
    background: #ffffff;
    color: #000000;
    padding: 12px 18px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.package-learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
}

/* Footer */
.footer {
    background: var(--bg-white);
}

.footer-top {
    padding: 48px 0;
}

.footer-divider-top {
    height: 1px;
    background: #eeeeee;
    margin-bottom: 48px;
}

.footer-main-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    justify-content: flex-start;
    width: 100%;
}

.footer-left {
    flex: 0 0 auto;
    width: 338px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo .logo-img {
    height: 64px;
    width: auto;
}

.footer-slogan {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.footer-description {
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    margin: 0;
    line-height: 1;
}

.footer-divider-vertical {
    width: 1px;
    height: auto;
    min-height: 100%;
    background: #eeeeee;
    flex-shrink: 0;
    align-self: stretch;
}

.footer-middle {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.footer-contact-column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    line-height: 1;
}

.footer-nav-link.active {
    font-weight: 600;
    color: #295dff;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-contact-info p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.footer-right {
    flex: 0 0 auto;
    width: 326px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: auto;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-heading {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.newsletter-input-wrapper {
    width: 100%;
}

.newsletter-input-field {
    position: relative;
    height: 48px;
    border: 1px solid #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 13px 16px;
    gap: 8px;
}

.mail-icon {
    flex-shrink: 0;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #b3b3b3;
}

.footer-address {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1;
}

.footer-address p {
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    background: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon:hover .bi-facebook {
    color: white;
}

.social-icon:has(.bi-facebook):hover {
    background: #1877F2;
}

.social-icon:has(.bi-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:has(.bi-linkedin):hover {
    background: #0A66C2;
}

.social-icon i {
    font-size: 18px;
    color: white;
    transition: color 0.3s ease;
}

.footer-bottom .container {
    max-width: 1600px;
    padding: 0 48px;
}

.footer-bottom {
    background: #000000;
    padding: 24px 0;
}

.footer-regulatory-text {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    line-height: 1;
    margin-bottom: 0;
    text-align: left;
    margin-top: 40px;
}

.regulatory-link {
    color: #295dff;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.footer-legal-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-legal-links a {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #295dff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-title-large {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .phone-mockups {
        height: 400px;
        margin-top: 40px;
    }

    .phone {
        width: 160px;
        height: 320px;
    }

    .phone-1 {
        left: 0;
        top: 30px;
    }

    .phone-2 {
        left: 90px;
        top: 0;
        width: 180px;
        height: 360px;
    }

    .phone-3 {
        left: 220px;
        top: 50px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title-large {
        font-size: 40px;
    }

    .feature-card {
        height: 350px;
    }

    .phone-screen-small {
        width: 180px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .phone-large-img {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .phone-mockup-large {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .phone-mockups {
        height: 300px;
        overflow: hidden;
    }

    .phone {
        width: 120px;
        height: 240px;
    }

    .phone-1 {
        left: -20px;
        top: 20px;
    }

    .phone-2 {
        left: 60px;
        top: 0;
        width: 140px;
        height: 280px;
    }

    .phone-3 {
        left: 150px;
        top: 30px;
    }

    .live-market-bar .row {
        flex-wrap: wrap;
    }

    .market-item {
        font-size: 12px;
    }

    .market-price {
        font-size: 14px;
    }

    .price-card {
        height: 400px;
        margin-bottom: 20px;
    }

    .portfolio-visual,
    .card-visual {
        height: 400px;
    }

    .phone-screen-medium {
        width: 200px;
        height: 380px;
    }

    .phone-screen-large {
        width: 240px;
        height: 480px;
    }

    .card-stack {
        height: 400px;
    }

    .card-stack-img {
        max-width: 250px;
    }

    .ecosystem-section,
    .precision-section,
    .portfolio-section,
    .card-section,
    .organized-section,
    .card-life-section,
    .security-section {
        padding: 0;
    }

    .phone-large-img {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .phone-mockup-large {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .ecosystem-feature {
        margin-bottom: 40px;
    }

    .footer-top {
        padding: 40px 0;
    }

    .footer-main-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-left {
        flex: 1;
        width: 100%;
    }

    .footer-divider-vertical {
        display: none;
    }

    .footer-middle {
        align-items: flex-start;
    }

    .footer-nav-links {
        align-items: flex-start;
    }

    .footer-contact-info {
        align-items: flex-start;
    }

    .footer-right {
        flex: 1;
        width: 100%;
    }

    .footer-bottom {
        padding: 24px 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-legal-links {
        align-items: flex-start;
    }

    .feature-box-dark {
        min-height: 150px;
        padding: 12px;
    }

    .feature-box-dark h4 {
        font-size: 20px;
    }

    .feature-icon-img {
        width: 24px;
        height: 24px;
    }

    .feature-box-arrow {
        width: 24px;
        height: 24px;
    }

    .feature-box-arrow svg {
        width: 18px;
        height: 18px;
    }

    .organized-section .row,
    .card-life-section .row.g-4 {
        gap: 16px !important;
    }

    .package-plan-name {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title-large {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .app-store-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .store-btn {
        width: 100%;
    }

    .phone-large-img {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .phone-mockup-large {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .footer-slogan {
        font-size: 24px;
    }

    .footer-main-content {
        gap: 24px;
    }

    .footer-bottom {
        padding: 20px 16px;
    }

    .footer-regulatory-text {
        font-size: 14px;
    }

    .phone-mockups {
        height: 250px;
    }

    .phone {
        width: 100px;
        height: 200px;
    }

    .phone-1 {
        left: -30px;
        top: 15px;
    }

    .phone-2 {
        left: 40px;
        top: 0;
        width: 110px;
        height: 220px;
    }

    .phone-3 {
        left: 110px;
        top: 25px;
    }

    .metal-tabs {
        align-items: stretch;
    }

    .metal-tab {
        width: auto;
        flex: 0 0 auto;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .security-section {
        padding: 60px 0;
    }

    .package-section {
        padding: 60px 0;
    }

    .package-content {
        padding: 0px;
    }

    .package-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .package-features-title {
        margin-bottom: 24px;
    }

    .package-description-title {
        font-size: 40px;
    }

    .package-main-content {
        flex-direction: column;
    }

    .package-divider-wrapper {
        display: none;
    }

    .package-navigation {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .package-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .package-tab {
        font-size: 14px;
    }

    .package-learn-more-btn {
        width: 100%;
        justify-content: center;
    }

    .feature-box2-dark {
        min-height: 140px;
        padding: 20px;
    }

    .feature-box-title {
        font-size: 20px;
    }

    .feature-icon2-img {
        width: 30px;
        height: 30px;
        margin-bottom: 16px;
    }

    .feature-box-dark {
        min-height: 120px;
        padding: 10px;
    }

    .feature-box-dark h4 {
        font-size: 16px;
        line-height: 1.3;
    }

    .feature-icon-img {
        width: 20px;
        height: 20px;
    }

    .feature-box-arrow {
        width: 20px;
        height: 20px;
    }

    .feature-box-arrow svg {
        width: 16px;
        height: 16px;
    }

    .card-stack {
        height: 350px;
    }

    .toggle-option {
        font-size: 16px;
        padding: 10px 14px;
    }
}

/* Custom Button Styles - Card Life Section */
.btn-primary-custom {
    background: #295dff;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-shadow: 0px 2px 10px 0px rgba(41, 93, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background: #1e4dd9;
    color: #ffffff;
    box-shadow: 0px 4px 15px 0px rgba(41, 93, 255, 0.5);
}

.btn-outline-custom {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 100px;
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-shadow: 0px 2px 10px 0px rgba(41, 93, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0px 4px 15px 0px rgba(41, 93, 255, 0.5);
}

/* About Us Page Styles */

/* Dark Header */
.header-dark {
    background: #1a1a1a;
    border-bottom: none;
    box-shadow: none;
}

.header-dark.header-hidden {
    transform: translateY(-100%);
}

.logo-white {
    filter: brightness(0) invert(1);
}

.nav-link-white {
    color: #ffffff !important;
}

.nav-link-white.active {
    color: #ffffff !important;
    font-weight: 700;
}

.nav-link-white:hover {
    color: #ffffff !important;
}

.language-selector-white .language-text {
    color: #ffffff !important;
}

.language-selector-white .globe-icon path,
.language-selector-white .chevron-icon path {
    fill: #ffffff;
}

.header-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('assets/images/about-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/about-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.about-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stability of Gold Section */
.stability-gold-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.stability-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.stability-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

.stability-image-wrapper {
    text-align: center;
}

.stability-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Speed of Tech Section */
.speed-tech-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.speed-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.speed-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

.speed-image-wrapper {
    text-align: center;
}

.speed-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Built on Trust Section */
.built-trust-section {
    padding: 140px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.built-trust-header {
    margin-bottom: 80px;
}

.built-trust-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.built-trust-subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.trust-cards-wrapper {
    position: relative;
    z-index: 1;
}

.trust-card {
    background: #ffffff;
    padding: 0;
    border-radius: 32px;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card-inner {
    padding: 56px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trust-card-orange {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
    border-top: 4px solid #ff9500;
}

.trust-card-orange::before {
    background: linear-gradient(90deg, transparent, #ff9500, transparent);
}

.trust-card-purple {
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    border-top: 4px solid #9333ea;
}

.trust-card-purple::before {
    background: linear-gradient(90deg, transparent, #9333ea, transparent);
}

.trust-card-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-top: 4px solid #10b981;
}

.trust-card-green::before {
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.trust-icon-wrapper {
    width: 96px;
    height: 96px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-card:hover .trust-icon-wrapper {
    transform: scale(1.05) rotate(2deg);
}

.trust-icon-wrapper-orange {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    box-shadow: 0 4px 16px rgba(255, 149, 0, 0.2);
}

.trust-icon-wrapper-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.2);
}

.trust-icon-wrapper-green {
    background: linear-gradient(135deg, #e6f7f0 0%, #d1fae5 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.trust-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.trust-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trust-card-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-card-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.3;
}

.trust-card-description {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
    flex: 1;
}

/* Footer Address */
.footer-address {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-input-white {
    color: #ffffff !important;
}

.newsletter-input-white::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Responsive Styles for About Us */
@media (max-width: 1200px) {
    .about-hero-title,
    .stability-title,
    .speed-title,
    .built-trust-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .about-hero-section {
        min-height: 500px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .stability-gold-section,
    .speed-tech-section,
    .built-trust-section {
        padding: 80px 0;
    }

    .stability-title,
    .speed-title,
    .built-trust-title {
        font-size: 40px;
    }

    .stability-image,
    .speed-image {
        margin-top: 40px;
    }

    .trust-card {
        margin-bottom: 30px;
    }

    .built-trust-header {
        margin-bottom: 60px;
    }

    .trust-card-inner {
        padding: 48px 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-hero-content {
        padding: 60px 0;
    }

    .stability-gold-section,
    .speed-tech-section,
    .built-trust-section {
        padding: 50px 0;
    }

    .stability-title,
    .speed-title,
    .built-trust-title {
        font-size: 32px;
    }

    .stability-description,
    .speed-description {
        font-size: 16px;
    }

    .built-trust-header {
        margin-bottom: 40px;
    }

    .trust-card-inner {
        padding: 40px 32px;
    }

    .trust-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 32px;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
    }

    .trust-card-title {
        font-size: 42px;
    }

    .trust-card-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .trust-card-description {
        font-size: 16px;
    }
}

.btn-arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Parallax Effects */
section[data-parallax="true"] {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

[data-parallax-element] {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(50px);
}

[data-parallax-element].parallax-element-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced transitions for special sections (homepage and about page) */
.card-life-section.section-transition-active,
.package-section.section-transition-active,
.about-hero-section.section-transition-active,
.stability-gold-section.section-transition-active,
.speed-tech-section.section-transition-active,
.built-trust-section.section-transition-active {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.6s ease-out;
}

.card-life-section [data-parallax-element],
.package-section [data-parallax-element],
.about-hero-section [data-parallax-element],
.stability-gold-section [data-parallax-element],
.speed-tech-section [data-parallax-element],
.built-trust-section [data-parallax-element] {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(80px) scale(0.9);
}

.card-life-section [data-parallax-element].parallax-element-visible,
.package-section [data-parallax-element].parallax-element-visible,
.about-hero-section [data-parallax-element].parallax-element-visible,
.stability-gold-section [data-parallax-element].parallax-element-visible,
.speed-tech-section [data-parallax-element].parallax-element-visible,
.built-trust-section [data-parallax-element].parallax-element-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Smooth background transition between card-life and package sections */
.card-life-section {
    position: relative;
    z-index: 1;
}

.package-section {
    position: relative;
    z-index: 2;
    transition: background-color 0.8s ease-out,
    background-image 0.8s ease-out;
}

/* Add depth effect when transitioning between sections */
.card-life-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.card-life-section.section-transition-active::after {
    opacity: 1;
}

/* Enhanced transition overlay for package section */
/* Note: package-section::before and ::after are used for background, 
   so we add transition overlay to the package-content */
.package-content {
    position: relative;
}

.package-content::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -48px;
    right: -48px;
    height: 150px;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.package-section.section-transition-active .package-content::before {
    opacity: 1;
}

/* Sections start visible, fade-in handled by Intersection Observer */
section {
    opacity: 1;
}

/* Pricing Page Styles */
.pricing-hero-section {
    padding: 100px 0 80px;
    background: var(--bg-white);
    text-align: center;
}

.pricing-hero-title {
    font-size: 56px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.pricing-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-custom {
    background: #f5f5f7;
    color: var(--text-dark);
    border: 2px solid #ebebf0;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: #ebebf0;
    border-color: #d1d1d6;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.pricing-section {
    padding: 60px 0 120px;
    background: var(--bg-white);
}

.pricing-plans-section {
    padding: 30px 0 80px 0;
    background: var(--bg-white);
}

/* Pricing Toggle Styles (White Background) */
.pricing-toggle-wrapper .package-toggle {
    display: inline-flex;
    background: #ffffff;
    border: 2px solid #ebebf0;
    border-radius: 100px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-toggle-wrapper .toggle-option {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    background: transparent;
}

.pricing-toggle-wrapper .toggle-option.active {
    background: #0066FF;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 102, 255, 0.2);
}

.pricing-toggle-wrapper .toggle-option:hover:not(.active) {
    color: #666666;
    background: #f5f5f7;
}

.pricing-toggle-wrapper .toggle-option:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .pricing-toggle-wrapper .toggle-option {
        padding: 8px 20px;
        font-size: 14px;
    }
}

.pricing-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* New Pricing Card Design */
.pricing-card-new {
    background: #f5f5f7;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #ebebf0;
}

.pricing-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card-banner {
    position: absolute;
    top: 0;
    left: 0;
    background: #2d2d2d;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    border-radius: 0 0 8px 0;
}

.pricing-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pricing-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 24px;
    z-index: 1;
}

.pricing-card-image-overlay .pricing-card-description-new {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.pricing-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-card-badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #2d2d2d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.pricing-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card-content .pricing-card-description-new {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-card-features-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    flex: 1;
}

/* Reuse package-check-icon for pricing cards with black background */
.pricing-card-new .package-check-icon {
    background: #000000;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px;
}

.pricing-card-new .package-check-icon svg {
    width: 14px;
    height: 14px;
}

.pricing-card-new .package-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card-new .package-feature-text {
    font-size: 14px;
    color: #2d2d2d;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.pricing-card-new .package-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-card-price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #ebebf0;
}

.price-currency-new {
    font-size: 20px;
    font-weight: 500;
    color: #2d2d2d;
}

.price-amount-new {
    font-size: 36px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1;
}

.price-period-new {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-note-wrapper {
    margin-top: 17px;
    margin-bottom: 0;
}

.pricing-note {
    font-size: 14px;
    color: #999999;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    display: inline-block;
}

.pricing-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #ebebf0;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #0066FF;
}

.pricing-card-featured {
    border-color: #0066FF;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0066FF, #0044CC);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebf0;
}

.pricing-card-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-card-price .price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-card-price .price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-card-price .price-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-card-body {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-card-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-card-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-feature-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-card-footer {
    padding-top: 24px;
    border-top: 1px solid #ebebf0;
    margin-top: auto;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-toggle-wrapper {
    margin-bottom: 60px;
}

.pricing-plans-wrapper {
    margin-top: 40px;
}

.pricing-plan-card {
    background: #ffffff;
    border: 2px solid #ebebf0;
    border-radius: 32px;
    padding: 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #295DFF;
}

.pricing-plan-card-featured {
    border-color: #295DFF;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(41, 93, 255, 0.15);
}

.pricing-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #295DFF, #061F40);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-plan-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebf0;
}

.pricing-plan-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-plan-price .price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-plan-price .price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-plan-price .price-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-plan-body {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-plan-description-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.pricing-plan-description-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.pricing-plan-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-feature-item .package-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #295DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-feature-item .package-check-icon svg {
    width: 14px;
    height: 14px;
}

.pricing-feature-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.pricing-plan-footer {
    padding-top: 24px;
    border-top: 1px solid #ebebf0;
}

@media (max-width: 992px) {
    .pricing-hero-title {
        font-size: 42px;
    }

    .pricing-hero-subtitle {
        font-size: 18px;
    }

    .pricing-hero-section {
        padding: 70px 0 50px;
    }

    .pricing-plans-section {
        padding: 30px 0 60px;
    }

    .pricing-comparison-section {
        padding: 60px 0;
    }

    .pricing-details-section {
        padding: 60px 0;
    }

    .pricing-plan-card {
        margin-bottom: 32px;
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .pricing-hero-section {
        padding: 60px 0 40px;
    }

    .pricing-hero-title {
        font-size: 36px;
    }

    .pricing-hero-subtitle {
        font-size: 16px;
    }

    .pricing-section {
        padding: 40px 0 80px;
    }

    .pricing-plan-card {
        padding: 32px 24px;
    }

    .pricing-plan-name {
        font-size: 28px;
    }

    .pricing-plan-price .price-amount {
        font-size: 36px;
    }
}

/* Pricing Comparison Table */
.pricing-comparison-section {
    padding: 80px 0;
    background: #f5f5f7;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    background: transparent;
}

.comparison-table thead {
    background: #000000;
    border-radius: 12px;
    display: table-header-group;
}

.comparison-table thead tr {
    border-radius: 12px;
}

.comparison-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.comparison-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.comparison-table tbody {
    background: #ffffff;
}

.comparison-table tbody tr {
    background: #ffffff;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
    width: 20%;
}

.comparison-table td {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid #f5f5f7;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-category td {
    background: #f9f9fb;
    font-weight: 600;
    color: var(--text-dark);
    padding: 16px 24px;
    border-bottom: 2px solid #ebebf0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-icon {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.comparison-table .checkmark-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.comparison-table .checkmark-icon svg {
    width: 20px;
    height: 20px;
}

.comparison-table .x-mark-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.comparison-table .x-mark-icon svg {
    width: 20px;
    height: 20px;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table .discount-badge {
    background: #0066FF;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 36px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.comparison-table .number-badge {
    background: #4d4848;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 36px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.comparison-table .coming-soon {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    display: block;
}

/* Pricing Details Section */
.pricing-details-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-details-subtitle {
    font-size: 18px;
    color: #8e8e93;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.pricing-details-sidebar {
    background: transparent;
    padding: 0;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #2d2d2d;
    font-weight: 400;
    background: transparent;
    border: none;
}

.pricing-nav-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.pricing-nav-item.active {
    background: rgba(0, 0, 0, 0.08);
    color: #2d2d2d;
    font-weight: 500;
}

.pricing-nav-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
}

.pricing-nav-item.active .pricing-nav-icon {
    filter: grayscale(0%);
    opacity: 1;
}

.pricing-details-content {
    min-height: 400px;
}

.pricing-detail-item {
    display: none;
    animation: fadeIn 0.3s ease;
}

.pricing-detail-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-detail-title {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-detail-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--text-dark);
}

.pricing-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebf0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-detail-list-large {
    width: 100%;
    max-width: 100%;
    min-height: 600px;
    padding: 32px;
}

.pricing-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid #ebebf0;
    transition: background-color 0.2s ease;
}

.pricing-detail-row:last-child {
    border-bottom: none;
}

.pricing-detail-row:hover {
    background: #f9f9fb;
}

.detail-label-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.detail-label {
    font-size: 15px;
    color: #2d2d2d;
    font-weight: 400;
    line-height: 1.5;
}

.detail-description {
    font-size: 13px;
    color: #8e8e93;
    line-height: 1.4;
    font-weight: 400;
}

.detail-value {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    margin-left: 24px;
}

.detail-value.free {
    color: #00C853;
    font-weight: 700;
}


.mining-costs-description {
    margin-bottom: 24px;
}

.mining-costs-description p {
    font-size: 14px;
    color: #8e8e93;
    line-height: 1.6;
    margin: 0;
}

.mining-costs-table-wrapper {
    overflow-x: auto;
    margin-top: 24px;
}

.mining-costs-table,
.shipping-costs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mining-costs-table thead,
.shipping-costs-table thead {
    background: #000000;
}

.mining-costs-table th {
    padding: 12px 17px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

.shipping-costs-table th {
    padding: 16px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

.mining-costs-table tbody,
.shipping-costs-table tbody {
    background: #f5f5f7;
}

.mining-costs-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #2d2d2d;
    border-bottom: 1px solid #ebebf0;
    background: #f5f5f7;
    font-weight: 400;
    text-align: center;
}

.shipping-costs-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #2d2d2d;
    border-bottom: 1px solid #ebebf0;
    background: #f5f5f7;
    font-weight: 400;
    text-align: left;
}

.mining-costs-table tbody tr:last-child td,
.shipping-costs-table tbody tr:last-child td {
    border-bottom: none;
}

.shipping-zones-info {
    margin-top: 24px;
}

.shipping-zones-info p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #8e8e93;
    line-height: 1.6;
}

.shipping-zones-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles for Pricing Page */
@media (max-width: 992px) {
    .pricing-card {
        margin-bottom: 32px;
    }

    .pricing-details-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 32px;
    }

    .pricing-nav-item {
        font-size: 14px;
        padding: 14px 18px;
    }
}

@media (max-width: 768px) {
    .pricing-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary-custom,
    .btn-primary-custom {
        width: 100%;
        text-align: center;
    }

    .pricing-hero-section {
        padding: 50px 0 30px;
    }

    .pricing-plans-section {
        padding: 30px 0 50px;
    }

    .pricing-comparison-section {
        padding: 50px 0;
    }

    .pricing-details-section {
        padding: 50px 0;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card-name {
        font-size: 28px;
    }

    .pricing-card-price .price-amount {
        font-size: 36px;
    }

    .pricing-card-new {
        margin-bottom: 32px;
    }

    .pricing-card-image {
        height: 240px;
    }

    .price-amount-new {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }

    .pricing-detail-title {
        font-size: 24px;
    }

    .pricing-detail-icon {
        width: 28px;
        height: 28px;
    }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    section[data-parallax="true"],
    [data-parallax-element] {
        transform: none !important;
        transition: opacity 0.6s ease-out;
    }

    [data-parallax-element] {
        opacity: 1;
    }

    section {
        opacity: 1;
    }

    section::after {
        display: none;
    }
}


