:root {
    /* MobiPass Brand Colors - Based on new logo */
    --golden: #FFD54F;
    --golden-bright: #FFC107;
    --golden-glow: rgba(255, 213, 79, 0.4);
    --cyan: #A5D6FF;
    --cyan-bright: #64B5F6;
    --cyan-glow: rgba(165, 214, 255, 0.3);
    --purple: #BA68C8;
    --purple-bright: #9C27B0;
    --purple-glow: rgba(186, 104, 200, 0.35);

    /* Primary is golden (arrow), secondary is cyan (Mobi), accent is purple (Pass) */
    --primary: var(--golden);
    --primary-glow: var(--golden-glow);
    --secondary: var(--cyan-bright);
    --accent: var(--purple);

    /* Dark theme - deep blue/night tones */
    --dark: #050810;
    --dark-2: #0A0E1A;
    --dark-3: #121830;

    /* Glass effects */
    --glass: rgba(165, 214, 255, 0.04);
    --glass-border: rgba(165, 214, 255, 0.12);

    /* Text */
    --text: #F5F7FF;
    --text-muted: #8B9CC7;

    /* Gradients */
    --gradient: linear-gradient(135deg, var(--golden) 0%, var(--cyan-bright) 50%, var(--purple) 100%);
    --gradient-text: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 40%, var(--purple) 100%);
    --gradient-golden: linear-gradient(135deg, var(--golden-bright) 0%, var(--golden) 100%);
    --gradient-neon: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);

    /* Radius */
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;

    /* Shadows */
    --shadow-glow: 0 0 60px var(--primary-glow);
    --shadow-cyan: 0 0 40px var(--cyan-glow);
    --shadow-purple: 0 0 40px var(--purple-glow);

    /* Fonts */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Animated City Background */
.city-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.city-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-repeat: repeat-x;
    background-position: bottom;
    opacity: 0.15;
}

.city-back {
    background: linear-gradient(0deg, var(--dark-2) 0%, transparent 100%);
    height: 400px;
}

.city-mid {
    background: linear-gradient(0deg, rgba(0, 214, 143, 0.05) 0%, transparent 100%);
    height: 200px;
}

.city-front {
    background: linear-gradient(0deg, var(--dark) 0%, transparent 100%);
    height: 100px;
}

.road {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 40px, transparent 40px, transparent 80px);
    animation: roadMove 2s linear infinite;
}

.vehicles {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
}

.vehicle {
    position: absolute;
    color: var(--primary);
    opacity: 0.6;
    animation: moveRight 8s linear infinite;
}

.vehicle-icon {
    width: 24px;
    height: 24px;
}

.car-1 {
    left: -50px;
    animation-delay: 0s;
}

.car-2 {
    left: -50px;
    animation-delay: 3s;
    color: var(--secondary);
}

.bike-1 {
    left: -50px;
    animation-delay: 5s;
    color: var(--accent);
    animation-duration: 12s;
}

.bus-1 {
    left: -50px;
    animation-delay: 1.5s;
    color: var(--purple);
    animation-duration: 10s;
}

.particles {
    position: absolute;
    inset: 0;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

.particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
}

.particles span:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
}

.particles span:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
}

.particles span:nth-child(6) {
    left: 60%;
    animation-delay: 0.5s;
    background: var(--secondary);
}

.particles span:nth-child(7) {
    left: 70%;
    animation-delay: 1.5s;
    background: var(--secondary);
}

.particles span:nth-child(8) {
    left: 80%;
    animation-delay: 2.5s;
    background: var(--purple);
}

.particles span:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    background: var(--purple);
}

.particles span:nth-child(10) {
    left: 95%;
    animation-delay: 4.5s;
}

@keyframes roadMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-80px);
    }
}

