/* ===========================
   GUJJU APPS – style.css
   =========================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --secondary: #F59E0B;
  --accent: #EC4899;
  --green: #10B981;
  --bg: #FFFFFF;
  --bg-soft: #F9F5FF;
  --bg-apps: #1E0A40;
  --text: #1F1235;
  --text-muted: #6B7280;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(124,58,237,0.12);
  --shadow-card: 0 4px 24px rgba(31,18,53,0.10);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #C4B5FD, #FCD34D);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(124,58,237,0.10);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.light { color: #C4B5FD; background: rgba(196,181,253,0.15); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px; cursor: pointer;
  border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(124,58,237,0.45); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  padding: 10px 22px; border-radius: 50px; cursor: pointer;
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-outline-sm:hover { background: var(--primary); color: #fff; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 13px 28px; border-radius: 50px; cursor: pointer;
  background: linear-gradient(135deg, #34D399, #059669);
  color: #fff; border: none;
  box-shadow: 0 4px 16px rgba(16,185,129,0.35);
  transition: var(--transition);
}
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(16,185,129,0.45); }
.btn-store .store-icon { width: 20px; height: 20px; fill: #fff; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(124,58,237,0.12); }
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  font-weight: 700; font-size: 0.95rem; padding: 8px 16px;
  border-radius: 50px; color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(124,58,237,0.08); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px; border-radius: 3px;
  background: var(--primary); transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #F9F5FF 0%, #EDE9FE 40%, #FCE7F3 100%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
  gap: 40px; flex-wrap: wrap;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.45; pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 500px; height: 500px; background: #DDD6FE; top: -150px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: #FBCFE8; bottom: -100px; right: -80px; animation-delay: 2s; }
.blob-3 { width: 300px; height: 300px; background: #FDE68A; top: 30%; left: 40%; animation-delay: 4s; }
@keyframes blobFloat { from { transform: scale(1) translate(0,0); } to { transform: scale(1.08) translate(20px, -20px); } }

.float-shape {
  position: absolute; width: 44px; height: 44px; user-select: none; pointer-events: none;
  animation: floatUp 6s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.5; }
  50% { transform: translateY(-30px) rotate(5deg); opacity: 0.9; }
}

.hero-inner { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-block; font-size: 0.85rem; font-weight: 700;
  color: var(--primary); background: rgba(124,58,237,0.12);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
  border: 1.5px solid rgba(124,58,237,0.2);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.1; margin-bottom: 24px; color: var(--text);
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: white; border-radius: var(--radius); padding: 20px 28px;
  box-shadow: var(--shadow-card); width: fit-content;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-number { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--primary); }
.stat-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1.5px; height: 44px; background: rgba(124,58,237,0.15); }

.hero-art {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.art-circle {
  position: absolute; border-radius: 50%;
}
.art-c1 {
  width: 380px; height: 380px;
  background: linear-gradient(135deg, #DDD6FE, #FBCFE8);
  animation: spin-slow 12s linear infinite;
}
.art-c2 {
  width: 320px; height: 320px;
  background: white;
  box-shadow: var(--shadow);
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-app-img {
  position: relative; z-index: 2; width: 260px; height: 260px;
  border-radius: 40px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(124,58,237,0.25);
  animation: heroImgFloat 4s ease-in-out infinite alternate;
}
@keyframes heroImgFloat { from { transform: translateY(0); } to { transform: translateY(-16px); } }

/* Hero company card */
.hero-company-card {
  position: relative; z-index: 2;
  background: white; border-radius: 28px;
  padding: 32px 28px 24px;
  box-shadow: 0 20px 60px rgba(124,58,237,0.2);
  text-align: center; min-width: 260px;
  animation: heroImgFloat 4s ease-in-out infinite alternate;
}
.hero-company-logo { width: 80px; height: 80px; border-radius: 20px; object-fit: cover; margin: 0 auto 12px; }
.hero-company-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--text); line-height: 1.1; }
.hero-company-sub { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.hero-apps-preview { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hap-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--hc, #7C3AED);
  background: color-mix(in srgb, var(--hc, #7C3AED) 12%, white);
  border: 1.5px solid color-mix(in srgb, var(--hc, #7C3AED) 25%, white);
  padding: 4px 12px; border-radius: 50px;
}
.hap-chip svg { stroke: var(--hc, #7C3AED); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ---------- About / Features ---------- */
.about { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid rgba(124,58,237,0.08);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(124,58,237,0.2);
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.08); border-radius: 16px;
  margin-bottom: 16px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; color: var(--primary); }
.feature-card p { font-size: 0.95rem; color: var(--text-muted); }

/* ---------- Apps Section ---------- */
.apps-section {
  background: var(--bg-apps);
  position: relative; padding-top: 0; padding-bottom: 0;
}
.apps-wave-top, .apps-wave-bottom { line-height: 0; }
.apps-wave-top svg, .apps-wave-bottom svg { width: 100%; height: 80px; }
.apps-section .container { padding-top: 64px; padding-bottom: 64px; }
.apps-grid { display: flex; flex-direction: column; gap: 32px; }

.app-card {
  background: rgba(255,255,255,0.06);
  border-radius: 28px;
  border: 1.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: var(--transition);
}
.app-card:hover { border-color: rgba(167,139,250,0.4); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.app-card.featured { background: rgba(255,255,255,0.09); }
.app-card-badge {
  background: linear-gradient(135deg, var(--secondary), #F97316);
  color: white; font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.05em; padding: 8px 20px; display: inline-block;
}
.app-card-inner { display: flex; gap: 40px; padding: 36px 36px 28px; flex-wrap: wrap; }
.app-card-left { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.app-icon-wrap {
  width: 140px; height: 140px; border-radius: 32px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  background: white;
  flex-shrink: 0;
}
.app-icon { width: 100%; height: 100%; object-fit: cover; }
.platform-badges { display: flex; flex-direction: column; gap: 8px; }
.platform-badge {
  font-size: 0.78rem; font-weight: 700; padding: 5px 14px;
  border-radius: 50px; white-space: nowrap;
}
.platform-badge.android { background: rgba(52,211,153,0.2); color: #34D399; border: 1px solid rgba(52,211,153,0.3); }
.platform-badge.coming-soon { background: rgba(251,191,36,0.15); color: #FBBF24; border: 1px solid rgba(251,191,36,0.25); }
.app-card-right { flex: 1; min-width: 240px; }
.app-name {
  font-family: var(--font-display); font-size: 1.9rem; color: white;
  margin-bottom: 6px; line-height: 1.15;
}
.app-name span { color: var(--primary-light); }
.app-tagline { color: #C4B5FD; font-weight: 700; margin-bottom: 16px; font-size: 1rem; }
.app-desc { color: rgba(255,255,255,0.72); font-size: 0.97rem; margin-bottom: 20px; line-height: 1.7; }
.app-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cat-tag {
  font-size: 0.8rem; font-weight: 700; padding: 5px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.cat-tag:hover { background: rgba(255,255,255,0.15); }
.app-features-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
  margin-bottom: 28px;
}
.app-features-list li { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.app-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.screenshots-strip {
  display: flex; gap: 12px; padding: 20px 36px 28px;
  overflow-x: auto;
}
.screenshots-strip::-webkit-scrollbar { height: 4px; }
.screenshots-strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 2px; }
.screenshots-strip::-webkit-scrollbar-thumb { background: rgba(167,139,250,0.4); border-radius: 2px; }
.screenshot-placeholder {
  flex-shrink: 0; width: 110px; height: 180px;
  background: rgba(255,255,255,0.07); border-radius: 16px;
  border: 1.5px dashed rgba(167,139,250,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; transition: var(--transition); cursor: default;
}
.screenshot-placeholder:hover { background: rgba(255,255,255,0.12); border-color: rgba(167,139,250,0.6); }
.ss-icon { font-size: 2rem; }
.screenshot-placeholder span { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 700; text-align: center; }

/* ---- App Inside (What's Inside) ---- */
.app-inside { padding: 8px 36px 32px; }
.inside-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.inside-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.inside-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 10px 18px;
  transition: var(--transition);
  cursor: default;
}
.inside-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.inside-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: color-mix(in srgb, var(--ic, #A78BFA) 20%, transparent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.inside-icon svg { width: 18px; height: 18px; stroke: var(--ic, #A78BFA); }
.inside-item span { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.85); }

/* ---- Star rating ---- */
.star-rating { display: inline-flex; gap: 2px; align-items: center; margin-left: 6px; vertical-align: middle; }

/* ---- Privacy icon size ---- */
.privacy-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(124,58,237,0.08); border-radius: 18px; margin: 0 auto 16px; }
.privacy-icon svg { width: 30px; height: 30px; }
.cs-content { text-align: center; padding: 40px; }
.cs-icon { font-size: 3rem; margin-bottom: 16px; }
.cs-content h3 { font-family: var(--font-display); font-size: 1.5rem; color: white; margin-bottom: 10px; }
.cs-content p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 20px; max-width: 340px; }
.cs-badge {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(251,191,36,0.15); color: #FBBF24; border: 1px solid rgba(251,191,36,0.3);
}

/* ---------- Love / Testimonials ---------- */
.love-section { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-card); border: 1.5px solid rgba(124,58,237,0.08);
  transition: var(--transition); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 5rem;
  color: var(--primary-light); opacity: 0.25;
  position: absolute; top: 8px; left: 20px; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial-card p { font-size: 0.97rem; color: var(--text); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-card footer { font-size: 0.85rem; font-weight: 700; color: var(--primary); }

/* ---------- Privacy ---------- */
.privacy-section { background: var(--bg); }
.privacy-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 48px; }
.privacy-card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 32px 24px;
  border: 1.5px solid rgba(124,58,237,0.08); text-align: center;
  transition: var(--transition);
}
.privacy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.2); }
.privacy-icon { font-size: 2.5rem; margin-bottom: 16px; }
.privacy-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.privacy-card p { font-size: 0.9rem; color: var(--text-muted); }
.privacy-cta { text-align: center; }

/* ---------- Contact ---------- */
.contact-section { background: linear-gradient(135deg, #F9F5FF, #FCE7F3); }
.contact-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.contact-content { flex: 1; min-width: 280px; }
.contact-content .section-sub { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
  transition: var(--transition);
}
a.contact-item:hover { color: var(--primary); }
.contact-icon { font-size: 1.5rem; }
.contact-visual { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.contact-bubble {
  width: 100px; height: 100px; border-radius: 50%;
  background: white; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  animation: bubbleFloat 4s ease-in-out infinite alternate;
}
.contact-bubble.small { width: 70px; height: 70px; font-size: 1.8rem; }
@keyframes bubbleFloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* ---------- Footer ---------- */
.footer { background: #120728; color: rgba(255,255,255,0.7); }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 56px 24px 40px;
  max-width: 1180px; margin: 0 auto;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: white; }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }
.footer-links-group h4 {
  font-family: var(--font-display); font-size: 1rem; color: white;
  margin-bottom: 18px; letter-spacing: 0.02em;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links-group a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-bottom {
  text-align: center; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { padding: 120px 32px 80px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex; position: fixed; top: 72px; left: 0; right: 0;
    background: white; padding: 16px 24px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding: 110px 24px 80px; text-align: center; }
  .hero-inner { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { width: 100%; justify-content: center; }
  .hero-art { order: -1; }
  .hero-app-img { width: 200px; height: 200px; }
  .art-c1 { width: 280px; height: 280px; }
  .art-c2 { width: 240px; height: 240px; }
  .app-card-inner { flex-direction: column; align-items: center; text-align: center; }
  .app-card-left { flex-direction: row; align-items: flex-start; }
  .app-features-list { grid-template-columns: 1fr; }
  .app-actions { justify-content: center; }
  .app-categories { justify-content: center; }
  .contact-inner { flex-direction: column; text-align: center; }
  .contact-details { align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .section-sub { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 80%; height: 1.5px; }
  .hero-title { font-size: 2.4rem; }
}

/* ---------- Animations ---------- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
