.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    background:
        radial-gradient(circle at 20% 30%, rgba(91, 189, 114, 0.10), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 244, 95, 0.12), transparent 55%),
        linear-gradient(180deg, var(--dowsa-bg) 0%, #fff 100%);
}
.hero-clouds { position: absolute; inset: 0; pointer-events: none; }
.cloud {
    position: absolute; background: #fff; border-radius: 100px;
    opacity: 0.7; box-shadow: 0 4px 20px rgba(51, 37, 75, 0.05);
}
.cloud-1 { top: 12%; inset-inline-start: 6%; width: 90px; height: 30px; }
.cloud-2 { top: 28%; inset-inline-end: 12%; width: 120px; height: 36px; }
.cloud-3 { top: 70%; inset-inline-start: 18%; width: 80px; height: 28px; opacity: 0.5; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative; z-index: 2;
}
.hero-text h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--dowsa-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-text p {
    font-size: 18px;
    color: var(--dowsa-text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-text .dowsa-cta { padding: 16px 36px; font-size: 17px; }
.cta-arrow {
    display: inline-block; transition: transform 0.2s;
}
.dowsa-cta:hover .cta-arrow { transform: translateX(4px); }
body[dir="rtl"] .dowsa-cta:hover .cta-arrow { transform: translateX(-4px); }

.hero-illustration {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-illustration img {
    max-width: 100%; max-height: 500px;
    filter: drop-shadow(0 24px 48px rgba(51, 37, 75, 0.18));
}
.hero-illustration-placeholder {
    width: 100%; max-width: 420px;
}

.mission-section {
    padding: 100px 0;
    background: #fff;
}
.mission-content {
    max-width: 720px; margin: 0 auto;
    text-align: center;
}
.mission-content h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    color: var(--dowsa-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.mission-content p {
    font-size: 17px;
    color: var(--dowsa-text-muted);
    max-width: 580px; margin: 0 auto;
}
.mission-image { margin-top: 40px; }
.mission-image img {
    margin: 0 auto;
    border-radius: var(--dowsa-radius);
    box-shadow: var(--dowsa-shadow-md);
}

.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--dowsa-bg) 100%);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.step-card {
    background: #fff;
    border-radius: var(--dowsa-radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--dowsa-shadow-sm);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dowsa-shadow-md);
}
.step-number {
    position: absolute;
    top: -20px; inset-inline-start: 50%; transform: translateX(-50%);
    width: 44px; height: 44px;
    background: var(--dowsa-accent);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    box-shadow: 0 8px 20px rgba(91, 189, 114, 0.4);
}
body[dir="rtl"] .step-number { transform: translateX(50%); }
.step-icon {
    width: 64px; height: 64px;
    margin: 24px auto 16px;
    border-radius: var(--dowsa-radius-sm);
    background: var(--dowsa-bg);
    display: flex; align-items: center; justify-content: center;
}
.step-icon img { width: 36px; height: 36px; object-fit: contain; }
.step-card h3 {
    font-size: 20px; font-weight: 700; color: var(--dowsa-primary);
    margin-bottom: 8px;
}
.step-card p {
    color: var(--dowsa-text-muted); font-size: 15px;
}

.services-section {
    padding: 100px 0;
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--dowsa-bg);
    border-radius: var(--dowsa-radius);
    padding: 36px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dowsa-shadow-md);
}
.service-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--dowsa-shadow-sm);
}
.service-icon img { width: 40px; height: 40px; object-fit: contain; }
.service-card h3 {
    font-size: 17px; font-weight: 700;
    color: var(--dowsa-primary);
    margin-bottom: 6px;
}
.service-card p {
    font-size: 13px; color: var(--dowsa-text-muted);
}

.why-section {
    padding: 100px 0;
    background: var(--dowsa-bg);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px; margin: 0 auto;
}
.why-card {
    background: #fff;
    border-radius: var(--dowsa-radius);
    padding: 32px;
    display: flex; gap: 20px; align-items: flex-start;
    box-shadow: var(--dowsa-shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dowsa-shadow-md);
}
.why-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--dowsa-accent), #4aa861);
    display: flex; align-items: center; justify-content: center;
}
.why-icon img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.why-card h3 {
    font-size: 18px; font-weight: 700;
    color: var(--dowsa-primary);
    margin-bottom: 6px;
}
.why-card p { color: var(--dowsa-text-muted); font-size: 14px; }

.stats-section {
    padding: 80px 0;
    background: var(--dowsa-primary);
    color: #fff;
}
.stats-section .section-heading { margin-bottom: 48px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-box {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--dowsa-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-value {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--dowsa-highlight);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dowsa-bg) 0%, #fff 100%);
}
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.app-text h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--dowsa-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}
.app-text p {
    color: var(--dowsa-text-muted);
    font-size: 17px;
    margin-bottom: 28px;
}
.app-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
}
.app-btn {
    display: inline-flex; align-items: center;
    background: var(--dowsa-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--dowsa-radius-sm);
    font-weight: 600; font-size: 15px;
    transition: all 0.2s;
}
.app-btn:hover {
    background: var(--dowsa-text-dark);
    color: #fff;
    transform: translateY(-2px);
}
.app-showcase {
    display: flex; justify-content: center;
}
.app-showcase img {
    max-height: 500px;
    filter: drop-shadow(0 24px 48px rgba(51, 37, 75, 0.20));
}

.join-cta-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(91, 189, 114, 0.15), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 244, 95, 0.15), transparent 50%),
        var(--dowsa-primary);
    color: #fff;
}
.join-cta-content {
    text-align: center;
    max-width: 700px; margin: 0 auto;
}
.join-cta-content h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}
.join-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}
.join-cta-buttons {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.join-cta-buttons .dowsa-cta-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.join-cta-buttons .dowsa-cta-outline:hover {
    background: #fff;
    color: var(--dowsa-primary);
    border-color: #fff;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .hero-text p { margin-inline: auto; }
    .hero-illustration { order: -1; }
    .steps-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .app-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .app-buttons { justify-content: center; }
}

@media (max-width: 600px) {
    .hero-section { padding: 48px 0 80px; }
    .mission-section,
    .how-it-works-section,
    .services-section,
    .why-section,
    .app-download-section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}
