/* =========================
   ROOT VARIABLES
========================= */

:root {
  --bg: #0f172a;
  --bg-soft: #1e293b;
  --accent: #f40552;
  --accent-soft: rgba(244, 5, 82, 0.15);
  --text: #f8fafc;
  --text-soft: #94a3b8;
  --border: rgba(255,255,255,0.08);

  --radius: 10px;
  --container: 1100px;
}

/* =========================
   RESET
========================= */

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

html, body {
  height: 100%;
}

body {
  font-family: 'Rubik', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* =========================
   LAYOUT
========================= */

.container {
  width: 90%;
  max-width: var(--container);
  margin: auto;
}

section {
  padding: 100px 0;
}

/* =========================
   HEADER
========================= */

header {
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}

.links {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.links a:hover {
  color: var(--accent);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 140px 0 120px 0;
}

.hero .lead {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-top: 20px;
  line-height: 1.1;
}

.hero p {
  margin-top: 25px;
  color: var(--text-soft);
  max-width: 650px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.2s ease;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  background: var(--bg-soft);
}

.btn.primary {
  background: var(--accent);
  border: none;
  color: white;
}

.btn.primary:hover {
  background: #d90447;
}

.btn.block {
  width: 100%;
  text-align: center;
}

/* =========================
   SERVICES
========================= */

.features {
  background: var(--bg-soft);
}

.features .preamb {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 40px;
}

.features article {
  background: var(--bg);
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.25s ease;
  height: 100%;
}

.features article:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.features h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.features p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* =========================
   ABOUT
========================= */

.faq h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}

.faq p {
  margin-top: 15px;
  color: var(--text-soft);
}

/* =========================
   CONTACT FORM
========================= */

form input,
form textarea {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* =========================
   FOOTER
========================= */

footer {
  margin-top: auto;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer .links {
  justify-content: center;
  margin-bottom: 20px;
}

footer .links a {
  color: var(--text-soft);
}

footer .links a:hover {
  color: var(--accent);
}

footer .copyright {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .links {
    display: none;
  }

  section {
    padding: 70px 0;
  }
}
