* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f8fafc;
  color: #0f172a;
}

/* HEADER */
.header {
  padding: 20px 40px 10px;
  text-align: center;
}

.logo {
  height: 90px; /* change this if you want bigger/smaller */
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px 20px 60px;
  text-align: center;
}

/* STATUS BOX */
.status-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #f59e0b;
  background: #ffffff;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 22px;
}

/* GEAR */
.gear-icon {
  width: 36px;
  height: 36px;
  background: #5faea1;
  border-radius: 50%;
  position: relative;
}

.gear-icon::before {
  content: "⚙";
  color: white;
  font-size: 18px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* HEADINGS */
h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.subtitle {
  max-width: 720px;
  margin: auto;
  color: #64748b;
  font-size: 18px;
  margin-bottom: 55px;
  line-height: 1.6;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.card {
  background: white;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  text-align: left;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #64748b;
  line-height: 1.6;
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 14px;
}

.orange {
  background: #ffedd5;
  color: #f97316;
}

.green {
  background: #dcfce7;
  color: #16a34a;
}

/* ABOUT */
.about {
  background: white;
  padding: 45px;
  border-radius: 24px;
  text-align: left;
  margin-bottom: 60px;
}

.about h2 {
  margin-bottom: 18px;
}

.about p {
  margin-bottom: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ASSIST */
.assist {
  background: white;
  padding: 45px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
}

.buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}

.phone {
  background: linear-gradient(135deg, #22c55e, #2563eb);
  color: white;
}

.email {
  border: 2px solid #22c55e;
  color: #22c55e;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 35px;
  font-size: 14px;
  color: #64748b;
}

.footer-small {
  margin-top: 8px;
  font-size: 13px;
}
