@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0364ff;
    --primary-dark: #0251d9;
    --secondary: #10b981;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0364ff 0%, #0251d9 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Responsive navigation adjustments */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        min-height: 60px;
    }
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-right: 0.75rem;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 38px;
        max-width: 150px;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
        max-width: 120px;
        margin-right: 0.25rem;
    }
}

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

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links .secondary-button:hover {
    color: white !important;
}

.nav-links .cta-button:hover {
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark);
    z-index: 1001;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active svg {
    transform: rotate(90deg);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(3, 100, 255, 0.25);
    margin-top: auto;
    text-shadow: none;
}

/* Button shimmer effect removed for better performance */

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0242c7 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(3, 100, 255, 0.4);
}

.cta-button:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(3, 100, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url('/assets/banner.jpg') right center/auto 100% no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0364ff 0%, #0251d9 100%);
    opacity: 0.05;
    z-index: -2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #0364ff 0%, #0251d9 100%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    right: 10%;
    top: 50%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    bottom: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-100px) rotate(120deg); }
    66% { transform: translateY(100px) rotate(240deg); }
}

.hero-content {
    max-width: 40%;
    margin: 0;
    z-index: 1;
    position: relative;
}

h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #16263d;
    line-height: 1.1;
    display: inline-block; 
}

.subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.secondary-button svg {
    width: 20px;
    height: 20px;
}

/* References Section - Modern Design */
.references {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.references::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.references-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.references .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.references .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.client-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(3, 100, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 100, 255, 0.15);
    border-color: rgba(3, 100, 255, 0.2);
}

.client-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.client-card:hover .client-image {
    transform: scale(1.05);
}

.client-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.client-type {
    color: var(--gray);
    font-size: 0.9rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, white 0%, rgba(3, 100, 255, 0.02) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(3, 100, 255, 0.08);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Stats Section */
.stats {
    background: var(--light-gray);
    padding: 1rem 2rem 2rem 2rem;
    margin: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

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

/* Features Section */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
}

/* How it Works */
.how-it-works {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
    z-index: 0;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-description {
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 2rem 5rem;
    overflow: hidden;
    position: relative;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card.growth {
    border: 2px solid var(--primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(3, 100, 255, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: 1px solid var(--primary);
    z-index: 10;
    white-space: nowrap;
    margin-bottom: 0.3rem;
}

/* Hover effects */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(3, 100, 255, 0.15);
    border-color: rgba(3, 100, 255, 0.3);
}

.pricing-card.growth:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(3, 100, 255, 0.25);
    border-color: var(--primary);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    letter-spacing: -0.025em;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0;
}

.plan-price .price-cents {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.plan-description {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.6rem 0;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.plan-features li:hover {
    color: var(--dark);
}

.plan-features li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Pricing Buttons Styles */
.pricing-buttons {
    display: flex;
    justify-content: center;
    margin: 1rem auto;
    max-width: 250px;
    position: relative;
}

.pricing-toggle-container {
    display: flex;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 15px;
}

.pricing-toggle-container:hover {
    border-color: var(--primary);
}

.period-btn {
    padding: 0.6rem 1rem;
    border: none;
    background: white;
    font-size: 0.85rem;
    font-weight: 300;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
}

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

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

.save-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb3ba;
    color: #333;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    white-space: nowrap;
    z-index: 10;
    display: none;
}

.save-badge.show {
    display: block;
}

.period-btn.active .save-badge {
    background: #ffb3ba;
    color: #333;
}

.period-btn:hover .save-badge {
    background: #ffb3ba;
    color: #333;
}

.pricing-period {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: url('/assets/footer-banner.png') center center/cover no-repeat;
    text-align: center;
    color: var(--gray);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 100, 255, 0.1) 0%, rgba(2, 81, 217, 0.1) 100%);
    transition: left 0.5s ease;
}

.cta-button-white:hover::before {
    left: 100%;
}

.cta-button-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1.5rem;
    text-align: center;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%);
}

