/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
}

.loading-logo {
    animation: simplePulse 2s ease-in-out infinite;
}

.zyp-loading-logo {
    width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Loading Animations */
@keyframes simplePulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Mobile Loading Screen */
@media (max-width: 768px) {
    .zyp-loading-logo {
        width: 100px;
    }
}

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

:root {
    --primary-color: #0B7332;
    --secondary-color: #095928;
    --accent-color: #CFD32C;
    --success-color: #2ECC71;
    --warning-color: #F39C12;
    --danger-color: #E74C3C;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --gradient-primary: linear-gradient(135deg, #0B7332 0%, #095928 100%);
    --gradient-secondary: linear-gradient(135deg, #CFD32C 0%, #0B7332 100%);
    --gradient-accent: linear-gradient(135deg, #CFD32C 0%, #B8C526 100%);
    --shadow-light: 0 2px 10px rgba(11, 115, 50, 0.1);
    --shadow-medium: 0 4px 20px rgba(11, 115, 50, 0.2);
    --shadow-heavy: 0 8px 40px rgba(11, 115, 50, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-button::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 70px);
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.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(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.scooter-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(11, 115, 50, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-logo-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    background: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--accent-color);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    animation: bounce 3s ease-in-out infinite;
}

.float-element.location {
    top: 20%;
    left: -10%;
    color: var(--primary-color);
}

.float-element.eco {
    bottom: 20%;
    right: -10%;
    color: var(--success-color);
}

/* Professional Hero Card */
.hero-professional-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(11, 115, 50, 0.15);
    border: 1px solid rgba(11, 115, 50, 0.1);
    max-width: 500px;
    margin: 0 auto;
    animation: slideInRight 1s ease-out;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.hero-brand-logo svg {
    width: 80px;
    height: auto;
}

.hero-location-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fdf9;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.hero-location-badge i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.hero-service-title {
    margin-bottom: 25px;
}

.hero-service-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.eco-badge i {
    color: var(--primary-color);
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fdf9;
    border-radius: 12px;
    transition: var(--transition);
}

.hero-feature:hover {
    background: #f0f8f1;
    transform: translateY(-2px);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

.feature-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.2;
}

/* Simple Hero Logo */
.hero-logo-simple {
    text-align: center;
    padding: 40px 20px;
}

.hero-logo-clean {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-light);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Multi-Card Steps Carousel Styles */
.steps-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px;
    position: relative;
    background: radial-gradient(60% 80% at 50% -10%, rgba(0, 0, 0, 0.04), transparent);
}

.steps-carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

/* Edge peek gradients */
.steps-carousel-track::before,
.steps-carousel-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 320ms ease-out;
}

.steps-carousel-track::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.steps-carousel-track::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Hide gradients when at edges */
.steps-carousel-track.at-start::before {
    opacity: 0;
}

.steps-carousel-track.at-end::after {
    opacity: 0;
}

.steps-carousel-wrapper {
    display: flex;
    transition: transform 320ms ease-out;
    gap: 12px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .steps-carousel-wrapper {
        transition: none;
    }
}

.step-card {
    flex: 0 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.12);
    padding: 20px;
    min-height: 220px;
    opacity: 0.7;
    transition: opacity 320ms ease-out, transform 320ms ease-out;
}

.step-card.active {
    opacity: 1;
}

.step-card-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.step-phone-mockup {
    width: 120px;
    position: relative;
}

.step-phone-image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 320ms ease-out;
    display: block;
}

.step-card.active .step-phone-image {
    transform: translateX(-6px);
}

.step-text-content {
    text-align: left;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.step-text-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.025em;
    max-width: 36ch;
}

.step-text-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 36ch;
}

.step-cta {
    margin-top: 16px;
}

.step-cta .btn-primary {
    font-size: 0.875rem;
    padding: 8px 16px;
}

/* Simplified Navigation Controls */
.steps-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.step-nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 320ms ease-out;
    box-shadow: 0 4px 12px rgba(11, 115, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(11, 115, 50, 0.3);
}

.step-nav-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.step-nav-btn:disabled {
    opacity: 0;
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}

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

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(11, 115, 50, 0.3);
    cursor: pointer;
    transition: all 320ms ease-out;
    position: relative;
}

.step-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.step-dot:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(11, 115, 50, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(11, 115, 50, 0.1);
}

.step-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 115, 50, 0.15);
    border-color: var(--accent-color);
}



.step-screenshot {
    position: relative;
    margin: 0 0 25px 0;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 30px rgba(11, 115, 50, 0.2);
    width: 100%;
    max-width: 200px;
    padding: 20px;
}

.step-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: block;
    object-fit: cover;
}

.step-visual:hover .step-image {
    transform: scale(1.02);
}

.step-number-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(11, 115, 50, 0.4);
    border: 4px solid white;
    z-index: 10;
    transition: all 0.3s ease;
}

.step-visual:hover .step-number-overlay {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(11, 115, 50, 0.5);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-right: 1px solid #f0f0f0;
}

