/* Rappi Landing Page Styles - Dark theme with orange/gold accents */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

:root {
    --background: hsl(0, 0%, 7%);
    --foreground: hsl(0, 0%, 100%);
    --card: hsl(0, 0%, 10%);
    --primary: hsl(32, 99%, 51%);
    --primary-hover: hsl(38, 100%, 50%);
    --muted-foreground: hsl(0, 0%, 60%);
    --border: hsl(0, 0%, 20%);
    --gradient-orange: linear-gradient(90deg, hsl(32, 99%, 51%) 0%, hsl(38, 100%, 50%) 50%, hsl(32, 99%, 51%) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    background-image: url('images/global-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media (max-width: 767px) {
    body {
        background-attachment: scroll;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: env(safe-area-inset-top);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu {
    display: none;
}

.btn-wallet {
    background: var(--gradient-orange);
    color: var(--foreground);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-wallet:hover {
    opacity: 0.9;
}

.btn-icon {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    min-width: 40px;
    min-height: 40px;
}

.btn-icon:hover {
    color: var(--foreground);
}

.btn-icon:active {
    transform: scale(0.95);
}

.menu-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    min-width: 180px;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    display: block;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: background 0.2s;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

/* Notice Banner */
/* Notice Banner */
.notice-banner {
    margin-top: 64px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    background: rgba(255, 140, 0, 0.05);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
}

.notice-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.notice-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    white-space: nowrap;
}

.notice-separator {
    color: var(--primary);
    font-size: 0.875rem;
    opacity: 0.5;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 80px 0 2rem;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('images/home_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.3), rgba(18, 18, 18, 1));
}

.hero-container {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-title {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 5rem;
}

.hero-title h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title h1 {
        font-size: 3rem;
    }
}

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

@media (min-width: 640px) {
    .text-gradient {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .text-gradient {
        font-size: 3rem;
    }
}

/* Hexagon Button */
.intro-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.intro-button-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 56px;
    filter: drop-shadow(0 4px 12px rgba(255, 143, 28, 0.25));
    transition: filter 0.3s ease;
}

.intro-button-container:hover {
    filter: drop-shadow(0 6px 20px rgba(255, 143, 28, 0.4));
}

.hexagon-border-white,
.hexagon-border-black,
.hexagon-button {
    position: absolute;
    inset: 0;
    clip-path: polygon(2% 0%, 98% 0%, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
}

.hexagon-border-white {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.hexagon-border-black {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(18, 18, 18, 0.98));
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    clip-path: polygon(2.2% 0%, 97.8% 0%, 99.7% 50%, 97.8% 100%, 2.2% 100%, 0.3% 50%);
}

.hexagon-button {
    background: linear-gradient(135deg, hsl(38, 100%, 55%) 0%, hsl(32, 99%, 51%) 50%, hsl(28, 95%, 48%) 100%);
    color: rgba(0, 0, 0, 0.95);
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    clip-path: polygon(2.5% 0%, 97.5% 0%, 99.4% 50%, 97.5% 100%, 2.5% 100%, 0.6% 50%);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .intro-button-container {
        height: 48px;
    }
    
    .hexagon-button {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .intro-button-container {
        height: 52px;
    }
    
    .hexagon-button {
        font-size: 1.375rem;
    }
}

.hexagon-button:hover {
    background: linear-gradient(135deg, hsl(38, 100%, 58%) 0%, hsl(32, 99%, 54%) 50%, hsl(28, 95%, 51%) 100%);
    transform: translateY(-1px);
}

.hexagon-button:active {
    transform: translateY(0px);
    transition: transform 0.1s ease;
}

/* Company Card */
.company-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-2px);
}

.company-card-inner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(18, 18, 18, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(255, 143, 28, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.company-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 143, 28, 0.1), transparent);
    transition: left 0.6s ease;
}

.company-card:hover .company-card-inner::before {
    left: 100%;
}
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 138, 0, 0.2);
    display: flex;
    gap: 0.75rem;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 143, 28, 0.3), rgba(255, 143, 28, 0.1));
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
    border: 1px solid rgba(255, 143, 28, 0.4);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.play-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

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

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

.company-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.6;
}

.spacer {
    flex: 1;
}

/* Price Card */
.price-card {
    max-width: 800px;
    margin: 0 auto;
}

.price-card-button {
    width: 100%;
    padding: 1.75rem 3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), hsl(32, 99%, 45%));
    border: none;
    color: white;
    font-size: 1.375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 76px;
    box-shadow: 0 4px 16px rgba(255, 143, 28, 0.3);
}

