:root {
    /* Primary Brand Colors */
    --primary: #86370E;
    --primary-light: #A04612;
    --secondary: #FE6601;
    --accent: #FF8534;
    
    /* Dark Backgrounds - Warm tones */
    --bg-main: #0A0604;
    --bg-secondary: #120A07;
    --bg-card: #1A0F0A;
    --bg-elevated: #221410;
    
    /* Accent variations */
    --accent-soft: rgba(134, 55, 14, 0.15);
    --accent-medium: rgba(134, 55, 14, 0.35);
    --accent-strong: rgba(134, 55, 14, 0.65);
    --secondary-soft: rgba(254, 102, 1, 0.15);
    --secondary-medium: rgba(254, 102, 1, 0.35);
    
    /* Text Colors */
    --text-primary: #F5E6DC;
    --text-secondary: #D4BFB3;
    --text-muted: #9B8578;
    --text-dim: #6B5649;
    
    /* Borders */
    --border-subtle: rgba(134, 55, 14, 0.2);
    --border-medium: rgba(134, 55, 14, 0.4);
    --border-strong: rgba(254, 102, 1, 0.5);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 6, 4, 0.4);
    --shadow-md: 0 8px 24px rgba(10, 6, 4, 0.6);
    --shadow-lg: 0 16px 40px rgba(10, 6, 4, 0.8);
    --shadow-xl: 0 24px 60px rgba(10, 6, 4, 0.9);
    --shadow-glow: 0 0 30px rgba(254, 102, 1, 0.3);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(ellipse at top, #1A0F0A 0%, #0A0604 50%, #000000 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 100% - 3rem);
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(254, 102, 1, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(254, 102, 1, 0.5);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
}

.fade-in-up.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    opacity: 0;
}

.scale-in.animate {
    animation: scaleIn 0.6s ease-out forwards;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: linear-gradient(
        to bottom,
        rgba(10, 6, 4, 0.98),
        rgba(10, 6, 4, 0.85),
        transparent
    );
    border-bottom: 1px solid var(--border-subtle);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0.5rem;
}

.logo-image {
    height: 45px;  /* ← CHANGE THIS for desktop size */
    width: auto;
    display: block;
}