.feature-card:last-child {
    border-right: none;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* App Download Section */
.app-download {
    padding: 100px 0;
    background: white;
}

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

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.app-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-features {
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.app-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* App Store Badges - Fresh Start */
.app-store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.badge-container {
    width: 200px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.badge-link {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.badge-link:hover {
    transform: translateY(-3px) scale(1.02);
}

.store-badge {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.app-mockup {
    text-align: center;
}

.phone-screenshot {
    display: inline-block;
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(11, 115, 50, 0.3));
    animation: float 6s ease-in-out infinite;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

/* Screenshot Gallery Styles */
.app-screenshots-gallery {
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav i {
    color: var(--primary-color);
    font-size: 14px;
}

.prev-nav {
    left: -20px;
}

.next-nav {
    right: -20px;
}

.screenshot-carousel {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(11, 115, 50, 0.3);
    animation: float 6s ease-in-out infinite;
    background: transparent;
}

.screenshot-slide {
    display: none;
    position: relative;
    background: transparent;
}

.screenshot-slide.active {
    display: block;
}

.screenshot-slide img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    max-height: none;
    background: transparent;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--secondary-color);
}

/* Legacy phone-mockup class for backward compatibility */
.phone-mockup {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 180, 216, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 5px;
}

.period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-features i {
    color: var(--success-color);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.footer-logo a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo .logo {
    height: 80px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #BDC3C7;
    margin-bottom: 25px;
    line-height: 1.7;
    margin-top: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BDC3C7;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 30px;
    text-align: center;
    color: #BDC3C7;
}

/* 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);
    }
}

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

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

/* Responsive Multi-Card Carousel */

/* Mobile (<640px): slidesPerView: 1, spaceBetween: 12, peek next card */
@media (max-width: 639px) {
    .steps-carousel-container {
        padding: 48px 16px;
    }
    
    .steps-carousel-wrapper {
        gap: 12px;
    }
    
    .step-card {
        min-width: calc(100vw - 32px - 24px); /* Full width minus container padding and gap */
        min-height: 200px;
        padding: 16px;
    }
    
    .step-card-content {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
    
    .step-phone-mockup {
        width: 100px;
        justify-self: center;
    }
    
    .step-text-content {
        text-align: center;
    }
    
    .step-text-content h3 {
        font-size: 1.125rem;
    }
    
    .step-text-content p {
        font-size: 0.8125rem;
    }
    
    .step-dot {
        width: 8px;
        height: 8px;
    }
}

/* Tablet (≥640px): slidesPerView: 1.15, spaceBetween: 16 */
@media (min-width: 640px) and (max-width: 1023px) {
    .steps-carousel-container {
        padding: 80px 24px;
    }
    
    .steps-carousel-wrapper {
        gap: 16px;
    }
    
    .step-card {
        min-width: calc(100vw / 1.15 - 48px - 16px); /* 1.15 slides per view */
        min-height: 240px;
        padding: 24px;
    }
    
    .step-phone-mockup {
        width: 140px;
    }
    
    .step-text-content h3 {
        font-size: 1.375rem;
    }
    
    .step-text-content p {
        font-size: 1rem;
    }
    
    .step-dot {
        width: 10px;
        height: 10px;
    }
}

/* Desktop (≥1024px): slidesPerView: 2, spaceBetween: 24 */
@media (min-width: 1024px) and (max-width: 1439px) {
    .steps-carousel-container {
        padding: 96px 32px;
    }
    
    .steps-carousel-wrapper {
        gap: 24px;
    }
    
    .step-card {
        min-width: calc((1200px - 64px - 24px) / 2); /* 2 slides per view */
        min-height: 240px;
        padding: 28px;
    }
    
    .step-phone-mockup {
        width: 160px;
    }
    
    .step-text-content h3 {
        font-size: 1.5rem;
    }
    
    .step-text-content p {
        font-size: 1rem;
    }
}

/* Wide (≥1440px): slidesPerView: 2.25, spaceBetween: 28, slight peek */
@media (min-width: 1440px) {
    .steps-carousel-container {
        padding: 96px 32px;
    }
    
    .steps-carousel-wrapper {
        gap: 28px;
    }
    
    .step-card {
        min-width: calc((1200px - 64px - 28px) / 2.25); /* 2.25 slides per view */
        min-height: 240px;
        padding: 28px;
    }
    
    .step-phone-mockup {
        width: 180px;
    }
    
    .step-text-content h3 {
        font-size: 1.5rem;
    }
    
    .step-text-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow-light);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }

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

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

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-logo-subtitle {
        font-size: 1.125rem;
        padding: 10px 20px;
    }

    .hero-professional-card {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .hero-card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-service-title h3 {
        font-size: 1.3rem;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-feature {
        padding: 12px;
    }
    
    .feature-text strong {
        font-size: 0.9rem;
    }
    
    .feature-text span {
        font-size: 0.75rem;
    }

    .hero-logo-clean {
        max-width: 300px;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
        gap: 20px;
    }

    .download-buttons {
        justify-content: center;
    }

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

    .app-text h2,
    .about-text h2 {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .phone-screenshot {
        max-width: 250px;
    }

    .steps-visual-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .step-image {
        width: 150px;
    }

    .app-screenshots-gallery {
        max-width: 280px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav i {
        font-size: 12px;
    }
    
    .prev-nav {
        left: -15px;
    }
    
    .next-nav {
        right: -15px;
    }
    
    .footer-logo .logo {
        height: 60px;
        max-width: 200px;
    }
}

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

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

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

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .feature-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .feature-card:last-child {
        border-bottom: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .phone-screenshot {
        max-width: 200px;
    }

    .steps-visual-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .footer-logo .logo {
        height: 50px;
        max-width: 180px;
    }
    
    .step-visual {
        padding: 30px 20px;
    }

    .step-screenshot {
        max-width: 180px;
    }

    .step-content h3 {
        font-size: 1.375rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .app-screenshots-gallery {
        max-width: 240px;
    }
    
    .carousel-nav {
        width: 30px;
        height: 30px;
    }
    
    .carousel-nav i {
        font-size: 10px;
    }
    
    .prev-nav {
        left: -10px;
    }
    
    .next-nav {
        right: -10px;
    }
    
    .zyp-loading-logo {
        width: 80px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