.price-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 143, 28, 0.4);
}

.price-card-button:active {
    transform: translateY(0);
}

.price-card-button svg {
    transition: transform 0.3s ease;
}

.price-card-button:hover svg {
    transform: translateX(4px);
}

.price-token {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.price-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-equals {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.price-currency {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.price-change-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-change {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
}

.price-change.positive {
    color: #10b981;
}

.price-change.positive svg {
    color: #10b981;
}

.price-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.price-change.negative svg {
    transform: rotate(180deg);
    color: #ef4444;
}

.price-time {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.price-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
}

.price-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 143, 28, 0.2), rgba(255, 143, 28, 0.05));
    border: 2px solid rgba(255, 143, 28, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-card-icon svg {
    stroke: var(--primary);
}

.price-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
}

.price-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
    max-width: 280px;
}

.price-card-button {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), hsl(32, 99%, 45%));
    border: none;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    box-shadow: 0 4px 12px rgba(255, 143, 28, 0.3);
}

.price-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 28, 0.4);
}

.price-card-button:active {
    transform: translateY(0);
}

.price-card-button svg {
    transition: transform 0.3s ease;
}

.price-card-button:hover svg {
    transform: translateX(4px);
}

/* Platform Value Section */
.platform-value {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.orange-blur-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 60px;
    left: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 28, 0.35) 0%, rgba(255, 143, 28, 0.15) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

.orange-blur-circle-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 60px;
    right: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 143, 28, 0.3) 0%, rgba(255, 143, 28, 0.12) 40%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(32, 99%, 51%), hsl(32, 99%, 45%));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 143, 28, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 143, 28, 0.4);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-title-sub {
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Feature Cards */
.feature-cards {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.feature-card-large {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.feature-card-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 143, 28, 0.15), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 143, 28, 0.1), transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-large:hover::before {
    opacity: 1;
}

.feature-card-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 143, 28, 0.25);
}

.card-gradient-border {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 143, 28, 0.8), rgba(255, 143, 28, 0.5), rgba(255, 143, 28, 0.8));
    border-radius: 1.25rem;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.card-gradient-inner {
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.95)),
                linear-gradient(180deg, transparent, rgba(255, 143, 28, 0.03));
    border-radius: 1.25rem;
}

.card-gradient-inner-alt {
    position: absolute;
    inset: 1px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 1), rgba(26, 26, 26, 1), rgba(26, 26, 26, 0.95));
    border-radius: 1rem;
}

.card-content-large {
    position: relative;
    padding: 1.25rem;
    min-height: 140px;
}

.card-bg-image {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 112px;
    height: 112px;
    opacity: 0.8;
}

.card-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-text-large {
    position: relative;
    z-index: 10;
    max-width: 60%;
}

.card-text-large h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text-large p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Two Column Cards */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.feature-card-small {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 280px;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 143, 28, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card-small::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 143, 28, 0.05), transparent, rgba(255, 143, 28, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-small:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 143, 28, 0.3);
    border-color: rgba(255, 143, 28, 0.5);
}

.feature-card-small:hover::before {
    opacity: 1;
}

.card-bg-1 {
    background-image: url('images/card_background.png');
}

.card-bg-2 {
    background-image: url('images/card_background2.png');
}

.card-content-small {
    position: relative;
    z-index: 10;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    transition: transform 0.4s ease;
}

.feature-card-small:hover .card-content-small {
    transform: translateY(-4px);
}

.card-content-small h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.feature-card-small:hover .card-content-small h3 {
    color: hsl(32, 99%, 51%);
    text-shadow: 0 2px 12px rgba(255, 143, 28, 0.6);
}

.card-content-small p {
    color: var(--muted-foreground);
    font-size: 0.7rem;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 10;
}

.benefit-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9));
    border: 1px solid rgba(255, 143, 28, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 143, 28, 0.08), transparent, rgba(255, 143, 28, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 143, 28, 0.4);
    box-shadow: 0 12px 35px rgba(255, 143, 28, 0.25);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card-content {
    position: relative;
    padding: 1.25rem;
    padding-top: 1.5rem;
    z-index: 2;
}

.benefit-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.08) translateY(-4px);
}

.benefit-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 143, 28, 0.3));
    transition: filter 0.4s ease;
}

.benefit-card:hover .benefit-image img {
    filter: drop-shadow(0 6px 20px rgba(255, 143, 28, 0.5));
}

.benefit-text h3 {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-text h3 {
    color: hsl(32, 99%, 51%);
}
    margin-bottom: 1rem;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.75rem;
}

.bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.scarcity-text {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    line-height: 1.6;
}

/* Icon Features */
.icon-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.icon-feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(18, 18, 18, 0.8));
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 143, 28, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 143, 28, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.icon-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 143, 28, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.95));
    box-shadow: 0 12px 30px rgba(255, 143, 28, 0.2);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(255, 143, 28, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.icon-feature:hover .feature-icon {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 6px 20px rgba(255, 143, 28, 0.5));
}

.icon-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.icon-feature:hover h4 {
    color: hsl(32, 99%, 51%);
}

.icon-feature p {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

.contact-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Language Bottom Sheet */
.language-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-sheet-overlay.show {
    opacity: 1;
    visibility: visible;
}

.language-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-radius: 1.5rem 1.5rem 0 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-overflow-scrolling: touch;
}

.language-sheet.show {
    transform: translateY(0);
}

.language-sheet-content {
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.language-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.language-sheet-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--foreground);
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    min-height: 52px;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.language-option:active {
    background: rgba(255, 255, 255, 0.1);
}

.language-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.language-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary);
}

.language-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.language-text {
    color: var(--foreground);
    font-size: 1rem;
    flex: 1;
}

.language-option input[type="radio"]:checked ~ .language-text {
    color: var(--primary);
    font-weight: 500;
}

/* Responsive Design */

/* Tablet and Desktop */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icon-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Header Mobile */
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Notice Banner Mobile */
    .notice-banner {
        margin-top: 52px;
        padding: 0.5rem 0;
    }
    
    .notice-icon {
        width: 16px;
        height: 16px;
    }
    
    .notice-text {
        font-size: 0.8125rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 1rem 0 2rem;
    }
    
    .hero-container {
        padding-top: 5rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        margin-bottom: 2rem;
    }
    
    .hero-title h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .text-gradient {
        font-size: 1.75rem;
    }
    
    /* Company Intro Button Mobile */
    .intro-button-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .hexagon-button {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    /* Company Card Mobile */
    .company-card {
        padding: 1rem;
    }
    
    .company-description {
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    
    .play-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.75rem;
    }
    
    /* Price Card Mobile */
    .price-card {
        max-width: 100%;
    }
    
    .price-card-inner {
        padding: 1.25rem;
    }
    
    .price-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .price-token {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .price-currency {
        font-size: 1rem;
    }
    
    .price-card-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 14px;
        gap: 0.75rem;
    }
    
    /* Platform Value Mobile */
    .platform-value {
        padding: 2rem 0;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .feature-cards {
        gap: 1rem;
    }
    
    .feature-card-large {
        min-height: 200px;
        padding: 1.25rem;
    }
    
    .card-text-large h3 {
        font-size: 1.125rem;
    }
    
    .card-text-large p {
        font-size: 0.8125rem;
    }
    
    .feature-card-small {
        min-height: 140px;
        padding: 1rem;
    }
    
    .card-content-small h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-content-small p {
        font-size: 0.8125rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-us {
        padding: 2rem 0;
    }
    
    .section-title-sub {
        font-size: 1.125rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-image {
        margin-bottom: 1rem;
    }
    
    .benefit-image img {
        max-width: 120px;
    }
    
    .benefit-text h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .scarcity-text {
        font-size: 0.875rem;
    }
    
    .icon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .icon-feature {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .icon-feature h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .icon-feature p {
        font-size: 0.8125rem;
    }
    
    /* Language Sheet Mobile */
    .language-sheet {
        max-height: 70vh;
    }
    
    .language-sheet-content {
        padding: 1rem;
    }
    
    .language-option {
        padding: 0.875rem;
    }
}

/* Small Mobile (iPhone SE, small Android phones) */
@media (max-width: 375px) {
    .hero-title h1 {
        font-size: 1.5rem;
    }
    
    .text-gradient {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .feature-card-large {
        min-height: 180px;
    }
    
    .card-text-large h3 {
        font-size: 1rem;
    }
}

/* Large Tablet (iPad, etc.) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-cards {
        gap: 1.5rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn-icon {
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .hexagon-button {
        min-height: 44px;
    }
    
    .price-card-button {
        min-height: 44px;
    }
    
    .language-option {
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .price-card:hover {
        transform: none;
    }
    
    .feature-card-large:hover,
    .feature-card-small:hover,
    .benefit-card:hover,
    .icon-feature:hover {
        transform: none;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-container {
        padding-top: 4rem;
    }
    
    .hero-title h1 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .language-sheet,
    .language-sheet-overlay {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
