/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-white-80: rgba(255, 255, 255, 0.8);
    --color-orange: #FA8442;
    --color-green: #BEE66B;
    --color-yellow: #FCFF76;
    --color-blue: #4D72F5;
    
    --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --container-width: 1200px;
    --section-spacing: 120px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-black)!important;
}

.btn-primary:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 255, 118, 0.3);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(252, 255, 118, 0.1);
    border: 1px solid rgba(252, 255, 118, 0.3);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag-dark {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--color-black);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-white);
}

.section-title .highlight {
    color: var(--color-yellow);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    display: flex;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white-80);
}

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

.nav-cta {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    color: var(--color-yellow);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-white-80);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Coins Animation */
.coin {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.coin svg {
    width: 100%;
    height: 100%;
}

.coin-1 {
    width: 140px;
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.coin-2 {
    width: 120px;
    top: 45%;
    right: 0%;
    animation-delay: -1.5s;
}

.coin-3 {
    width: 80px;
    bottom: 15%;
    right: 20%;
    animation-delay: -3s;
}

.coin-4 {
    width: 100px;
    top: 25%;
    left: 0%;
    animation-delay: -4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Phone Mockup */
.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 20px;
    background: var(--color-black);
}

.phone-header {
    text-align: center;
    margin-bottom: 30px;
}

.phone-time {
    font-size: 14px;
    font-weight: 600;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-card {
    background: var(--color-yellow);
    border-radius: 16px;
    padding: 24px;
    color: var(--color-black);
}

.phone-card-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-card-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.phone-card-btn {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--color-blue);
    top: -200px;
    right: -200px;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--color-orange);
    bottom: -100px;
    left: -100px;
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-spacing) 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-icon-blue {
    background: rgba(77, 114, 245, 0.15);
    color: var(--color-blue);
}

.feature-icon-orange {
    background: rgba(250, 132, 66, 0.15);
    color: var(--color-orange);
}

.feature-icon-green {
    background: rgba(190, 230, 107, 0.15);
    color: var(--color-green);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.feature-desc {
    font-size: 16px;
    color: var(--color-white-80);
    line-height: 1.6;
}

/* ===== Approach Section ===== */
.approach {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, rgba(77, 114, 245, 0.05) 0%, transparent 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.approach-card {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.approach-card:hover {
    border-color: var(--color-yellow);
}

.approach-card:hover .approach-number {
    color: var(--color-yellow);
}

.approach-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.approach-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.approach-desc {
    font-size: 15px;
    color: var(--color-white-80);
    line-height: 1.6;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: var(--section-spacing) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

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

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

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.benefit-desc {
    font-size: 15px;
    color: var(--color-white-80);
    line-height: 1.6;
}

/* ===== Works Section ===== */
.works {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(252, 255, 118, 0.03) 100%);
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.works-text .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.works-text .section-tag {
    display: inline-block;
}

.works-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.works-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-normal);
}

.works-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.works-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-item-icon svg {
    width: 32px;
    height: 32px;
}

.works-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-white);
}

.works-item-content p {
    font-size: 15px;
    color: var(--color-white-80);
}

/* Works Visual */
.works-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-illustration {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bank-building {
    width: 280px;
}

.bank-building svg {
    width: 100%;
    height: auto;
}

.floating-coin {
    position: absolute;
    animation: float 5s ease-in-out infinite;
}

.floating-coin svg {
    width: 100%;
    height: auto;
}

.fc-1 {
    width: 70px;
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.fc-2 {
    width: 80px;
    bottom: 10%;
    left: 5%;
    animation-delay: -2s;
}

.fc-3 {
    width: 90px;
    top: 20%;
    left: 10%;
    animation-delay: -3.5s;
}

/* ===== Trusted Section ===== */
.trusted {
    padding: var(--section-spacing) 0;
}

.trusted-card {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #E8EB6B 100%);
    border-radius: var(--border-radius-lg);
    padding: 80px;
    text-align: center;
}

.trusted-header {
    max-width: 700px;
    margin: 0 auto 40px;
}

.trusted-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.trusted-subtitle {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-bottom: 40px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-full);
}

.trust-point svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trust-point span {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
}

.trusted-card .btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.trusted-card .btn-primary:hover {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ Section ===== */
.faq {
    padding: var(--section-spacing) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
    border-color: var(--color-yellow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-white-80);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--color-white-80);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-white-80);
    margin-bottom: 32px;
}

/* CTA Background Circles */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--color-orange);
    top: -200px;
    left: -150px;
}

.cta-circle-2 {
    width: 450px;
    height: 450px;
    background: var(--color-green);
    bottom: -180px;
    right: -150px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    color: var(--color-white-80);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: var(--color-white-80);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--color-yellow);
}

.footer-disclaimer {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--color-white-80);
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--color-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-content a {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
}

.mobile-menu-content a:hover {
    color: var(--color-yellow);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .works-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .works-text .section-title {
        text-align: center;
    }
    
    .works-visual {
        order: -1;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-card {
        padding: 48px 24px;
    }
    
    .trust-points {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
    
    .approach-card {
        padding: 24px;
    }
    
    .benefit-card {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== Text Page Styles ===== */

/* Text Hero */
.text-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.text-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.text-hero-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.text-hero-meta {
    font-size: 16px;
    color: var(--color-white-80);
}

.text-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.text-hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.text-hero-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--color-yellow);
    top: -250px;
    right: -100px;
}

.text-hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--color-blue);
    bottom: -200px;
    left: -100px;
}

/* Text Content Layout */
.text-content {
    padding: 60px 0 var(--section-spacing);
}

.text-content-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

/* Text Sidebar */
.text-sidebar {
    position: sticky;
    top: 100px;
}

