/* EaseAssets - Clean Minimal Styles */

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

:root {
    --primary: #4338ca;
    --primary-dark: #3730a3;
    --accent: #5B5FC7;
    --accent-light: #6366f1;
    --text: #334155;
    --text-light: #64748b;
    --text-dark: #1e293b;
    --bg: #ffffff;
    --bg-light: #f5f5ff;
    --bg-alt: #eef2ff;
    --border: #e0e7ff;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
    color: var(--accent);
}

.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: var(--bg-light);
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/10;
}

.screenshot-placeholder.large {
    max-width: 560px;
    aspect-ratio: 4/3;
}

/* Trust Strip */
.trust-strip {
    padding: 32px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trust-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trust-label {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.trust-logo {
    height: 50px;
    width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-logo-lg {
    height: 70px;
    width: 160px;
}

.trust-logo-xl {
    height: 90px;
    width: 200px;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Feature Block */
.feature-block {
    padding: 100px 0;
    background: var(--white);
}

.feature-block.alt {
    background: var(--bg-light);
}

.feature-block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block-content.reverse {
    direction: rtl;
}

.feature-block-content.reverse > * {
    direction: ltr;
}

.feature-block-image {
    display: flex;
    justify-content: center;
}

.feature-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.feature-block-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-block-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
    font-size: 15px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.feature-list li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 8px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

/* E-Waste UI Card */
.ewaste-ui-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    padding: 24px;
    width: 100%;
    max-width: 560px;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.ui-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.ui-badge {
    padding: 5px 12px;
    background: #ecfdf5;
    color: #059669;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.ui-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
}

.stat-card.warning {
    background: #fef3c7;
}

.stat-card.alert {
    background: #fee2e2;
}

.stat-card.success {
    background: #d1fae5;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card.warning .stat-num { color: #b45309; }
.stat-card.alert .stat-num { color: #dc2626; }
.stat-card.success .stat-num { color: #059669; }

.stat-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ui-table {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 10px 14px;
    background: var(--bg-alt);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 12px 14px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.days {
    font-weight: 600;
}

.days.critical { color: #dc2626; }
.days.warning { color: #d97706; }
.days.normal { color: #059669; }

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.critical {
    background: #fee2e2;
    color: #dc2626;
}

.status-badge.warning {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.normal {
    background: #d1fae5;
    color: #059669;
}

.ui-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fef2f2;
    border-radius: 8px;
    font-size: 13px;
    color: #b91c1c;
    font-weight: 500;
}

.alert-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Compliance Card with Hover Overlay */
.compliance-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.compliance-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.compliance-tab svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.compliance-card-wrapper:hover .compliance-tab {
    background: var(--accent-light);
}

.compliance-card-wrapper:hover .compliance-tab svg {
    transform: rotate(180deg);
}

.compliance-card-container {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.compliance-img {
    display: block;
    width: 100%;
    border-radius: 0 0 12px 12px;
    transition: opacity 0.35s ease;
}

.compliance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100%;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.35s ease;
    z-index: 1;
}

.compliance-card-wrapper:hover .compliance-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.compliance-card-wrapper:hover .compliance-img {
    opacity: 0;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
    width: 100%;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.4;
}

.dropdown-item .check {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .compliance-card-wrapper {
        margin: 16px 0;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dropdown-item {
        font-size: 13px;
    }

    .compliance-overlay {
        padding: 28px;
    }
}

/* Testimonials Carousel */
.testimonials-carousel {
    padding: 80px 0;
    background: var(--white);
}

.carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--accent);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 24px;
    }

    .testimonial-content p {
        font-size: 16px;
    }
}

/* How Section */
.how-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.5;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

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

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cta-form input {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.cta-form button {
    grid-column: span 2;
    padding: 14px 24px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-light);
}

.footer-links {
    display: contents;
}

.footer-links > div h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links > div a {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links > div a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
    z-index: 99;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-cta-mobile {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .feature-block-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block-content.reverse {
        direction: ltr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .feature-block-text {
        text-align: center;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav.mobile-open {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .nav-dropdown {
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
    }

    .nav-dropdown-trigger {
        font-size: 16px;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 10px;
        padding: 0 0 0 16px;
    }

    .nav-dropdown-menu a {
        border-bottom: none;
        padding: 10px 0;
    }

    .header .btn.header-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: block !important;
        background: var(--accent);
        color: var(--white) !important;
        text-align: center;
        padding: 14px 24px !important;
        border-radius: 6px;
        margin-top: 10px;
        font-weight: 500;
        border-bottom: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header .container {
        height: 64px;
    }

    .logo-img {
        height: 28px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-screenshot {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 15px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-block {
        padding: 60px 0;
    }

    .feature-block-content {
        gap: 30px;
    }

    .feature-block-text h2 {
        font-size: 22px;
    }

    .feature-block-text p {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 14px;
    }

    /* E-Waste UI Card Mobile */
    .ewaste-ui-card {
        padding: 16px;
    }

    .ui-title {
        font-size: 15px;
    }

    .ui-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-num {
        font-size: 18px;
    }

    .stat-label {
        font-size: 9px;
    }

    .table-header, .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 8px 10px;
        font-size: 11px;
    }

    /* Trust Strip Mobile */
    .trust-strip {
        padding: 24px 0;
    }

    .trust-logos-track {
        gap: 40px;
    }

    .trust-logo {
        height: 35px;
        width: 80px;
    }

    .trust-logo-lg {
        height: 45px;
        width: 100px;
    }

    .trust-logo-xl {
        height: 55px;
        width: 120px;
    }

    /* Steps Mobile */
    .how-section {
        padding: 60px 0;
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 50px 0;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-form {
        grid-template-columns: 1fr;
    }

    .cta-form button {
        grid-column: span 1;
    }

    /* Testimonials Mobile */
    .testimonials-carousel {
        padding: 50px 0;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
        gap: 20px;
    }

    .testimonial-image img {
        width: 80px;
        height: 80px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .testimonial blockquote {
        font-size: 18px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .footer-links > div {
        text-align: left;
    }

    /* Compliance Card Mobile */
    .compliance-tab {
        font-size: 12px;
        padding: 10px 16px;
    }

    .compliance-overlay {
        padding: 20px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dropdown-item {
        font-size: 12px;
    }
}

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

    .hero-text h1 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .feature-block-text h2 {
        font-size: 20px;
    }

    .cta-text h2 {
        font-size: 20px;
    }

    .ui-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
