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

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

/* BUTTONS */
.btn,
.btn-outline {
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

.btn {
  background: #2563eb;
  color: #fff;
  transition: 0.2s ease;
}

.btn-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  transition: 0.2s ease;
}

/* SECTIONS (single spacing system) */
section {
  padding: 80px 8%;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #555;
}

/* HERO IMAGE */
.hero-image {
  border-radius: 20px;
}

.dashboard-card {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.dashboard-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* FEATURES + GRID */
h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card,
.price-card,
.faq-item {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
}

/* SCREENSHOTS */
.shot {
  height: 260px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 16px;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border: 1px solid #ddd;
  text-align: center;
}

/* PRICING */
.price-card {
  text-align: center;
  max-width: 450px;
  margin: auto;
}

.price {
  font-size: 56px;
  font-weight: bold;
}

/* CTA */
.cta {
  text-align: center;
  background: #111;
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  section {
    padding: 40px 20px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .features .grid {
    grid-template-columns: 1fr !important;
  }

  .card {
    width: 100%;
  }

}

.card {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s ease;
}

.icon {
  font-size: 26px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 10px;
}

.text {
  font-weight: 500;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn-demo {
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  background: #10b981;
  color: #fff;
  transition: 0.2s ease;
}

.btn-demo:hover {
  background: #0f9a6d;
  transform: translateY(-2px);
}

.btn:hover{
	transform: translateY(-2px);
}

.btn-outline:hover{
	transform: translateY(-2px);
}

.badge {
  display: inline-block;
  background: #ffedd5;
  color: #c2410c;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.urgency {
  margin: 15px 0;
  font-size: 16px;
  color: #b91c1c;
  font-weight: 600;
}

.trust-line {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card .text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card .text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.card .text strong {
  font-size: 16px;
  color: #111;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* simple mobile version */
  }
}

.footer {
  background: #111;
  color: #fff;
  padding: 60px 8%;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer h3, .footer h4 {
  margin-bottom: 15px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.logo a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:35px;
    height:35px;
    object-fit:contain;
}

.logo span{
    font-size:2rem;
    font-weight:700;
    line-height:1;
}