/* ============================================
   TandPay Landing Page — TrustAndPay
   Color Palette:
   - Primary: Deep Teal #0D7377
   - Secondary: Warm Gold #F5A623
   - Success: #2ECC71
   - Error: #E74C3C
   - Dark: #1A1A2E
   - Light: #FAFAFA
   ============================================ */

:root {
    --primary: #0D7377;
    --primary-dark: #095456;
    --primary-light: #e6f4f4;
    --secondary: #F5A623;
    --secondary-light: #FFF3DC;
    --success: #2ECC71;
    --error: #E74C3C;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --gray-900: #1a1a2e;
    --gray-700: #4a4a5a;
    --gray-500: #7a7a8a;
    --gray-300: #c4c4d0;
    --gray-100: #f0f0f5;
    --white: #ffffff;
    --off-white: #FAFAFA;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.12);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* SECTION LABELS */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    padding: 14px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: normal;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(13, 115, 119, 0.35);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    line-height: 1;
}

.logo-trust {
    color: var(--primary);
}

.logo-pay {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
}

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

/* Footer logo overrides */
.footer-logo-icon {
    height: 36px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--gray-100);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    color: var(--dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0fafa 40%, var(--secondary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 115, 119, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* PHONE MOCKUP */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    background: var(--dark);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.1);
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
}

.phone-header {
    padding: 0;
}

.phone-status-bar {
    height: 28px;
    background: var(--primary);
    position: relative;
}

.phone-status-bar::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 12px;
    background: var(--dark);
    border-radius: 10px;
}

.phone-app-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    border-bottom: 1px solid var(--gray-100);
}

.phone-body {
    padding: 16px;
}

.phone-card {
    margin-bottom: 16px;
}

.phone-product-img {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.phone-product-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.phone-product-price {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.phone-seller {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.seller-avatar {
    width: 24px;
    height: 24px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: block;
}

.seller-rating {
    color: var(--secondary);
    font-weight: 600;
}

.phone-input {
    background: var(--gray-100);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.phone-btn-momo {
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.phone-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    padding-bottom: 8px;
}

/* Hero mockup image */
.hero-mockup-img {
    max-width: 380px;
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-mockup-img:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    padding: 20px 0;
    background: var(--gray-100);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-strip-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

.trust-strip-item svg {
    flex-shrink: 0;
}

.trust-strip-mtn {
    width: 40px;
    height: 20px;
    flex-shrink: 0;
}

.trust-strip-platforms {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-strip-platforms svg {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trust-strip-platforms svg:hover {
    opacity: 1;
}

.trust-strip-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-300);
}

@media (max-width: 768px) {
    .trust-strip {
        padding: 16px 0;
    }
    .trust-strip-items {
        gap: 16px;
    }
    .trust-strip-divider {
        display: none;
    }
    .trust-strip-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trust-strip-items {
        gap: 12px 20px;
        justify-content: center;
    }
}

/* ============================================
   STEPS MICROCOPY & PRICING MICROCOPY
   ============================================ */
.steps-microcopy,
.pricing-microcopy {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center;
}

.pricing-microcopy {
    margin-top: 16px;
    font-size: 0.8rem;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    padding: 100px 0;
    text-align: center;
}

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

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Problem section images */
.problem-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 8px;
    border-radius: var(--radius-md);
}

.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 20px 0 12px;
}

.problem-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.problem-card-solution {
    background: var(--primary-light);
    border-color: var(--primary);
    border-width: 2px;
}

.problem-icon {
    display: inline-flex;
}

/* ============================================
   WHO IS THIS FOR
   ============================================ */
.audience-section {
    padding: 100px 0;
    background: var(--off-white);
    text-align: center;
}

.audience-subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

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

.audience-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.audience-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.audience-icon svg {
    width: 56px;
    height: 56px;
}

.audience-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.audience-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Buyer callout block */
.audience-buyer-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    margin-bottom: 40px;
}

.audience-buyer-icon {
    flex-shrink: 0;
}

.audience-buyer-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.audience-buyer-text p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Platform logos bar */
.audience-platforms-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

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

.audience-platform-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.platform-logo:hover {
    transform: scale(1.15);
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .audience-section {
        padding: 60px 0;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .audience-card {
        padding: 24px 20px;
    }

    .audience-buyer-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }

    .audience-platforms-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: 100px 0;
    background: var(--off-white);
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 360px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-icon-placeholder {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

/* Step images */
.step-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 90px;
    color: var(--primary);
    opacity: 0.4;
}

.steps-cta {
    margin-top: 48px;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    padding: 100px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}

.benefit-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease;
}

.benefit-col:hover {
    box-shadow: var(--shadow-md);
}

.benefit-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.buyer-badge {
    background: var(--primary-light);
    color: var(--primary);
}

.seller-badge {
    background: var(--secondary-light);
    color: #b87a10;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-list li strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.benefit-list li p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   SELLER REPUTATION
   ============================================ */
.reputation-section {
    padding: 100px 0;
    background: var(--off-white);
}

.reputation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
}

.reputation-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.reputation-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reputation-stat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.reputation-stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.reputation-stat strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--dark);
}