@keyframes moveRight {
    from {
        transform: translateX(-50px);
    }

    to {
        transform: translateX(calc(100vw + 50px));
    }
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(100vh);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* New Logo Image Styles */
.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--cyan-glow)) drop-shadow(0 0 16px var(--purple-glow));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px var(--cyan-glow)) drop-shadow(0 0 24px var(--purple-glow)) drop-shadow(0 0 4px var(--golden-glow));
    transform: scale(1.02);
}

.footer-logo {
    height: 60px;
}

/* Legacy logo styles (kept for compatibility) */
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-xs);
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--glass);
}

.nav-links svg {
    width: 16px;
    height: 16px;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    padding: 10px;
    cursor: pointer;
    color: var(--text);
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 214, 143, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    border-color: var(--primary);
    background: rgba(0, 214, 143, 0.1);
}

.btn-light {
    background: #fff;
    color: var(--dark);
}

.btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-xl {
    padding: 18px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-block {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 32px;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-gradient {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.metric {
    display: flex;
    align-items: center;
    gap: 14px;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.metric-icon svg {
    width: 22px;
    height: 22px;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

.phone-3d {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s;
}

.phone-3d:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.phone-frame {
    width: 280px;
    max-width: 100%;
    height: 580px;
    background: linear-gradient(145deg, #1a1f2e 0%, #0d1117 100%);
    border-radius: 44px;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: var(--dark-3);
    border-radius: 36px;
    height: 100%;
    padding: 60px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.phone-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

/* App UI inside phone */
.app-ui {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.app-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.app-pass {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.2) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pass-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.pass-icon svg {
    width: 22px;
    height: 22px;
}

.pass-info {
    display: flex;
    flex-direction: column;
}

.pass-name {
    font-weight: 700;
    font-size: 1rem;
}

.pass-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-vouchers {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.mini-voucher {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
}

.mini-voucher svg {
    width: 18px;
    height: 18px;
}

.mini-voucher.available {
    border-color: var(--primary);
    color: var(--primary);
}

.mini-voucher.used {
    opacity: 0.5;
}

.app-action {
    background: var(--gradient);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-action svg {
    width: 18px;
    height: 18px;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    inset: -60px;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: float 6s ease-in-out infinite;
}

.float-item svg {
    width: 24px;
    height: 24px;
}

.float-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.float-2 {
    top: 30%;
    right: -30px;
    animation-delay: 1s;
    color: var(--secondary);
}

.float-3 {
    bottom: 30%;
    left: -40px;
    animation-delay: 2s;
    color: var(--purple);
}

.float-4 {
    bottom: 10%;
    right: -20px;
    animation-delay: 3s;
    color: var(--accent);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-gradient {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-icon {
    width: 64px;
    height: 64px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.section-icon svg {
    width: 28px;
    height: 28px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--purple));
}

.step-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.step-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.step-icon svg {
    width: 18px;
    height: 18px;
}

.step-content {
    flex: 1;
    padding-top: 16px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.package-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.package-card.featured {
    background: linear-gradient(180deg, rgba(0, 214, 143, 0.1) 0%, var(--glass) 100%);
    border-color: var(--primary);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-badge svg {
    width: 14px;
    height: 14px;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.package-icon {
    width: 56px;
    height: 56px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.package-icon svg {
    width: 26px;
    height: 26px;
}

.package-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.package-duration {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.package-price {
    margin-bottom: 32px;
}

.package-price .currency {
    font-size: 1.25rem;
    color: var(--text-muted);
    vertical-align: top;
}

.package-price .amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.package-features {
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--glass-border);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.package-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(0, 214, 143, 0.1);
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    color: var(--primary);
}

.package-savings svg {
    width: 16px;
    height: 16px;
}

/* Integrations */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.integration-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.integration-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.integration-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

.integration-icon svg {
    width: 26px;
    height: 26px;
}

.integration-content {
    flex: 1;
}

.integration-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.integration-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.integration-tag {
    padding: 6px 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary);
    white-space: nowrap;
}

/* CTA Section */
.section-cta {
    padding: 100px 0;
}

.cta-card {
    background: var(--gradient);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    top: -100px;
    left: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -50px;
    right: -50px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #000;
}

.cta-icon svg {
    width: 36px;
    height: 36px;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.cta-card p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--dark-2);
    padding: 80px 0 32px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: var(--glass);
}

.mobile-menu svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .phone-mockup {
        max-height: 400px;
        width: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-metrics {
        justify-content: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Package cards centered on tablet/mobile */
    .package-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .package-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .package-card h3,
    .package-duration,
    .package-badge {
        text-align: center;
        width: 100%;
    }

    .package-price {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .package-features {
        text-align: left;
        width: 100%;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Logo adjustments for tablet */
    .logo-img {
        height: 40px;
    }

    .footer-logo {
        height: 48px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero section mobile optimization */
    .hero-grid {
        gap: 30px;
    }

    .phone-mockup {
        max-height: 320px;
    }

    /* Logo mobile sizing */
    .logo-img {
        height: 36px;
    }

    .footer-logo {
        height: 42px;
    }

    /* Reduce section padding */
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    /* Fluid typography */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero {
        padding-top: 100px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .floating-elements {
        display: none;
    }

    .steps-timeline {
        padding-left: 0;
    }

    .timeline-line {
        left: 35px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
    }

    .step-item {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Ultra-mobile breakpoint - Real device optimization */
@media (max-width: 480px) {

    /* Reduce container padding for small screens */
    .container {
        padding: 0 16px;
    }

    /* Hero section - ensure content visibility above fold */
    .hero {
        min-height: 0;
        padding: 100px 0 40px;
    }

    .hero-grid {
        gap: 24px;
    }

    /* Drastically reduce phone mockup for mobile */
    .phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 32px;
        padding: 6px;
    }

    .phone-notch {
        width: 80px;
        height: 22px;
    }

    .phone-screen {
        border-radius: 28px;
        padding: 50px 14px 24px;
    }

    .phone-glow {
        width: 250px;
        height: 250px;
    }

    /* Hide 3D rotation on mobile for better performance */
    .phone-3d {
        transform: none;
    }

    .phone-3d:hover {
        transform: none;
    }

    /* Hero content adjustments */
    .hero-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .title-line {
        font-size: 1.75rem;
    }

    .title-gradient {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Metrics - horizontal centered layout */
    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        justify-items: center;
        text-align: center;
        width: 100%;
    }

    .metric {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .metric-icon {
        width: 40px;
        height: 40px;
    }

    .metric-data {
        text-align: center;
        align-items: center;
    }

    .metric-value {
        font-size: 1.1rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    /* Sections padding */
    section {
        padding: 40px 0;
    }

    /* Package cards - full width and centered */
    .packages-grid {
        gap: 20px;
    }

    .package-card {
        padding: 28px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .package-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .package-card h3 {
        text-align: center;
        width: 100%;
    }

    .package-duration {
        text-align: center;
        width: 100%;
    }

    .package-badge {
        text-align: center;
    }

    .package-price {
        justify-content: center;
        text-align: center;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .package-features {
        text-align: left;
        width: 100%;
    }

    .package-features li {
        justify-content: flex-start;
    }

    /* Steps timeline mobile - improved alignment */
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .step-icon {
        width: 28px;
        height: 28px;
    }

    .step-item {
        gap: 16px;
        margin-bottom: 40px;
        align-items: flex-start;
    }

    .timeline-line {
        left: 28px;
    }

    /* Como Funciona text alignment fix - proper vertical alignment */
    .step-content {
        text-align: left;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .step-marker {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
        margin-top: 0;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Buttons full width on mobile */
    .btn {
        padding: 14px 24px;
    }

    /* Footer optimization */
    .footer-logo {
        height: 36px;
    }

    /* Ensure no horizontal overflow */
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }
}