/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #06b6d4;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-3: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

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

.logo-text {
    font-weight: 700;
    color: var(--dark-color);
    white-space: nowrap;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.4rem 1rem;
    background: var(--gradient-1);
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(30, 64, 175, 0.2);
    white-space: nowrap;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35);
}

.btn-nav::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Page Header */
.page-header {
    background: var(--gradient-1);
    padding: 100px 0 50px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.page-header p {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #ffffff 100%);
    color: var(--dark-color);
    padding: 6rem 0 2rem;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15), transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    animation: fadeInUp 1s ease;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features span {
    background: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1.5px solid var(--primary-light);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--gray-color);
    font-weight: 500;
    animation: fadeInUp 1s ease 0.8s both;
    margin-top: 2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease 0.7s both;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 2.5rem 0;
    position: relative;
}

/* About App Section */
.section-about-app {
    background: white;
    padding: 3rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-color);
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0.85rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.95;
    font-weight: 500;
}

/* How It Works Section */
.section-how-it-works {
    background: var(--light-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.step-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-card p {
    color: var(--gray-color);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Who Section */
.section-who {
    background: white;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.who-card {
    background: var(--light-color);
    padding: 1.15rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.who-card:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateX(3px);
    border-left-color: var(--secondary-color);
}

.who-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.who-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--dark-color);
}

.who-card p {
    color: var(--gray-color);
    line-height: 1.5;
    font-size: 0.8rem;
}

.section:nth-child(even) {
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--gray-color);
    max-width: 650px;
    margin: 0 auto;
}

.intro-text {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.intro-text.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.feature-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--dark-color);
    font-size: 0.85rem;
}

.feature-item p {
    color: var(--gray-color);
    font-size: 0.8rem;
}

.why-matters {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea22, #764ba222);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
}

.feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Phone Mockup */
.card-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #1e293b;
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1e293b;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-card-preview {
    background: white;
    width: 90%;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.card-header-preview {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.card-header-preview h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.card-header-preview p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.card-btn {
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 10px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

/* Perfect For / Tags */
.perfect-for {
    text-align: center;
    margin-top: 3rem;
}

.perfect-for strong {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
}

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

.tag {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.event-card-sample {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 350px;
    transition: all 0.3s ease;
}

.event-card-sample:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-2);
}

.event-details {
    padding: 1.5rem;
}

.event-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-details p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.event-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #1d4ed8;
}

/* Voucher Preview */
.voucher-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.voucher-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 300px;
    border: 3px dashed var(--primary-color);
    position: relative;
}

.voucher-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-2);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.voucher-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: var(--light-color);
    margin: 1.5rem auto;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.voucher-code {
    background: var(--light-color);
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Dashboard Features */
.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.dashboard-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.dashboard-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
    color: white;
}

.tagline-text {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--dark-color);
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.why-card p {
    color: var(--gray-color);
}

/* Credits Section */
.section-credits {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.credits-explanation {
    max-width: 1100px;
    margin: 0 auto;
}

.credits-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.credits-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.credit-how-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.credit-how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.credit-how-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

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

.credit-how-card p {
    color: var(--gray-color);
    line-height: 1.6;
    text-align: left;
    font-size: 0.9rem;
}

.credit-usage-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    text-align: left;
}

.credit-usage-list li {
    padding: 0.5rem 0;
    color: var(--gray-color);
}

