/* ===== VARIABLES CSS ===== */
:root {
    --primary: #232cff;
    --primary-dark: #1a21cc;
    --primary-light: #4a55ff;
    --accent: #ff4081;
    --accent-light: #ff6b9d;
    --dark: #0a0e27;
    --dark-soft: #1a1f3a;
    --light: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-700: #4a5568;
    --gray-900: #1a202c;
    
    --gradient-primary: linear-gradient(135deg, #232cff 0%, #4a55ff 100%);
    --gradient-accent: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    --gradient-mesh: radial-gradient(at 27% 37%, hsla(215, 98%, 61%, 0.3) 0px, transparent 50%),
                     radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.2) 0px, transparent 50%),
                     radial-gradient(at 52% 99%, hsla(354, 98%, 61%, 0.3) 0px, transparent 50%),
                     radial-gradient(at 10% 29%, hsla(256, 96%, 67%, 0.3) 0px, transparent 50%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--light);
    overflow-x: hidden;
    position: relative;
}

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

/* Ensure all images are responsive */
img[src*="logo"],
img[src*="badge"] {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #232cff 0%, #4a55ff 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
    bottom: -50px;
    left: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #232cff 0%, #ff4081 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.logo img {
    display: block;
    height: 30px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(35, 44, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 44, 255, 0.4);
}

.btn-secondary {
    background: rgba(35, 44, 255, 0.1);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(35, 44, 255, 0.15);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(35, 44, 255, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(35, 44, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

.phone-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1f3a, #0a0e27);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--light);
    border-radius: 30px;
    overflow: hidden;
}

.screen-header {
    padding: 1rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.screen-content {
    padding: 1.5rem;
}

.dashboard-card {
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 16px;
    color: var(--light);
    margin-bottom: 1rem;
    animation: slideInUp 0.5s ease-out backwards;
}

.card-1 {
    animation-delay: 0.5s;
}

.card-2 {
    animation-delay: 0.7s;
    background: var(--gradient-accent);
}

.card-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-trend {
    font-size: 0.875rem;
    opacity: 0.9;
}

.chart-area {
    margin-top: 1rem;
    animation: slideInUp 0.5s ease-out 0.9s backwards;
}

.mini-chart {
    width: 100%;
    height: auto;
}

/* ===== FLOATING CARDS ===== */
.floating-card {
    position: absolute;
    background: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
}

.card-notification {
    top: 50px;
    right: -30px;
    animation-delay: 0s;
}

.card-qr {
    bottom: 100px;
    left: -50px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.notification-icon,
.qr-icon {
    font-size: 1.5rem;
}

.notification-content,
.qr-content {
    font-size: 0.875rem;
}

.notification-title,
.qr-title {
    font-weight: 600;
    color: var(--dark);
}

.notification-text,
.qr-status {
    color: var(--gray-700);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* ===== SECTIONS ===== */
section {
    padding: 6rem 2rem;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(35, 44, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--light);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-700);
}

/* ===== PAIN POINTS ===== */
.pain-points {
    background: var(--gray-50);
}

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

.pain-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.pain-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== SOLUTION ===== */
.solution {
    background: var(--light);
    padding: 4rem 2rem;
}

/* ===== FEATURES ===== */
.features {
    background: var(--light);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-content {
    order: 2;
}

.feature-row.reverse .feature-visual {
    order: 1;
}

.feature-content {
    padding: 2rem 0;
}

.feature-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--gray-900);
}

/* ===== FEATURE MOCKUPS ===== */
.feature-mockup {
    background: var(--light);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.feature-mockup.members {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.member-count {
    background: var(--gradient-primary);
    color: var(--light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

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

.member-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.member-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.member-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
    font-size: 1.125rem;
}

.member-info {
    flex: 1;
}

.member-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.member-status {
    font-size: 0.875rem;
}

.member-status.active {
    color: #10b981;
}

.member-status.warning {
    color: #f59e0b;
}

/* ===== QR SCANNER ===== */
.feature-mockup.qr {
    background: var(--dark);
    color: var(--light);
}

.qr-scanner {
    text-align: center;
}

.scan-frame {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary);
}

.scan-corner.tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.scan-corner.tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.scan-corner.bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.scan-corner.br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.scan-line {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        top: 10%;
    }
    100% {
        top: 90%;
    }
}

.qr-code {
    width: 120px;
    height: 120px;
    background: var(--light);
    border-radius: 8px;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, #000 50%, transparent 50%),
        linear-gradient(90deg, #000 50%, transparent 50%);
    background-size: 10px 10px;
    opacity: 0.8;
}

.scan-status {
    margin-top: 1rem;
}

.status-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.status-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.status-name {
    color: var(--gray-300);
}

/* ===== REVENUE MOCKUP ===== */
.feature-mockup.revenue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--light);
}

.revenue-header {
    font-weight: 600;
    margin-bottom: 2rem;
}

.revenue-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.revenue-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trend-up {
    color: #10b981;
    font-weight: 700;
}

.revenue-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    margin-bottom: 2rem;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px 4px 0 0;
    animation: growBar 1s ease-out backwards;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }

.revenue-breakdown {
    display: flex;
    gap: 2rem;
}

.breakdown-item {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.breakdown-label {
    font-size: 0.875rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 0.5rem;
}

.breakdown-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===== CLOUD MOCKUP ===== */
.feature-mockup.cloud {
    text-align: center;
    padding: 3rem 2rem;
}

.cloud-icon {
    margin-bottom: 2rem;
}

.sync-devices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.device {
    font-size: 3rem;
    animation: devicePulse 2s ease-in-out infinite;
}

.device-phone {
    animation-delay: 0s;
}

.device-tablet {
    animation-delay: 1s;
}

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

.sync-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow {
    width: 40px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    animation: arrowMove 1.5s ease-in-out infinite;
}

.arrow-1 {
    transform: rotate(-45deg);
    animation-delay: 0s;
}

.arrow-2 {
    transform: rotate(45deg);
    animation-delay: 0.75s;
}

@keyframes arrowMove {
    0%, 100% {
        opacity: 0;
        transform: translateX(-20px) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: translateX(0) rotate(-45deg);
    }
}

.cloud-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--gradient-dark);
    color: var(--light);
}

.benefits .section-header h2 {
    color: var(--light);
}

.benefits .section-header p {
    color: var(--gray-300);
}

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

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-stat {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-300);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--gray-50);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-300);
    background: var(--light);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: var(--light);
    border-color: transparent;
}

