/* ===================================================
   BASE RESET & VARIABLES – quasafe
   =================================================== */
:root {
  --color-bg: #ffffff;
  --color-bg-light: #f5f9ff;
  --color-primary: #38B6FF;
  --color-primary-dark: #1E8EDC;

  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;

  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Ubuntu, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

p {
  color: var(--color-text-muted);
}

/* ===================================================
   LAYOUT
   =================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 5rem 0;
}

main {
  padding-top: 110px;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn,
.q-btn-primary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(56,182,255,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn:hover,
.q-btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(56,182,255,0.35);
}

/* ===================================================
   UTILS
   =================================================== */
.text-center { text-align: center; }
.opacity-80 { opacity: 0.8; }
.text-lg { font-size: 1.1rem; }
