/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;            /* whole page white */
  color: #0f172a;
  line-height: 1.6;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  color: #1d4ed8;
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  color: #0f172a;
}

.logo {
  width: 40px;
  margin-right: 10px;
}

.brand-text .company {
  font-size: 18px;
  font-weight: 700;
}

.brand-text .tagline {
  font-size: 13px;
  color: #6b7280;
}

.nav a {
  margin-left: 18px;
  color: #4b5563;
  font-size: 14px;
}

.nav a:hover {
  color: #2563eb;
}

/* ---------------------------------------------------------
   SECTIONS / LAYOUT
--------------------------------------------------------- */
.section {
  padding: 28px 0;            /* tighter vertical spacing */
}

.section + .section {
  border-top: 1px solid #f3f4f6;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.section-lead {
  color: #6b7280;
  margin-bottom: 16px;
}

/* ---------------------------------------------------------
   HERO WITH BACKGROUND IMAGE
--------------------------------------------------------- */
.hero {
  position: relative;
  color: #ffffff;
  padding: 56px 0 16px 0;  /* reduced bottom gap */
  background-image:
    linear-gradient(120deg, rgba(15,23,42,0.9), rgba(15,23,42,0.6)),
    url("https://images.unsplash.com/photo-1526498460520-4c246339dccb?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.hero-left h1 {
  font-size: 34px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.lead {
  font-size: 16px;
  margin-bottom: 14px;
  color: #e5e7eb;
}

.cta-row {
  margin-bottom: 14px;
}

.btn {
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

.btn.primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.btn.ghost {
  border: 1px solid #e5e7eb;
  color: #e5e7eb;
  margin-left: 10px;
}

.quick {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick li {
  margin-bottom: 4px;
  font-size: 14px;
  color: #e5e7eb;
}

/* ---------------------------------------------------------
   SERVICES CARDS
--------------------------------------------------------- */
.grid3 {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #ffffff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 8px;
}

.card h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

/* ---------------------------------------------------------
   PROCESS GRID
--------------------------------------------------------- */
.process-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: #ffffff;
  padding: 14px 14px 15px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* ---------------------------------------------------------
   TESTIMONIALS — HORIZONTAL SCROLL
--------------------------------------------------------- */
.testimonials-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;                /* horizontal scrolling */
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  height: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 14px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  flex: 0 0 280px;                 /* width for each card in scroll */
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 320px;
  }
}

.quote-mark {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 28px;
  color: #bfdbfe;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-card p {
  margin-top: 20px;
  font-style: italic;
  color: #374151;
  font-size: 14px;
}

.testimonial-footer {
  margin-top: 14px;
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #f9fafb;
}

.name {
  font-weight: 600;
  font-size: 14px;
}

.role {
  font-size: 12px;
  color: #6b7280;
}

/* ---------------------------------------------------------
   CONTACT & FORM
--------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

form {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: #4b5563;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 8px 10px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 1px;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */
@media (max-width: 700px) {
  .nav {
    display: none; /* simple mobile nav for now */
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .section {
    padding: 22px 0;
  }

  .hero {
    padding: 44px 0 12px 0;
  }
}