.save-badge {
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--light);
}

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

.pricing-card {
    background: var(--light);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.premium {
    background: var(--gradient-primary);
    color: var(--light);
    border-color: transparent;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    opacity: 0.8;
}

.pricing-card.premium .pricing-header p {
    color: var(--light);
}

.pricing-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
}

.pricing-card.premium .price {
    color: var(--light);
}

.period {
    font-size: 1.125rem;
    opacity: 0.7;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card.premium .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* ===== FAQ ===== */
.faq {
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===== PRIVACY POLICY ===== */
.privacy-policy {
    background: var(--light);
    padding: 6rem 2rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.privacy-date {
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.privacy-content > p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.privacy-content li {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.privacy-content a:hover {
    color: var(--primary-dark);
}

/* ===== CTA ===== */
.cta {
    background: var(--gradient-primary);
    color: var(--light);
    padding: 6rem 2rem;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.app-download p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-badge {
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
    background: #000;
    padding: 1rem 1.75rem 1rem 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    width: 100%;
    max-width: 200px;
    height: 100%;
    max-height: 60px;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge img {
    height: 40px;
    margin-right: auto;
}

.store-badge h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
}


/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    height: 35px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===== MOBILE MENU STYLES ===== */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu.active .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container,
    .nav-container,
    .footer-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-container,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-row.reverse .feature-content,
    .feature-row.reverse .feature-visual {
        order: unset;
    }
    
    .phone-container {
        max-width: 350px;
    }
    
    .floating-card {
        display: none;
    }
    
    .logo img {
        height: 32px;
    }
    
    .footer-logo img {
        height: 28px;
    }
    
    .hero {
        padding: 7rem 1.5rem 5rem;
    }
    
    section {
        padding: 5rem 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .benefits-grid,
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .sync-devices {
        gap: 2rem;
    }
    
    .device {
        font-size: 2.5rem;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .cta {
        padding: 4rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .cta-content > p {
        font-size: 1.125rem;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.premium {
        transform: scale(1);
    }
    
    .pricing-toggle {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo img {
        height: 28px;
    }
    
    .footer-logo img {
        height: 26px;
    }
    
    .benefits-grid,
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.75rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-mockup {
        padding: 1.5rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .phone-container {
        max-width: 300px;
    }
    
    .store-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .store-badge {
        width: 100%;
        max-width: 200px;
    }
    
    .store-badge img {
        width: 100%;
        height: auto;
        max-height: 60px;
    }
    
    .app-download {
        margin-top: 2rem;
    }
    
    .app-download p {
        font-size: 0.875rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
    }
    
    .footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scan-frame {
        width: 200px;
        height: 200px;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    .revenue-amount {
        font-size: 2.5rem;
    }
    
    .revenue-chart {
        height: 80px;
    }
    
    .sync-devices {
        gap: 1.5rem;
    }
    
    .device {
        font-size: 2rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }
    .navbar .logo img {
        height: 20px;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-container {
        max-width: 280px;
    }
    
    .logo img {
        height: 26px;
    }
    
    .footer-logo img {
        height: 24px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .cta {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content > p {
        font-size: 1rem;
    }
    
    .privacy-content h1 {
        font-size: 1.75rem;
    }
    
    .privacy-content h2 {
        font-size: 1.25rem;
    }
    
    .privacy-content {
        padding: 0 0.5rem;
    }
    
    .privacy-content > p,
    .privacy-content li {
        font-size: 0.9375rem;
    }
    
    .pain-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .pain-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .pain-card h3,
    .benefit-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 0.9375rem;
    }
    
    .feature-mockup {
        padding: 1.25rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .benefit-stat {
        font-size: 2.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .store-badge {
        max-width: 160px;
    }
    
    .store-badge img {
        max-height: 40px;
        margin-right: auto;
    }

    .store-badge h4 {
        font-size: 0.75rem;
        
    }
    
    .scan-frame {
        width: 180px;
        height: 180px;
    }
    
    .qr-code {
        width: 90px;
        height: 90px;
    }
    
    .revenue-amount {
        font-size: 2rem;
    }
    
    .revenue-chart {
        height: 60px;
    }
    
    .breakdown-value {
        font-size: 1.25rem;
    }
    
    .sync-devices {
        gap: 1rem;
    }
    
    .device {
        font-size: 1.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9375rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .phone-container {
        max-width: 250px;
    }
    
    .store-badge {
        max-width: 160px;
    }
    
    .store-badge img {
        max-height: 45px;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 1rem 3rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .phone-container {
        max-width: 250px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .scroll-indicator,
    .cta,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    section {
        page-break-inside: avoid;
    }
}