.payment-icon.qr-icon {
    height: 50px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.payment-icon.qr-icon:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navigation Mobile - Dashboard Style */
    nav {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-container {
        padding: 0 1rem;
        min-height: 60px;
    }
    
    .logo img {
        height: 38px;
        max-width: 150px;
        margin-right: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-toggle:hover {
        background: var(--light-gray);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -350px;
        width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 24px 24px;
        gap: 8px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
        color: var(--gray);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        margin-bottom: 0.25rem;
        border-bottom: none;
    }
    
    .nav-links a:hover {
        color: var(--dark);
        background: var(--light-gray);
        transform: translateX(4px);
    }

    .nav-links .secondary-button {
        margin-top: 1.5rem;
        justify-content: center;
        width: 100%;
        background: var(--white);
        border: 1px solid var(--light-gray);
        color: var(--dark);
    }
    
    .nav-links .secondary-button:hover {
        background: var(--light-gray);
        transform: translateY(-1px);
    }
    
    .nav-links .cta-button {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        border: none;
        color: var(--white);
        text-align: center;
        padding: 1rem 2rem;
        border-radius: 12px;
    }
    
    .nav-links .cta-button:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #0242c7 100%);
        transform: translateY(-1px);
    }
    
    /* Mobile Overlay - Dashboard Style */
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 100% !important;
    }
    
    .pricing-buttons {
        max-width: 100% !important;
    }
    
    .pricing-toggle-container {
        width: 100%;
        max-width: 280px;
    }
    
    .period-btn {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .pricing-card.growth:hover {
        transform: translateY(-3px);
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .pricing-toggle {
        max-width: 280px;
        padding: 0.6rem 1.2rem;
    }

    .hero {
        padding: 5rem 1rem 3rem;
        text-align: center;
        background: linear-gradient(135deg, rgba(3, 100, 255, 0.05) 0%, rgba(2, 81, 217, 0.05) 100%);
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        justify-content: center;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    /* Sections spacing for mobile */
    .features,
    .how-it-works,
    .testimonials {
        padding: 3rem 1rem;
    }

    .references {
        display: none;
    }
    
    .stats {
        padding: 2rem 1rem;
    }

    .pricing {
        padding: 4rem 1rem 3rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    /* Card spacing */
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .client-card {
        padding: 1rem;
    }

    .client-image {
        height: 80px;
        margin-bottom: 0.8rem;
    }

    .client-name {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .client-type {
        font-size: 0.85rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 2rem 0.5rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

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

    /* Steps layout for mobile */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .step {
        text-align: center;
        padding: 1.5rem 1rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .step-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .references .section-title {
        font-size: 2rem;
    }

    .references .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .footer-bottom-content {
        padding: 0 1rem;
        gap: 1rem;
    }

    .payment-icons {
        gap: 1rem;
        justify-content: center;
    }

    .payment-icon {
        height: 28px;
    }

    .payment-icon.qr-icon {
        height: 42px;
    }

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

    /* CTA Section mobile */
    .cta-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button-white {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    /* Cookie banner mobile */
    .cookie-consent-banner {
        padding: 1rem 0.5rem;
    }

    .cookie-consent-content {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }

    .cookie-text h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .cookie-buttons {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 80px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
        min-height: 50px;
    }

    .logo img {
        height: 28px;
        max-width: 100px;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero {
        padding: 4rem 0.5rem 2rem;
        min-height: 70vh;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .section-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0.5rem;
        margin: 1rem 0;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card {
        margin: 0 0.5rem 1rem;
        padding: 1.2rem;
    }

    .step {
        margin: 0 0.5rem;
        padding: 1.2rem 0.8rem;
    }

    .cta-title {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }

    .footer-content {
        padding: 0 0.5rem;
        gap: 2rem;
    }

    .payment-icons {
        gap: 0.8rem;
    }

    .payment-icon {
        height: 25px;
    }

    .payment-icon.qr-icon {
        height: 35px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(3, 100, 255, 0.25), 0 0 0 0 rgba(3, 100, 255, 0.5);
    }
    70% {
        box-shadow: 0 8px 25px rgba(3, 100, 255, 0.25), 0 0 0 15px rgba(3, 100, 255, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(3, 100, 255, 0.25), 0 0 0 0 rgba(3, 100, 255, 0);
    }
}

/* Button loading state */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.cta-button.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}