/* mobile.css */
body {
  font-family: 'Rubik', sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #222;
}

.mobile-header {
  background-color: #161b22;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.mobile-header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.mobile-header p {
  font-size: 1.2rem;
  opacity: 0.85;
}

.mobile-nav {
  background: #222;
  overflow-x: auto;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.mobile-nav li {
  margin: 0 1rem;
}

.mobile-nav a {
  display: block;
  color: #ccc;
  padding: 1rem;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fff;
  border-bottom: 2px solid #0af;
}

.mobile-main {
  padding: 2rem;
  line-height: 1.6;
}

section {
  margin-bottom: 3rem;
}

h2 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.spec-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.spec-comparison th,
.spec-comparison td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: center;
}

.spec-comparison th {
  background-color: #eee;
}

.poll form,
.cta form {
  margin-top: 1rem;
}

input[type="email"] {
  padding: 0.5rem;
  width: 60%;
  max-width: 300px;
  margin-right: 0.5rem;
}

button {
  padding: 0.5rem 1rem;
  background: #0af;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0077cc;
}

.mobile-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}

.mobile-footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 0;
}

.mobile-footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}