.text-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white-80);
    margin-bottom: 12px;
    padding-left: 16px;
}

.text-nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white-80);
    border-left: 2px solid transparent;
    border-radius: 0 8px 8px 0;
    transition: var(--transition-fast);
}

.text-nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.text-nav-link.active {
    color: var(--color-yellow);
    border-left-color: var(--color-yellow);
    background: rgba(252, 255, 118, 0.08);
}

/* Text Main Content */
.text-main {
    max-width: 800px;
}

.text-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.text-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.text-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-top: 32px;
    margin-bottom: 12px;
}

.text-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white-80);
    margin-bottom: 16px;
}

.text-section ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.text-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white-80);
}

.text-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-yellow);
    border-radius: 50%;
}

.text-section ul li strong {
    color: var(--color-white);
}

/* Text Highlight Box */
.text-highlight {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(77, 114, 245, 0.1);
    border: 1px solid rgba(77, 114, 245, 0.3);
    border-radius: var(--border-radius);
    margin: 24px 0;
}

.text-highlight-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-blue);
}

.text-highlight-icon svg {
    width: 100%;
    height: 100%;
}

.text-highlight-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-white-80);
}

.text-highlight-content strong {
    color: var(--color-white);
}

.text-highlight-warning {
    background: rgba(250, 132, 66, 0.1);
    border-color: rgba(250, 132, 66, 0.3);
}

.text-highlight-warning .text-highlight-icon {
    color: var(--color-orange);
}

/* Text Grid */
.text-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.text-grid-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
}

.text-grid-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.text-grid-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--color-yellow);
}

.text-grid-icon svg {
    width: 100%;
    height: 100%;
}

.text-grid-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.text-grid-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-white-80);
    margin-bottom: 0;
}

/* Text Contact Card */
.text-contact-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.text-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.text-contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
}

.text-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.text-contact-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.text-contact-item span {
    font-size: 15px;
    color: var(--color-white-80);
    line-height: 1.5;
}

/* Text Page Responsive */
@media (max-width: 1024px) {
    .text-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-sidebar {
        position: relative;
        top: 0;
    }
    
    .text-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .text-nav-title {
        width: 100%;
        padding-left: 0;
    }
    
    .text-nav-link {
        padding: 8px 16px;
        border-left: none;
        border-radius: var(--border-radius-full);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .text-nav-link.active {
        border-color: var(--color-yellow);
    }
}

@media (max-width: 768px) {
    .text-hero {
        padding: 140px 0 60px;
    }
    
    .text-grid {
        grid-template-columns: 1fr;
    }
    
    .text-nav {
        display: none;
    }
    
    .text-section h2 {
        font-size: 24px;
    }
}

/* ===== Contact Page Styles ===== */

/* Contact Hero */
.contact-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(44px, 7vw, 64px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: var(--color-white-80);
    line-height: 1.7;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.contact-hero-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--color-yellow);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-hero-circle-2 {
    width: 350px;
    height: 350px;
    background: var(--color-blue);
    bottom: -100px;
    left: -100px;
}

.contact-hero-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--color-orange);
    bottom: -50px;
    right: -50px;
}

/* Contact Cards */
.contact-cards {
    padding: 0 0 var(--section-spacing);
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 36px;
    height: 36px;
}

.contact-card-icon-yellow {
    background: rgba(252, 255, 118, 0.15);
    color: var(--color-yellow);
}

.contact-card-icon-blue {
    background: rgba(77, 114, 245, 0.15);
    color: var(--color-blue);
}

.contact-card-icon-green {
    background: rgba(190, 230, 107, 0.15);
    color: var(--color-green);
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.contact-card-desc {
    font-size: 15px;
    color: var(--color-white-80);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-yellow);
    transition: var(--transition-fast);
}

.contact-card-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.contact-card-link:hover {
    color: var(--color-white);
}

.contact-card-link:hover svg {
    transform: translateX(4px);
}

.contact-card-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-card-hours span {
    font-size: 15px;
    color: var(--color-white-80);
}

.contact-card-hours span:first-child {
    color: var(--color-white);
    font-weight: 600;
}

/* Contact FAQ Shortcut */
.contact-faq {
    padding-bottom: var(--section-spacing);
}

.contact-faq-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
    background: rgba(77, 114, 245, 0.1);
    border: 1px solid rgba(77, 114, 245, 0.25);
    border-radius: var(--border-radius-lg);
}

.contact-faq-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-faq-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(77, 114, 245, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
}

.contact-faq-icon svg {
    width: 28px;
    height: 28px;
}

.contact-faq-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.contact-faq-text p {
    font-size: 15px;
    color: var(--color-white-80);
    line-height: 1.6;
    max-width: 500px;
}

/* Contact Company Section */
.contact-company {
    padding-bottom: var(--section-spacing);
}

.contact-company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-company-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-company-info p {
    font-size: 16px;
    color: var(--color-white-80);
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-company-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-company-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.contact-company-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
}

.contact-company-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-company-item strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white-80);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-company-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

/* Contact Company Visual */
.contact-company-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-coin {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.contact-coin svg {
    width: 100%;
    height: auto;
}

.contact-coin-1 {
    width: 100px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.contact-coin-2 {
    width: 140px;
    top: 30%;
    right: 10%;
    animation-delay: -2s;
}

.contact-coin-3 {
    width: 110px;
    bottom: 10%;
    left: 30%;
    animation-delay: -4s;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-faq-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .contact-faq-content {
        flex-direction: column;
    }
    
    .contact-faq-text p {
        max-width: 100%;
    }
    
    .contact-company-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-company-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px;
    }
    
    .contact-card {
        padding: 32px 24px;
    }
    
    .contact-company-visual {
        display: none;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease forwards;
}