.logo:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.nav {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav a {
    padding: 0.4rem 0.8rem;
    color: var(--text-secondary);
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav a:hover {
    color: var(--text-primary);
    background: rgba(26, 15, 10, 0.9);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 6rem;
    position: relative;
    width: min(1120px, 100% - 3rem);
    margin: 0 auto;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    background: linear-gradient(
        135deg,
        #FFE4D1 0%,
        #FE6601 50%,
        #FF8534 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-text p {
    margin: 0 0 2rem;
    color: var(--text-secondary);
    max-width: 32rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--accent-strong);
    color: white;
    box-shadow: 0 8px 24px rgba(134, 55, 14, 0.5);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(254, 102, 1, 0.6);
}

.btn.secondary {
    background: var(--bg-elevated);
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.btn.secondary:hover {
    transform: translateY(-2px);
    background: var(--bg-card);
    border-color: var(--secondary);
}

/* ===== HERO CARD ===== */
.hero-card {
    background: radial-gradient(
        circle at top left,
        rgba(134, 55, 14, 0.25),
        rgba(26, 15, 10, 0.98)
    );
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--secondary);
}

.hero-card-header {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFE4D1;
    background: linear-gradient(
        135deg,
        rgba(134, 55, 14, 0.9),
        rgba(254, 102, 1, 0.7)
    );
    border-bottom: 1px solid var(--accent-strong);
    font-weight: 600;
}

.hero-card-body {
    padding: 1.75rem 1.5rem 1.5rem;
    display: grid;
    gap: 2.25rem;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(
        135deg,
        rgba(26, 15, 10, 0.95),
        rgba(18, 10, 7, 0.8)
    );
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    border-color: var(--border-medium);
    background: rgba(34, 20, 16, 0.95);
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-block;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    min-width: fit-content;
    color: var(--secondary);
    font-weight: 700;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(
        to bottom,
        rgba(26, 15, 10, 0.6),
        rgba(18, 10, 7, 0.8)
    );
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.trust-bar-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
    justify-content: center;
    padding: 3rem 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item {
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-alt {
    background: radial-gradient(
        ellipse at center,
        rgba(18, 10, 7, 0.7) 0%,
        rgba(10, 6, 4, 0.5) 100%
    );
}

.section-accent {
    background: radial-gradient(
        ellipse at center,
        rgba(134, 55, 14, 0.15) 0%,
        rgba(10, 6, 4, 0.3) 100%
    );
}

.section-dark {
    background: radial-gradient(
        ellipse at center,
        rgba(10, 6, 4, 0.95) 0%,
        #000000 100%
    );
}

.section-title {
    margin: 0 0 3rem;
    font-size: clamp(1.8rem, 3vw + 0.5rem, 2.2rem);
    text-align: center;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: var(--text-primary);
}

.section-subtitle {
    margin: -1rem auto 3rem;
    max-width: 40rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.section-heading {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== GRIDS ===== */
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

/* ===== CARDS ===== */
.info-card,
.feature-card,
.market-card,
.vendor-column,
.testimonial-card,
.trust-card,
.step-card {
    background: rgba(26, 15, 10, 0.9);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.info-card:hover,
.feature-card:hover,
.market-card:hover,
.vendor-column:hover,
.testimonial-card:hover,
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
    background: rgba(34, 20, 16, 0.95);
}

.info-card h3,
.feature-card h3,
.market-card h3,
.trust-card h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.info-card p,
.feature-card p,
.market-card p,
.trust-card p,
.step-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-card ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-card li {
    margin-top: 0.5rem;
}

/* ===== STEPS ===== */
.steps-list {
    display: grid;
    gap: 1rem;
}

.step-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* ===== MARKET CARDS ===== */
.market-meta {
    margin: 0.25rem 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.market-tag {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.markets-cta-row {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* ===== VENDOR SECTION ===== */
.vendor-stats {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.vendor-stat {
    min-width: 150px;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-medium);
    background: rgba(26, 15, 10, 0.9);
    text-align: center;
    transition: all 0.3s ease;
}

.vendor-stat:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
}

.vendor-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.vendor-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bullet-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.bullet-list li {
    margin-top: 0.75rem;
    line-height: 1.6;
}

.vendor-cta-row {
    margin-top: 3rem;
    text-align: center;
}

.vendor-cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonial-quote {
    margin: 0 0 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-name {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-rating {
    margin: 0;
    font-size: 0.9rem;
    color: var(--accent);
}

/* ===== LIVE SECTION ===== */
.live-block {
    background: rgba(26, 15, 10, 0.9);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(254, 102, 1, 0.6);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.live-block:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-6px);
}

.live-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

/* ===== APP SECTION ===== */
.app-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
    align-items: center;
}

.app-text {
    max-width: 450px;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: rgba(26, 15, 10, 0.9);
    border: 1px solid var(--border-medium);
    font-size: 0.9rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    font-weight: 600;
}

.app-badge:hover {
    border-color: var(--secondary);
    background: var(--bg-elevated);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-visual {
    display: flex;
    justify-content: center;
}

.app-phone {
    width: 240px;
    height: 480px;
    border-radius: 44px;
    border: 2px solid var(--border-medium);
    background: radial-gradient(
        circle at top,
        rgba(26, 15, 10, 1),
        rgba(18, 10, 7, 0.95)
    );
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    position: relative;
}

.app-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: rgba(134, 55, 14, 0.4);
    border-radius: 999px;
}

.app-phone-screen {
    height: 100%;
    border-radius: 36px;
    background: linear-gradient(
        to bottom,
        rgba(26, 15, 10, 1),
        rgba(18, 10, 7, 0.9)
    );
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.app-phone-line {
    height: 12%;
    border-radius: var(--radius-md);
    background: linear-gradient(
        135deg,
        rgba(134, 55, 14, 0.6),
        rgba(254, 102, 1, 0.4)
    );
    opacity: 0.8;
    animation: glow 4s ease-in-out infinite;
}

.app-phone-line:nth-child(1) {
    animation-delay: 0s;
}

.app-phone-line:nth-child(2) {
    animation-delay: 0.5s;
}

.app-phone-line:nth-child(3) {
    animation-delay: 1s;
}

.app-phone-line:nth-child(4) {
    animation-delay: 1.5s;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 0;
    margin-top: 4rem;
    background: linear-gradient(
        to top,
        rgba(10, 6, 4, 0.98),
        transparent
    );
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-subtle);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: 100px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 15, 10, 0.9);
    border: 1px solid var(--border-medium);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--bg-elevated);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-support {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.support-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem;
}

.support-link {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.support-link:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.footer-contact a:hover {
    color: var(--secondary);
}

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

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

.footer-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

.footer-divider {
    color: var(--text-dim);
}

.footer-location {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
/* ===== ENHANCED MOBILE RESPONSIVE STYLES ===== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .three-column,
    .features-grid,
    .markets-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile (720px and below) */
@media (max-width: 720px) {
    /* Header adjustments */
    .header-content {
        padding: 0.85rem 0.5rem;
    }

    .logo-image {
        height: 24px;
        width: auto;
    }

    .nav {
        gap: 0.65rem;
        font-size: 0.8rem;
    }

    .nav a {
        padding: 0.35rem 0.65rem;
    }

    /* Hero section mobile */
    .hero {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .hero-card {
        order: -1;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-actions {
        gap: 0.85rem;
    }

    .hero-card-body {
        padding: 1.25rem 1rem 1rem;
        gap: 1.5rem;
    }

    .hero-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 0.75rem 0.85rem;
    }

    .hero-stat-value {
        text-align: left;
    }

    /* Trust bar mobile */
    .trust-bar-content {
        gap: 0.85rem 1.5rem;
        padding: 2rem 0.5rem;
        font-size: 0.85rem;
    }

    /* Sections mobile */
    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

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

    .section-heading {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    /* Grids mobile */
    .two-column,
    .three-column,
    .features-grid,
    .markets-grid,
    .trust-grid,
    .testimonials-grid,
    .app-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
    }

    /* Cards mobile */
    .info-card,
    .feature-card,
    .market-card,
    .vendor-column,
    .testimonial-card,
    .trust-card,
    .step-card,
    .live-block {
        padding: 1.25rem;
    }

    .info-card h3,
    .feature-card h3,
    .market-card h3,
    .trust-card h3 {
        font-size: 1.05rem;
    }

    .info-card p,
    .feature-card p,
    .market-card p,
    .trust-card p,
    .step-card p {
        font-size: 0.9rem;
    }

    /* Vendor stats mobile */
    .vendor-stats {
        gap: 1rem;
        margin-top: 2rem;
    }

    .vendor-stat {
        min-width: 120px;
        padding: 1rem 1.25rem;
    }

    .vendor-stat-value {
        font-size: 1.35rem;
    }

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

    /* App section mobile */
    .app-text {
        max-width: none;
        text-align: center;
    }

    .app-badges {
        flex-direction: row;
        justify-content: center;
        gap: 0.85rem;
    }

    .app-badge {
        flex: 1;
        min-width: 140px;
    }

    .app-phone {
        width: 200px;
        height: 400px;
        padding: 0.85rem;
    }

    /* Footer mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column {
        gap: 1.25rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
        height: 28px;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 0.75rem;
    }

    .footer-heading {
        font-size: 0.95rem;
        text-align: center;
    }

    .footer-links {
        align-items: center;
        gap: 0.65rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact strong {
        text-align: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright,
    .footer-location {
        text-align: center;
    }

    /* Better mobile spacing */
    .markets-cta-row,
    .vendor-cta-row {
        margin-top: 2rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Container */
    .container {
        width: calc(100% - 2rem);
    }

    /* Header ultra-mobile */
    .header-content {
        padding: 0.75rem 0.25rem;
    }

    .logo-image {
        height: 20px;
    }

    /* Hide nav, show hamburger menu */
    .nav {
        display: none;
    }

    /* Hero ultra-mobile */
    .hero {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-content {
        gap: 1.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-text h1 {
        font-size: 1.65rem;
        line-height: 1.15;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-card-header {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }

    .hero-card-body {
        padding: 1rem 0.85rem 0.85rem;
        gap: 1.25rem;
    }

    .hero-stat {
        padding: 0.65rem 0.75rem;
    }

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

    .hero-stat-value {
        font-size: 0.85rem;
    }

    /* Trust bar ultra-mobile */
    .trust-bar-content {
        gap: 0.75rem 1.25rem;
        padding: 1.75rem 0.5rem;
        font-size: 0.8rem;
    }

    /* Buttons ultra-mobile */
    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    /* Sections ultra-mobile */
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .section-heading {
        font-size: 1.05rem;
    }

    /* Grids ultra-mobile */
    .two-column,
    .three-column,
    .features-grid,
    .markets-grid,
    .trust-grid,
    .testimonials-grid,
    .app-layout {
        gap: 1rem;
    }

    /* Cards ultra-mobile */
    .info-card,
    .feature-card,
    .market-card,
    .vendor-column,
    .testimonial-card,
    .trust-card,
    .step-card,
    .live-block {
        padding: 1rem;
    }

    .info-card h3,
    .feature-card h3,
    .market-card h3,
    .trust-card h3 {
        font-size: 1rem;
        margin-bottom: 0.85rem;
    }

    .info-card p,
    .feature-card p,
    .market-card p,
    .trust-card p,
    .step-card p {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .info-card ul {
        font-size: 0.85rem;
        padding-left: 1rem;
    }

    .bullet-list {
        font-size: 0.85rem;
        padding-left: 1rem;
    }

    .bullet-list li {
        margin-top: 0.65rem;
    }

    /* Step labels */
    .step-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    /* Vendor stats ultra-mobile */
    .vendor-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .vendor-stat {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .vendor-stat-value {
        font-size: 1.25rem;
    }

    /* Testimonials ultra-mobile */
    .testimonial-quote {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .testimonial-name {
        font-size: 0.85rem;
    }

    .testimonial-rating {
        font-size: 0.85rem;
    }

    /* App section ultra-mobile */
    .app-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .app-badge {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .app-phone {
        width: 180px;
        height: 360px;
        padding: 0.75rem;
    }

    /* Footer ultra-mobile */
    .footer-main {
        padding-bottom: 2.5rem;
        gap: 2rem;
    }

    .footer-column {
        gap: 1rem;
    }

    .footer-logo {
        height: 24px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-heading {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

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

    .footer-bottom-content {
        gap: 0.85rem;
    }

    .footer-copyright,
    .footer-legal,
    .footer-location {
        font-size: 0.8rem;
    }

    .footer-legal {
        gap: 0.5rem;
    }
}

/* Mobile optimizations */
@media (max-width: 720px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Improve touch targets */
    a, button, .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Optimize images for mobile */
    img {
        height: auto;
    }
}