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

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

body {
    font-family: 'Inter', sans-serif;
    background: white;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-decoration: none;
}

.logo-blue { color: #070b56; }
.logo-yellow { color: #ffd800; }

.nav-links {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: #070b56; }

.btn-primary {
    background: #070b56;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #070b56;
    color: #070b56;
}

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

.btn-block {
    display: block;
    text-align: center;
}

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: #f3f4f6;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #070b56;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.hero-badge:hover { background: #e5e7eb; }

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    color: #070b56;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(7, 11, 86, 0.55);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    padding: 0 0.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Marquee utility classes */
.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-8 {
    gap: 2rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
}

.flex {
    display: flex;
}

.flex.items-center {
    display: flex;
    align-items: center;
}

/* Fix for SVG and text alignment */
.marquee-content .flex {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.marquee-content svg,
.marquee-content img {
    display: inline-block;
    vertical-align: middle;
}

.marquee-content span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

.logo-img {
    width: 1.5rem;
    height: 1.5rem;
}

.logo-text {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-shopify { color: #96BF48; }
.logo-meta { color: #1877F2; }
.logo-google { color: #4285F4; }
.logo-tiktok { color: #000000; }
.logo-quickbooks { color: #2CA01C; }


/* Dashboard Section */
.dashboard-section {
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.dashboard-card {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    padding: 0.75rem;
}

.dashboard-inner {
    background: #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
}

.dashboard-img {
    width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 4rem 1rem;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #070b56;
}

.section-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #070b56;
    margin-bottom: 0.75rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.feature-list .check {
    color: #10b981;
    font-size: 1rem;
}

.feature-image {
    background: #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
}

/* Pricing Section */
.pricing {
    background: #f9fafb;
    padding: 4rem 1rem;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-blue {
    background: #070b56;
    color: white;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: #ffd800;
    color: #070b56;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pricing-sub {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.pricing-card-blue .pricing-sub { color: #bfdbfe; }

.pricing-price {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.pricing-price small {
    font-size: 0.875rem;
    font-weight: 400;
}

.pricing-card-blue .pricing-price { color: #ffd800; }

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.pricing-list .check-yellow { color: #ffd800; }
.pricing-list .check-green { color: #10b981; }
.pricing-list .cross { color: #d1d5db; }

.pricing-btn {
    display: block;
    text-align: center;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pricing-btn-outline {
    border: 2px solid #070b56;
    color: #070b56;
}

.pricing-btn-outline:hover {
    background: #070b56;
    color: white;
}

.pricing-btn-solid {
    background: #ffd800;
    color: #070b56;
}

.pricing-btn-solid:hover { opacity: 0.9; }

/* CTA Section */
.cta {
    text-align: center;
    padding: 3rem 1rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #070b56;
    margin-bottom: 0.75rem;
}

.cta-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(7, 11, 86, 0.05);
    border-top: 1px solid rgba(7, 11, 86, 0.1);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #070b56;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover { color: #070b56; }

.footer-logo {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 20rem;
    margin: 0 auto;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(7, 11, 86, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Mobile Menu */
.mobile-menu {
    display: block;
    background: white;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
}

.mobile-menu a:hover { color: #070b56; }

.mobile-menu .btn-primary {
    text-align: center;
    margin-top: 0.5rem;
}

/* Force mobile menu button visibility */
.mobile-menu-btn {
    display: block !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    margin: 0 !important;
}

.mobile-menu-btn svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    stroke: #070b56 !important;
}

/* Utilities */
.hidden { display: none; }
.w-full { width: 100%; }
.text-center { text-align: center; }

/* Responsive */
@media (min-width: 475px) {
    .hero-title, .hero-subtitle { font-size: 3rem; }
    .hero-buttons { flex-direction: row; }
}

@media (min-width: 640px) {
    .hero-title, .hero-subtitle { font-size: 3.75rem; }
    .hero-text { font-size: 1.125rem; }
    .section-title { font-size: 2.25rem; }
    .cta-title { font-size: 2.25rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
    .footer-col .footer-logo { justify-content: flex-start; }
    .footer-desc { margin: 0; }
    .sm\:gap-12 { gap: 3rem; }
    .sm\:mx-8 { margin-left: 2rem; margin-right: 2rem; }
    .sm\:w-6 { width: 1.5rem; }
    .sm\:h-6 { height: 1.5rem; }
    .sm\:text-sm { font-size: 0.875rem; }
}

@media (min-width: 768px) {
    .nav-links { display: flex !important; }
    .mobile-menu-btn { display: none; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .feature-item { flex-direction: row; }
    .feature-item-reverse { flex-direction: row-reverse; }
    .feature-content, .feature-image { flex: 1; }
    .mobile-menu-btn {display: none !important;}
}

@media (min-width: 1024px) {
    .hero-title, .hero-subtitle { font-size: 4.5rem; }
    .hero { padding: 5rem 1.5rem; }
    .features { padding: 6rem 1rem; }
    .pricing { padding: 6rem 1rem; }
}
