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

:root {
  --blue: #29ABE2;
  --blue-dark: #1a8abf;
  --text: #222;
  --muted: #666;
  --bg: #fff;
  --border: #e0e0e0;
  --max: 860px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* NAV */
header {
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
nav .logo img { height: 40px; display: block; }
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}
nav ul a:hover, nav ul a.active { color: var(--blue); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f4fc 100%);
  padding: 80px 24px;
  text-align: center;
}
.hero img { height: 90px; margin-bottom: 24px; }
.hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* PRODUCTS */
.products {
  padding: 64px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.products h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; text-align: center; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.product-logo { max-width: 240px; max-height: 120px; width: auto; height: auto; margin: 0 auto 16px; display: block; }
.product-logo[src*="propmanlite"] { transform: scale(1.10); transform-origin: center top; }
.product-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
.product-card p { color: var(--muted); font-size: 0.95rem; }

/* CONTENT PAGE */
.page {
  max-width: var(--max);
  margin: 48px auto;
  padding: 0 24px 80px;
}
.page h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.page h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; }
.page p, .page li { color: #444; font-size: 0.97rem; margin-bottom: 10px; }
.page ul { padding-left: 20px; }
.page a { color: var(--blue); }

/* SUPPORT FORM */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 640px) { .support-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.contact-info p { color: var(--muted); font-size: 0.95rem; margin-bottom: 8px; }
.contact-section-heading { margin-top: 28px; }
.contact-mailto { color: #444; font-size: 0.97rem; }
.contact-info a { color: var(--blue); text-decoration: none; }
form label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; margin-top: 16px; }
form input, form select, form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}
form textarea { height: 120px; resize: vertical; }
form button {
  margin-top: 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
form button:hover { background: var(--blue-dark); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--blue); }
footer .footer-links { margin-bottom: 8px; }
