/* ===== CSS Variables ===== */
:root {
    --primary: #22C55E;
    --primary-light: #4ADE80;
    --primary-dark: #16A34A;
    --secondary: #06B6D4;
    --accent: #8B5CF6;
    --red: #EF4444;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --white: #FFFFFF;
    --black: #000000;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-links a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.language-switcher {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-full);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
    padding: 8px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

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

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--gray-900);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gray-800);
}

.btn-store i {
    font-size: 28px;
}

.btn-store.ios i {
    color: var(--white);
}

.btn-store.android i {
    color: #3DDC84;
}

.btn-store div {
    text-align: left;
}

.btn-store span {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 400;
}

.btn-store strong {
    font-size: 16px;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.stat-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--black);
    border-radius: var(--radius-full);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 50px 12px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 16px;
    padding: 0 4px;
}

.preview-header i {
    color: var(--primary);
    font-size: 18px;
}

.preview-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.preview-tab {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.preview-tab.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.preview-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.preview-card-icon.shopping {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.preview-card-icon.delivery {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
}

.preview-card-icon.care {
    background: linear-gradient(135deg, #F9A8D4, #EC4899);
}

.preview-card-icon.tools {
    background: linear-gradient(135deg, #A78BFA, var(--accent));
}

.preview-card-icon.garden {
    background: linear-gradient(135deg, #6EE7B7, #10B981);
}

.preview-card-icon.moving {
    background: linear-gradient(135deg, #67E8F9, var(--secondary));
}

.preview-cards.hidden {
    display: none;
}

.preview-badge.service {
    background: linear-gradient(135deg, #818CF8, #6366F1);
}

.preview-card-content {
    flex: 1;
    min-width: 0;
    padding-right: 10px;
}

.preview-card-content strong {
    display: block;
    font-size: 11px;
    color: var(--gray-800);
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.3;
}

.preview-card-content span {
    font-size: 10px;
    color: var(--gray-500);
    display: block;
}

.preview-badge {
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

.preview-badge.free {
    background: linear-gradient(135deg, #F87171, var(--red));
    font-size: 10px;
    padding: 5px 8px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

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

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

.feature-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon.delivery {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
    color: #F59E0B;
}

.feature-icon.care {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
    color: var(--accent);
}

.feature-icon.fixing {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    color: var(--red);
}

.feature-icon.errand {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    color: var(--primary);
}

.feature-icon.general {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.2));
    color: var(--secondary);
}

.feature-icon.free-help {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.2));
    color: #EC4899;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-50);
}

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

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

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Download Section ===== */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.download-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: var(--white);
    color: var(--gray-900);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 28px;
}

.store-btn.ios i {
    color: var(--gray-900);
}

.store-btn.android i {
    color: var(--primary);
}

.store-btn-text {
    text-align: left;
}

.store-btn-text span {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
}

.store-btn-text strong {
    font-size: 15px;
    font-weight: 700;
}


/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ===== Footer ===== */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

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

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

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    font-size: 14px;
    color: var(--gray-400);
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

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

/* ===== Legal Pages ===== */
.legal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.legal-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-header p {
    font-size: 18px;
    opacity: 0.9;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.legal-content ul, .legal-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--gray-600);
}

.legal-content a {
    color: var(--primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    background: var(--gray-100);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--gray-600);
}

.contact-box {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 40px;
}

.lang-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.lang-switch button {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.lang-switch button.active,
.lang-switch button:hover {
    background: var(--primary);
    color: var(--white);
}

.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* ===== Become a Helper Section ===== */
.become-helper {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.become-helper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.helper-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.helper-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.helper-icon-main {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.helper-icon-main i {
    font-size: 64px;
    color: var(--white);
}

.helper-icon-float {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.helper-icon-float i {
    font-size: 24px;
}

.helper-icon-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.helper-icon-1 i {
    color: #F59E0B;
}

.helper-icon-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

.helper-icon-2 i {
    color: #EC4899;
}

.helper-icon-3 {
    top: 30%;
    left: 5%;
    animation-delay: 1s;
}

.helper-icon-3 i {
    color: #F59E0B;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.helper-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.helper-text > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.helper-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.helper-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.helper-benefits li:last-child {
    border-bottom: none;
}

.helper-benefits li > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.helper-benefits li div {
    flex: 1;
}

.helper-benefits li strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.helper-benefits li span {
    font-size: 14px;
    color: var(--gray-500);
}

.helper-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Map Showcase Section ===== */
.map-showcase {
    padding: 100px 0;
    background: var(--white);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-visual {
    position: relative;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
}

.map-streets {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.6) 49%, rgba(255,255,255,0.6) 51%, transparent 52%),
        linear-gradient(45deg, transparent 47%, rgba(255,255,255,0.4) 48%, rgba(255,255,255,0.4) 52%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(255,255,255,0.4) 48%, rgba(255,255,255,0.4) 52%, transparent 53%);
    background-size: 80px 80px, 80px 80px, 120px 120px, 120px 120px;
}

.map-pin {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.pin-1 { top: 20%; left: 25%; }
.pin-2 { top: 35%; right: 25%; }
.pin-3 { bottom: 30%; left: 15%; }
.pin-4 { bottom: 25%; right: 30%; }

.pin-marker {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

.pin-marker i {
    transform: rotate(45deg);
    color: var(--white);
    font-size: 18px;
}

.pin-marker.shopping {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.pin-marker.medical {
    background: linear-gradient(135deg, #F87171, var(--red));
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.pin-marker.tools {
    background: linear-gradient(135deg, #A78BFA, var(--accent));
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

@keyframes bounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-5px); }
}

.pin-1 .pin-marker { animation-delay: 0s; }
.pin-2 .pin-marker { animation-delay: 0.3s; }
.pin-3 .pin-marker { animation-delay: 0.6s; }
.pin-4 .pin-marker { animation-delay: 0.9s; }

.pin-popup {
    position: absolute;
    top: -10px;
    left: 60px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
}

.map-pin:hover .pin-popup,
.map-pin.active .pin-popup {
    opacity: 1;
    transform: translateX(0);
}

.pin-popup strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pin-popup span {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

.pin-fee {
    margin-top: 8px !important;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white) !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm);
    display: inline-block !important;
}

.pin-fee.free {
    background: linear-gradient(135deg, #F87171, var(--red));
}

.user-location {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.user-dot {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 5;
}

.user-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

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

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

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

.testimonial-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #FCD34D;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

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

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 280px;
        height: 540px;
    }

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

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

    .step::after {
        display: none;
    }

    .download-buttons {
        flex-wrap: wrap;
    }

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

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .helper-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .helper-visual {
        order: -1;
    }

    .helper-illustration {
        width: 250px;
        height: 250px;
    }

    .helper-icon-main {
        width: 120px;
        height: 120px;
    }

    .helper-icon-main i {
        font-size: 48px;
    }

    .helper-icon-float {
        width: 44px;
        height: 44px;
    }

    .helper-icon-float i {
        font-size: 18px;
    }

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

    .helper-text h2 {
        font-size: 28px;
    }

    .helper-benefits li {
        text-align: left;
    }

    .helper-text .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .map-visual {
        height: 400px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card.featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-section {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-section.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-store {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat {
        flex: 0 0 auto;
    }

    .stat-text {
        font-size: 12px;
    }

    .pin-popup {
        display: block;
        left: 50%;
        top: auto;
        bottom: 60px;
        transform: translateX(-50%);
    }

    .map-pin.active .pin-popup {
        opacity: 1;
        transform: translateX(-50%);
    }

    .helper-buttons {
        flex-direction: column;
    }

    .helper-buttons .btn-primary,
    .helper-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

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

    .download-text h2 {
        font-size: 28px;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .map-visual {
        height: 350px;
    }

    .pin-marker {
        width: 36px;
        height: 36px;
    }

    .pin-marker i {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}
