:root {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: #111;
  background-color: #dfdfdf;
  --green: #25d366;
  --dark: #050607;
  --red: #d32f2f;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #cfcfcf;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-green {
  background: linear-gradient(135deg, var(--green), #1ba158);
  color: #fff;
  box-shadow: var(--shadow);
  animation: pulse 2.5s infinite;
}

.btn-outline {
  border: 1px solid #111;
  color: #111;
  background: #fff;
  margin-left: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 10;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  height: 40px;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}


main {
  padding: 2rem 1.5rem 5rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-lead {
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.4rem;
}

.hero-bullets li::before {
  content: '•';
  color: var(--green);
  margin-right: 0.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.hero-ctas .btn {
  flex: 1;
  min-width: 150px;
}

.hero-note {
  color: #666;
  font-size: 0.9rem;
}

.hero-media img {
  width: 100%;
  border-radius: 1.25rem;
}

.section {
  margin-top: 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.section-header h2 {
  margin: 0.25rem 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: #5d5d5d;
}

.card-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #fafafa;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card h3 {
  margin: 0;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #444;
}

.section-cta {
  margin-top: 1.5rem;
}

.grid-three,
.grid-four {
  display: grid;
  gap: 1rem;
}

.grid-three {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.grid-four {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.grid-three article,
.grid-four article {
  background: #fefefe;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #eee;
}

.testimonials {
  background: #050607;
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.testimonial-grid article {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
  color: #ffc107;
  margin: 0 0 0.6rem;
}

.testimonial-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.testimonial-credit img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.form-section {
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.faq-grid article {
  background: #fafafa;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #eee;
}

.form-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px #fafafa;
}

.form-card form {
  display: grid;
  gap: 0.75rem;
}

.form-card label {
  font-size: 0.9rem;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-card input,
.form-card textarea,
.form-card select {
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #ccc;
  font-family: inherit;
}

.form-card textarea {
  min-height: 90px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.6rem;
}

.contact {
  text-align: center;
}

.contact-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(13, 13, 13, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 25;
}

.footer-fixed-bar .btn-green {
  background: linear-gradient(135deg, var(--green), #1ba158);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.footer-fixed-bar .btn-yellow {
  background: linear-gradient(135deg, #ffb347, #ff7e5f);
  color: #111;
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 3rem;
  background: #111;
  color: #fff;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.footer-brand img {
  height: 50px;
}

.footer-contact p,
.footer-links a {
  margin: 0.25rem 0;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-actions {
    display: none;
  }
  .hero {
    padding: 1.75rem;
  }
  .section,
  main {
    padding: 1.5rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    margin-left: 0;
  }
  .footer-fixed-bar {
    display: flex;
  }
}
.btn-yellow {
  background: linear-gradient(135deg, #ffb347, #ff7e5f);
  color: #111;
  box-shadow: var(--shadow);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