.reputation-stat p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Profile card mockup */
.reputation-mockup {
    display: flex;
    justify-content: center;
}

.profile-card-mock {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 360px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.profile-mock-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.profile-mock-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
}

.profile-mock-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-mock-handle {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.profile-mock-stats-row {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}

.profile-mock-stat {
    text-align: center;
}

.profile-mock-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

.profile-mock-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-mock-reviews {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.profile-mock-review {
    background: var(--off-white);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
}

.profile-mock-review-stars {
    color: var(--secondary);
    font-size: 0.8rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.profile-mock-review p {
    font-size: 0.82rem;
    color: var(--gray-700);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 4px;
}

.profile-mock-review span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.profile-mock-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--primary-light);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

/* Dual buyer/seller cards */
.reputation-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.reputation-dual-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all 0.3s ease;
}

.reputation-dual-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.reputation-dual-icon {
    flex-shrink: 0;
}

.reputation-dual-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.reputation-dual-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .reputation-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .reputation-stats {
        max-width: 480px;
        margin: 0 auto;
        text-align: left;
    }

    .profile-card-mock {
        max-width: 340px;
        margin: 0 auto;
    }

    .reputation-dual {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .reputation-section {
        padding: 60px 0;
    }

    .reputation-layout {
        gap: 32px;
    }

    .profile-card-mock {
        padding: 20px;
        max-width: 300px;
    }

    .profile-mock-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .profile-mock-stat-num {
        font-size: 1.1rem;
    }

    .reputation-dual-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   TRUST & SECURITY
   ============================================ */
.trust-section {
    padding: 100px 0;
    background: var(--off-white);
}

.trust-content {
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: left;
}

.trust-feature {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.trust-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-feature p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-section {
    padding: 100px 0;
    background: var(--off-white);
    text-align: center;
}

.partners-subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.partner-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.partner-logo-svg {
    width: 120px;
    height: 40px;
    border-radius: 8px;
}

.partner-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.partner-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.partner-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof-section {
    padding: 100px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
}

.buyer-avatar {
    background: var(--primary-light);
}

.seller-avatar {
    background: var(--secondary-light);
}

.rider-avatar {
    background: #e8f8e8;
}

/* Testimonial avatar images */
.author-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer logo — icon override handled by .footer-logo-icon */

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--off-white);
    text-align: center;
}

.pricing-card-container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
    text-align: center;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-percent {
    font-size: 2rem;
}

.pricing-desc {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.pricing-divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--dark);
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-example {
    background: var(--primary-light);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 28px;
    text-align: left;
    line-height: 1.6;
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 100px 0;
    text-align: center;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-section .highlight {
    color: var(--secondary);
}

.final-cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   SEO ABOUT SECTION
   ============================================ */
.seo-about-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.seo-about-content {
    max-width: 760px;
    margin: 0 auto;
}

.seo-about-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.seo-about-content p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-about-content strong {
    color: var(--dark);
}

.seo-last-updated {
    font-size: 0.85rem !important;
    color: var(--gray-500) !important;
    margin-top: 24px !important;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

/* Speakable summary — hidden visually but accessible to crawlers */
.speakable-summary[hidden] {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
    display: flex;
}

.footer-brand .logo-trust {
    color: var(--gray-300);
}

.footer-brand .logo-pay {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-300);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-300);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-address {
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-made {
    color: var(--gray-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        margin-top: 32px;
    }

    .hero-mockup-img {
        max-width: 280px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .problem-img {
        max-width: 200px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .step-img {
        max-width: 180px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

/* Tablet — collapse nav to hamburger */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

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

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

    .mobile-menu {
        top: 56px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

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

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-visual {
        display: none;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .section-label {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    /* Problem section mobile */
    .problem-section {
        padding: 60px 0;
    }

    .problem-card {
        padding: 28px 20px;
    }

    .problem-img {
        max-width: 180px;
    }

    .problem-card h3 {
        font-size: 1.1rem;
        margin: 12px 0 8px;
    }

    /* How it works mobile */
    .how-section {
        padding: 60px 0;
    }

    .step-card {
        padding: 20px 16px;
    }

    .step-img {
        max-width: 160px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .steps-cta {
        margin-top: 32px;
    }

    /* Benefits mobile */
    .benefits-section {
        padding: 60px 0;
    }

    .benefit-col {
        padding: 28px 20px;
    }

    /* Security mobile */
    .trust-section {
        padding: 60px 0;
    }

    .trust-feature {
        padding: 24px;
    }

    /* Partners mobile */
    .partners-section {
        padding: 60px 0;
    }

    .partner-card {
        padding: 28px 20px;
    }

    /* Testimonials mobile */
    .social-proof-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    /* Pricing mobile */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-amount {
        font-size: 3.2rem;
    }

    .pricing-percent {
        font-size: 1.6rem;
    }

    .pricing-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .pricing-features {
        gap: 12px;
        margin-bottom: 24px;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .pricing-example {
        font-size: 0.85rem;
        padding: 12px 16px;
    }

    /* FAQ mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* CTA mobile */
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-section p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }

    /* SEO about mobile */
    .seo-about-section {
        padding: 48px 0;
    }

    .seo-about-heading {
        font-size: 1.25rem;
    }

    /* Footer mobile */
    .footer {
        padding: 48px 0 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .lang-switcher {
        justify-content: center;
    }

    /* Logo mobile */
    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        height: 28px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .problem-img {
        max-width: 150px;
    }

    .step-img {
        max-width: 140px;
    }

    .pricing-amount {
        font-size: 2.8rem;
    }

    .author-avatar-img {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 3px;
}

.lang-switcher-mobile {
    justify-content: center;
    width: fit-content;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
    color: var(--primary);
}

.nav-dropdown-toggle svg {
    transition: transform 0.2s;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.15s;
}

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

/* ============================================
   KINYARWANDA LANGUAGE OVERRIDES
   Reduce font sizes & spacing for longer text
   ============================================ */
html[lang="rw"] .btn-nav {
    padding: 10px 20px;
}

html[lang="rw"] .hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
}

html[lang="rw"] .hero-subtitle {
    font-size: 1.05rem;
}

html[lang="rw"] .section-label {
    font-size: 0.78rem;
}

html[lang="rw"] h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

html[lang="rw"] .problem-card h3 {
    font-size: 1.1rem;
}

html[lang="rw"] .problem-card p {
    font-size: 0.88rem;
}

html[lang="rw"] .audience-card h3 {
    font-size: 0.95rem;
}

html[lang="rw"] .audience-card p {
    font-size: 0.82rem;
}

html[lang="rw"] .audience-subtitle {
    font-size: 0.95rem;
}

html[lang="rw"] .step-card h3 {
    font-size: 1.05rem;
}

html[lang="rw"] .step-card p {
    font-size: 0.88rem;
}

html[lang="rw"] .benefit-list li strong {
    font-size: 0.95rem;
}

html[lang="rw"] .benefit-list li p {
    font-size: 0.82rem;
}

html[lang="rw"] .reputation-desc {
    font-size: 0.95rem;
}

html[lang="rw"] .reputation-stat strong {
    font-size: 0.88rem;
}

html[lang="rw"] .reputation-stat p {
    font-size: 0.82rem;
}

html[lang="rw"] .trust-item {
    font-size: 0.82rem;
}

html[lang="rw"] .faq-question {
    font-size: 0.95rem;
}

html[lang="rw"] .faq-answer p {
    font-size: 0.88rem;
}

html[lang="rw"] .pricing-desc {
    font-size: 1rem;
}

html[lang="rw"] .pricing-features li {
    font-size: 0.9rem;
}

html[lang="rw"] .final-cta-section p {
    font-size: 1.05rem;
}

html[lang="rw"] .btn {
    font-size: 0.9rem;
    padding: 12px 24px;
}

html[lang="rw"] .btn-lg {
    font-size: 0.95rem;
    padding: 14px 28px;
}

@media (max-width: 768px) {
    html[lang="rw"] .hero h1 {
        font-size: 1.5rem;
    }

    html[lang="rw"] h2 {
        font-size: 1.25rem;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS (APPLE-GRADE)
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    transition: transform 0.1s linear;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}