/* ========================= */
/* CSS RESET & BASE */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0B0B0F;
    color: #FFFFFF;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

/* ========================= */
/* CSS VARIABLES */
/* ========================= */
:root {
    --header-h: 72px;
    --hero-padding-top: calc(var(--header-h) + 48px);
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
}

/* ========================= */
/* APPLE-STYLE HEADER */
/* ========================= */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    background-color: rgba(11, 11, 15, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-top: var(--safe-area-inset-top);
}

.app-header.header-scrolled {
    background-color: rgba(11, 11, 15, 0.98);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================= */
/* HEADER LOGO */
/* ========================= */
.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    z-index: 1001;
    height: 40px;
}

.logo-image {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-logo:hover .logo-image {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ========================= */
/* DESKTOP NAVIGATION */
/* ========================= */
.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #B8B8C5;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.2px;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFFFFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ========================= */
/* ENHANCED DROPDOWN MENUS */
/* ========================= */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    min-width: 220px;
    z-index: 1001;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-list {
    background: #1A1A24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    list-style: none;
    margin: 0;
    overflow: hidden;
}

.dropdown-link {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: #B8B8C5;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: rgba(109, 40, 217, 0.1);
    color: #FFFFFF;
    border-left-color: #6D28D9;
}

/* ========================= */
/* HEADER ACTIONS - PREMIUM BURGER MENU */
/* ========================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-login {
    text-decoration: none;
    background-color: #6D28D9;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-login:hover {
    background-color: #5b21b6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

/* Premium Burger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-toggle:hover {
    background: rgba(109, 40, 217, 0.1);
    border-color: rgba(109, 40, 217, 0.2);
    transform: translateY(-1px);
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-radius: 1px;
    margin: 3px 0;
}

.mobile-menu-toggle.active {
    background: rgba(109, 40, 217, 0.15);
    border-color: rgba(109, 40, 217, 0.3);
}

.mobile-menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================= */
/* FULL-SCREEN HERO - FIXED FOR MOBILE */
/* ========================= */
.fullscreen-hero {
    position: relative;
    min-height: 100svh; /* FIX: Use svh for better mobile support */
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: var(--hero-padding-top);
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mobile-bg {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0.7) 0%, rgba(11, 11, 15, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 32px;
    margin: auto;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.content-container {
    max-width: 720px;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-align: left;
}

.title-line {
    display: block;
}

.accent-line {
    position: relative;
}

.accent-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, #6D28D9, transparent);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #B8B8C5;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    text-align: left;
}

/* ========================= */
/* HERO ACTIONS - FIXED FOR MOBILE */
/* ========================= */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Desktop button styles (unchanged) */
.btn-hero-cta,
.btn-hero-cta-secondary {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #6D28D9;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

/* ========================= */
/* TRUST ROW - HIDDEN ON MOBILE */
/* ========================= */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: rgba(109, 40, 217, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D28D9;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.9375rem;
    color: #B8B8C5;
    font-weight: 500;
}

.trust-divider {
    color: rgba(184, 184, 197, 0.3);
    font-size: 1.125rem;
}

/* ========================= */
/* ENHANCED SCROLL TO EXPLORE - VISIBLE & PREMIUM */
/* ========================= */
.scroll-explore-section {
    width: 100%;
    padding: 0 32px;
    margin-top: auto;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.explore-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.enhanced-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.scroll-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(109, 40, 217, 0.3) 20%, 
        rgba(109, 40, 217, 0.8) 50%,
        rgba(109, 40, 217, 0.3) 80%,
        transparent 100%);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #6D28D9;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(109, 40, 217, 0.8);
    animation: scrollDot 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-text {
    font-size: 0.875rem;
    color: #B8B8C5;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ========================= */
/* NFC SOLUTIONS SECTION */
/* ========================= */
.nfc-solutions-section {
    background-color: #0B0B0F;
    padding: 120px 0;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6D28D9;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(109, 40, 217, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #B8B8C5;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* NFC Grid - Fixed Layout */
.nfc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

/* NFC Cards */
.nfc-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    aspect-ratio: 4/3;
}

.nfc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(109, 40, 217, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(109, 40, 217, 0.1);
}

.nfc-card--image {
    background: transparent;
    display: flex;
    align-items: flex-end;
}

.nfc-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nfc-card--image .card-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.card-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(11, 11, 15, 0.35);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.card-discover i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.nfc-card:hover .card-discover {
    border-color: rgba(109, 40, 217, 0.45);
    background: rgba(109, 40, 217, 0.2);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.nfc-card:hover .card-discover i {
    transform: translateX(3px);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================= */
/* BEYOND NFC SECTION */
/* ========================= */
.beyond-nfc-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.beyond-nfc-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0F 0%, #1a0b2e 100%);
    z-index: 0;
}

.beyond-nfc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(109, 40, 217, 0.1) 0%, 
        rgba(11, 11, 15, 0.95) 100%);
    z-index: 1;
}

.beyond-nfc-section .section-container {
    position: relative;
    z-index: 2;
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.beyond-card {
    background: rgba(31, 31, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.beyond-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(109, 40, 217, 0.1) 0%, 
        rgba(109, 40, 217, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.beyond-card:hover {
    transform: translateY(-8px);
    border-color: rgba(109, 40, 217, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(109, 40, 217, 0.1);
}

.beyond-card:hover::before {
    opacity: 1;
}

.beyond-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.beyond-card:hover .beyond-card-icon {
    background: rgba(109, 40, 217, 0.1);
    border-color: rgba(109, 40, 217, 0.3);
    color: #6D28D9;
}

.beyond-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.beyond-card-description {
    font-size: 1rem;
    color: #B8B8C5;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.beyond-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #8B5CF6;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.beyond-card-link:hover {
    gap: 12px;
    color: #FFFFFF;
}

.beyond-card-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.beyond-card-link:hover i {
    transform: translateX(4px);
}

/* ========================= */
/* TRUSTED BY SECTION */
/* ========================= */
.trusted-by-section {
    background-color: #0B0B0F;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.trusted-by-section .section-container.compact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.trusted-by-section .section-header.compact {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-by-section .section-title.compact {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.trusted-by-section .section-subtitle.compact {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #8B8B9E;
    line-height: 1.5;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Logo Marquee */
.logo-marquee-compact {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
}

.fade-mask {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(90deg, #0B0B0F 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #0B0B0F 100%);
}

.marquee-track-compact {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.marquee-row-compact {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    height: 100%;
    padding: 0;
}

.marquee-row-left {
    animation: marquee-left-fast 25s linear infinite;
}

.logo-item-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 100%;
    min-width: 120px;
}

.brand-logo-compact {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item-compact:hover .brand-logo-compact {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes marquee-left-fast {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================= */
/* TESTIMONIALS SECTION */
/* ========================= */
.testimonials-section {
    background-color: #0B0B0F;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(109, 40, 217, 0.3), 
        transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(31, 31, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #1F1F2A;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(109, 40, 217, 0) 0%, 
        rgba(109, 40, 217, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(109, 40, 217, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(109, 40, 217, 0.1),
        0 0 30px rgba(109, 40, 217, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    margin-bottom: 32px;
    flex-grow: 1;
}

.testimonial-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #E0E0E8;
    font-weight: 400;
    font-style: italic;
    quotes: "「" "」";
}

.testimonial-text p::before {
    content: open-quote;
    color: #6D28D9;
    font-size: 2.5rem;
    line-height: 0;
    margin-right: 8px;
    vertical-align: -0.4em;
}

.testimonial-text p::after {
    content: close-quote;
    color: #6D28D9;
    font-size: 2.5rem;
    line-height: 0;
    margin-left: 4px;
    vertical-align: -0.4em;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.1);
    border: 1px solid rgba(109, 40, 217, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D28D9;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.client-details {
    flex-grow: 1;
}

.client-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.3;
}

.client-role {
    font-size: 0.9375rem;
    color: #8B8B9E;
    line-height: 1.4;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-top: auto;
}

.star-rating i {
    color: #6D28D9;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========================= */
/* ABOUT SUPPORT SECTION */
/* ========================= */
.about-support-section {
    background-color: #0B0B0F;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(109, 40, 217, 0.3), 
        transparent);
}

.about-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-column {
    position: relative;
}

.about-preview {
    position: sticky;
    top: 100px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8B8C5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #B8B8C5;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-tagline {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.about-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, #6D28D9, transparent);
}

.tagline-text {
    font-size: 0.875rem;
    color: #8B5CF6;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.support-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-card {
    background: rgba(31, 31, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #1F1F2A;
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(109, 40, 217, 0) 0%, 
        rgba(109, 40, 217, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(109, 40, 217, 0.4);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(109, 40, 217, 0.1),
        0 0 20px rgba(109, 40, 217, 0.08);
}

.support-card:hover::before {
    opacity: 1;
}

.support-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.support-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(109, 40, 217, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #6D28D9;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.support-card:hover .support-card-icon {
    background: rgba(109, 40, 217, 0.15);
    transform: scale(1.05);
}

.support-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
    line-height: 1.3;
}

.support-card-description {
    font-size: 0.9375rem;
    color: #B8B8C5;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.support-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #6D28D9;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
    width: fit-content;
}

.support-card-link:hover {
    gap: 10px;
    color: #8B5CF6;
}

.support-card-link i {
    font-size: 0.8125rem;
    transition: transform 0.2s ease;
}

.support-card-link:hover i {
    transform: translateX(3px);
}

/* ========================= */
/* VALUE STRIP */
/* ========================= */
.value-strip-section {
    background-color: #E9ECEF;
    padding: 48px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.value-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 0 32px;
    min-height: 72px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(109, 40, 217, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D28D9;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: rgba(109, 40, 217, 0.12);
    transform: scale(1.05);
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B0B0F;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.value-description {
    font-size: 0.875rem;
    color: #4A5568;
    line-height: 1.4;
    font-weight: 400;
    max-width: 240px;
}

.value-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* ========================= */
/* MOBILE NAVIGATION */
/* ========================= */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: var(--safe-area-inset-top);
    padding-bottom: var(--safe-area-inset-bottom);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    flex-shrink: 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.mobile-logo-image {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.mobile-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-close:hover {
    background: rgba(109, 40, 217, 0.1);
    border-color: rgba(109, 40, 217, 0.2);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-item.has-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    color: #B8B8C5;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
    color: #FFFFFF;
}

.mobile-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 20px;
}

.mobile-dropdown-toggle.active + .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    text-decoration: none;
    color: #B8B8C5;
    font-size: 0.9375rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-dropdown-link:last-child {
    border-bottom: none;
}

.mobile-dropdown-link:hover,
.mobile-dropdown-link:focus {
    color: #6D28D9;
    padding-left: 8px;
}

.mobile-dropdown-link i {
    width: 20px;
    font-size: 0.875rem;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    text-decoration: none;
    color: #B8B8C5;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

.btn-login-mobile {
    color: #6D28D9 !important;
    font-weight: 600 !important;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ========================= */
/* FOOTER SECTION */
/* ========================= */
.footer-section {
    background-color: #07070A;
    border-top: 1px solid #1F1F2A;
    padding: 80px 0 32px 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(109, 40, 217, 0.3), 
        transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.brand-column {
    max-width: 300px;
}

.footer-logo-wrapper {
    margin-bottom: 24px;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    height: 40px;
}

.footer-logo-image {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #8B8B9E;
    font-weight: 400;
    margin: 0;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    text-decoration: none;
    color: #B8B8C5;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
    display: inline-block;
    width: fit-content;
}

.footer-link:hover {
    color: #8B5CF6;
    transform: translateX(4px);
}

.newsletter-column {
    max-width: 300px;
}

.newsletter-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #B8B8C5;
    margin-bottom: 24px;
}

.newsletter-form {
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(31, 31, 42, 0.6);
    border: 1px solid #1F1F2A;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #6C7280;
}

.newsletter-input:focus {
    border-color: rgba(109, 40, 217, 0.6);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.newsletter-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 36px;
    height: 36px;
    background: #6D28D9;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #5b21b6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

.form-message {
    min-height: 20px;
    margin: 8px 0 12px 0;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.form-message.success {
    color: #22C55E;
}

.form-message.error {
    color: #EF4444;
}

.newsletter-help {
    font-size: 0.75rem;
    color: #6C7280;
    margin: 0;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 24px;
}

.copyright {
    font-size: 0.875rem;
    color: #8B8B9E;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(31, 31, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8B8C5;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(109, 40, 217, 0.1);
    border-color: rgba(109, 40, 217, 0.3);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-link {
    font-size: 0.875rem;
    color: #8B8B9E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FFFFFF;
}

.legal-separator {
    color: #4B5563;
    font-size: 0.75rem;
}

/* ========================= */
/* NFC CARD BACKGROUND IMAGES */
/* ========================= */
.nfc-card[data-bg]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.55s ease;
}

.nfc-card[data-bg]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top,
            rgba(11, 11, 15, 0.88) 0%,
            rgba(11, 11, 15, 0.45) 55%,
            rgba(11, 11, 15, 0.10) 100%
        ),
        radial-gradient(circle at 70% 20%,
            rgba(109, 40, 217, 0.12) 0%,
            rgba(0, 0, 0, 0) 55%
        );
    opacity: 1;
    transition: opacity 0.35s ease, background 0.35s ease;
}

.nfc-card[data-bg]:hover::before {
    transform: scale(1.08);
}

.nfc-card[data-bg]:hover::after {
    background:
        linear-gradient(to top,
            rgba(11, 11, 15, 0.94) 0%,
            rgba(11, 11, 15, 0.55) 55%,
            rgba(11, 11, 15, 0.14) 100%
        ),
        radial-gradient(circle at 70% 20%,
            rgba(109, 40, 217, 0.16) 0%,
            rgba(0, 0, 0, 0) 55%
        );
}

/* ========================= */
/* RESPONSIVE DESIGN - MOBILE FIXES */
/* ========================= */

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nfc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .beyond-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .about-support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-preview {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .brand-column {
        max-width: none;
    }
    
    .newsletter-column {
        max-width: none;
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
    /* Mobile Hero Layout Fixes */
    .fullscreen-hero {
        min-height: 100svh;
        padding-top: calc(var(--header-h) + 32px);
    }
    
    .hero-content {
        padding: 0 24px;
        text-align: left; /* Left align on mobile */
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: left; /* Left align on mobile */
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
        text-align: left; /* Left align on mobile */
    }
    
    /* Mobile CTA Button Fixes */
    .hero-actions {
        flex-direction: column;
        align-items: flex-start; /* Align to left on mobile */
        gap: 12px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .btn-hero-cta,
    .btn-hero-cta-secondary {
        width: auto;
        max-width: 320px;
        padding: 14px 28px;
        font-size: 1rem;
        justify-content: center;
        margin: 0;
    }
    
    /* Hide Trust Row on Mobile */
    .trust-row {
        display: none;
    }
    
    /* Mobile Background Image */
    .desktop-bg {
        display: none;
    }
    
    .mobile-bg {
        display: block;
    }
    
    /* Premium Burger Menu - Mobile Size */
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .menu-line {
        width: 20px;
        height: 2px;
        margin: 2.5px 0;
    }
    
    .mobile-menu-toggle.active .menu-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .menu-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Enhanced Scroll to Explore - Mobile */
    .scroll-explore-section {
        margin-bottom: 40px;
        padding: 0 24px;
    }
    
    .scroll-line {
        width: 2px;
        height: 60px;
    }
    
    .scroll-dot {
        width: 8px;
        height: 8px;
        animation: scrollDot 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 6px 12px;
    }
    
    .btn {
        width: auto;
    }
    
    .btn-login {
        display: none;
    }
    
    /* NFC Solutions Section Mobile */
    .nfc-solutions-section {
        padding: 80px 0;
    }
    
    .nfc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .nfc-card {
        min-height: 280px;
        aspect-ratio: 4/3;
    }
    
    .nfc-card-content {
        padding: 28px 24px;
    }
    
    .nfc-card--image .card-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Beyond NFC Section Mobile */
    .beyond-nfc-section {
        padding: 80px 0;
    }
    
    .beyond-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .beyond-card {
        padding: 32px 24px;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    /* About Support Section Mobile */
    .about-support-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .support-column {
        gap: 20px;
    }
    
    .support-card {
        padding: 28px 20px;
        min-height: 180px;
    }
    
    /* Value Strip Mobile */
    .value-strip-section {
        padding: 40px 0;
    }
    
    .value-strip-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 0 16px;
        gap: 16px;
    }
    
    .value-divider {
        display: none;
    }
    
    .value-content {
        width: 100%;
    }
    
    .value-description {
        max-width: none;
    }
    
    /* Trusted By Section Mobile */
    .trusted-by-section {
        padding: 60px 0 40px 0;
    }
    
    .logo-marquee-compact {
        height: 80px;
    }
    
    .fade-mask {
        width: 60px;
    }
    
    /* Mobile Navigation */
    .mobile-nav {
        padding: 24px;
    }
    
    .mobile-nav-header {
        padding-bottom: 24px;
        margin-bottom: 32px;
    }
    
    .mobile-close {
        width: 40px;
        height: 40px;
    }
    
    /* Footer Mobile */
    .footer-section {
        padding: 60px 0 24px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-column {
        grid-column: span 1;
    }
    
    .footer-title {
        margin-bottom: 20px;
        font-size: 0.875rem;
    }
    
    .footer-logo-wrapper {
        margin-bottom: 20px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .legal-link {
        font-size: 0.75rem;
    }
    
    /* Section paddings */
    .section-container {
        padding: 0 24px;
    }
    
    /* Mobile Overlay Opacity Fix */
    .hero-overlay {
        background: linear-gradient(180deg, rgba(11, 11, 15, 0.6) 0%, rgba(11, 11, 15, 0.75) 100%);
    }
    
    /* Header container mobile padding */
    .header-container {
        padding: 0 20px;
    }
}

/* Small Mobile: Below 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title.compact {
        font-size: 1.5rem;
    }
    
    .btn-hero-cta,
    .btn-hero-cta-secondary {
        padding: 14px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Even more visible scroll indicator on small mobile */
    .scroll-explore-section {
        margin-bottom: 30px;
    }
    
    .scroll-line {
        height: 50px;
    }
    
    .scroll-dot {
        width: 10px;
        height: 10px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 5px 10px;
    }
    
    .mobile-nav {
        padding: 20px;
    }
    
    .mobile-nav-header {
        padding-bottom: 20px;
        margin-bottom: 28px;
    }
    
    .value-strip-container {
        padding: 0 16px;
        gap: 28px;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .value-title {
        font-size: 1rem;
    }
    
    .value-description {
        font-size: 0.75rem;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .section-container {
        padding: 0 16px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
}

/* Touch device adjustments */
@media (hover: none) {
    .brand-logo-compact {
        filter: grayscale(80%);
        opacity: 0.6;
    }
    
    /* Remove hover effects on mobile */
    .nfc-card:hover {
        transform: none;
    }
    
    .beyond-card:hover {
        transform: none;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .support-card:hover {
        transform: none;
    }
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
        box-shadow: 0 0 0 rgba(109, 40, 217, 0);
    }
    20% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(109, 40, 217, 0.8);
    }
    80% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(109, 40, 217, 0.8);
    }
    100% {
        transform: translateX(-50%) translateY(80px);
        opacity: 0;
        box-shadow: 0 0 0 rgba(109, 40, 217, 0);
    }
}

/* Enhanced scroll dot animation for mobile */
@media (max-width: 767px) {
    @keyframes scrollDot {
        0% {
            transform: translateX(-50%) translateY(0);
            opacity: 0;
            box-shadow: 0 0 0 rgba(109, 40, 217, 0);
        }
        20% {
            opacity: 1;
            box-shadow: 0 0 8px rgba(109, 40, 217, 0.8);
        }
        80% {
            opacity: 1;
            box-shadow: 0 0 8px rgba(109, 40, 217, 0.8);
        }
        100% {
            transform: translateX(-50%) translateY(60px);
            opacity: 0;
            box-shadow: 0 0 0 rgba(109, 40, 217, 0);
        }
    }
}

/* ========================= */
/* ACCESSIBILITY */
/* ========================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid #6D28D9;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: #6D28D9;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 0;
}