/* Baseline styling for Limatek website */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1,h2,h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero section */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: #0077c2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #005fa3;
}

/* Solution grid */
.solutions h2,
.workflow h2,
.audience h2,
.deliverables h2,
.packages h2,
.faq h2,
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.solution-item {
  text-align: center;
}

.solution-item img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.solution-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.solution-item p {
  font-size: 0.95rem;
}

/* Workflow */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step img {
  width: 64px;
  height: 64px;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step p {
  font-size: 0.9rem;
}

/* Audience grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.audience-item img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.audience-item h3 {
  margin-bottom: 0.5rem;
}

.audience-item p {
  font-size: 0.9rem;
}

/* Deliverables */
.deliverables ul {
  list-style: disc inside;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.4;
}

.deliverables li {
  margin-bottom: 0.5rem;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  text-align: center;
}

.package-item {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.package-item.highlight {
  border-color: #0077c2;
  box-shadow: 0 4px 8px rgba(0, 119, 194, 0.2);
}

.package-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.package-item .price {
  font-size: 1.4rem;
  color: #0077c2;
  margin-bottom: 1rem;
}

.package-item ul {
  list-style: none;
  margin-bottom: 1rem;
}

.package-item ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.package-button {
  background: #0077c2;
  color: #fff;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
}

.package-button:hover {
  background: #005fa3;
}

/* FAQ */
.faq details {
  margin-bottom: 1rem;
  background: #f7f7f7;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Contact form */
.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-row label {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  background: #0077c2;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  margin: 1rem auto 0;
}

button[type="submit"]:hover {
  background: #005fa3;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  background: #f4f4f4;
  margin-top: 3rem;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
}