/* ==========================================
   TARQEYAH PAY - REDESIGNED INDEX.css
   Compact, Modern & Amazing Design
   ========================================== */

/* ==========================================
   PAGE WRAPPER
   ========================================== */
.page-wrapper {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow-x: hidden;
}

/* ==========================================
   SECTION UTILITIES
   ========================================== */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-wrap-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-lead {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #A9ADB1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HERO SECTION - COMPACT
   ========================================== */
.hero-compact {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.5; }
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content-box {
    animation: fadeSlideUp 1s ease-out;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.tag-pulse {
    width: 8px;
    height: 8px;
    background: #3B82F6;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.tag-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3B82F6;
}

.hero-heading {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.heading-line {
    display: block;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #A9ADB1;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.6);
}

.cta-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon {
    transform: translateX(3px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.cta-secondary svg {
    width: 18px;
    height: 18px;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box {
    flex: 1;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: #3B82F6;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-txt {
    font-size: 0.85rem;
    color: #A9ADB1;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual-box {
    position: relative;
    height: 450px;
    animation: fadeSlideUp 1s ease-out 0.2s backwards;
}

.visual-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(26, 29, 31, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
    transform: scale(1.1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.2);
}

.card-float-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.card-float-2 {
    top: 50%;
    right: 15%;
    animation: float2 7s ease-in-out infinite;
}

.card-float-3 {
    bottom: 10%;
    left: 20%;
    animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 15px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -15px) rotate(3deg); }
}

.card-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.visual-card:hover .card-glow {
    opacity: 1;
}

.card-svg {
    width: 60px;
    height: 60px;
    color: #3B82F6;
}

/* Center Orb */
.center-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.orb-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: orbExpand 3s ease-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1s; }
.ring-3 { animation-delay: 2s; }

@keyframes orbExpand {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.orb-core {
    position: absolute;
    inset: 30%;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.6),
    0 0 100px rgba(139, 92, 246, 0.4);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==========================================
   FEATURES SECTION - COMPACT
   ========================================== */
.features-compact {
    padding: 4rem 0;
    background: rgba(26, 29, 31, 0.3);
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    padding: 2rem 1.75rem;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.feature-emoji {
    font-size: 1.75rem;
}

.feature-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 0.95rem;
    color: #A9ADB1;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HOW IT WORKS - TIMELINE
   ========================================== */
.how-timeline {
    padding: 4rem 0;
}

.timeline-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.step-box {
    padding: 1.75rem 1.5rem;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
}

.step-box:hover {
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    color: #3B82F6;
}

.step-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.65rem;
}

.step-text {
    font-size: 0.95rem;
    color: #A9ADB1;
    line-height: 1.5;
}

/* ==========================================
   PRICING SECTION - MODERN
   ========================================== */
.pricing-modern {
    padding: 4rem 0;
    background: rgba(26, 29, 31, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card.featured {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.price-card.featured:hover {
    transform: translateY(-8px) scale(1.08);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.price-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-icon {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-icon svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
}

.price-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.amount-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
}

.amount-curr {
    font-size: 1rem;
    font-weight: 600;
    color: #A9ADB1;
}

.amount-per {
    font-size: 0.95rem;
    color: #A9ADB1;
}

.amount-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.price-save {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10B981;
    margin-bottom: 1rem;
}

.price-features {
    list-style: none;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #A9ADB1;
    font-size: 0.95rem;
}

.price-features svg {
    width: 18px;
    height: 18px;
    color: #3B82F6;
    flex-shrink: 0;
}

.price-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.price-btn.primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
}

.price-btn.primary:hover {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.6);
}

.price-btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   SECURITY SHOWCASE
   ========================================== */
.security-showcase {
    padding: 4rem 0;
}

.security-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-badge {
    position: relative;
    width: 250px;
    height: 250px;
}

.security-badge svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 40px rgba(59, 130, 246, 0.3));
}

.badge-pulse {
    position: absolute;
    inset: -10%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: badgePulse 3s ease-out infinite;
}

@keyframes badgePulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.security-info .section-heading {
    text-align: left;
    margin-bottom: 1.5rem;
}

[dir="rtl"] .security-info .section-heading {
    text-align: right;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.security-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(26, 29, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.security-point:hover {
    border-color: rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.05);
}

.point-check {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.security-point p {
    font-size: 0.95rem;
    color: #A9ADB1;
    line-height: 1.5;
}

.security-certs {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.cert-badge svg {
    width: 20px;
    height: 20px;
    color: #10B981;
}

.cert-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* ==========================================
   FAQ MODERN
   ========================================== */
.faq-modern {
    padding: 4rem 0;
    background: rgba(26, 29, 31, 0.3);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-box {
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-box:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

[dir="rtl"] .faq-q {
    text-align: right;
}

.faq-q:hover {
    color: #3B82F6;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    color: #A9ADB1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-box.open .faq-toggle {
    transform: rotate(180deg);
    color: #3B82F6;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-box.open .faq-a {
    max-height: 500px;
}

.faq-a p {
    padding: 0 1.5rem 1.25rem;
    color: #A9ADB1;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    position: relative;
    max-width: 800px;
    padding: 4rem 3rem;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #A9ADB1;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-action {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.7);
}

.cta-action svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   AOS ANIMATIONS
   ========================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 1024px) {
    .page-wrapper {
        padding-top: 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual-box {
        height: 350px;
    }

    .quick-stats {
        justify-content: space-around;
    }

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

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

    .security-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .security-visual {
        order: -1;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .section-wrap,
    .section-wrap-small {
        padding: 0 1.5rem;
    }

    .section-head {
        margin-bottom: 2.5rem;
    }

    .hero-compact {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-grid {
        padding: 0 1.5rem;
    }

    .hero-visual-box {
        height: 300px;
    }

    .visual-card {
        width: 90px;
        height: 90px;
    }

    .card-svg {
        width: 45px;
        height: 45px;
    }

    .center-orb {
        width: 120px;
        height: 120px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .quick-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .features-grid-compact {
        grid-template-columns: 1fr;
    }

    .timeline-flow {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-card.featured {
        transform: none;
    }

    .security-badge {
        width: 200px;
        height: 200px;
    }

    .security-info .section-heading {
        text-align: center;
    }

    .cta-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .hero-visual-box {
        height: 250px;
    }

    .visual-card {
        width: 75px;
        height: 75px;
    }

    .card-svg {
        width: 35px;
        height: 35px;
    }

    .center-orb {
        width: 100px;
        height: 100px;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}


/* ==========================================
   COMPACT PRICING CALCULATOR
   ========================================== */
.pricing-calc-compact {
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.calc-compact-box {
    padding: 2rem;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.calc-compact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B82F6, #8B5CF6, transparent);
}

/* Calculator Header */
.calc-compact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.calc-icon-badge {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-icon-badge svg {
    width: 22px;
    height: 22px;
    color: #3B82F6;
}

.calc-header-text {
    flex: 1;
}

.calc-compact-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.calc-compact-desc {
    font-size: 0.85rem;
    color: #A9ADB1;
    margin: 0;
}

/* Calculator Grid */
.calc-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Calculator Card */
.calc-card {
    padding: 1.5rem;
    background: rgba(13, 15, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #A9ADB1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Group */
.calc-input-group {
    position: relative;
}

.calc-compact-input {
    width: 100%;
    padding: 0.85rem 4rem 0.85rem 1rem;
    background: rgba(26, 29, 31, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

[dir="rtl"] .calc-compact-input {
    padding: 0.85rem 1rem 0.85rem 4rem;
}

.calc-compact-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calc-compact-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.calc-unit {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    font-weight: 700;
    color: #3B82F6;
    pointer-events: none;
}

[dir="rtl"] .calc-unit {
    right: auto;
    left: 1rem;
}

/* Quick Pills */
.calc-quick-pills {
    display: flex;
    gap: 0.5rem;
}

.calc-pill {
    flex: 1;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #3B82F6;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.calc-pill:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.calc-pill:active {
    transform: translateY(0);
}

/* Results Card */
.results-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-color: rgba(59, 130, 246, 0.15);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-size: 0.9rem;
    color: #A9ADB1;
    font-weight: 500;
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.result-value.fee {
    color: #EF4444;
}

.result-value.net {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-result-row.main-result {
    margin-top: 0.5rem;
}

.calc-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0.75rem 0;
}

/* Progress Bar */
.calc-progress-bar {
    height: 40px;
    background: rgba(13, 15, 16, 0.6);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-percent {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Info Note */
.calc-info-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #A9ADB1;
}

.calc-info-note svg {
    width: 18px;
    height: 18px;
    color: #3B82F6;
    flex-shrink: 0;
}

/* ==========================================
   PRICING CARDS
   ========================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    background: rgba(26, 29, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.price-card.featured {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.price-card.featured:hover {
    transform: translateY(-8px) scale(1.08);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

/* Price Card Content - Flexible container */
.price-card-content {
    flex: 1;
    padding: 2rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.price-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-icon {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-icon svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
}

.price-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.amount-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
}

.amount-curr {
    font-size: 1rem;
    font-weight: 600;
    color: #A9ADB1;
}

.amount-per {
    font-size: 0.95rem;
    color: #A9ADB1;
}

.amount-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.price-save {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10B981;
    margin-bottom: 1rem;
    width: fit-content;
}

.price-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #A9ADB1;
    font-size: 0.95rem;
}

.price-features svg {
    width: 18px;
    height: 18px;
    color: #3B82F6;
    flex-shrink: 0;
}

/* Price Button - Fixed at bottom */
.price-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    margin: 0 1.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-end;
    width: calc(100% - 3.5rem);
}

.price-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.price-btn.primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
}

.price-btn.primary:hover {
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.6);
}

.price-btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   CALCULATOR ANIMATIONS
   ========================================== */
@keyframes valueChange {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.value-animate {
    animation: valueChange 0.3s ease;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .calc-compact-box {
        padding: 1.75rem 1.5rem;
    }

    .calc-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .calc-compact-title {
        font-size: 1.05rem;
    }

    .calc-compact-input {
        font-size: 1.35rem;
        padding: 0.75rem 3.5rem 0.75rem 1rem;
    }

    [dir="rtl"] .calc-compact-input {
        padding: 0.75rem 1rem 0.75rem 3.5rem;
    }

    .result-value.net {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-card {
        min-height: auto;
    }

    .price-card.featured {
        transform: none;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 480px) {
    .calc-compact-box {
        padding: 1.5rem 1.25rem;
    }

    .calc-compact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .calc-icon-badge {
        width: 40px;
        height: 40px;
    }

    .calc-icon-badge svg {
        width: 20px;
        height: 20px;
    }

    .calc-compact-title {
        font-size: 1rem;
    }

    .calc-compact-desc {
        font-size: 0.8rem;
    }

    .calc-card {
        padding: 1.25rem;
    }

    .calc-compact-input {
        font-size: 1.25rem;
        padding: 0.7rem 3rem 0.7rem 0.85rem;
    }

    [dir="rtl"] .calc-compact-input {
        padding: 0.7rem 0.85rem 0.7rem 3rem;
    }

    .calc-unit {
        font-size: 0.85rem;
        right: 0.85rem;
    }

    [dir="rtl"] .calc-unit {
        left: 0.85rem;
    }

    .calc-quick-pills {
        gap: 0.4rem;
    }

    .calc-pill {
        padding: 0.45rem;
        font-size: 0.8rem;
    }

    .result-label {
        font-size: 0.85rem;
    }

    .result-value {
        font-size: 1rem;
    }

    .result-value.net {
        font-size: 1.35rem;
    }

    .calc-progress-bar {
        height: 35px;
    }

    .progress-percent {
        font-size: 0.75rem;
    }

    .calc-info-note {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }

    .calc-info-note svg {
        width: 16px;
        height: 16px;
    }

    .price-card-content {
        padding: 1.75rem 1.5rem 1.25rem;
    }

    .price-btn {
        margin: 0 1.5rem 1.5rem;
        width: calc(100% - 3rem);
        font-size: 0.9rem;
    }

    .amount-num {
        font-size: 2.25rem;
    }
}

/* ==========================================
   END PRICING SECTION
   ========================================== */

/* ==========================================
   MODERN TIER BADGES DESIGN
   ========================================== */

.tier-badges-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.tier-badge-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 29, 31, 0.8), rgba(13, 15, 16, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tier-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tier-badge-card:hover::before {
    opacity: 1;
}

.tier-badge-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.2);
}

/* Tier Pro Special Styling */
.tier-badge-card.tier-pro {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
    border-color: rgba(59, 130, 246, 0.3);
}

.tier-badge-card.tier-pro::before {
    background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899);
    opacity: 1;
}

.tier-badge-card.tier-pro:hover {
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.3);
}

/* Tier Badge Icon */
.tier-badge-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.12);
    border: 2px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.tier-badge-card:hover .tier-badge-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.4);
}

.tier-badge-icon svg {
    width: 36px;
    height: 36px;
    color: #3B82F6;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

/* Tier Colors */
.tier-badge-icon.tier-1 {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
}

.tier-badge-icon.tier-1 svg {
    color: #6366F1;
}

.tier-badge-icon.tier-2 {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.tier-badge-icon.tier-2 svg {
    color: #3B82F6;
}

.tier-badge-icon.tier-3 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
}

.tier-badge-icon.tier-3 svg {
    color: #8B5CF6;
}

/* Tier Badge Content */
.tier-badge-content {
    text-align: center;
    flex: 1;
}

.tier-badge-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #A9ADB1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.tier-badge-rate {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tier-badge-desc {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

/* Pro Badge Star Icon */
.tier-pro-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(245, 158, 11, 0.6);
    }
}

[dir="rtl"] .tier-pro-badge {
    right: auto;
    left: 1rem;
}

.tier-pro-badge svg {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
    fill: #FFFFFF;
}

/* Glow Effect on Hover */
.tier-badge-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tier-badge-card:hover::after {
    opacity: 1;
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 768px) {
    .tier-badges-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .tier-badge-card {
        padding: 1.75rem 1.5rem;
    }

    .tier-badge-icon {
        width: 60px;
        height: 60px;
    }

    .tier-badge-icon svg {
        width: 30px;
        height: 30px;
    }

    .tier-badge-rate {
        font-size: 2.25rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 480px) {
    .tier-badges-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tier-badge-card {
        padding: 1.5rem 1.25rem;
    }

    .tier-badge-icon {
        width: 55px;
        height: 55px;
    }

    .tier-badge-icon svg {
        width: 28px;
        height: 28px;
    }

    .tier-badge-label {
        font-size: 0.8rem;
    }

    .tier-badge-rate {
        font-size: 2rem;
    }

    .tier-badge-desc {
        font-size: 0.85rem;
    }

    .tier-pro-badge {
        top: 0.75rem;
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }

    [dir="rtl"] .tier-pro-badge {
        left: 0.75rem;
    }

    .tier-pro-badge svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tier-badge-card {
    animation: fadeInScale 0.6s ease-out backwards;
}

.tier-badge-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tier-badge-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tier-badge-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ==========================================
   END TIER BADGES CSS
   ========================================== */

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .hero-visual-box,
    .center-orb,
    .visual-card,
    .security-badge {
        display: none !important;
    }
}

/* ==========================================
   END OF INDEX CSS
   ========================================== */