/* ===== MukulSoft - Warm & Friendly ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #faf7f3;
    --bg-secondary: #f3ede5;
    --bg-card: #ffffff;
    --bg-card-hover: #fffaf5;
    --border: #e8dfd4;
    --border-light: #f0e9df;
    --text-primary: #2d2420;
    --text-secondary: #6b5d54;
    --text-muted: #9b8d84;
    --accent: #f06a3a;
    --accent-light: #e89670;
    --accent-glow: rgba(240, 106, 58, 0.12);
    --gradient-1: linear-gradient(135deg, #f06a3a 0%, #f9a878 100%);
    --gradient-2: linear-gradient(135deg, #f06a3a 0%, #e85d3a 100%);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 600; }

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons - Softer, pill-shaped */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    transition: all var(--transition); cursor: pointer;
    border: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(240,106,58,0.25); }
.btn-primary:hover { background: #e85d38; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,106,58,0.35); }
.btn-outline { border: 2px solid var(--border); color: var(--text-primary); background: var(--bg-card); }
.btn-outline:hover { border-color: var(--accent); background: #fff5f0; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* Navigation - Solid, warm */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 247, 243, 0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; font-weight: 600; color: var(--text-primary); }
.nav-logo .logo-icon { font-size: 1.3rem; color: var(--accent); }
.nav-logo .logo-text strong { font-weight: 700; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 16px; border-radius: 50px; font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); transition: all var(--transition); }
.nav-links a:hover { color: var(--text-primary); background: var(--border-light); }
.nav-links .nav-cta { background: var(--accent); color: #fff !important; padding: 8px 20px; margin-left: 8px; }
.nav-links .nav-cta:hover { background: #e85d38; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }

/* Hero - Light, warm gradient */
.hero {
    padding: 140px 0 80px; position: relative; overflow: hidden;
    background: linear-gradient(180deg, #fff5f0 0%, var(--bg-primary) 40%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,106,58,0.06) 0%, transparent 70%);
}
.hero-badge {
    display: inline-block; padding: 6px 16px; background: #fff; border: 1px solid var(--border);
    border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--accent);
    margin-bottom: 20px; box-shadow: var(--shadow);
}
.hero-title { margin-bottom: 20px; position: relative; z-index: 1; }
.hero-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; }
.stat-item { display: flex; flex-direction: column; background: var(--bg-card); padding: 16px 20px; border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow); }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-blob { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(240,106,58,0.08) 0%, transparent 60%); border-radius: 50%; }
.hero-phone-mockup {
    position: relative; z-index: 1; width: 200px; height: 400px;
    background: #fff; border: 2px solid var(--border); border-radius: 28px; padding: 10px;
    box-shadow: var(--shadow-lg);
}
.phone-screen { width: 100%; height: 100%; background: var(--bg-secondary); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.app-grid-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
.mock-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.mock-icon.m1 { background: #fee2d5; }
.mock-icon.m2 { background: #ffe4d0; }
.mock-icon.m3 { background: #d5eefb; }
.mock-icon.m4 { background: #e0f0dc; }

/* Sections */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-tag { display: inline-block; padding: 5px 14px; background: #fff5f0; border-radius: 50px; font-size: 0.78rem; font-weight: 700; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { color: var(--text-secondary); font-size: 1rem; }

/* Apps Grid - Card based with soft shadows */
.apps { background: var(--bg-secondary); }
.apps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.app-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 28px;
    transition: all var(--transition); display: flex; flex-direction: column;
    box-shadow: var(--shadow);
}
.app-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fcd5c0; }
.app-card-icon {
    width: 56px; height: 56px; border-radius: 16px; display: flex;
    align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0;
}
.app-card-body { flex: 1; display: flex; flex-direction: column; }
.app-card-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.app-badge { display: inline-block; padding: 3px 10px; background: #fff5f0; border-radius: 6px; font-size: 0.72rem; font-weight: 600; color: var(--accent); margin-bottom: 10px; width: fit-content; }
.app-card-body p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.6; flex: 1; }
.app-features { margin-bottom: 18px; }
.app-features li { font-size: 0.82rem; color: var(--text-muted); padding: 3px 0; padding-left: 18px; position: relative; }
.app-features li::before { content: '✓'; position: absolute; left: 0; top: 3px; color: var(--accent); font-size: 0.7rem; font-weight: 700; }
.app-card-body .btn { align-self: flex-start; }

/* About - Two column, light */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); margin-bottom: 14px; font-size: 0.93rem; line-height: 1.7; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; transition: all var(--transition); box-shadow: var(--shadow); }
.value-card:hover { border-color: #fcd5c0; box-shadow: var(--shadow-lg); }
.value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Contact - Warm card */
.contact { background: linear-gradient(180deg, var(--bg-secondary) 0%, #fff5f0 100%); }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 52px 44px; text-align: center; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.contact-card h2 { margin-bottom: 10px; }
.contact-card > p { color: var(--text-secondary); margin-bottom: 28px; }
.contact-info { display: flex; justify-content: center; gap: 36px; margin-bottom: 28px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.93rem; }
.contact-item svg { color: var(--accent); flex-shrink: 0; }
.contact-links { display: flex; justify-content: center; gap: 12px; }

/* Footer - Warm */
.footer { background: #2d2420; border-top: none; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.footer-logo .logo-icon { font-size: 1.2rem; color: var(--accent); }
.footer-logo .logo-text strong { font-weight: 700; color: var(--accent-light); }
.footer-brand p { color: #9b8d84; font-size: 0.85rem; }
.footer-links h4 { color: #f5f0eb; margin-bottom: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #9b8d84; font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid #3a302b; padding-top: 22px; text-align: center; }
.footer-bottom p { color: #6b5d54; font-size: 0.78rem; }

/* Legal Pages */
.legal-page { padding: 130px 0 80px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 { margin-bottom: 6px; }
.legal-page .last-updated { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 36px; }
.legal-content h2 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 10px; color: var(--accent); }
.legal-content p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.7; font-size: 0.93rem; }
.legal-content ul { margin-bottom: 14px; padding-left: 22px; }
.legal-content li { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .apps-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-primary); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
    .nav-links .nav-cta { margin-left: 0; margin-top: 6px; }
    .hero { padding: 110px 0 50px; }
    section { padding: 50px 0; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .stat-item { padding: 12px 16px; }
    .about-values { grid-template-columns: 1fr; }
    .contact-card { padding: 36px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .app-card { padding: 22px; }
}
