/* ============================================
   Ethio Digital Platforms PLC — Shared Styles
   Brand: BRAND_IDENTITY.md
   Colors: #1E40AF primary, #059669 secondary
   Font: Inter + Noto Sans Ethiopic (AM)
   ============================================ */

:root {
    --primary: #1E40AF;
    --primary-light: #3B82F6;
    --primary-dark: #1E3A8A;
    --secondary: #059669;
    --secondary-light: #10B981;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 50%, #E0E7FF 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}
.btn-secondary:hover { background: var(--gray-50); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-green {
    background: linear-gradient(135deg, #059669, #10B981);
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation */
.nav {
    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 var(--gray-200);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    text-decoration: none;
    white-space: nowrap;
}
.nav-logo img { width: 36px; height: 36px; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-toggle {
    position: relative;
    display: inline-flex;
}
.lang-toggle .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.lang-toggle .lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.lang-toggle .lang-btn svg {
    width: 14px; height: 14px;
    transition: transform 0.2s;
}
.lang-toggle.open .lang-btn svg {
    transform: rotate(180deg);
}
.lang-toggle .lang-btn .lang-globe {
    width: 15px; height: 15px; opacity: 0.6;
}
.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 170px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 1000;
    overflow: hidden;
    animation: langFadeIn 0.15s ease;
}
@keyframes langFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lang-toggle.open .lang-menu { display: block; }
.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: background 0.15s;
}
.lang-menu a:hover { background: var(--gray-50); }
.lang-menu a.active {
    color: var(--primary);
    font-weight: 600;
    background: var(--gray-50);
}
.lang-menu a .lang-check {
    margin-left: auto;
    width: 14px; height: 14px;
    color: var(--primary);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 12px 0;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700) !important;
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--primary) !important; }
.nav-dropdown-menu .dd-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    padding: 8px 20px 4px;
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}
.mobile-drawer.open, .mobile-overlay.open { display: block; }
.mobile-drawer ul { list-style: none; margin-top: 32px; }
.mobile-drawer ul li { margin-bottom: 8px; }
.mobile-drawer ul a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-md);
}
.mobile-drawer ul a:hover { background: var(--gray-50); color: var(--primary); }
.mobile-drawer .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    float: right;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Hero */
.hero {
    padding: 160px 0 120px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin: -4px 0 16px;
}
.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 48px; }
.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.hero-stat-label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-mockup {
    width: 320px; height: 640px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}
.hero-mockup-screen {
    width: 100%; height: 100%;
    background: var(--gradient-primary);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 40px 24px;
}
.hero-mockup-logo { font-size: 64px; margin-bottom: 16px; }
.hero-mockup-logo img { width: 72px; height: 72px; border-radius: 14px; }
.hero-mockup-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.hero-mockup-subtitle { font-size: 14px; opacity: 0.8; }
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.floating-card-1 { top: 80px; left: -40px; animation: float 6s ease-in-out infinite; }
.floating-card-2 { bottom: 120px; right: -40px; animation: float 6s ease-in-out infinite 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-card-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
}
.floating-card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.floating-card-text strong { display: block; font-size: 14px; color: var(--gray-900); }
.floating-card-text span { font-size: 12px; color: var(--gray-500); }

