/* UtilityWorth – Website Styles */
/* Color palette from app */
:root {
  --blue: #4F6BFF;
  --blue-dark: #3A52D4;
  --blue-light: #EEF1FF;
  --green: #34C759;
  --red: #FF3B30;
  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --bg: #F5F5F7;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.btn-nav {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--blue-dark) !important; }

/* ─── HERO ─── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 520px; }
.badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.gradient {
  background: linear-gradient(135deg, var(--blue), #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(79,107,255,0.35);
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.price-hint { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.hero-screenshot img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
}

/* ─── FEATURES ─── */
.features {
  background: var(--bg);
  padding: 100px 24px;
  text-align: center;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* ─── SCREENSHOTS ─── */
.screenshots-section {
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}
.screenshots-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.screen-item img {
  width: 220px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.15));
  transition: transform .3s;
}
.screen-item img:hover { transform: translateY(-6px) scale(1.02); }
.screen-center img { width: 240px; }
.screen-item p { margin-top: 12px; color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.screenshots-row-2 { justify-content: center; }
.screenshots-row-2 .screen-item img { width: 220px; }

/* ─── HIGHLIGHTS ─── */
.highlights {
  background: var(--bg);
  padding: 100px 24px;
}
.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.highlight-row:last-child { margin-bottom: 0; }
.highlight-row-reverse { direction: rtl; }
.highlight-row-reverse > * { direction: ltr; }
.highlight-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.highlight-text p { color: var(--text-secondary); font-size: 17px; line-height: 1.7; }
.highlight-img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ─── DOWNLOAD ─── */
.download {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2F6E 100%);
  color: #fff;
}
.download h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.download p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 36px; }
.btn-appstore img {
  height: 54px;
  display: block;
  margin: 0 auto 20px;
  transition: transform .2s, opacity .2s;
}
.btn-appstore:hover img { transform: scale(1.04); opacity: 0.9; }
.price-note { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.footer-logo .logo-icon { width: 26px; height: 26px; border-radius: 6px; }
.footer-links { list-style: none; display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; }

/* ─── SUPPORT PAGE ─── */
.page-hero {
  background: var(--blue-light);
  padding: 80px 24px 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; color: var(--text); }
.page-hero p { color: var(--text-secondary); font-size: 17px; }
.support-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
}
.support-section { margin-bottom: 60px; }
.support-section h2 { font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 20px; letter-spacing: -0.3px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-a { color: var(--text-secondary); font-size: 15px; line-height: 1.65; }
.contact-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.contact-card p { color: var(--text-secondary); margin-bottom: 20px; }
.btn-email {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
}
.btn-email:hover { background: var(--blue-dark); }

/* ─── PRIVACY PAGE ─── */
.privacy-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px 80px;
}
.privacy-content h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; color: var(--text); }
.privacy-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.privacy-content ul { padding-left: 20px; color: var(--text-secondary); font-size: 15px; line-height: 2; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 60px 20px 40px; gap: 40px; }
  .hero-text { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-screenshot { order: -1; }
  .hero-screenshot img { max-width: 260px; }
  .feature-grid { grid-template-columns: 1fr; }
  .screenshots-row { flex-direction: column; align-items: center; gap: 16px; }
  .screen-item img, .screen-center img { width: 240px; }
  .highlight-row { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .highlight-row-reverse { direction: ltr; }
  .highlight-img { max-width: 240px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-links { gap: 14px; }
}