.credits-benefits {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.credits-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.credit-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.benefit-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

.credit-benefit span:last-child {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Pricing */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-new {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.pricing-card-new.featured-plan {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.pricing-card-new.featured-plan:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-card-new.enterprise {
    border: 2px solid #9333ea;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
}

.pricing-card-new.enterprise .plan-header-new h3,
.pricing-card-new.enterprise .amount-new {
    color: #9333ea;
}

.pricing-card-new.enterprise .plan-features-new li {
    color: var(--dark-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.plan-badge-top {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.plan-badge-top.enterprise-badge {
    background: var(--gradient-1);
}

.plan-header-new {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-header-new h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
}

.price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.amount-new {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period-new {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

.credit-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    border: 2px solid #93c5fd;
}

.credit-highlight.featured-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    border: 2px solid #60a5fa;
}

.credit-highlight.enterprise-highlight {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 2px solid #d8b4fe;
}

.credit-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.credit-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.commission-label {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.plan-features-new {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.plan-features-new li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.85rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
}

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

.btn-get-started {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    margin-top: auto;
}

.pricing-note {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.pricing-note p {
    margin: 1rem 0;
    line-height: 1.8;
    color: var(--gray-color);
}

.pricing-note strong {
    color: var(--dark-color);
}

/* Old Pricing Cards (kept for compatibility) */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    color: var(--gray-color);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-color);
}

.plan-features li.disabled {
    color: var(--gray-color);
    opacity: 0.5;
}

/* Franchise */
.franchise-content {
    max-width: 1100px;
    margin: 0 auto;
}

.franchise-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.franchise-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.franchise-type-card {
    background: white;
    padding: 1.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.franchise-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.featured-franchise {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
}

.franchise-type-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.type-desc {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.franchise-features {
    list-style: none;
    margin: 1.5rem 0;
}

.franchise-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-color);
    color: var(--dark-color);
}

.investment-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.earning-potential {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.earning-potential h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.earning-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.earning-source {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.earning-source h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.earning-source p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.earning-example {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.franchise-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-content > p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #ffffff;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features-mini {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-icon {
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-icon {
    font-size: 1.75rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.btn-text strong {
    font-size: 1.1rem;
}

.btn-text small {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 400;
}

.cta-trust {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #ffffff !important;
}

/* Contact Section */
.section-contact {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
}

.form-notice {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Footer */
/* Vendor Advertising Section */
.section-vendor-ads {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 5rem 0;
}

.vendor-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vendor-badge {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vendor-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vendor-text > p {
    font-size: 1.15rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.vendor-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.vendor-benefit {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vendor-benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--dark-color);
}

.vendor-benefit p {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.5;
}

.vendor-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vendor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Footer Redesign */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-download {
    margin-top: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.85rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-icon {
        font-size: 1.4rem;
    }

    .content-grid {
        gap: 2rem;
    }

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

    .app-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 0 1.5rem;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .hero-features span {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .section {
        padding: 1.75rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.15rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

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

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

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

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

    .app-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .stat-card {
        padding: 0.75rem 0.6rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero Section - Stack on mobile */
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero-text {
        order: 1;
    }

    .hero-app-mockup {
        order: 2;
    }

    .hero-title {
        font-size: 1.85rem;
        text-align: center !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center !important;
    }

    .hero-features {
        justify-content: center !important;
    }

    .hero-tagline {
        text-align: center !important;
    }

    .app-benefits {
        text-align: center !important;
    }

    .app-benefits h3 {
        text-align: center !important;
    }

    .hero-cta {
        justify-content: center !important;
    }

    .section {
        padding: 2rem 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-icon {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

    /* Vendor Section Mobile */
    .vendor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vendor-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vendor-text h2 {
        font-size: 1.75rem;
    }

    .vendor-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .pricing-card-new.featured-plan {
        transform: scale(1);
    }

    .pricing-card-new.featured-plan:hover {
        transform: translateY(-10px) scale(1);
    }

    .credits-how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .credit-benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .franchise-types {
        grid-template-columns: 1fr;
    }

    .featured-franchise {
        transform: scale(1);
    }

    .earning-breakdown {
        grid-template-columns: 1fr;
    }
}

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

    .section {
        padding: 1.25rem 0;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    .section-header h2 {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .section-icon {
        font-size: 1.2rem;
    }

    .hero {
        padding: 2.5rem 0 1.25rem;
        margin-top: 55px;
    }

    .hero-title {
        font-size: 1.05rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }

    .features-grid,
    .why-grid,
    .dashboard-features {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .app-badges {
        flex-direction: column;
    }

    .app-badge {
        width: 100%;
        justify-content: center;
    }

    .app-stats {
        grid-template-columns: 1fr 1fr;
    }

    .credits-how-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .franchise-cta {
        flex-direction: column;
    }

    .franchise-cta .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .feature-item strong {
        font-size: 0.95rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .credits-intro {
        font-size: 1rem;
    }

    .credit-how-card {
        padding: 1.5rem;
    }

    .credits-benefits {
        padding: 1.5rem;
    }

    .credits-benefits h3 {
        font-size: 1.25rem;
    }

    .pricing-card-new {
        padding: 1.5rem;
    }

    .pricing-card-new.featured-plan {
        transform: scale(1);
    }

    .pricing-card-new.featured-plan:hover {
        transform: translateY(-5px) scale(1);
    }

    .amount-new {
        font-size: 2rem;
    }

    .credit-amount {
        font-size: 2rem;
    }

    .plan-header-new h3 {
        font-size: 1.4rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .pricing-note {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

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

    .step-icon {
        font-size: 2rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .who-icon {
        font-size: 2rem;
    }

    .who-card h3 {
        font-size: 1rem;
    }

    .who-card p {
        font-size: 0.9rem;
    }

    .plan-header-new h3 {
        font-size: 1.25rem;
    }

    .plan-features-new {
        font-size: 0.9rem;
    }

    .credit-how-card h3 {
        font-size: 1.15rem;
    }

    .credit-how-card p {
        font-size: 0.9rem;
    }

    .credits-benefits h3 {
        font-size: 1.35rem;
    }
}

/* Advantages Page Styles */
.page-header {
    background: var(--gradient-1);
    color: white;
    padding: 6rem 0 4rem 0;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.advantages-section,
.disadvantages-section,
.comparison-section {
    padding: 5rem 0;
}

.disadvantages-section {
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

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

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
}

.disadvantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.disadvantage-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #dc2626;
}

.disadvantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

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

.disadvantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.disadvantage-card p {
    color: #666;
    line-height: 1.7;
}

.mitigation-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 2px solid #10b981;
}

.mitigation-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.mitigation-box ul {
    list-style: none;
    padding: 0;
}

.mitigation-box li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.mitigation-box strong {
    color: #059669;
    font-weight: 700;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
}

.comparison-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-row {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.comparison-feature {
    font-weight: 600;
    color: var(--dark-color);
}

.comparison-traditional {
    text-align: center;
    color: #666;
}

.comparison-digital {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-1);
}

.cta-box {
    text-align: center;
    color: white;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-secondary:hover {
    background: #f0f0f0;
}

/* Responsive Advantages Page */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2.25rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.9rem;
        padding: 1rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 4rem 0 3rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card,
    .disadvantage-card {
        padding: 1.5rem;
    }

    .advantage-icon,
    .disadvantage-icon {
        font-size: 2.5rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .comparison-traditional,
    .comparison-digital {
        text-align: left;
        padding-left: 1rem;
    }

    .mitigation-box {
        padding: 2rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 0.85rem;
        gap: 0.35rem;
    }

    .logo-img {
        height: 28px;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
    }

    .hero {
        padding: 2rem 0 1rem;
    }

    .hero-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-features span {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        border-width: 1px;
    }

    .hero-cta {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 1rem 0;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }

    .section-icon {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .intro-text {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
    }

    .features-grid {
        gap: 0.85rem;
    }

    .feature-card {
        padding: 0.85rem 0.7rem;
    }

    .feature-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .feature-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .steps-grid {
        gap: 1rem;
    }

    .step-card {
        padding: 1rem 0.85rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        top: -10px;
    }

    .step-icon {
        font-size: 1.25rem;
        margin: 0.4rem 0;
    }

    .step-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .step-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .who-grid {
        gap: 1rem;
    }

    .who-card {
        padding: 0.95rem;
    }

    .who-icon {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .who-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .who-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .app-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 0.75rem 0.6rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .feature-item {
        gap: 0.6rem;
    }

    .feature-check {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .feature-item strong {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .feature-item p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .btn-nav {
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .page-header p {
        font-size: 0.75rem;
    }

    .vendor-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .footer-badges .badge {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