/* Trusted */
.trusted { padding: 60px 0; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.trusted-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; }
.trusted-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* App Cards */
.apps { padding: 120px 0; background: var(--gray-50); }
.apps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.app-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}
.app-card:hover::before { opacity: 1; }
.app-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.app-icon {
    width: 72px; height: 72px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    overflow: hidden;
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.app-icon.myhome { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.app-icon.mednear { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.app-icon.carenear { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }
.app-icon.servicepulse { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.app-status { padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.app-status.live { background: #D1FAE5; color: #065F46; }
.app-status.coming { background: var(--gray-100); color: var(--gray-600); }
.app-status.planned { background: #FEF3C7; color: #92400E; }
.app-card h3 { font-size: 24px; margin-bottom: 12px; }
.app-card p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.app-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.app-feature { padding: 6px 14px; background: var(--gray-100); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--gray-700); }
.app-metrics { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200); margin-bottom: 24px; }
.app-metric strong { display: block; font-size: 20px; color: var(--gray-900); }
.app-metric span { font-size: 13px; color: var(--gray-500); }
.app-actions { display: flex; gap: 12px; }
.app-actions .btn { flex: 1; padding: 12px 20px; font-size: 14px; }

/* Impact */
.impact { padding: 120px 0; background: var(--gray-900); color: var(--white); }
.impact .section-label { color: var(--primary-light); }
.impact .section-title { color: var(--white); }
.impact .section-description { color: var(--gray-400); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.impact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-800);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-700);
}
.impact-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #60A5FA, #34D399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}
.impact-label { font-size: 16px; color: var(--gray-400); }

/* Enterprise */
.enterprise { padding: 120px 0; background: var(--gray-50); }
.enterprise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.enterprise-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.enterprise-card h3 { font-size: 18px; margin-bottom: 10px; }
.enterprise-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* About */
.about { padding: 120px 0; background: var(--white); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: 44px; margin-bottom: 24px; letter-spacing: -0.02em; }
.about-text p { font-size: 18px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.value-card {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}
.value-icon {
    width: 48px; height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
}
.value-card h4 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.6; }
.about-image {
    width: 100%; height: 500px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
}
.about-image .logo-large { font-size: 80px; margin-bottom: 24px; }
.about-image h3 { font-size: 28px; color: var(--white); margin-bottom: 8px; }
.about-image p { font-size: 16px; opacity: 0.8; }

/* CTA */
.cta { padding: 100px 0; background: var(--gradient-primary); text-align: center; }
.cta h2 { font-size: 44px; color: var(--white); margin-bottom: 20px; }
.cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; }
.cta .btn-white { background: var(--white); color: var(--primary); }
.cta .btn-white:hover { background: var(--gray-100); }
.cta .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.cta .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Contact */
.contact { padding: 120px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h2 { font-size: 44px; margin-bottom: 24px; }
.contact-info > p { font-size: 18px; color: var(--gray-600); margin-bottom: 48px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.2s;
}
.contact-method:hover { border-color: var(--primary); background: var(--white); box-shadow: var(--shadow-md); }
.contact-method-icon {
    width: 56px; height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}
.contact-method-text strong { display: block; font-size: 16px; color: var(--gray-900); margin-bottom: 4px; }
.contact-method-text span { font-size: 14px; color: var(--gray-600); }
.contact-form {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 48px;
    border: 1px solid var(--gray-200);
}
.contact-form h3 { font-size: 24px; margin-bottom: 32px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all 0.2s;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

/* Footer */
.footer { background: var(--gray-900); color: var(--white); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: var(--gray-400); margin: 20px 0 24px; font-size: 15px; line-height: 1.7; }
.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);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-300);
    margin-bottom: 24px;
}
.footer-section a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 14px;
    transition: color 0.2s;
}
.footer-section a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
}
.footer-bottom p { color: var(--gray-500); font-size: 14px; }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a { color: var(--gray-500); text-decoration: none; font-size: 14px; }
.footer-legal a:hover { color: var(--white); }

/* ============ PAGE-SPECIFIC ============ */

/* Page Hero (inner pages) */
.page-hero {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}
.page-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.page-hero p { font-size: 20px; color: var(--gray-600); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* Content sections used on inner pages */
.page-section { padding: 100px 0; }
.page-section:nth-child(even) { background: var(--gray-50); }
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { font-size: 36px; margin-bottom: 20px; }
.page-content h3 { font-size: 24px; margin: 40px 0 16px; }
.page-content p { font-size: 17px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.page-content ul, .page-content ol {
    margin: 16px 0 24px 20px;
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.8;
}
.page-content li { margin-bottom: 10px; }

/* Feature grid (for product pages, trust, etc.) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
    width: 56px; height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}
.feature-icon.green { background: linear-gradient(135deg, #059669, #10B981); }
.feature-icon.amber { background: linear-gradient(135deg, #D97706, #F59E0B); }
.feature-icon.rose { background: linear-gradient(135deg, #E11D48, #FB7185); }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* Two-column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Steps / How-it-works */
.steps { counter-reset: step; }
.step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.step-number {
    counter-increment: step;
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}
.step-content h3 { font-size: 20px; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* Partner types grid */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.partner-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s;
}
.partner-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.partner-card .icon { font-size: 40px; margin-bottom: 16px; }
.partner-card h3 { font-size: 18px; margin-bottom: 8px; }
.partner-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* Blockquote */
.founder-quote {
    padding: 32px 40px;
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    margin: 40px 0;
}
.founder-quote p {
    font-size: 20px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.founder-profile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 36px;
}

.founder-profile picture,
.founder-profile img {
    width: 100%;
    display: block;
}

.founder-profile img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.founder-meta h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.founder-meta p {
    margin: 0;
    color: var(--gray-600);
}

/* Timeline */
.timeline { margin-top: 48px; }
.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-date {
    min-width: 120px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}
.timeline-content h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-content p { font-size: 15px; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 44px; }
    .hero-description { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .apps-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .enterprise-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 120px 0 80px; }
    .hero h1 { font-size: 36px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero { padding: 120px 0 60px; }
    .section-title { font-size: 32px; }
    .impact-grid { grid-template-columns: 1fr; }
    .enterprise-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 32px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .feature-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .page-section { padding: 60px 0; }
    .founder-profile {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* Amharic typography */
html[lang="am"] body {
    font-family: 'Noto Sans Ethiopic', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0;
}
